Changeset 699
- Timestamp:
- 06/10/08 17:13:50 (7 months ago)
- Location:
- trunk
- Files:
-
- 1 added
- 2 modified
-
config/ax_boost_iostreams.m4 (added)
-
configure.ac (modified) (1 diff)
-
plugins/input/gdal/Makefile.am (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/configure.ac
r691 r699 74 74 fi 75 75 76 AX_BOOST_IOSTREAMS 77 if test "x$ax_cv_boost_iostreams" = "xno"; then 78 echo 79 echo "Error: You need to install the boost iostreams library!" 80 echo 81 exit 82 fi 83 84 76 85 AX_LIB_POSTGRESQL 77 if test "$found_postgresql" = "yes"; then 78 AM_CONDITIONAL(HAVE_POSTGRESQL, test "x$found_postgresql" = "xyes") 79 fi 86 if test "x$found_postgresql" = "xyes"; then 87 echo "checking whether to enable postgresql... yes" 88 else 89 echo "checking whether to enable postgresql... no" 90 fi 91 AM_CONDITIONAL(HAVE_POSTGRESQL, test "x$found_postgresql" = "xyes") 92 93 AC_ARG_WITH(gdal-config, 94 [ --with-gdal-config=GDAL_CONFIG use gdal-config specified ], 95 [ 96 GDAL_CONFIG=$withval; 97 echo "using "$GDAL_CONFIG" for gdal-config"; 98 ],[ 99 PROG="gdal-config"; 100 AC_PATH_PROG(GDAL_CONFIG, $PROG, "", $PATH) 101 ]) 102 GDAL_CFLAGS=`$GDAL_CONFIG --cflags` 103 GDAL_LIBS=`$GDAL_CONFIG --libs` 104 AC_SUBST(GDAL_CFLAGS) 105 AC_SUBST(GDAL_LIBS) 106 80 107 81 108 AX_CHECK_TIFF -
trunk/plugins/input/gdal/Makefile.am
r526 r699 7 7 gdal_featureset.cpp 8 8 9 gdal_la_LIBADD = \ 10 ${GDAL_LDFLAGS} 11 9 12 gdal_la_CXXFLAGS = \ 10 -I../../../include 13 ${GDAL_CFLAGS} \ 14 -I../../../include 11 15 12 16 gdal_la_LDFLAGS = \
