From 21ce64de1d3378e3bcbd05a1aeb87eb4af95cebb Mon Sep 17 00:00:00 2001 From: Glenn Maynard Date: Thu, 15 Jul 2004 20:22:55 +0000 Subject: [PATCH] dumb libjpeg search fix --- stepmania/configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stepmania/configure.ac b/stepmania/configure.ac index a4426b306c..460427f917 100644 --- a/stepmania/configure.ac +++ b/stepmania/configure.ac @@ -130,7 +130,7 @@ AC_ARG_WITH(jpeg, AC_HELP_STRING([--without-jpeg], [Disable JPEG support]), with if test "$with_jpeg" = "yes"; then have_libjpeg=yes - AC_CHECK_LIB(jpeg, jpeg_read_scanlines, [x=y], have_libjpeg=no) # x=y to stop autoconf from messing with LIBS + AC_CHECK_LIB(jpeg, jpeg_read_scanlines, [x=y], have_libjpeg=no, [-lz -lm]) # x=y to stop autoconf from messing with LIBS AC_CHECK_HEADER(jpeglib.h, , have_libjpeg=no) if test "$have_libjpeg" = "no"; then