diff options
author | Matthias Clasen <mclasen@redhat.com> | 2010-05-22 00:29:58 -0400 |
---|---|---|
committer | Matthias Clasen <mclasen@redhat.com> | 2010-05-22 00:29:58 -0400 |
commit | 8e315466b98ddbc98153a54252c9d3c4458cc6c2 (patch) | |
tree | afedace8097d1c81ac3cb85d58aa9e3407ea2c88 /configure.ac | |
parent | 94abf4733f30a5c0ab784d09f99b978e346d53b2 (diff) | |
download | gtk+-8e315466b98ddbc98153a54252c9d3c4458cc6c2.tar.gz |
Fix libjasper test
This was reported in bug 551322.
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index d8a20eb493..a99e7d2e34 100644 --- a/configure.ac +++ b/configure.ac @@ -943,7 +943,7 @@ dnl Test for libpng dnl Test for libjasper if test x$with_libjasper = xyes && test -z "$LIBJASPER"; then - AC_CHECK_LIB(jasper, jas_init, LIBJASPER=-ljasper, [], -ljpeg) + AC_CHECK_LIB(jasper, jas_init, LIBJASPER=-ljasper, [], -ljpeg -lm) fi if test x$with_libjasper = xyes && test -z "$LIBJASPER"; then |