summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthieu Patou <mat@matws.net>2012-03-12 22:49:32 -0700
committerMatthieu Patou <mat@samba.org>2012-03-14 08:31:19 +0100
commit442f1c81df3c4d530457d44ef25c80c295982b33 (patch)
tree234aee239e0108960ae3c8509cac76d39ea84986
parentb68f72c7f58c05870100d0d993c9baf0fa80a891 (diff)
downloadsamba-442f1c81df3c4d530457d44ef25c80c295982b33.tar.gz
samba-442f1c81df3c4d530457d44ef25c80c295982b33.tar.bz2
samba-442f1c81df3c4d530457d44ef25c80c295982b33.zip
autoconf: make autoconf build work on OS X 10.6
Autobuild-User: Matthieu Patou <mat@samba.org> Autobuild-Date: Wed Mar 14 08:31:19 CET 2012 on sn-devel-104
-rw-r--r--source3/configure.in4
1 files changed, 2 insertions, 2 deletions
diff --git a/source3/configure.in b/source3/configure.in
index e0fe79c9d0..611e1d8fb6 100644
--- a/source3/configure.in
+++ b/source3/configure.in
@@ -774,9 +774,9 @@ AC_CHECK_HEADERS([CoreFoundation/CFStringEncodingConverter.h], [], [AC_CHECK_HEA
CPPFLAGS="$old_CPPFLAGS"
# To link lib/util/charset/charset_macosxfs.c, we need to tell the linker
-# about CoreFoundation
+# about CoreFoundation, at least on os X 10.6 and 10.7
case "$host_os" in
- *darwin11*)
+ *darwin11*|*darwin10*)
LDFLAGS="$LDFLAGS -framework CoreFoundation"
;;
esac