diff options
author | Michael Adam <obnox@samba.org> | 2008-02-19 16:18:32 +0100 |
---|---|---|
committer | Michael Adam <obnox@samba.org> | 2008-02-19 17:39:40 +0100 |
commit | c666d5b3845fa7536a07b45515f2e34575951d07 (patch) | |
tree | 6a901bab6f5c9e653f385435be766695acfbd2ad | |
parent | 1f67a36de36be9fe0218816675af4d96c194ad39 (diff) | |
download | samba-c666d5b3845fa7536a07b45515f2e34575951d07.tar.gz samba-c666d5b3845fa7536a07b45515f2e34575951d07.tar.bz2 samba-c666d5b3845fa7536a07b45515f2e34575951d07.zip |
Move AC_ENABLE_SHARED and AC_DISABLE_STATIC to a more appropriate place.
I have to investigate the effect of these and evaluate the need of
their presence. For now establish more reasonable grouping.
Michael
(This used to be commit 3ba8fa1c4b9ac46133b17112ef3494a4c23dc314)
-rw-r--r-- | source3/configure.in | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/source3/configure.in b/source3/configure.in index 0409e164eb..a595ebb83e 100644 --- a/source3/configure.in +++ b/source3/configure.in @@ -39,9 +39,6 @@ fi AC_LIBREPLACE_LOCATION_CHECKS -AC_DISABLE_STATIC -AC_ENABLE_SHARED - ################################################# # Directory handling stuff to support both the # legacy SAMBA directories and FHS compliant @@ -1785,6 +1782,9 @@ case "$host_os" in ;; esac +AC_DISABLE_STATIC +AC_ENABLE_SHARED + # Set defaults PIE_CFLAGS="" PIE_LDFLAGS="" |