From 18a061ffaa5f37c33060f2387fa48a8454deced4 Mon Sep 17 00:00:00 2001 From: timlinux Date: Sat, 14 May 2005 14:40:03 +0000 Subject: [PATCH] Lars's gsl detection changes incorporated with my updates to work with gsl 1.5.9 git-svn-id: http://svn.osgeo.org/qgis/trunk/qgis@3386 c8812cc2-4d05-0410-92ff-de0c093fc19c --- configure.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.in b/configure.in index 207ae695a8f..55742d6f877 100644 --- a/configure.in +++ b/configure.in @@ -356,7 +356,7 @@ AC_ARG_ENABLE(georef, [ac_georef=$enableval], [ac_georef=yes]) have_gsl_lib=no if [ test $ac_georef = yes ] ; then - PKG_CHECK_MODULES(GSL, gsl >= 1.6, have_gsl_lib=yes) + PKG_CHECK_MODULES(GSL, gsl >= 1.5.9, have_gsl_lib=yes, have_gsl_lib=no) fi AM_CONDITIONAL([HAVE_GSL], [test "$have_gsl_lib" = "yes"])