+Wed Dec 15 00:18:30 CET 1999 Wichert Akkerman <wakkerma@debian.org>
+
+ * Add option to disable building dselect
+ * Add config.sub and config.guess
+
Tue Dec 14 20:08:58 CET 1999 Wichert Akkerman <wakkerma@debian.org>
* automake/sysconf.m4: really add the file this time
include Makefile.conf
SUBDIRS = include lib dpkg-deb split scripts utils main \
- utils doc dselect po methods
+ utils doc @DSELECTDIR@ po methods
all: version.h all-recursive
AC_INIT(include/dpkg.h.in)
AC_CONFIG_HEADER(config.h)
-
+DSELECTDIR="dselect"
+AC_ARG_WITH(dselect,
+[ --with-dselect the dselect package-management frontend],
+[case "$withval" in
+ "false" | "no" )
+ DSELECTDIR=""
+ ;;
+ esac])
+AC_SUBST(DSELECTDIR)
AC_CHECK_TOOL_PREFIX
+AC_CANONICAL_SYSTEM
AC_CHECK_TOOL(CC, gcc)
AC_PROG_CC
-AC_CANONICAL_SYSTEM
-AC_CHECK_TOOL_PREFIX
-
AC_PROG_CXX
AM_CONDITIONAL(HAVE_CPLUSPLUS, [test "$CXX" != ""])