diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2015-12-09 09:32:55 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2015-12-09 09:39:22 +0000 |
commit | 7dbdbd5de60b14d427c246022d3d7be13fa6e73e (patch) | |
tree | e74570dd207d568798b21008fb80181450f8e1dd /main/gdk-pixbuf/glibc-malloc.patch | |
parent | 9803ba32da13636d4013b2489470ed3544114d06 (diff) | |
download | aports-7dbdbd5de60b14d427c246022d3d7be13fa6e73e.tar.bz2 aports-7dbdbd5de60b14d427c246022d3d7be13fa6e73e.tar.xz |
main/gdk-pixbuf: upgrade to 2.32.2
Diffstat (limited to 'main/gdk-pixbuf/glibc-malloc.patch')
-rw-r--r-- | main/gdk-pixbuf/glibc-malloc.patch | 28 |
1 files changed, 0 insertions, 28 deletions
diff --git a/main/gdk-pixbuf/glibc-malloc.patch b/main/gdk-pixbuf/glibc-malloc.patch deleted file mode 100644 index 6986d17464..0000000000 --- a/main/gdk-pixbuf/glibc-malloc.patch +++ /dev/null @@ -1,28 +0,0 @@ -Work around for a test that should not build on non-glibc systems. - -Problem and proper fix is reported to: -https://bugzilla.gnome.org/show_bug.cgi?id=756078 - -diff --git a/tests/pixbuf-lowmem.c b/tests/pixbuf-lowmem.c -index ae71788..9e9571f 100644 ---- a/tests/pixbuf-lowmem.c -+++ b/tests/pixbuf-lowmem.c -@@ -24,6 +24,7 @@ - #include <time.h> - #include <string.h> - -+#ifdef __GLIBC__ - #define PRETEND_MEM_SIZE (16 * 1024 * 1024) - #define REMAINING_MEM_SIZE 100000 - -@@ -225,3 +226,10 @@ main (int argc, char **argv) - - return 0; - } -+#else -+int -+main (int argc, char **argv) -+{ -+ return 0; -+} -+#endif |