From 2795f35b10523a5e5f12876ac4d79db4038ba1fd Mon Sep 17 00:00:00 2001 From: "lenz@mysql.com" <> Date: Thu, 19 Feb 2004 00:00:20 +0100 Subject: [PATCH] - Make sure to set the correct compile flags for Mac OS X 10.3 "Panther" (which is "darwin7" now) - "-DHAVE_BROKEN_REALPATH" is not required anymore, too, as realpath() is thread-safe on Panther now. (Thanks to Al Begley from Apple for the info) --- configure.in | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/configure.in b/configure.in index fdb6db9f6c2..c05329a1680 100644 --- a/configure.in +++ b/configure.in @@ -1028,6 +1028,15 @@ case $SYSTEM_TYPE in MAX_C_OPTIMIZE="-O" fi ;; + *darwin7*) + if test "$ac_cv_prog_gcc" = "yes" + then + FLAGS="-DHAVE_DARWIN_THREADS -D_P1003_1B_VISIBLE -DSIGNAL_WITH_VIO_CLOSE -DSIGNALS_DONT_BREAK_READ -DFN_NO_CASE_SENCE" + CFLAGS="$CFLAGS $FLAGS" + CXXFLAGS="$CXXFLAGS $FLAGS" + MAX_C_OPTIMIZE="-O" + fi + ;; *freebsd*) echo "Adding fix for interrupted reads" OSVERSION=`sysctl -a | grep osreldate | awk '{ print $2 }'`