1998-09-30 04:13:15 +02:00
|
|
|
# Process this file with autoconf to produce a configure script.
|
2002-05-08 06:38:00 +02:00
|
|
|
# Copyright (C) 1995, 1997, 1998, 1999, 2002 Free Software Foundation, Inc.
|
1998-09-30 04:13:15 +02:00
|
|
|
# Contributed by Dave Love (d.love@dl.ac.uk).
|
|
|
|
#
|
|
|
|
#This file is part of GNU Objective C.
|
|
|
|
#
|
|
|
|
#GNU Objective C is free software; you can redistribute it and/or modify
|
|
|
|
#it under the terms of the GNU General Public License as published by
|
|
|
|
#the Free Software Foundation; either version 2, or (at your option)
|
|
|
|
#any later version.
|
|
|
|
#
|
|
|
|
#GNU Objective C is distributed in the hope that it will be useful,
|
|
|
|
#but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
#MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
#GNU General Public License for more details.
|
|
|
|
#
|
|
|
|
#You should have received a copy of the GNU General Public License
|
|
|
|
#along with GNU Objective C; see the file COPYING. If not, write to
|
|
|
|
#the Free Software Foundation, 59 Temple Place - Suite 330, Boston, MA
|
|
|
|
#02111-1307, USA.
|
|
|
|
|
1999-03-24 22:46:41 +01:00
|
|
|
AC_PREREQ(2.13)
|
1998-09-30 10:17:56 +02:00
|
|
|
AC_INIT(objc/objc.h)
|
2000-08-15 09:38:04 +02:00
|
|
|
AC_CONFIG_HEADER(config.h)
|
1998-09-30 04:13:15 +02:00
|
|
|
|
2002-05-08 06:38:00 +02:00
|
|
|
# This works around the fact that libtool configuration may change LD
|
|
|
|
# for this particular configuration, but some shells, instead of
|
|
|
|
# keeping the changes in LD private, export them just because LD is
|
|
|
|
# exported.
|
|
|
|
ORIGINAL_LD_FOR_MULTILIBS=$LD
|
|
|
|
|
2002-06-26 05:53:45 +02:00
|
|
|
GLIBCPP_TOPREL_CONFIGURE
|
|
|
|
|
2002-02-11 19:10:05 +01:00
|
|
|
AC_CANONICAL_SYSTEM
|
|
|
|
target_alias=${target_alias-$target}
|
|
|
|
AC_SUBST(target_alias)
|
|
|
|
|
|
|
|
GLIBCPP_CONFIGURE(.)
|
|
|
|
GLIBCPP_EXPORT_INSTALL_INFO
|
1998-09-30 04:13:15 +02:00
|
|
|
|
1999-03-24 22:46:41 +01:00
|
|
|
# If the language specific compiler does not exist, but the "gcc" directory
|
|
|
|
# does, we do not build anything. Note, $r is set by the top-level Makefile.
|
|
|
|
# Note that when we look for the compiler, we search both with and without
|
|
|
|
# extension to handle cross and canadian cross builds.
|
1998-11-26 02:48:34 +01:00
|
|
|
compiler_name=cc1obj
|
|
|
|
rm -f skip-this-dir
|
|
|
|
AC_MSG_CHECKING(if compiler $compiler_name has been built)
|
|
|
|
AC_CACHE_VAL(objc_cv_compiler_exists,
|
1999-03-24 22:46:41 +01:00
|
|
|
[objc_cv_compiler_exists=yes
|
|
|
|
if test -n "$r"; then
|
|
|
|
if test -d "$r"/gcc; then
|
|
|
|
if test -f "$r"/gcc/$compiler_name \
|
1999-05-20 04:27:28 +02:00
|
|
|
|| test -f "$r"/gcc/$compiler_name.exe; then
|
1999-03-24 22:46:41 +01:00
|
|
|
true
|
|
|
|
else
|
|
|
|
objc_cv_compiler_exists=no
|
|
|
|
echo "rm -f config.cache config.log multilib.out" > skip-this-dir
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
])
|
1998-11-26 02:48:34 +01:00
|
|
|
AC_MSG_RESULT($objc_cv_compiler_exists)
|
|
|
|
if test x$objc_cv_compiler_exists = xno
|
|
|
|
then
|
1999-03-24 22:46:41 +01:00
|
|
|
rm -f Makefile conftest* confdefs* core
|
|
|
|
exit 0
|
1998-11-26 02:48:34 +01:00
|
|
|
fi
|
|
|
|
|
1998-09-30 04:13:15 +02:00
|
|
|
dnl Checks for programs.
|
2001-02-09 08:14:35 +01:00
|
|
|
|
2002-02-11 19:10:05 +01:00
|
|
|
# Disable shared libs by default
|
|
|
|
AC_DISABLE_SHARED
|
|
|
|
# Enable Win32 DLL on MS Windows - FIXME
|
|
|
|
AC_LIBTOOL_WIN32_DLL
|
2001-02-09 08:14:35 +01:00
|
|
|
|
2002-02-11 19:10:05 +01:00
|
|
|
AC_PROG_LIBTOOL
|
1998-09-30 04:13:15 +02:00
|
|
|
|
2002-02-11 19:10:05 +01:00
|
|
|
dnl These should be inherited in the recursive make, but ensure they are
|
|
|
|
dnl defined:
|
1998-09-30 04:13:15 +02:00
|
|
|
test "$AR" || AR=ar
|
|
|
|
AC_SUBST(AR)
|
|
|
|
if test "$RANLIB"; then :
|
|
|
|
AC_SUBST(RANLIB)
|
|
|
|
else
|
|
|
|
AC_PROG_RANLIB
|
|
|
|
fi
|
|
|
|
AC_PROG_INSTALL
|
2002-02-11 19:10:05 +01:00
|
|
|
AC_PROG_MAKE_SET
|
1998-09-30 04:13:15 +02:00
|
|
|
|
|
|
|
dnl Checks for header files.
|
|
|
|
# Sanity check for the cross-compilation case:
|
|
|
|
AC_CHECK_HEADER(stdio.h,:,
|
|
|
|
[AC_MSG_ERROR([Can't find stdio.h.
|
|
|
|
You must have a usable C system for the target already installed, at least
|
|
|
|
including headers and, preferably, the library, before you can configure
|
|
|
|
the Objective C runtime system. If necessary, install gcc now with
|
|
|
|
\`LANGUAGES=c', then the target library, then build with \`LANGUAGES=objc'.])])
|
|
|
|
|
|
|
|
AC_HEADER_STDC
|
|
|
|
|
2000-08-15 09:38:04 +02:00
|
|
|
AC_CHECK_HEADERS(sched.h)
|
|
|
|
|
2000-07-20 09:27:26 +02:00
|
|
|
# Determine CFLAGS for gthread.
|
1998-09-30 04:13:15 +02:00
|
|
|
|
2000-07-20 09:27:26 +02:00
|
|
|
AC_CACHE_CHECK([for gthread cflags],objc_cv_gthread_flags,
|
1999-01-05 01:40:22 +01:00
|
|
|
[if test -f "$r"/gcc/Makefile
|
1998-09-30 04:13:15 +02:00
|
|
|
then
|
2000-07-20 09:27:26 +02:00
|
|
|
objc_cv_gthread_flags=`grep \^GTHREAD_FLAGS "$r"/gcc/Makefile | awk -F= '{ print $2 }'`
|
1998-09-30 04:13:15 +02:00
|
|
|
else
|
|
|
|
AC_MSG_ERROR([not found])
|
|
|
|
fi])
|
2000-07-20 09:27:26 +02:00
|
|
|
GTHREAD_FLAGS=$objc_cv_gthread_flags
|
|
|
|
AC_SUBST(GTHREAD_FLAGS)
|
1998-09-30 04:13:15 +02:00
|
|
|
|
|
|
|
AC_ARG_ENABLE(objc-gc,
|
|
|
|
[ --enable-objc-gc enable the use of Boehm's garbage collector with
|
|
|
|
the GNU Objective-C runtime.],
|
|
|
|
if [[[ x$enable_objc_gc = xno ]]]; then
|
|
|
|
OBJC_BOEHM_GC=''
|
|
|
|
else
|
2000-07-29 21:19:43 +02:00
|
|
|
OBJC_BOEHM_GC=libobjc_gc.la
|
1998-09-30 04:13:15 +02:00
|
|
|
fi,
|
|
|
|
OBJC_BOEHM_GC='')
|
|
|
|
AC_SUBST(OBJC_BOEHM_GC)
|
|
|
|
|
|
|
|
|
|
|
|
# We need multilib support, but only if configuring for the target.
|
|
|
|
AC_OUTPUT(Makefile,
|
2002-02-11 19:10:05 +01:00
|
|
|
[test -z "$CONFIG_HEADERS" || echo timestamp > stamp-h
|
1998-09-30 04:13:15 +02:00
|
|
|
if test -n "$CONFIG_FILES"; then
|
|
|
|
if test -n "${with_target_subdir}"; then
|
|
|
|
# FIXME: We shouldn't need to set ac_file
|
|
|
|
ac_file=Makefile
|
2002-05-08 06:38:00 +02:00
|
|
|
LD="${ORIGINAL_LD_FOR_MULTILIBS}"
|
2002-02-11 19:10:05 +01:00
|
|
|
. ${toplevel_srcdir}/config-ml.in
|
1998-09-30 04:13:15 +02:00
|
|
|
fi
|
|
|
|
fi],
|
|
|
|
srcdir=${srcdir}
|
|
|
|
host=${host}
|
|
|
|
target=${target}
|
|
|
|
with_target_subdir=${with_target_subdir}
|
|
|
|
with_multisubdir=${with_multisubdir}
|
|
|
|
ac_configure_args="--enable-multilib ${ac_configure_args}"
|
2002-02-11 19:10:05 +01:00
|
|
|
toplevel_srcdir=${toplevel_srcdir}
|
1998-09-30 04:13:15 +02:00
|
|
|
CONFIG_SHELL=${CONFIG_SHELL-/bin/sh}
|
|
|
|
)
|
|
|
|
|
2002-02-11 19:10:05 +01:00
|
|
|
|
1998-09-30 04:13:15 +02:00
|
|
|
dnl Local Variables:
|
|
|
|
dnl comment-start: "dnl "
|
|
|
|
dnl comment-end: ""
|
|
|
|
dnl comment-start-skip: "\\bdnl\\b\\s *"
|
|
|
|
dnl End:
|