]> git.ipfire.org Git - ipfire-3.x.git/commitdiff
libpng: Update to version 1.4.2.
authorSchantl Stefan <Stevee@ipfire.org>
Sat, 8 May 2010 15:23:13 +0000 (17:23 +0200)
committerSchantl Stefan <Stevee@ipfire.org>
Sat, 8 May 2010 15:23:13 +0000 (17:23 +0200)
pkgs/core/libpng/libpng.nm
pkgs/core/libpng/patches/libpng-1.2.39-pngconf.patch [deleted file]

index 93d222a67110d84ad79d0a7f75ca1e1b7023f5dd..42b17e2e9e9bd0402698d99f62566911f2c2a2f9 100644 (file)
@@ -25,7 +25,7 @@
 include $(PKGROOT)/Include
 
 PKG_NAME       = libpng
-PKG_VER        = 1.2.39
+PKG_VER        = 1.4.2
 PKG_REL        = 0
 
 PKG_MAINTAINER =
diff --git a/pkgs/core/libpng/patches/libpng-1.2.39-pngconf.patch b/pkgs/core/libpng/patches/libpng-1.2.39-pngconf.patch
deleted file mode 100644 (file)
index dbaadcb..0000000
+++ /dev/null
@@ -1,42 +0,0 @@
-diff -Naur libpng-1.2.29.orig/configure.ac libpng-1.2.29/configure.ac
---- libpng-1.2.29.orig/configure.ac    2008-05-08 07:58:11.000000000 -0400
-+++ libpng-1.2.29/configure.ac 2008-05-31 20:21:12.000000000 -0400
-@@ -63,7 +63,8 @@
- AC_MSG_CHECKING(
-   [if assembler code in pnggccrd.c can be compiled without PNG_NO_MMX_CODE])
- AC_TRY_COMPILE(
--  [#include "$srcdir/pnggccrd.c"],
-+  [#define PNG_CONFIGURE_LIBPNG
-+   #include "$srcdir/pnggccrd.c"],
-   [return 0;],
-   AC_MSG_RESULT(yes)
-   LIBPNG_NO_MMX="",
-diff -Naur libpng-1.2.29.orig/pngconf.h libpng-1.2.29/pngconf.h
---- libpng-1.2.29.orig/pngconf.h       2008-05-08 07:58:03.000000000 -0400
-+++ libpng-1.2.29/pngconf.h    2008-05-31 20:21:12.000000000 -0400
-@@ -35,6 +35,25 @@
- #ifdef HAVE_CONFIG_H
- #include "config.h"
- #endif
-+#else
-+/* pngconf.h is part of the exported API. When a libpng-using application
-+   includes us, PNG_CONFIGURE_LIBPNG is of course not defined as we do not have
-+   libpng's config.h available in this case. This means that we do not have the
-+   defines added to config.h and the commandline by libpng's ./configure .
-+   
-+   For all defines from config.h not having them set is not a problem, however
-+   ./configure also adds -DPNG_NO_ASSEMBLER_CODE to the CFLAGS when compiling
-+   on a platform on which the MMX and SSE asm code in libpng is not supported.
-+   
-+   We do need this define as this define is used to determine whether or not
-+   to define PNG_ASSEMBLER_CODE_SUPPORTED and other assembler related defines
-+   and prototypes. PNG_ASSEMBLER_CODE_SUPPORTED in turn is used by applications
-+   (ImageMagick for example) to determine whether or not they can use the asm
-+   functions. Thus we need to define PNG_NO_ASSEMBLER_CODE here on platforms
-+   on which the MMX and SSE asm code in libpng is not supported: */
-+#ifndef __i386__ /* change this if MMX/SSE become supported on x86_64! */
-+#define PNG_NO_ASSEMBLER_CODE
-+#endif
- #endif
- /*