diff options
author | Jeremy Allison <jra@samba.org> | 2003-09-14 19:18:48 +0000 |
---|---|---|
committer | Jeremy Allison <jra@samba.org> | 2003-09-14 19:18:48 +0000 |
commit | bb3f2a3e6305737895ba39a3ddb12b7f1e03867e (patch) | |
tree | 1c469cf3feb35be3989919eae8fb1670505109b4 | |
parent | 4075819da6a292bf2d84f1d3e65e37e0c0d3f126 (diff) | |
download | samba-bb3f2a3e6305737895ba39a3ddb12b7f1e03867e.tar.gz samba-bb3f2a3e6305737895ba39a3ddb12b7f1e03867e.tar.bz2 samba-bb3f2a3e6305737895ba39a3ddb12b7f1e03867e.zip |
Fix for typo in darwin detection.
Jeremy.
(This used to be commit 8a57f1a72c88cde233b126d468183c52c2598420)
-rw-r--r-- | source3/configure.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/configure.in b/source3/configure.in index 10f1b2f7fc..0cf34bc9a7 100644 --- a/source3/configure.in +++ b/source3/configure.in @@ -1182,7 +1182,7 @@ if test "$enable_shared" = "yes"; then LDSHFLAGS="" ;; - darwin*) AC_DEFINE(DARWINOS,1,[Whether the host os is Darwin/MacOSX]) + *darwin*) AC_DEFINE(DARWINOS,1,[Whether the host os is Darwin/MacOSX]) BLDSHARED="true" LDSHFLAGS="-bundle -flat_namespace -undefined suppress" SHLIBEXT="dylib" |