/* Define if you have the wait3 system call. */
#undef HAVE_WAIT3
+/* Define if you have gdbm installed system wide. */
+#undef HAVE_GDBM
+
/* Define if you have zlib installed system wide. */
#undef HAVE_ZLIB
fi
+dnl Run configure in the gdbm subdir
+dnl AC_CONFIG_SUBDIRS( simgear/gdbm )
+
+
dnl Specify if we want logging (testing build) or not (release build)
# set logging default value
# with_logging=yes
exit
fi
+dnl Check for system installed gdbm
+AC_CHECK_HEADER(gdbm.h)
+if test "x$ac_cv_header_gdbm_h" = "xyes"; then
+ AC_DEFINE( HAVE_GDBM )
+else
+ echo "no gdbm found, configuring and building."
+fi
+AM_CONDITIONAL(HAVE_GDBM, test "x$ac_cv_header_gdbm_h" = "xyes" )
+
dnl Check for system installed zlib
AC_CHECK_HEADER(zlib.h)
if test "x$ac_cv_header_zlib_h" = "xyes"; then
simgear/version.h \
simgear/bucket/Makefile \
simgear/debug/Makefile \
+ simgear/gdbm/Makefile \
simgear/magvar/Makefile \
simgear/math/Makefile \
simgear/misc/Makefile \
else
echo "Electric fence: no"
fi
+
+if test "x$ac_cv_header_gdbm_h" != "xyes"; then
+ echo "Building gdbm"
+fi
+
+if test "x$ac_cv_header_zlib_h" != "xyes"; then
+ echo "Building zlib"
+fi