chance PNG check from SEARCH to CHECK

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@33628 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Riccardo Mottola 2011-07-25 11:22:44 +00:00
parent d2011237e8
commit 59cb20f719
3 changed files with 258 additions and 223 deletions

View file

@ -1,3 +1,10 @@
2011-07-25 Riccardo Mottola <rm@gnu.org>
* configure.ac:
* configure:
Check for png with CHECK and not SEARCH lib to avoid position problems
in the linker flags (windows is sesnitive)
2011-07-24 Fred Kiefer <FredKiefer@gmx.de>
* Source/NSAnimation.m (NSViewAnimation -dealloc): Use DESTROY

472
configure vendored

File diff suppressed because it is too large Load diff

View file

@ -247,7 +247,7 @@ if test $enable_png = yes; then
CFLAGS="$PNG_CFLAGS ${CFLAGS}"
LDFLAGS="$PNG_LDFLAGS ${LDFLAGS}"
AC_CHECK_HEADERS(png.h)
AC_SEARCH_LIBS(png_sig_cmp)
AC_CHECK_LIB(png, png_sig_cmp)
if test "$ac_cv_search_png_sig_cmp" != no; then
GRAPHIC_CFLAGS="$PNG_CFLAGS $GRAPHIC_CFLAGS"
GRAPHIC_LFLAGS="$PNG_LDFLAGS $GRAPHIC_LFLAGS"