Add -ljpeg when checking for jasper. Reported by Mike Calmus

* configure.in: Add -ljpeg when checking for jasper.
        Reported by Mike Calmus


svn path=/trunk/; revision=20827
This commit is contained in:
Matthias Clasen 2008-07-15 02:05:30 +00:00
parent ba01e0fec1
commit 855b3c228e
2 changed files with 8 additions and 1 deletions

View File

@ -1,3 +1,10 @@
2008-07-14 Matthias Clasen <mclasen@redhat.com>
Bug 542853 jasper test fails due to incomplete library arguments
* configure.in: Add -ljpeg when checking for jasper.
Reported by Mike Calmus
2008-07-14 Matthias Clasen <mclasen@redhat.com>
* gtk/Makefile.am: Add some missing stock-icons. Noticed by Marek

View File

@ -898,7 +898,7 @@ dnl Test for libpng
dnl Test for libjasper
if test x$with_libjasper != xno && test -z "$LIBJASPER"; then
AC_CHECK_LIB(jasper, jas_init, LIBJASPER=-ljasper, [])
AC_CHECK_LIB(jasper, jas_init, LIBJASPER=-ljasper, [], -ljpeg)
fi
if test x$with_libjasper != xno && test -z "$LIBJASPER"; then