Changeset 728 for trunk/configure.ac
- Timestamp:
- 08/02/08 16:39:26 (5 months ago)
- Files:
-
- 1 modified
-
trunk/configure.ac (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/configure.ac
r700 r728 100 100 AC_PATH_PROG(GDAL_CONFIG, $PROG, "", $PATH) 101 101 ]) 102 GDAL_CFLAGS=`$GDAL_CONFIG --cflags` 103 GDAL_LIBS=`$GDAL_CONFIG --libs` 104 AC_SUBST(GDAL_CFLAGS) 105 AC_SUBST(GDAL_LIBS) 102 103 if test "x$GDAL_CONFIG" != "x"; then 104 GDAL_CFLAGS=`$GDAL_CONFIG --cflags` 105 GDAL_LIBS=`$GDAL_CONFIG --libs` 106 AC_SUBST(GDAL_CFLAGS) 107 AC_SUBST(GDAL_LIBS) 108 fi 109 AM_CONDITIONAL(HAVE_GDAL, test "x$GDAL_CONFIG" != "x") 106 110 107 111
