removed WITH_DBM, and WITH_FOO_HACK from the top-level configuration
authoraland <aland>
Tue, 7 Nov 2000 17:03:35 +0000 (17:03 +0000)
committeraland <aland>
Tue, 7 Nov 2000 17:03:35 +0000 (17:03 +0000)
scripts.  These items should be run-time configurable.

configure.in

index fd99911..f628433 100644 (file)
@@ -119,83 +119,6 @@ AC_ARG_WITH(raddbdir,
 AC_SUBST(raddbdir)
 AC_MSG_RESULT($raddbdir)
 
-dnl extra argument: --with-dbm
-DBMLIB=
-BUILDDBM=
-AC_ARG_WITH(dbm,
-[  --with-dbm              Compile in DBM support],
-[ case "$withval" in
-    no)
-       ;;
-    yes)
-       AC_DEFINE(WITH_DBM)
-       DBMLIB=-ldbm
-       BUILDDBM=builddbm
-  esac ]
-)
-
-dnl extra argument: --with-ndbm
-AC_ARG_WITH(ndbm,
-[  --with-ndbm             Compile in NDBM support],
-[ case "$withval" in
-    no)
-       ;;
-    yes)
-       AC_DEFINE(WITH_NDBM)
-       DBMLIB=-ldb
-       BUILDDBM=builddbm
-  esac ]
-)
-
-AC_SUBST(DBMLIB)
-AC_SUBST(BUILDDBM)
-
-dnl extra argument: --with-ascend-hack
-AC_ARG_WITH(ascend-hack,
-[  --with-ascend-hack      Include Ascend hacks],
-[ case "$withval" in
-    no)
-       ;;
-    yes)
-       AC_DEFINE(WITH_ASCEND_HACK)
-       dnl if they haven't said to use it, do so.
-       if test "${with_ascend_cpl+set}" != "set"; then
-               with_ascend_cpl=23
-       fi
-    esac ]
-)
-
-dnl extra argument: --with-ascend-cpl=N
-AC_ARG_WITH(ascend-cpl,
-[  --with-ascend-cpl=N     Set Ascend Channels Per Line to N [23] ],
-[ case "$withval" in
-    *)
-       AC_DEFINE_UNQUOTED(ASCEND_CHANNELS_PER_LINE, $withval)
-  esac ]
-)
-
-dnl extra argument: --with-ntdomain-hack
-AC_ARG_WITH(ntdomain-hack,
-[  --with-ntdomain-hack    Include NT Domain hack],
-[ case "$withval" in
-    no)
-       ;;
-    yes)
-       AC_DEFINE(WITH_NTDOMAIN_HACK)
-  esac ]
-)
-
-dnl extra argument: --with-spcj-hack
-AC_ARG_WITH(spcj-hack,
-[  --with-spcj-hack        Include Specialix Jetstream hacks],
-[ case "$withval" in
-    no)
-       ;;
-    yes)
-       AC_DEFINE(WITH_SPECIALIX_JETSTREAM_HACK)
-  esac ]
-)
-
 dnl extra argument: --with-dict-nocase
 WITH_DICT_NOCASE=yes
 AC_ARG_WITH(dict-nocase,