1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-11 05:18:09 +03:00

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
This commit is contained in:
Matthieu Patou 2012-03-12 22:49:32 -07:00 committed by Matthieu Patou
parent b68f72c7f5
commit 442f1c81df

View File

@ -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