Changeset 691 for trunk/configure.ac
- Timestamp:
- 04/06/08 14:13:13 (9 months ago)
- Files:
-
- 1 modified
-
trunk/configure.ac (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/configure.ac
r556 r691 76 76 AX_LIB_POSTGRESQL 77 77 if test "$found_postgresql" = "yes"; then 78 AM_CONDITIONAL( BUILD_POSTGRESQL, test "x$found_postgresql" = "xyes")78 AM_CONDITIONAL(HAVE_POSTGRESQL, test "x$found_postgresql" = "xyes") 79 79 fi 80 80 … … 130 130 131 131 dnl Check for option to enable libxml2 132 AC_MSG_CHECKING(whether to enable included libxml2 building)132 AC_MSG_CHECKING(whether to enable libxml2 support) 133 133 AC_ARG_ENABLE(libxml2, 134 [ --enable-libxml2=[no/yes] enables included libxml2 build(default=no)],,134 [ --enable-libxml2=[no/yes] enables libxml2 support (default=no)],, 135 135 enable_libxml2=no) 136 136 … … 145 145 fi 146 146 147 dnl Check for option to enable cairo 148 AC_MSG_CHECKING(whether to enable cairo support) 149 AC_ARG_ENABLE(cairo, 150 [ --enable-cairo=[no/yes] enables cairo support (default=yes)],, 151 enable_cairo=yes) 152 153 AM_CONDITIONAL(HAVE_CAIRO, test "x$enable_cairo" = "xyes") 154 155 if [ test "x$enable_cairo" = "xyes"]; then 156 AC_MSG_RESULT(yes) 157 PKG_CHECK_MODULES(CAIRO, cairomm-1.0 >= 1.4.4) 158 dnl AC_DEFINE(HAVE_CAIRO, 1,"") 159 else 160 AC_MSG_RESULT(no) 161 fi 162 163 147 164 AC_OUTPUT([ 148 165 Makefile … … 155 172 plugins/input/raster/Makefile 156 173 plugins/input/shape/Makefile 174 plugins/input/osm/Makefile 157 175 src/Makefile 158 176 mapnik.pc
