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:
@ -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>
|
2008-07-14 Matthias Clasen <mclasen@redhat.com>
|
||||||
|
|
||||||
* gtk/Makefile.am: Add some missing stock-icons. Noticed by Marek
|
* gtk/Makefile.am: Add some missing stock-icons. Noticed by Marek
|
||||||
|
|||||||
@ -898,7 +898,7 @@ dnl Test for libpng
|
|||||||
|
|
||||||
dnl Test for libjasper
|
dnl Test for libjasper
|
||||||
if test x$with_libjasper != xno && test -z "$LIBJASPER"; then
|
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
|
fi
|
||||||
|
|
||||||
if test x$with_libjasper != xno && test -z "$LIBJASPER"; then
|
if test x$with_libjasper != xno && test -z "$LIBJASPER"; then
|
||||||
|
|||||||
Reference in New Issue
Block a user