| 1 | # Process this file with autoconf to produce a configure script.
|
|---|
| 2 | # Copyright (C) 1995, 1997, 1998, 1999, 2002 Free Software Foundation, Inc.
|
|---|
| 3 | # Contributed by Dave Love ([email protected]).
|
|---|
| 4 | #
|
|---|
| 5 | #This file is part of GNU Objective C.
|
|---|
| 6 | #
|
|---|
| 7 | #GNU Objective C is free software; you can redistribute it and/or modify
|
|---|
| 8 | #it under the terms of the GNU General Public License as published by
|
|---|
| 9 | #the Free Software Foundation; either version 2, or (at your option)
|
|---|
| 10 | #any later version.
|
|---|
| 11 | #
|
|---|
| 12 | #GNU Objective C is distributed in the hope that it will be useful,
|
|---|
| 13 | #but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|---|
| 14 | #MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|---|
| 15 | #GNU General Public License for more details.
|
|---|
| 16 | #
|
|---|
| 17 | #You should have received a copy of the GNU General Public License
|
|---|
| 18 | #along with GNU Objective C; see the file COPYING. If not, write to
|
|---|
| 19 | #the Free Software Foundation, 59 Temple Place - Suite 330, Boston, MA
|
|---|
| 20 | #02111-1307, USA.
|
|---|
| 21 |
|
|---|
| 22 | AC_PREREQ(2.13)
|
|---|
| 23 | AC_INIT(objc/objc.h)
|
|---|
| 24 | AC_CONFIG_HEADER(config.h)
|
|---|
| 25 |
|
|---|
| 26 | # This works around the fact that libtool configuration may change LD
|
|---|
| 27 | # for this particular configuration, but some shells, instead of
|
|---|
| 28 | # keeping the changes in LD private, export them just because LD is
|
|---|
| 29 | # exported.
|
|---|
| 30 | ORIGINAL_LD_FOR_MULTILIBS=$LD
|
|---|
| 31 |
|
|---|
| 32 | GLIBCPP_TOPREL_CONFIGURE
|
|---|
| 33 |
|
|---|
| 34 | AC_CANONICAL_SYSTEM
|
|---|
| 35 | target_alias=${target_alias-$target}
|
|---|
| 36 | AC_SUBST(target_alias)
|
|---|
| 37 |
|
|---|
| 38 | GLIBCPP_CONFIGURE(.)
|
|---|
| 39 | GLIBCPP_EXPORT_INSTALL_INFO
|
|---|
| 40 |
|
|---|
| 41 | # If the language specific compiler does not exist, but the "gcc" directory
|
|---|
| 42 | # does, we do not build anything. Note, $r is set by the top-level Makefile.
|
|---|
| 43 | # Note that when we look for the compiler, we search both with and without
|
|---|
| 44 | # extension to handle cross and canadian cross builds.
|
|---|
| 45 | compiler_name=cc1obj
|
|---|
| 46 | rm -f skip-this-dir
|
|---|
| 47 | AC_MSG_CHECKING(if compiler $compiler_name has been built)
|
|---|
| 48 | AC_CACHE_VAL(objc_cv_compiler_exists,
|
|---|
| 49 | [objc_cv_compiler_exists=yes
|
|---|
| 50 | if test -n "$r"; then
|
|---|
| 51 | if test -d "$r"/gcc; then
|
|---|
| 52 | if test -f "$r"/gcc/$compiler_name \
|
|---|
| 53 | || test -f "$r"/gcc/$compiler_name.exe; then
|
|---|
| 54 | true
|
|---|
| 55 | else
|
|---|
| 56 | objc_cv_compiler_exists=no
|
|---|
| 57 | echo "rm -f config.cache config.log multilib.out" > skip-this-dir
|
|---|
| 58 | fi
|
|---|
| 59 | fi
|
|---|
| 60 | fi
|
|---|
| 61 | ])
|
|---|
| 62 | AC_MSG_RESULT($objc_cv_compiler_exists)
|
|---|
| 63 | if test x$objc_cv_compiler_exists = xno
|
|---|
| 64 | then
|
|---|
| 65 | rm -f Makefile conftest* confdefs* core
|
|---|
| 66 | exit 0
|
|---|
| 67 | fi
|
|---|
| 68 |
|
|---|
| 69 | dnl Checks for programs.
|
|---|
| 70 |
|
|---|
| 71 | # Disable shared libs by default
|
|---|
| 72 | AC_DISABLE_SHARED
|
|---|
| 73 | # Enable Win32 DLL on MS Windows - FIXME
|
|---|
| 74 | AC_LIBTOOL_WIN32_DLL
|
|---|
| 75 |
|
|---|
| 76 | AC_PROG_LIBTOOL
|
|---|
| 77 |
|
|---|
| 78 | dnl These should be inherited in the recursive make, but ensure they are
|
|---|
| 79 | dnl defined:
|
|---|
| 80 | test "$AR" || AR=ar
|
|---|
| 81 | AC_SUBST(AR)
|
|---|
| 82 | if test "$RANLIB"; then :
|
|---|
| 83 | AC_SUBST(RANLIB)
|
|---|
| 84 | else
|
|---|
| 85 | AC_PROG_RANLIB
|
|---|
| 86 | fi
|
|---|
| 87 | AC_PROG_INSTALL
|
|---|
| 88 | AC_PROG_MAKE_SET
|
|---|
|
|---|