OSDN Git Service

2003-01-29 Laurent Guerby <guerby@acm.org>
[pf3gnuchains/gcc-fork.git] / libobjc / configure.in
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 (d.love@dl.ac.uk).
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 dnl Checks for programs.
42
43 # Disable shared libs by default
44 AC_DISABLE_SHARED
45 # Enable Win32 DLL on MS Windows - FIXME 
46 AC_LIBTOOL_WIN32_DLL 
47
48 AC_PROG_LIBTOOL
49
50 dnl These should be inherited in the recursive make, but ensure they are
51 dnl defined:
52 test "$AR" || AR=ar
53 AC_SUBST(AR)
54 if test "$RANLIB"; then :
55   AC_SUBST(RANLIB)
56 else
57   AC_PROG_RANLIB
58 fi
59 AC_PROG_INSTALL
60 AC_PROG_MAKE_SET
61
62 dnl Checks for header files.
63 # Sanity check for the cross-compilation case:
64 AC_CHECK_HEADER(stdio.h,:,
65   [AC_MSG_ERROR([Can't find stdio.h.
66 You must have a usable C system for the target already installed, at least
67 including headers and, preferably, the library, before you can configure
68 the Objective C runtime system.  If necessary, install gcc now with 
69 \`LANGUAGES=c', then the target library, then build with \`LANGUAGES=objc'.])])
70
71 AC_HEADER_STDC
72
73 AC_CHECK_HEADERS(sched.h)
74
75 # Determine CFLAGS for gthread.
76
77 AC_CACHE_CHECK([for gthread cflags],objc_cv_gthread_flags,
78 [if test -f "$r"/gcc/Makefile
79 then
80   objc_cv_gthread_flags=`grep \^GTHREAD_FLAGS "$r"/gcc/Makefile | awk -F= '{ print $2 }'`
81 else
82   AC_MSG_ERROR([not found])
83 fi])
84 GTHREAD_FLAGS=$objc_cv_gthread_flags
85 AC_SUBST(GTHREAD_FLAGS)
86
87 AC_ARG_ENABLE(objc-gc,
88 [  --enable-objc-gc       enable the use of Boehm's garbage collector with
89                           the GNU Objective-C runtime.],
90 if [[[ x$enable_objc_gc = xno ]]]; then
91         OBJC_BOEHM_GC=''
92 else
93         OBJC_BOEHM_GC=libobjc_gc.la
94 fi,
95 OBJC_BOEHM_GC='')
96 AC_SUBST(OBJC_BOEHM_GC)
97
98
99 # We need multilib support, but only if configuring for the target.
100 AC_OUTPUT(Makefile,
101  [test -z "$CONFIG_HEADERS" || echo timestamp > stamp-h
102 if test -n "$CONFIG_FILES"; then
103   if test -n "${with_target_subdir}"; then
104     # FIXME: We shouldn't need to set ac_file
105     ac_file=Makefile
106     LD="${ORIGINAL_LD_FOR_MULTILIBS}"
107     . ${toplevel_srcdir}/config-ml.in
108   fi
109 fi],
110 srcdir=${srcdir}
111 host=${host}
112 target=${target}
113 with_target_subdir=${with_target_subdir}
114 with_multisubdir=${with_multisubdir}
115 ac_configure_args="--enable-multilib ${ac_configure_args}"
116 toplevel_srcdir=${toplevel_srcdir}
117 CONFIG_SHELL=${CONFIG_SHELL-/bin/sh}
118 )
119
120
121 dnl Local Variables:
122 dnl comment-start: "dnl "
123 dnl comment-end: ""
124 dnl comment-start-skip: "\\bdnl\\b\\s *"
125 dnl End: