diff options
author | Stefan Metzmacher <metze@samba.org> | 2006-09-19 23:32:25 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 12:00:48 -0500 |
commit | e108e78263b616c207c5248c7e7356bce9678399 (patch) | |
tree | b9d78528340f942ac15572744ec8fd1b02ecd281 | |
parent | f490794c514d8f33f0affefc59460b18c63c1c60 (diff) | |
download | samba-e108e78263b616c207c5248c7e7356bce9678399.tar.gz samba-e108e78263b616c207c5248c7e7356bce9678399.tar.bz2 samba-e108e78263b616c207c5248c7e7356bce9678399.zip |
r18700: nicer order of the tests
metze
(This used to be commit 07dafa266a80b87d521cacfcae65e8fb797e0eb2)
-rw-r--r-- | source3/configure.in | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/source3/configure.in b/source3/configure.in index 4068f54e4c..544fc3e3cf 100644 --- a/source3/configure.in +++ b/source3/configure.in @@ -5,11 +5,6 @@ AC_PREREQ(2.53) AC_INIT(include/includes.h) AC_CONFIG_HEADER(include/config.h) -AC_LIBREPLACE_LOCATION_CHECKS - -AC_DISABLE_STATIC -AC_ENABLE_SHARED - SMB_VERSION_STRING=`cat $srcdir/include/version.h | grep 'SAMBA_VERSION_OFFICIAL_STRING' | cut -d '"' -f2` echo "SAMBA VERSION: ${SMB_VERSION_STRING}" @@ -18,6 +13,11 @@ if test -n "${SAMBA_VERSION_SVN_REVISION}";then echo "BUILD REVISION: ${SAMBA_VERSION_SVN_REVISION}" fi +AC_LIBREPLACE_LOCATION_CHECKS + +AC_DISABLE_STATIC +AC_ENABLE_SHARED + ################################################# # Directory handling stuff to support both the # legacy SAMBA directories and FHS compliant |