Skip to content
Snippets Groups Projects
Commit ce3dcdf3 authored by Jonas Wallden's avatar Jonas Wallden
Browse files

Update compiler flags for Mac OS X 10.1 compatibility.

Rev: src/configure.in:1.557
parent 9aec03df
No related branches found
No related tags found
No related merge requests found
AC_REVISION("$Id: configure.in,v 1.556 2001/10/06 20:55:26 grubba Exp $")
AC_REVISION("$Id: configure.in,v 1.557 2001/11/02 14:01:56 jonasw Exp $")
AC_INIT(interpret.c)
AC_CONFIG_HEADER(machine.h)
......@@ -1281,6 +1281,17 @@ if test "$cflags_is_set" = "no"; then
fi
])
DO_IF_OS(Darwin,
[
# aka MacOS X.
# Foundation framework needed by JavaVM.framework. The OS X 10.1 linker
# no longer includes indirect dependencies so we need to add them here.
AC_SYS_COMPILER_FLAG(-framework Foundation, framework_Foundation, LDFLAGS)
# -flat_namespace only needed for linking with libMallocDebug
# AC_SYS_COMPILER_FLAG(-flat_namespace, flat_namespace, LDFLAGS)
])
else if test "x${TCC-}" = xyes ; then
# Yikes! We're using the TenDRA compiler!
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment