summaryrefslogtreecommitdiff
path: root/configure.in
diff options
context:
space:
mode:
authorMatthias Clasen <matthiasc@src.gnome.org>2008-07-15 02:05:30 +0000
committerMatthias Clasen <matthiasc@src.gnome.org>2008-07-15 02:05:30 +0000
commit855b3c228efc08d60358072b5e710444f0fe0c25 (patch)
tree05f8c002773da9f4c83074612bc14b769c192af4 /configure.in
parentba01e0fec1a7f54a603913822cbdbfd9ea7eb880 (diff)
downloadgdk-pixbuf-855b3c228efc08d60358072b5e710444f0fe0c25.tar.gz
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
Diffstat (limited to 'configure.in')
-rw-r--r--configure.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.in b/configure.in
index 8c55debb6..a5e1ca097 100644
--- a/configure.in
+++ b/configure.in
@@ -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