diff options
author | deva <deva> | 2008-08-04 10:31:45 +0000 |
---|---|---|
committer | deva <deva> | 2008-08-04 10:31:45 +0000 |
commit | 98b90925d863531c3a6c75de15fb686b1fb1891f (patch) | |
tree | 9e6e54df55f4b7e30c4b9c9d447dcd4fe150ff35 /server/configure.in | |
parent | bd8221d2791718f02ab1d067c797c62b29da9106 (diff) |
Made server able to run (compile-time) without postgres and the uploadserver. Fixed problems in the exclusion of pentominos support. Fixed bug in db query field iteration.
Diffstat (limited to 'server/configure.in')
-rw-r--r-- | server/configure.in | 26 |
1 files changed, 25 insertions, 1 deletions
diff --git a/server/configure.in b/server/configure.in index 79a14e1..9d6b803 100644 --- a/server/configure.in +++ b/server/configure.in @@ -19,7 +19,7 @@ dnl ====================== dnl Compile without pentominos support dnl ====================== AC_ARG_WITH(pentominos, - [ --with-pentominos build without pentominos support (default=yes)], + [ --with-pentominos build with pentominos support (default=yes)], [], [with_pentominos=yes]) if test x$with_pentominos == xno; then @@ -27,6 +27,30 @@ if test x$with_pentominos == xno; then CXXFLAGS="$CXXFLAGS -DWITHOUT_PENTOMINOS" fi +dnl ====================== +dnl Compile without uploadserver support +dnl ====================== +AC_ARG_WITH(uploadserver, + [ --with-uploadserver build with uploadserver support (default=yes)], + [], + [with_uploadserver=yes]) +if test x$with_uploadserver == xno; then + AC_MSG_WARN([*** Building without uploadserver support!]) + CXXFLAGS="$CXXFLAGS -DWITHOUT_UPLOADSERVER" +fi + +dnl ====================== +dnl Compile without db support +dnl ====================== +AC_ARG_WITH(db, + [ --with-db build with db support (default=yes)], + [], + [with_db=yes]) +if test x$with_db == xno; then + AC_MSG_WARN([*** Building without db support!]) + CXXFLAGS="$CXXFLAGS -DWITHOUT_DB" +fi + AC_PROG_CXX AC_PROG_LIBTOOL |