summaryrefslogtreecommitdiff
path: root/source3/configure.in
diff options
context:
space:
mode:
authorAndrew Bartlett <abartlet@samba.org>2012-08-21 08:16:24 +1000
committerAndrew Bartlett <abartlet@samba.org>2012-08-21 06:39:04 +0200
commit4d5471f1c634450020c4530f8d0c8dfcd7252fb3 (patch)
tree21dd9b9cf67d96634eabbf62bce641996dfabe7f /source3/configure.in
parent7cd4eb0ca69026031620cbe578cfd7216ea9ac6c (diff)
downloadsamba-4d5471f1c634450020c4530f8d0c8dfcd7252fb3.tar.gz
samba-4d5471f1c634450020c4530f8d0c8dfcd7252fb3.tar.bz2
samba-4d5471f1c634450020c4530f8d0c8dfcd7252fb3.zip
build: Remove special case for the build farm
Except in the formatting of the selftest output, this removes the special case of the build farm, so that an autobuild, a manual make test and the build farm are more similar. Andrew Bartlett Autobuild-User(master): Andrew Bartlett <abartlet@samba.org> Autobuild-Date(master): Tue Aug 21 06:39:04 CEST 2012 on sn-devel-104
Diffstat (limited to 'source3/configure.in')
-rw-r--r--source3/configure.in8
1 files changed, 4 insertions, 4 deletions
diff --git a/source3/configure.in b/source3/configure.in
index f0dde646e3..db7df4d59c 100644
--- a/source3/configure.in
+++ b/source3/configure.in
@@ -476,7 +476,7 @@ if test "x$developer" = xyes; then
default_shared_modules="$default_shared_modules perfcount_test"
fi
-if test x"$RUN_FROM_BUILD_FARM" = x"yes" -o "x$developer" = xyes; then
+if test x"$selftest" = x"yes" -o "x$developer" = xyes; then
default_shared_modules="$default_shared_modules vfs_fake_acls"
fi
@@ -6602,10 +6602,10 @@ fi
#################################################
# If run from the build farm, enable NASTY hacks
#################################################
-AC_MSG_CHECKING(whether to enable build farm hacks)
-if test x"$RUN_FROM_BUILD_FARM" = x"yes"; then
+AC_MSG_CHECKING(whether to enable features for selftest)
+if test x"$selftest" = x"yes"; then
AC_MSG_RESULT(yes)
- AC_DEFINE(ENABLE_BUILD_FARM_HACKS, 1, [Defined if running in the build farm])
+ AC_DEFINE(ENABLE_SELFTEST, 1, [Support features needed for selftest])
else
AC_MSG_RESULT(no)
fi