Fixed typo when libjpeg is not found

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@20881 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Nicola Pero 2005-03-10 04:16:40 +00:00
parent 7133a6a263
commit 4738fbed16
3 changed files with 7 additions and 2 deletions

View file

@ -1,3 +1,8 @@
2005-03-10 Nicola Pero <n.pero@mi.flashnet.it>
* configure.ac: Fixed setting variable when libjpeg can't be found.
* configure: Regenereated.
2005-03-07 Fred Kiefer <FredKiefer@gmx.de>
* Header/AppKit/NSCell.h: Moved NSControlSize definition to ...

2
configure vendored
View file

@ -4535,7 +4535,7 @@ _ACEOF
fi
else
ac_cv_lib_jpeg_jpeg_destroy_decompress = no
ac_cv_lib_jpeg_jpeg_destroy_decompress=no
fi
if test "$ac_cv_lib_jpeg_jpeg_destroy_decompress" = yes; then

View file

@ -115,7 +115,7 @@ if test $enable_jpeg = yes; then
if test "$have_jpeg" = yes; then
AC_CHECK_LIB(jpeg, jpeg_destroy_decompress)
else
ac_cv_lib_jpeg_jpeg_destroy_decompress = no
ac_cv_lib_jpeg_jpeg_destroy_decompress=no
fi
if test "$ac_cv_lib_jpeg_jpeg_destroy_decompress" = yes; then