Changeset 728
- Timestamp:
- 08/02/08 16:39:26 (5 months ago)
- Location:
- trunk
- Files:
-
- 4 modified
-
configure.ac (modified) (1 diff)
-
include/mapnik/Makefile.am (modified) (1 diff)
-
plugins/input/gdal/Makefile.am (modified) (2 diffs)
-
src/Makefile.am (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 -
trunk/include/mapnik/Makefile.am
r691 r728 50 50 filter_visitor.hpp \ 51 51 font_engine_freetype.hpp \ 52 font_set.hpp \ 52 53 gamma.hpp \ 53 54 geometry.hpp \ -
trunk/plugins/input/gdal/Makefile.am
r699 r728 1 if HAVE_GDAL 1 2 2 3 pkglib_LTLIBRARIES = \ … … 19 20 -shrext .input 20 21 22 endif 23 21 24 ## File created by the gnome-build tools -
trunk/src/Makefile.am
r700 r728 31 31 filter_factory.cpp \ 32 32 font_engine_freetype.cpp \ 33 font_set.cpp \ 33 34 graphics.cpp \ 34 35 image_reader.cpp \
