From 2054c7228a6699b5fa3780640df2ff032aebe12e Mon Sep 17 00:00:00 2001 From: Jelmer Vernooij Date: Tue, 4 Apr 2006 16:21:08 +0000 Subject: r14910: Remove unused configure options (This used to be commit 3063e5311e137ef9a001216b40f74850c8e8261c) --- source4/build/m4/check_path.m4 | 52 ------------------------------------- source4/build/smb_build/makefile.pm | 2 +- 2 files changed, 1 insertion(+), 53 deletions(-) diff --git a/source4/build/m4/check_path.m4 b/source4/build/m4/check_path.m4 index b5654ac25b..274f74fca3 100644 --- a/source4/build/m4/check_path.m4 +++ b/source4/build/m4/check_path.m4 @@ -122,21 +122,6 @@ AC_SUBST(sbindir) AC_SUBST(winbindd_socket_dir) AC_SUBST(modulesdir) -################################################# -# set prefix for 'make test' -selftest_prefix="./" -AC_SUBST(selftest_prefix) -AC_ARG_WITH(selftest-prefix, -[ --with-selftest-prefix=DIR The prefix where make test will be runned (\$selftest_prefix)], -[ case "$withval" in - yes|no) - AC_MSG_WARN([--with-selftest-prefix called without argument - will use default]) - ;; - * ) - selftest_prefix="$withval" - ;; - esac]) - debug=no AC_ARG_ENABLE(debug, [ --enable-debug Turn on compiler debugging information (default=no)], @@ -153,13 +138,6 @@ AC_ARG_ENABLE(developer, developer=yes fi]) -experimental=no -AC_ARG_ENABLE(experimental, -[ --enable-experimental Turn on experimental features (default=no)], - [if test x$enable_experimental = xyes; then - experimental=yes - fi]) - dnl disable these external libs AC_ARG_WITH(disable-ext-lib, [ --with-disable-ext-lib=LIB Comma-seperated list of external libraries], @@ -169,33 +147,3 @@ AC_ARG_WITH(disable-ext-lib, eval SMB_EXT_LIB_$i=NO done fi ]) - -dnl exclude these modules -AC_ARG_WITH(exclude-modules, -[ --with-exclude-modules=MODULES Comma-seperated list of names of modules to exclude from build], -[ if test $withval; then - for i in `echo $withval | sed -e's/,/ /g'` - do - eval SMB_MODULE_$i=NOT - done -fi ]) - -dnl Always built these modules shared -AC_ARG_WITH(shared-modules, -[ --with-shared-modules=MODULES Comma-seperated list of names of modules to build shared], -[ if test $withval; then - for i in `echo $withval | sed -e's/,/ /g'` - do - eval SMB_MODULE_$i=SHARED - done -fi ]) - -dnl Always built these modules static -AC_ARG_WITH(static-modules, -[ --with-static-modules=MODULES Comma-seperated list of names of modules to statically link in], -[ if test $withval; then - for i in `echo $withval | sed -e's/,/ /g'` - do - eval SMB_MODULE_$i=STATIC - done -fi ]) diff --git a/source4/build/smb_build/makefile.pm b/source4/build/smb_build/makefile.pm index 7b57470f81..5ba662a4d5 100644 --- a/source4/build/smb_build/makefile.pm +++ b/source4/build/smb_build/makefile.pm @@ -67,7 +67,7 @@ sub _prepare_path_vars($) $self->output(<< "__EOD__" prefix = $self->{config}->{prefix} exec_prefix = $self->{config}->{exec_prefix} -selftest_prefix = $self->{config}->{selftest_prefix} +selftest_prefix = ./ VPATH = $self->{config}->{srcdir}:heimdal/lib/asn1:heimdal/lib/krb5:heimdal/lib/gssapi:heimdal/lib/hdb:heimdal/lib/roken:heimdal/lib/des srcdir = $self->{config}->{srcdir} builddir = $self->{config}->{builddir} -- cgit