fix for missing wxUSE_DARWIN definition

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@11104 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2001-07-19 20:44:34 +00:00
parent 2f919f9988
commit 6ff77d3395
2 changed files with 2 additions and 2 deletions

2
configure vendored
View File

@@ -14619,7 +14619,7 @@ if test "$wxUSE_THREADS" = "yes"; then
EOF
if test "$wxUSE_DARWIN" = "0"; then
if test "x$wxUSE_DARWIN" != "x1"; then
CFLAGS="${CFLAGS} -D_REENTRANT"
CXXFLAGS="${CXXFLAGS} -D_REENTRANT"
fi

View File

@@ -3061,7 +3061,7 @@ if test "$wxUSE_THREADS" = "yes"; then
AC_DEFINE(wxUSE_THREADS)
dnl must define _REENTRANT for multithreaded code except for Darwin/Mac OS X
if test "$wxUSE_DARWIN" = "0"; then
if test "x$wxUSE_DARWIN" != "x1"; then
CFLAGS="${CFLAGS} -D_REENTRANT"
CXXFLAGS="${CXXFLAGS} -D_REENTRANT"
fi