blob: f7f7ef718bee171c936ebe0b9e91b54c52d6ed29 [file] [log] [blame]
Guido van Rossum76be6ed1995-01-02 18:33:54 +00001dnl Process this file with autoconf 2.0 or later to make a configure script.
2AC_REVISION($Revision$)
3AC_PREREQ(2.0)
Guido van Rossum6085e321993-12-26 18:24:40 +00004AC_INIT(Include/object.h)
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +00005AC_CONFIG_HEADER(pyconfig.h)
Guido van Rossum627b2d71993-12-24 10:39:16 +00006
Guido van Rossum642b6781997-07-19 19:35:41 +00007# Set VERSION so we only need to edit in one place (i.e., here)
8AC_SUBST(VERSION)
Guido van Rossum6db412b2001-04-18 04:37:57 +00009VERSION=2.2
Guido van Rossum642b6781997-07-19 19:35:41 +000010
Neil Schemenauer4edbc2a2001-03-22 00:34:03 +000011# Arguments passed to configure.
12AC_SUBST(CONFIG_ARGS)
13CONFIG_ARGS="$ac_configure_args"
14
Guido van Rossum4b6b5791996-09-09 20:09:34 +000015
Jack Jansenb6e9cad2001-08-15 01:26:28 +000016AC_ARG_ENABLE(framework,
17[ --enable-framework[=INSTALLDIR] Build (MacOSX|Darwin) framework],[
Jack Jansenb6e9cad2001-08-15 01:26:28 +000018 case $enableval in
19 yes)
20 enableval=/Library/Frameworks
Jack Jansen127e56e2001-09-11 14:41:54 +000021 esac
22 case $enableval in
23 no)
24 PYTHONFRAMEWORK=
25 PYTHONFRAMEWORKDIR=no-framework
26 PYTHONFRAMEWORKPREFIX=
27 PYTHONFRAMEWORKINSTALLDIR=
28 enable_framework=
Jack Jansenb6e9cad2001-08-15 01:26:28 +000029 ;;
30 *)
Jack Jansen127e56e2001-09-11 14:41:54 +000031 PYTHONFRAMEWORK=Python
32 PYTHONFRAMEWORKDIR=Python.framework
Jack Jansenb6e9cad2001-08-15 01:26:28 +000033 PYTHONFRAMEWORKPREFIX=$enableval
Jack Jansen127e56e2001-09-11 14:41:54 +000034 PYTHONFRAMEWORKINSTALLDIR=$PYTHONFRAMEWORKPREFIX/$PYTHONFRAMEWORKDIR
35 prefix=$PYTHONFRAMEWORKINSTALLDIR/Versions/$VERSION
Jack Jansenb6e9cad2001-08-15 01:26:28 +000036 esac
Jack Jansenb6e9cad2001-08-15 01:26:28 +000037 ],[
38 PYTHONFRAMEWORK=
Jack Jansen127e56e2001-09-11 14:41:54 +000039 PYTHONFRAMEWORKDIR=no-framework
Jack Jansenb6e9cad2001-08-15 01:26:28 +000040 PYTHONFRAMEWORKPREFIX=
41 PYTHONFRAMEWORKINSTALLDIR=
42 enable_framework=
43])
44AC_SUBST(PYTHONFRAMEWORK)
45AC_SUBST(PYTHONFRAMEWORKDIR)
46AC_SUBST(PYTHONFRAMEWORKPREFIX)
47AC_SUBST(PYTHONFRAMEWORKINSTALLDIR)
Guido van Rossum4b6b5791996-09-09 20:09:34 +000048
Jack Jansenb6e9cad2001-08-15 01:26:28 +000049##AC_ARG_WITH(dyld,
50##[ --with-dyld Use (OpenStep|Rhapsody) dynamic linker],,)
51##
Guido van Rossumb418f891996-07-30 18:06:02 +000052# Set name for machine-dependent library files
53AC_SUBST(MACHDEP)
54AC_MSG_CHECKING(MACHDEP)
55if test -z "$MACHDEP"
56then
Guido van Rossum4b6b5791996-09-09 20:09:34 +000057 ac_sys_system=`uname -s`
Martin v. Löwis130fb172001-07-19 11:00:41 +000058 if test "$ac_sys_system" = "AIX" -o "$ac_sys_system" = "Monterey64"; then
Guido van Rossum4b6b5791996-09-09 20:09:34 +000059 ac_sys_release=`uname -v`
Guido van Rossumb418f891996-07-30 18:06:02 +000060 else
Guido van Rossum4b6b5791996-09-09 20:09:34 +000061 ac_sys_release=`uname -r`
Guido van Rossumb418f891996-07-30 18:06:02 +000062 fi
Guido van Rossum4b6b5791996-09-09 20:09:34 +000063 ac_md_system=`echo $ac_sys_system |
64 tr -d '[/ ]' | tr '[[A-Z]]' '[[a-z]]'`
65 ac_md_release=`echo $ac_sys_release |
66 tr -d '[/ ]' | sed 's/\..*//'`
Guido van Rossumb97ef171997-09-28 05:44:03 +000067 MACHDEP="$ac_md_system$ac_md_release"
Guido van Rossum4b6b5791996-09-09 20:09:34 +000068
Guido van Rossumbcd91e01997-03-20 20:46:29 +000069 case $MACHDEP in
Andrew M. Kuchling5a3e4cb2001-07-20 19:29:04 +000070 cygwin*) MACHDEP="cygwin";;
Guido van Rossumb97ef171997-09-28 05:44:03 +000071 '') MACHDEP="unknown";;
Guido van Rossumb418f891996-07-30 18:06:02 +000072 esac
73fi
Guido van Rossum91922671997-10-09 20:24:13 +000074
75#
76# SGI compilers allow the specification of the both the ABI and the
77# ISA on the command line. Depending on the values of these switches,
78# different and often incompatable code will be generated.
79#
80# The SGI_ABI variable can be used to modify the CC and LDFLAGS and
81# thus supply support for various ABI/ISA combinations. The MACHDEP
82# variable is also adjusted.
83#
84AC_SUBST(SGI_ABI)
85if test ! -z "$SGI_ABI"
86then
87 CC="cc $SGI_ABI"
88 LDFLAGS="$SGI_ABI $LDFLAGS"
89 MACHDEP=`echo "${MACHDEP}${SGI_ABI}" | sed 's/ *//g'`
90fi
Guido van Rossumb418f891996-07-30 18:06:02 +000091AC_MSG_RESULT($MACHDEP)
92
Guido van Rossum627b2d71993-12-24 10:39:16 +000093# checks for alternative programs
Guido van Rossum5739e7e1995-01-20 16:50:53 +000094AC_MSG_CHECKING(for --without-gcc)
Barry Warsawc0d24d8b2000-06-29 16:12:00 +000095AC_ARG_WITH(gcc, [ --without-gcc never use gcc], [
Guido van Rossum433c8ad1994-08-01 12:07:07 +000096 case $withval in
Guido van Rossum5739e7e1995-01-20 16:50:53 +000097 no) CC=cc
98 without_gcc=yes;;
99 yes) CC=gcc
100 without_gcc=no;;
101 *) CC=$withval
102 without_gcc=$withval;;
Guido van Rossum55a214e1995-09-13 17:48:09 +0000103 esac], [
Guido van Rossumb418f891996-07-30 18:06:02 +0000104 case $ac_sys_system in
Neil Schemenauerb3531b82001-02-16 04:09:05 +0000105 AIX*) CC=cc_r
106 without_gcc=;;
Guido van Rossum7a5f4201999-01-12 20:30:23 +0000107 BeOS*)
Guido van Rossum7a5f4201999-01-12 20:30:23 +0000108 case $BE_HOST_CPU in
109 ppc)
Fred Drake5790be12000-10-09 17:06:13 +0000110 CC=mwcc
Guido van Rossum7a5f4201999-01-12 20:30:23 +0000111 without_gcc=yes
Fred Drake5790be12000-10-09 17:06:13 +0000112 OPT="-O -D'DL_EXPORT(RTYPE)=__declspec(dllexport) RTYPE' -D'DL_IMPORT(RTYPE)=__declspec(dllexport) RTYPE' -export pragma"
Neil Schemenauerb3531b82001-02-16 04:09:05 +0000113 CCSHARED="-UDL_IMPORT -D'DL_IMPORT(RTYPE)=__declspec(dllimport) RTYPE'"
Guido van Rossum7a5f4201999-01-12 20:30:23 +0000114 LDFLAGS="$LDFLAGS -nodup"
Guido van Rossum7a5f4201999-01-12 20:30:23 +0000115 ;;
116 x86)
Fred Drake5790be12000-10-09 17:06:13 +0000117 CC=gcc
Guido van Rossum7a5f4201999-01-12 20:30:23 +0000118 without_gcc=no
Fred Drake5790be12000-10-09 17:06:13 +0000119 OPT=-O
Guido van Rossum7a5f4201999-01-12 20:30:23 +0000120 ;;
121 *)
Fred Drake5790be12000-10-09 17:06:13 +0000122 AC_ERROR(Unknown BeOS platform \"$BE_HOST_CPU\")
Guido van Rossum7a5f4201999-01-12 20:30:23 +0000123 ;;
124 esac
Neil Schemenauerb3531b82001-02-16 04:09:05 +0000125 AR="\$(srcdir)/Modules/ar_beos"
126 RANLIB=:
Guido van Rossum7a5f4201999-01-12 20:30:23 +0000127 ;;
Trent Mick635f6fb2000-08-23 21:33:05 +0000128 Monterey*)
129 RANLIB=:
Martin v. Löwis130fb172001-07-19 11:00:41 +0000130 without_gcc=;;
131 *) without_gcc=no;;
Guido van Rossum55a214e1995-09-13 17:48:09 +0000132 esac])
Guido van Rossum5739e7e1995-01-20 16:50:53 +0000133AC_MSG_RESULT($without_gcc)
134
Guido van Rossum27552902001-01-23 01:52:26 +0000135AC_SUBST(CXX)
Guido van Rossum95012191999-12-16 17:50:52 +0000136AC_SUBST(MAINOBJ)
Fred Drakea1a84e72001-03-06 05:52:16 +0000137MAINOBJ=python.o
Guido van Rossum95012191999-12-16 17:50:52 +0000138AC_MSG_CHECKING(for --with-cxx=<compiler>)
Barry Warsawc0d24d8b2000-06-29 16:12:00 +0000139AC_ARG_WITH(cxx, [ --with-cxx=<compiler> enable C++ support],[
Martin v. Löwis537970f2000-12-13 17:37:02 +0000140 check_cxx=no
Guido van Rossum95012191999-12-16 17:50:52 +0000141 case $withval in
142 no) CXX=
143 with_cxx=no;;
144 *) CXX=$withval
Fred Drakea1a84e72001-03-06 05:52:16 +0000145 MAINOBJ=ccpython.o
Guido van Rossum95012191999-12-16 17:50:52 +0000146 with_cxx=$withval;;
147 esac], [
148 with_cxx=no
Martin v. Löwis537970f2000-12-13 17:37:02 +0000149 check_cxx=yes
Guido van Rossum95012191999-12-16 17:50:52 +0000150])
151AC_MSG_RESULT($with_cxx)
Martin v. Löwis537970f2000-12-13 17:37:02 +0000152
153dnl The following fragment works similar to AC_PROG_CXX.
154dnl It does not fail if CXX is not found, and it is not executed if
155dnl --with-cxx was given.
156dnl Finally, it does not test whether CXX is g++.
157
158if test "$check_cxx" = "yes"
159then
160 AC_CHECK_PROGS(CXX, $CCC c++ g++ gcc CC cxx cc++ cl, notfound)
161 if test "$CXX" = "notfound"
162 then
163 CXX=
164 else
165 AC_PROG_CXX_WORKS
166 fi
167fi
168
Guido van Rossum03ad99f1995-03-09 14:09:54 +0000169# If the user switches compilers, we can't believe the cache
170if test ! -z "$ac_cv_prog_CC" -a ! -z "$CC" -a "$CC" != "$ac_cv_prog_CC"
171then
172 AC_ERROR(cached CC is different -- throw away $cache_file
173(it is also a good idea to do 'make clean' before compiling))
174fi
175
Guido van Rossum627b2d71993-12-24 10:39:16 +0000176AC_PROG_CC
Martin v. Löwis1d5ecb72001-08-09 10:29:44 +0000177
178# checks for UNIX variants that set C preprocessor variables
179AC_AIX
180AC_MINIX
181
Neil Schemenauer55f0cf32001-01-24 17:24:33 +0000182AC_EXEEXT
Neil Schemenauer3ae1d0a2001-01-27 06:54:42 +0000183AC_MSG_CHECKING(for --with-suffix)
184AC_ARG_WITH(suffix, [ --with-suffix=.exe set executable suffix],[
185 case $withval in
186 no) EXEEXT=;;
187 yes) EXEEXT=.exe;;
188 *) EXEEXT=$withval;;
189 esac])
190AC_MSG_RESULT($EXEEXT)
Jack Jansen9a66b6d2001-08-08 13:56:14 +0000191# Test whether we're running on a non-case-sensitive system, in which
192# case we give a warning if no ext is given
193if test -d "python" -a -z "$EXEEXT"
194then
195 AC_MSG_WARN(This filesystem is not case-sensitive so you should probably use --with-suffix)
196fi
Guido van Rossumfb842551997-08-06 23:42:07 +0000197
Guido van Rossumdd997f71998-10-07 19:58:26 +0000198case $MACHDEP in
199bsdos*)
200 case $CC in
201 gcc) CC="$CC -D_HAVE_BSDI";;
202 esac;;
203esac
204
Guido van Rossum84561611997-08-21 00:08:11 +0000205case $ac_sys_system in
206hp*|HP*)
207 case $CC in
Guido van Rossumcd5ff9f2000-09-22 16:15:54 +0000208 cc|*/cc) CC="$CC -Ae";;
Guido van Rossum84561611997-08-21 00:08:11 +0000209 esac;;
Trent Mick635f6fb2000-08-23 21:33:05 +0000210Monterey*)
211 case $CC in
212 cc) CC="$CC -Wl,-Bexport";;
213 esac;;
Martin v. Löwise8964d42001-03-06 12:09:07 +0000214SunOS*)
215 # Some functions have a prototype only with that define, e.g. confstr
216 AC_DEFINE(__EXTENSIONS__)
217 ;;
Guido van Rossum84561611997-08-21 00:08:11 +0000218esac
219
Martin v. Löwise8964d42001-03-06 12:09:07 +0000220
Neil Schemenauer61c51152001-01-26 16:18:16 +0000221AC_SUBST(LIBRARY)
222AC_MSG_CHECKING(LIBRARY)
223if test -z "$LIBRARY"
224then
225 LIBRARY='libpython$(VERSION).a'
226fi
227AC_MSG_RESULT($LIBRARY)
228
Guido van Rossum54ecc3d1999-01-27 17:53:11 +0000229# LDLIBRARY is the name of the library to link against (as opposed to the
Jack Jansenb6e9cad2001-08-15 01:26:28 +0000230# name of the library into which to insert object files). BLDLIBRARY is also
231# the library to link against, usually. On Mac OS X frameworks, BLDLIBRARY
232# is blank as the main program is not linked directly against LDLIBRARY.
233# LDLIBRARYDIR is the path to LDLIBRARY, which is made in a subdirectory. On
234# systems without shared libraries, LDLIBRARY is the same as LIBRARY
235# (defined in the Makefiles). On Cygwin LDLIBRARY is the import library,
236# DLLLIBRARY is the shared (i.e., DLL) library.
237#
Guido van Rossum54ecc3d1999-01-27 17:53:11 +0000238AC_SUBST(LDLIBRARY)
Guido van Rossum27552902001-01-23 01:52:26 +0000239AC_SUBST(DLLLIBRARY)
Jack Jansenb6e9cad2001-08-15 01:26:28 +0000240AC_SUBST(BLDLIBRARY)
241AC_SUBST(LDLIBRARYDIR)
Neil Schemenauer61c51152001-01-26 16:18:16 +0000242LDLIBRARY="$LIBRARY"
Jack Jansenb6e9cad2001-08-15 01:26:28 +0000243BLDLIBRARY='$(LDLIBRARY)'
Guido van Rossum27552902001-01-23 01:52:26 +0000244DLLLIBRARY=''
Jack Jansenb6e9cad2001-08-15 01:26:28 +0000245LDLIBRARYDIR=''
Guido van Rossum54ecc3d1999-01-27 17:53:11 +0000246
Guido van Rossumfb842551997-08-06 23:42:07 +0000247# LINKCC is the command that links the python executable -- default is $(CC).
Fred Drake5790be12000-10-09 17:06:13 +0000248# This is altered for AIX in order to build the export list before
Guido van Rossumec95c7b1998-08-04 17:59:56 +0000249# linking.
Guido van Rossumfb842551997-08-06 23:42:07 +0000250AC_SUBST(LINKCC)
251AC_MSG_CHECKING(LINKCC)
252if test -z "$LINKCC"
253then
254 case $ac_sys_system in
255 AIX*)
Neil Schemenauerb3531b82001-02-16 04:09:05 +0000256 LINKCC="\$(srcdir)/Modules/makexp_aix Modules/python.exp \"\" \$(LIBRARY); \$(PURIFY) \$(CC)";;
Guido van Rossum3c4bb801997-12-18 23:55:32 +0000257 dgux*)
258 LINKCC="LD_RUN_PATH=$libdir \$(PURIFY) \$(CC)";;
Trent Mick635f6fb2000-08-23 21:33:05 +0000259 Monterey64*)
260 LINKCC="\$(PURIFY) \$(CC) -L/usr/lib/ia64l64";;
Guido van Rossum25f93031997-08-18 16:00:04 +0000261 *) LINKCC="\$(PURIFY) \$(CC)";;
Guido van Rossumfb842551997-08-06 23:42:07 +0000262 esac
263fi
264AC_MSG_RESULT($LINKCC)
265
Guido van Rossum54ecc3d1999-01-27 17:53:11 +0000266AC_MSG_CHECKING(LDLIBRARY)
267
Guido van Rossum54ecc3d1999-01-27 17:53:11 +0000268# DG/UX requires some fancy ld contortions to produce a .so from an .a
Fred Drake5790be12000-10-09 17:06:13 +0000269case $MACHDEP in
270dguxR4)
271 LDLIBRARY='libpython$(VERSION).so'
272 OPT="$OPT -pic"
273 ;;
274beos*)
275 LDLIBRARY='libpython$(VERSION).so'
276 ;;
Guido van Rossumaef734b2001-01-10 21:09:12 +0000277cygwin*)
278 LDLIBRARY='libpython$(VERSION).dll.a'
Neil Schemenauer55f0cf32001-01-24 17:24:33 +0000279 DLLLIBRARY='libpython$(VERSION).dll'
Guido van Rossumaef734b2001-01-10 21:09:12 +0000280 ;;
Fred Drake5790be12000-10-09 17:06:13 +0000281esac
Jack Jansenb6e9cad2001-08-15 01:26:28 +0000282
Guido van Rossumb8552162001-09-05 14:58:11 +0000283# MacOSX framework builds need more magic. LDLIBRARY is the dynamic
284# library that we build, but we do not want to link against it (we
285# will find it with a -framework option). For this reason there is an
286# extra variable BLDLIBRARY against which Python and the extension
287# modules are linked, BLDLIBRARY. This is normally the same as
288# LDLIBRARY, but empty for MacOSX framework builds.
Jack Jansenb6e9cad2001-08-15 01:26:28 +0000289if test "$enable_framework"
290then
291 LDLIBRARY='$(PYTHONFRAMEWORKDIR)/Versions/$(VERSION)/$(PYTHONFRAMEWORK)'
292 LDLIBRARYDIR='$(PYTHONFRAMEWORKDIR)'
293 BLDLIBRARY=''
294else
295 BLDLIBRARY='$(LDLIBRARY)'
296fi
297
Guido van Rossum54ecc3d1999-01-27 17:53:11 +0000298AC_MSG_RESULT($LDLIBRARY)
299
Guido van Rossum627b2d71993-12-24 10:39:16 +0000300AC_PROG_RANLIB
Guido van Rossum433c8ad1994-08-01 12:07:07 +0000301AC_SUBST(AR)
Guido van Rossum76be6ed1995-01-02 18:33:54 +0000302AC_CHECK_PROGS(AR, ar aal, ar)
Neil Schemenauera42c8272001-03-31 00:01:55 +0000303
304case $MACHDEP in
305bsdos*)
306 # install -d does not work on BSDI
307 if test -z "$INSTALL"
308 then
309 INSTALL="${srcdir}/install-sh -c"
310 fi
311esac
Neil Schemenauer55f0cf32001-01-24 17:24:33 +0000312AC_PROG_INSTALL
Guido van Rossumb418f891996-07-30 18:06:02 +0000313
Guido van Rossumec95c7b1998-08-04 17:59:56 +0000314# Not every filesystem supports hard links
315AC_SUBST(LN)
316if test -z "$LN" ; then
317 case $ac_sys_system in
318 BeOS*) LN="ln -s";;
Guido van Rossumaef734b2001-01-10 21:09:12 +0000319 CYGWIN*) LN="ln -s";;
Guido van Rossumec95c7b1998-08-04 17:59:56 +0000320 *) LN=ln;;
321 esac
322fi
323
Fred Drake9f715822001-07-11 06:27:00 +0000324# Check for --with-pydebug
325AC_MSG_CHECKING(for --with-pydebug)
326AC_ARG_WITH(pydebug,
327[ --with-pydebug build with Py_DEBUG defined], [
328if test "$withval" != no
329then AC_DEFINE(Py_DEBUG) AC_MSG_RESULT(yes); Py_DEBUG='true'
330else AC_MSG_RESULT(no); Py_DEBUG='false'
331fi],
332[AC_MSG_RESULT(no)])
333
Neil Schemenauer55f0cf32001-01-24 17:24:33 +0000334# Optimizer/debugger flags
Guido van Rossumb418f891996-07-30 18:06:02 +0000335AC_SUBST(OPT)
Guido van Rossum4e8af441994-08-19 15:33:54 +0000336if test -z "$OPT"
Guido van Rossumb418f891996-07-30 18:06:02 +0000337then
Guido van Rossumb5875b61997-07-18 23:29:09 +0000338 case $GCC in
339 yes)
340 case $ac_cv_prog_cc_g in
Guido van Rossum2242f2f2001-04-11 20:58:20 +0000341 yes)
Fred Drake9f715822001-07-11 06:27:00 +0000342 if test "$Py_DEBUG" = 'true' ; then
343 # Optimization messes up debuggers, so turn it off for
344 # debug builds.
345 OPT="-g -Wall -Wstrict-prototypes"
346 else
347 OPT="-g -O3 -Wall -Wstrict-prototypes"
348 fi;;
Guido van Rossum2242f2f2001-04-11 20:58:20 +0000349 *)
Fred Drake9f715822001-07-11 06:27:00 +0000350 OPT="-O3 -Wall -Wstrict-prototypes";;
351 esac
352 ;;
Guido van Rossum2242f2f2001-04-11 20:58:20 +0000353 *)
354 case $ac_sys_system in
Martin v. Löwis25ae43b2001-10-07 08:39:18 +0000355 OpenUNIX*|UnixWare*)
Guido van Rossum2242f2f2001-04-11 20:58:20 +0000356 OPT="-O -K pentium,host,inline,loop_unroll,alloca ";;
357 *)
358 OPT="-O";;
Guido van Rossumb418f891996-07-30 18:06:02 +0000359 esac
Guido van Rossum2242f2f2001-04-11 20:58:20 +0000360 esac
Jack Jansenca06bc62001-08-03 15:32:23 +0000361 case $ac_sys_system in
362 Darwin*)
363 OPT="$OPT -no-cpp-precomp";;
364 esac
Guido van Rossum4e8af441994-08-19 15:33:54 +0000365fi
Guido van Rossum627b2d71993-12-24 10:39:16 +0000366
Trent Mick635f6fb2000-08-23 21:33:05 +0000367# The current (beta) Monterey compiler dies with optimizations
368case $ac_sys_system in
369Monterey*) OPT="";;
370esac
371
Guido van Rossum6f2260e1996-09-09 16:21:03 +0000372if test "$ac_arch_flags"
Guido van Rossumc5a39031996-07-31 17:35:03 +0000373then
374 OPT="$OPT $ac_arch_flags"
375fi
Guido van Rossum5739e7e1995-01-20 16:50:53 +0000376
Guido van Rossum91922671997-10-09 20:24:13 +0000377AC_MSG_CHECKING(whether $CC accepts -OPT:Olimit=0)
378AC_CACHE_VAL(ac_cv_opt_olimit_ok,
379[ac_save_cc="$CC"
380CC="$CC -OPT:Olimit=0"
381AC_TRY_RUN([int main() { return 0; }],
382 ac_cv_opt_olimit_ok=yes,
Guido van Rossum3065c942001-09-17 04:03:14 +0000383 ac_cv_opt_olimit_ok=no,
Guido van Rossum91922671997-10-09 20:24:13 +0000384 ac_cv_opt_olimit_ok=no)
385CC="$ac_save_cc"])
386AC_MSG_RESULT($ac_cv_opt_olimit_ok)
Guido van Rossum2efa34b1997-10-23 17:43:11 +0000387if test $ac_cv_opt_olimit_ok = yes; then
Guido van Rossum5839e582000-10-09 19:52:35 +0000388 case $ac_sys_system in
389 Darwin*) OPT="$OPT" ;;
390 *) OPT="$OPT -OPT:Olimit=0";;
391 esac
Guido van Rossumf8678121998-07-07 21:05:09 +0000392else
393 AC_MSG_CHECKING(whether $CC accepts -Olimit 1500)
394 AC_CACHE_VAL(ac_cv_olimit_ok,
395 [ac_save_cc="$CC"
396 CC="$CC -Olimit 1500"
397 AC_TRY_RUN([int main() { return 0; }],
398 ac_cv_olimit_ok=yes,
Guido van Rossum3065c942001-09-17 04:03:14 +0000399 ac_cv_olimit_ok=no,
Guido van Rossumf8678121998-07-07 21:05:09 +0000400 ac_cv_olimit_ok=no)
401 CC="$ac_save_cc"])
402 AC_MSG_RESULT($ac_cv_olimit_ok)
403 if test $ac_cv_olimit_ok = yes; then
404 OPT="$OPT -Olimit 1500"
405 fi
Guido van Rossum201afe51997-05-14 21:14:44 +0000406fi
Guido van Rossumf8678121998-07-07 21:05:09 +0000407
Martin v. Löwis130fb172001-07-19 11:00:41 +0000408# -Kpthread, if available, provides the right #defines
409# and linker options to make pthread_create available
Martin v. Löwis260aecc2001-10-07 08:14:41 +0000410# Some compilers won't report that they do not support -Kpthread,
411# so we need to run a program to see whether it really made the
412# function available.
Martin v. Löwis130fb172001-07-19 11:00:41 +0000413AC_MSG_CHECKING(whether $CC accepts -Kpthread)
414AC_CACHE_VAL(ac_cv_kpthread,
415[ac_save_cc="$CC"
416CC="$CC -Kpthread"
Martin v. Löwis260aecc2001-10-07 08:14:41 +0000417AC_TRY_RUN([
418#include <pthread.h>
419
420void* routine(void* p){return NULL;}
421
422int main(){
423 pthread_t p;
424 if(pthread_create(&p,NULL,routine,NULL)!=0)
425 return 1;
426 return 0;
427}
428],
Martin v. Löwis130fb172001-07-19 11:00:41 +0000429 ac_cv_kpthread=yes,
Martin v. Löwis260aecc2001-10-07 08:14:41 +0000430 ac_cv_kpthread=no,
Martin v. Löwis130fb172001-07-19 11:00:41 +0000431 ac_cv_kpthread=no)
432CC="$ac_save_cc"])
Martin v. Löwis130fb172001-07-19 11:00:41 +0000433AC_MSG_RESULT($ac_cv_kpthread)
434
Fred Drakece81d592000-07-09 14:39:29 +0000435dnl # check for ANSI or K&R ("traditional") preprocessor
436dnl AC_MSG_CHECKING(for C preprocessor type)
437dnl AC_TRY_COMPILE([
438dnl #define spam(name, doc) {#name, &name, #name "() -- " doc}
439dnl int foo;
440dnl struct {char *name; int *addr; char *doc;} desc = spam(foo, "something");
441dnl ], [;], cpp_type=ansi, AC_DEFINE(HAVE_OLD_CPP) cpp_type=traditional)
442dnl AC_MSG_RESULT($cpp_type)
Guido van Rossum300fda71996-08-19 21:58:16 +0000443
Guido van Rossum627b2d71993-12-24 10:39:16 +0000444# checks for header files
Guido van Rossum76be6ed1995-01-02 18:33:54 +0000445AC_HEADER_STDC
Martin v. Löwis9b75dca2001-08-10 13:58:50 +0000446AC_CHECK_HEADERS(dlfcn.h fcntl.h limits.h langinfo.h locale.h \
447ncurses.h poll.h pthread.h \
Eric S. Raymond13603592001-01-16 15:01:26 +0000448signal.h stdarg.h stddef.h stdlib.h thread.h unistd.h utime.h termios.h \
Fred Drake2ca5f3b2001-05-11 16:10:56 +0000449sys/audioio.h sys/file.h sys/lock.h sys/modem.h db_185.h db.h \
Andrew M. Kuchling881fd902001-07-14 20:55:52 +0000450sys/param.h sys/poll.h sys/select.h sys/socket.h sys/time.h sys/times.h \
Fred Drakeae90f8d2000-09-15 03:38:12 +0000451sys/un.h sys/utsname.h sys/wait.h pty.h libutil.h \
Martin v. Löwis1ba3fd52001-08-10 20:29:40 +0000452ndbm.h db1/ndbm.h gdbm/ndbm.h sys/resource.h netpacket/packet.h)
Guido van Rossum76be6ed1995-01-02 18:33:54 +0000453AC_HEADER_DIRENT
Guido van Rossum627b2d71993-12-24 10:39:16 +0000454
455# checks for typedefs
Guido van Rossum5739e7e1995-01-20 16:50:53 +0000456was_it_defined=no
457AC_MSG_CHECKING(for clock_t in time.h)
458AC_EGREP_HEADER(clock_t, time.h, was_it_defined=yes, AC_DEFINE(clock_t, long))
459AC_MSG_RESULT($was_it_defined)
460
Guido van Rossum810cc512001-09-09 23:51:39 +0000461# Two defines needed to enable largefile support on various platforms
462# These may affect some typedefs
463AC_DEFINE(_LARGEFILE_SOURCE)
464AC_DEFINE(_FILE_OFFSET_BITS, 64)
465
Guido van Rossum300fda71996-08-19 21:58:16 +0000466# Add some code to confdefs.h so that the test for off_t works on SCO
467cat >> confdefs.h <<\EOF
468#if defined(SCO_DS)
469#undef _OFF_T
470#endif
471EOF
472
Guido van Rossumef2255b2000-03-10 22:30:29 +0000473# Type availability checks
Guido van Rossum76be6ed1995-01-02 18:33:54 +0000474AC_TYPE_MODE_T
475AC_TYPE_OFF_T
476AC_TYPE_PID_T
477AC_TYPE_SIGNAL
478AC_TYPE_SIZE_T
479AC_TYPE_UID_T
Guido van Rossum627b2d71993-12-24 10:39:16 +0000480
Guido van Rossumef2255b2000-03-10 22:30:29 +0000481# Sizes of various common basic types
Guido van Rossum3065c942001-09-17 04:03:14 +0000482AC_CHECK_SIZEOF(int, 4)
483AC_CHECK_SIZEOF(long, 4)
484AC_CHECK_SIZEOF(void *, 4)
485AC_CHECK_SIZEOF(char, 1)
486AC_CHECK_SIZEOF(short, 2)
487AC_CHECK_SIZEOF(float, 4)
488AC_CHECK_SIZEOF(double, 8)
489AC_CHECK_SIZEOF(fpos_t, 4)
Guido van Rossumac405f61994-09-12 10:56:06 +0000490
Guido van Rossumec95c7b1998-08-04 17:59:56 +0000491AC_MSG_CHECKING(for long long support)
492have_long_long=no
493AC_TRY_COMPILE([], [long long x; x = (long long)0;], AC_DEFINE(HAVE_LONG_LONG) have_long_long=yes)
494AC_MSG_RESULT($have_long_long)
Guido van Rossum8bc1dfd1999-04-10 16:01:48 +0000495if test "$have_long_long" = yes ; then
Guido van Rossum3065c942001-09-17 04:03:14 +0000496AC_CHECK_SIZEOF(long long, 8)
Guido van Rossumec95c7b1998-08-04 17:59:56 +0000497fi
498
Barry Warsawbc7c7f92000-08-18 04:53:33 +0000499AC_MSG_CHECKING(for uintptr_t support)
500have_uintptr_t=no
501AC_TRY_COMPILE([], [uintptr_t x; x = (uintptr_t)0;], AC_DEFINE(HAVE_UINTPTR_T) have_uintptr_t=yes)
502AC_MSG_RESULT($have_uintptr_t)
503if test "$have_uintptr_t" = yes ; then
Guido van Rossum3065c942001-09-17 04:03:14 +0000504AC_CHECK_SIZEOF(uintptr_t, 4)
Barry Warsawbc7c7f92000-08-18 04:53:33 +0000505fi
506
Guido van Rossum00f0f6e1999-01-06 18:52:29 +0000507# Hmph. AC_CHECK_SIZEOF() doesn't include <sys/types.h>.
508AC_MSG_CHECKING(size of off_t)
509AC_CACHE_VAL(ac_cv_sizeof_off_t,
510[AC_TRY_RUN([#include <stdio.h>
511#include <sys/types.h>
512main()
513{
514 FILE *f=fopen("conftestval", "w");
515 if (!f) exit(1);
516 fprintf(f, "%d\n", sizeof(off_t));
517 exit(0);
Guido van Rossum3065c942001-09-17 04:03:14 +0000518}],
519ac_cv_sizeof_off_t=`cat conftestval`,
520ac_cv_sizeof_off_t=0,
521ac_cv_sizeof_off_t=4)
Guido van Rossum00f0f6e1999-01-06 18:52:29 +0000522])
523AC_MSG_RESULT($ac_cv_sizeof_off_t)
524AC_DEFINE_UNQUOTED(SIZEOF_OFF_T, $ac_cv_sizeof_off_t)
525
526AC_MSG_CHECKING(whether to enable large file support)
Guido van Rossum8bc1dfd1999-04-10 16:01:48 +0000527if test "$have_long_long" = yes -a \
528 "$ac_cv_sizeof_off_t" -gt "$ac_cv_sizeof_long" -a \
529 "$ac_cv_sizeof_long_long" -ge "$ac_cv_sizeof_off_t"; then
Guido van Rossum00f0f6e1999-01-06 18:52:29 +0000530 AC_DEFINE(HAVE_LARGEFILE_SUPPORT)
531 AC_MSG_RESULT(yes)
532else
533 AC_MSG_RESULT(no)
534fi
535
Fred Drakea3f6e912000-06-29 20:44:47 +0000536# AC_CHECK_SIZEOF() doesn't include <time.h>.
537AC_MSG_CHECKING(size of time_t)
538AC_CACHE_VAL(ac_cv_sizeof_time_t,
539[AC_TRY_RUN([#include <stdio.h>
540#include <time.h>
541main()
542{
543 FILE *f=fopen("conftestval", "w");
544 if (!f) exit(1);
545 fprintf(f, "%d\n", sizeof(time_t));
546 exit(0);
Guido van Rossum3065c942001-09-17 04:03:14 +0000547}],
548ac_cv_sizeof_time_t=`cat conftestval`,
549ac_cv_sizeof_time_t=0,
550ac_cv_sizeof_time_t=4)
Fred Drakea3f6e912000-06-29 20:44:47 +0000551])
552AC_MSG_RESULT($ac_cv_sizeof_time_t)
553AC_DEFINE_UNQUOTED(SIZEOF_TIME_T, $ac_cv_sizeof_time_t)
554
Guido van Rossum00f0f6e1999-01-06 18:52:29 +0000555
Trent Mick635f6fb2000-08-23 21:33:05 +0000556# if have pthread_t then define SIZEOF_PTHREAD_T
Martin v. Löwis123cbd22001-07-19 14:21:10 +0000557ac_save_cc="$CC"
558if test "$ac_cv_kpthread" = "yes"
559then CC="$CC -Kpthread"
560fi
Trent Mick635f6fb2000-08-23 21:33:05 +0000561AC_MSG_CHECKING(for pthread_t)
562have_pthread_t=no
Guido van Rossum12580492000-09-24 16:47:19 +0000563AC_TRY_COMPILE([#include <pthread.h>], [pthread_t x; x = *(pthread_t*)0;], have_pthread_t=yes)
Trent Mick635f6fb2000-08-23 21:33:05 +0000564AC_MSG_RESULT($have_pthread_t)
565if test "$have_pthread_t" = yes ; then
566 # AC_CHECK_SIZEOF() doesn't include <pthread.h>.
567 AC_MSG_CHECKING(size of pthread_t)
568 AC_CACHE_VAL(ac_cv_sizeof_pthread_t,
569 [AC_TRY_RUN([#include <stdio.h>
570 #include <pthread.h>
571 main()
572 {
573 FILE *f=fopen("conftestval", "w");
574 if (!f) exit(1);
575 fprintf(f, "%d\n", sizeof(pthread_t));
576 exit(0);
Guido van Rossum3065c942001-09-17 04:03:14 +0000577 }],
578 ac_cv_sizeof_pthread_t=`cat conftestval`,
579 ac_cv_sizeof_pthread_t=0,
580 ac_cv_sizeof_pthread_t=4)
Trent Mick635f6fb2000-08-23 21:33:05 +0000581 ])
582 AC_MSG_RESULT($ac_cv_sizeof_pthread_t)
583 AC_DEFINE_UNQUOTED(SIZEOF_PTHREAD_T, $ac_cv_sizeof_pthread_t)
584fi
Martin v. Löwis123cbd22001-07-19 14:21:10 +0000585CC="$ac_save_cc"
Trent Mick635f6fb2000-08-23 21:33:05 +0000586
Jack Jansenb6e9cad2001-08-15 01:26:28 +0000587AC_MSG_CHECKING(for --enable-toolbox-glue)
588AC_ARG_ENABLE(toolbox-glue,
589[ --enable-toolbox-glue disable/enable MacOSX glue code for extensions])
590
591if test -z "$enable_toolbox_glue"
592then
593 case $ac_sys_system/$ac_sys_release in
594 Darwin/*)
595 enable_toolbox_glue="yes";;
596 *)
597 enable_toolbox_glue="no";;
598 esac
599fi
600case "$enable_toolbox_glue" in
601yes)
602 extra_frameworks="-framework Carbon -framework Foundation"
603 extra_machdep_objs="Python/mactoolboxglue.o"
Jack Jansen591cbed2001-08-15 13:55:15 +0000604 extra_undefs="-u __dummy -u _PyMac_Error"
Jack Jansenb6e9cad2001-08-15 01:26:28 +0000605 AC_DEFINE(USE_TOOLBOX_OBJECT_GLUE)
606 ;;
607*)
608 extra_frameworks=""
609 extra_machdep_objs=""
Jack Jansen591cbed2001-08-15 13:55:15 +0000610 extra_undefs=""
Jack Jansenb6e9cad2001-08-15 01:26:28 +0000611 ;;
612esac
613AC_MSG_RESULT($enable_toolbox_glue)
614
Guido van Rossum54ecc3d1999-01-27 17:53:11 +0000615AC_SUBST(LIBTOOL_CRUFT)
616case $ac_sys_system/$ac_sys_release in
Jack Jansena3891ea2001-09-07 14:25:12 +0000617 Darwin/1.4*)
618 ns_undef_sym='_environ'
619 LIBTOOL_CRUFT="-lcc_dynamic -arch_only ppc -flat_namespace -U $ns_undef_sym"
620 LIBTOOL_CRUFT="$LIBTOOL_CRUFT $extra_frameworks"
621 LIBTOOL_CRUFT=$LIBTOOL_CRUFT' -install_name $(PYTHONFRAMEWORKDIR)/Versions/$(VERSION)/Python'
622 LIBTOOL_CRUFT=$LIBTOOL_CRUFT' -compatibility_version $(VERSION) -current_version $(VERSION)';;
Guido van Rossum5839e582000-10-09 19:52:35 +0000623 Darwin/*)
624 ns_undef_sym='_environ'
Jack Jansenb6e9cad2001-08-15 01:26:28 +0000625 LIBTOOL_CRUFT="-lcc_dynamic -arch_only ppc -U $ns_undef_sym"
626 LIBTOOL_CRUFT="$LIBTOOL_CRUFT $extra_frameworks"
627 LIBTOOL_CRUFT=$LIBTOOL_CRUFT' -install_name $(PYTHONFRAMEWORKDIR)/Versions/$(VERSION)/Python'
628 LIBTOOL_CRUFT=$LIBTOOL_CRUFT' -compatibility_version $(VERSION) -current_version $(VERSION)';;
Guido van Rossum54ecc3d1999-01-27 17:53:11 +0000629esac
630
Jack Jansenb6e9cad2001-08-15 01:26:28 +0000631AC_MSG_CHECKING(for --enable-framework)
632if test "$enable_framework"
Guido van Rossum54ecc3d1999-01-27 17:53:11 +0000633then
Jack Jansenca06bc62001-08-03 15:32:23 +0000634 OPT="$OPT -fno-common -dynamic"
Guido van Rossum54ecc3d1999-01-27 17:53:11 +0000635 # -U __environ is needed since bundles don't have access
636 # to crt0 when built but will always be linked against it
Jack Jansenb6e9cad2001-08-15 01:26:28 +0000637 # -F. is needed to allow linking to the framework while
638 # in the build location.
639
Jack Jansena3891ea2001-09-07 14:25:12 +0000640 case $ac_sys_system/$ac_sys_release in
641 Darwin/1.4*)LDFLAGS="$LDFLAGS -Wl,-F. -Wl,-flat_namespace,-U,$ns_undef_sym";;
642 Darwin/*)LDFLAGS="$LDFLAGS -Wl,-F. -Wl,-U,$ns_undef_sym";;
643 esac
Guido van Rossum54ecc3d1999-01-27 17:53:11 +0000644 AC_DEFINE(WITH_NEXT_FRAMEWORK)
645 AC_MSG_RESULT(yes)
646else
647 AC_MSG_RESULT(no)
648fi
649
Jack Jansenb6e9cad2001-08-15 01:26:28 +0000650AC_MSG_CHECKING(for dyld)
Jack Jansen9a66b6d2001-08-08 13:56:14 +0000651case $ac_sys_system/$ac_sys_release in
652 Darwin/*)
653 AC_DEFINE(WITH_DYLD)
654 AC_MSG_RESULT(always on for Darwin)
655 ;;
656 *)
Jack Jansenb6e9cad2001-08-15 01:26:28 +0000657 AC_MSG_RESULT(no)
658 ;;
Jack Jansen9a66b6d2001-08-08 13:56:14 +0000659esac
Guido van Rossum54ecc3d1999-01-27 17:53:11 +0000660
Guido van Rossumac405f61994-09-12 10:56:06 +0000661# Set info about shared libraries.
Guido van Rossumac405f61994-09-12 10:56:06 +0000662AC_SUBST(SO)
663AC_SUBST(LDSHARED)
Neil Schemenauerb3531b82001-02-16 04:09:05 +0000664AC_SUBST(BLDSHARED)
Guido van Rossumac405f61994-09-12 10:56:06 +0000665AC_SUBST(CCSHARED)
666AC_SUBST(LINKFORSHARED)
Guido van Rossumac405f61994-09-12 10:56:06 +0000667# SO is the extension of shared libraries `(including the dot!)
Guido van Rossumaef734b2001-01-10 21:09:12 +0000668# -- usually .so, .sl on HP-UX, .dll on Cygwin
Guido van Rossum76be6ed1995-01-02 18:33:54 +0000669AC_MSG_CHECKING(SO)
Guido van Rossumac405f61994-09-12 10:56:06 +0000670if test -z "$SO"
671then
Guido van Rossum76be6ed1995-01-02 18:33:54 +0000672 case $ac_sys_system in
Guido van Rossum4b6b5791996-09-09 20:09:34 +0000673 hp*|HP*) SO=.sl;;
Guido van Rossumaef734b2001-01-10 21:09:12 +0000674 CYGWIN*) SO=.dll;;
Guido van Rossum4b6b5791996-09-09 20:09:34 +0000675 *) SO=.so;;
Guido van Rossumac405f61994-09-12 10:56:06 +0000676 esac
Guido van Rossumac405f61994-09-12 10:56:06 +0000677fi
Guido van Rossum76be6ed1995-01-02 18:33:54 +0000678AC_MSG_RESULT($SO)
Guido van Rossumac405f61994-09-12 10:56:06 +0000679# LDSHARED is the ld *command* used to create shared library
Martin v. Löwis5b718fc2001-09-10 15:34:42 +0000680# -- "ld" on SunOS 4.x.x, "cc -G" on SunOS 5.x, "ld -shared" on IRIX 5
Guido van Rossum54ecc3d1999-01-27 17:53:11 +0000681# (Shared libraries in this instance are shared modules to be loaded into
682# Python, as opposed to building Python itself as a shared library.)
Guido van Rossum76be6ed1995-01-02 18:33:54 +0000683AC_MSG_CHECKING(LDSHARED)
Guido van Rossumac405f61994-09-12 10:56:06 +0000684if test -z "$LDSHARED"
685then
Guido van Rossum76be6ed1995-01-02 18:33:54 +0000686 case $ac_sys_system/$ac_sys_release in
Neil Schemenauerb3531b82001-02-16 04:09:05 +0000687 AIX*)
688 BLDSHARED="\$(srcdir)/Modules/ld_so_aix \$(CC) -bI:Modules/python.exp"
Guido van Rossumce608b02001-09-28 15:59:38 +0000689 LDSHARED="\$(BINLIBDEST)/config/ld_so_aix \$(CC) -bI:\$(BINLIBDEST)/config/python.exp"
Neil Schemenauerb3531b82001-02-16 04:09:05 +0000690 ;;
691 BeOS*)
692 BLDSHARED="\$(srcdir)/Modules/ld_so_beos $LDLIBRARY"
Guido van Rossumce608b02001-09-28 15:59:38 +0000693 LDSHARED="\$(BINLIBDEST)/config/ld_so_beos \$(LIBDIR)/$LDLIBRARY"
Neil Schemenauerb3531b82001-02-16 04:09:05 +0000694 ;;
Guido van Rossum6100aaf1997-04-29 21:48:51 +0000695 IRIX/5*) LDSHARED="ld -shared";;
Guido van Rossum91922671997-10-09 20:24:13 +0000696 IRIX*/6*) LDSHARED="ld ${SGI_ABI} -shared -all";;
Guido van Rossumac405f61994-09-12 10:56:06 +0000697 SunOS/4*) LDSHARED="ld";;
Greg Ward57c9a6632000-05-26 12:22:54 +0000698 SunOS/5*)
699 if test "$GCC" = "yes"
Neil Schemenauer95052722001-02-19 18:17:33 +0000700 then LDSHARED='$(CC) -shared'
Martin v. Löwis5b718fc2001-09-10 15:34:42 +0000701 else LDSHARED="$(CC) -G";
Greg Ward57c9a6632000-05-26 12:22:54 +0000702 fi ;;
Guido van Rossumac405f61994-09-12 10:56:06 +0000703 hp*|HP*) LDSHARED="ld -b";;
Guido van Rossum71001e41995-01-26 00:44:03 +0000704 OSF*) LDSHARED="ld -shared -expect_unresolved \"*\"";;
Guido van Rossum7d473291995-01-20 14:12:16 +0000705 DYNIX/ptx*) LDSHARED="ld -G";;
Jack Jansena3891ea2001-09-07 14:25:12 +0000706 Darwin/1.4*)
707 LDSHARED='$(CC) $(LDFLAGS) -bundle'
708 if test "$enable_framework" ; then
709 # Link against the framework. All externals should be defined.
710 LDSHARED="$LDSHARED "'-framework $(PYTHONFRAMEWORK)'
711 else
712 # No framework. Ignore undefined symbols, assuming they come from Python
713 LDSHARED="$LDSHARED -flat_namespace -undefined suppress"
714 fi ;;
Jack Jansenb6e9cad2001-08-15 01:26:28 +0000715 Darwin/*)
716 LDSHARED='$(CC) $(LDFLAGS) -bundle'
717 if test "$enable_framework" ; then
718 # Link against the framework. All externals should be defined.
719 LDSHARED="$LDSHARED "'-framework $(PYTHONFRAMEWORK)'
720 else
721 # No framework. Ignore undefined symbols, assuming they come from Python
722 LDSHARED="$LDSHARED -undefined suppress"
Guido van Rossum54ecc3d1999-01-27 17:53:11 +0000723 fi ;;
Guido van Rossum81652ab1996-07-21 02:53:27 +0000724 Linux*) LDSHARED="gcc -shared";;
Guido van Rossum3c4bb801997-12-18 23:55:32 +0000725 dgux*) LDSHARED="ld -G";;
Guido van Rossum458e7fa1999-09-17 15:40:40 +0000726 BSD/OS*/4*) LDSHARED="gcc -shared";;
Martin v. Löwis36546db2001-09-05 14:24:43 +0000727 OpenBSD*|NetBSD*|FreeBSD*)
Jeremy Hylton4bcc7c52000-08-31 17:45:35 +0000728 if [[ "`$CC -dM -E - </dev/null | grep __ELF__`" != "" ]]
Guido van Rossum0286ae82000-08-29 15:06:49 +0000729 then
730 LDSHARED="cc -shared ${LDFLAGS}"
731 else
732 LDSHARED="ld -Bshareable ${LDFLAGS}"
733 fi;;
Martin v. Löwis25ae43b2001-10-07 08:39:18 +0000734 OpenUNIX*|UnixWare*)
Martin v. Löwisbec19582001-03-21 15:57:54 +0000735 if test "$GCC" = "yes"
736 then LDSHARED="$(CC) -shared"
Martin v. Löwis130fb172001-07-19 11:00:41 +0000737 else LDSHARED="$(CC) -G"
Martin v. Löwisbec19582001-03-21 15:57:54 +0000738 fi;;
Guido van Rossum300fda71996-08-19 21:58:16 +0000739 SCO_SV*) LDSHARED="cc -G -KPIC -Ki486 -belf -Wl,-Bexport";;
Trent Mick635f6fb2000-08-23 21:33:05 +0000740 Monterey*) LDSHARED="cc -G -dy -Bdynamic -Bexport -L/usr/lib/ia64l64";;
Guido van Rossumaef734b2001-01-10 21:09:12 +0000741 CYGWIN*) LDSHARED="gcc -shared -Wl,--enable-auto-image-base";;
Guido van Rossumac405f61994-09-12 10:56:06 +0000742 *) LDSHARED="ld";;
743 esac
Guido van Rossumac405f61994-09-12 10:56:06 +0000744fi
Guido van Rossum76be6ed1995-01-02 18:33:54 +0000745AC_MSG_RESULT($LDSHARED)
Neil Schemenauerb3531b82001-02-16 04:09:05 +0000746BLDSHARED=${BLDSHARED-$LDSHARED}
Guido van Rossumac405f61994-09-12 10:56:06 +0000747# CCSHARED are the C *flags* used to create objects to go into a shared
Guido van Rossum54ecc3d1999-01-27 17:53:11 +0000748# library (module) -- this is only needed for a few systems
Guido van Rossum76be6ed1995-01-02 18:33:54 +0000749AC_MSG_CHECKING(CCSHARED)
Guido van Rossumac405f61994-09-12 10:56:06 +0000750if test -z "$CCSHARED"
751then
Guido van Rossum6100aaf1997-04-29 21:48:51 +0000752 case $ac_sys_system/$ac_sys_release in
Neil Schemenauer66252162001-02-19 04:47:42 +0000753 SunOS*) if test "$GCC" = yes;
754 then CCSHARED="-fPIC";
755 fi;;
Guido van Rossumaf07a441995-02-13 19:45:27 +0000756 hp*|HP*) if test "$GCC" = yes;
Martin v. Löwis703ad702001-09-05 08:36:52 +0000757 then CCSHARED="-fPIC";
Guido van Rossumaf07a441995-02-13 19:45:27 +0000758 else CCSHARED="+z";
759 fi;;
Neil Schemenauer61c51152001-01-26 16:18:16 +0000760 Linux*) CCSHARED="-fPIC";;
Guido van Rossumf5957ea1999-10-05 21:59:33 +0000761 BSD/OS*/4*) CCSHARED="-fpic";;
Martin v. Löwis36546db2001-09-05 14:24:43 +0000762 FreeBSD*|NetBSD*|OpenBSD*) CCSHARED="-fPIC";;
Martin v. Löwis25ae43b2001-10-07 08:39:18 +0000763 OpenUNIX*|UnixWare*)
Martin v. Löwisbec19582001-03-21 15:57:54 +0000764 if test "$GCC" = "yes"
765 then CCSHARED="-fPIC"
Martin v. Löwis130fb172001-07-19 11:00:41 +0000766 else CCSHARED="-KPIC"
Martin v. Löwisbec19582001-03-21 15:57:54 +0000767 fi;;
Guido van Rossum300fda71996-08-19 21:58:16 +0000768 SCO_SV*) CCSHARED="-KPIC -dy -Bdynamic";;
Trent Mick635f6fb2000-08-23 21:33:05 +0000769 Monterey*) CCSHARED="-G";;
Guido van Rossum2b5ca001998-03-05 15:41:09 +0000770 IRIX*/6*) case $CC in
771 *gcc*) CCSHARED="-shared";;
Guido van Rossumee21f411998-04-20 18:51:54 +0000772 *) CCSHARED="";;
Guido van Rossum2b5ca001998-03-05 15:41:09 +0000773 esac;;
Guido van Rossumaef734b2001-01-10 21:09:12 +0000774 CYGWIN*) CCSHARED="-DUSE_DL_IMPORT";;
Guido van Rossumac405f61994-09-12 10:56:06 +0000775 esac
Guido van Rossumac405f61994-09-12 10:56:06 +0000776fi
Guido van Rossum76be6ed1995-01-02 18:33:54 +0000777AC_MSG_RESULT($CCSHARED)
Guido van Rossumac405f61994-09-12 10:56:06 +0000778# LINKFORSHARED are the flags passed to the $(CC) command that links
Guido van Rossumb65a48e1995-06-14 18:21:23 +0000779# the python executable -- this is only needed for a few systems
Guido van Rossum76be6ed1995-01-02 18:33:54 +0000780AC_MSG_CHECKING(LINKFORSHARED)
Guido van Rossumac405f61994-09-12 10:56:06 +0000781if test -z "$LINKFORSHARED"
782then
Guido van Rossum6100aaf1997-04-29 21:48:51 +0000783 case $ac_sys_system/$ac_sys_release in
Neil Schemenauerb3531b82001-02-16 04:09:05 +0000784 AIX*) LINKFORSHARED='-Wl,-bE:Modules/python.exp -lld';;
Guido van Rossum5dab3d81996-12-06 21:18:18 +0000785 hp*|HP*)
Guido van Rossum304dd2d1997-10-20 23:10:56 +0000786 LINKFORSHARED="-Wl,-E -Wl,+s -Wl,+b\$(BINLIBDEST)/lib-dynload";;
Guido van Rossumf5957ea1999-10-05 21:59:33 +0000787 BSD/OS/4*) LINKFORSHARED="-Xlinker -export-dynamic";;
Guido van Rossum2d9feed1997-11-24 17:36:21 +0000788 Linux*) LINKFORSHARED="-Xlinker -export-dynamic";;
Guido van Rossum54ecc3d1999-01-27 17:53:11 +0000789 # -u libsys_s pulls in all symbols in libsys
Jack Jansenb6e9cad2001-08-15 01:26:28 +0000790 Darwin/*)
791 # -u __dummy makes the linker aware of the objc runtime
792 # in System.framework; otherwise, __objcInit (referenced in
793 # crt1.o) gets erroneously defined as common, which breaks dynamic
794 # loading of any modules which reference it in System.framework.
795 # -u _PyMac_Error is needed to pull in the mac toolbox glue, which is
796 # not used by the core itself but which needs to be in the core so
797 # that dynamically loaded extension modules have access to it.
Jack Jansen591cbed2001-08-15 13:55:15 +0000798 LINKFORSHARED="$extra_undefs -framework System"
Jack Jansenb6e9cad2001-08-15 01:26:28 +0000799 if test "$enable_framework"
800 then
801 LINKFORSHARED="$LINKFORSHARED -framework Python"
802 fi
803 LINKFORSHARED="$LINKFORSHARED $extra_frameworks";;
Martin v. Löwis25ae43b2001-10-07 08:39:18 +0000804 OpenUNIX*|UnixWare*) LINKFORSHARED="-Wl,-Bexport";;
Guido van Rossum300fda71996-08-19 21:58:16 +0000805 SCO_SV*) LINKFORSHARED="-Bdynamic -dy -Wl,-Bexport";;
Fred Drake02706f52000-09-25 15:08:46 +0000806 ReliantUNIX*) LINKFORSHARED="-W1 -Blargedynsym";;
Martin v. Löwis36546db2001-09-05 14:24:43 +0000807 FreeBSD*|NetBSD*|OpenBSD*)
Guido van Rossumdf693651999-01-07 21:50:41 +0000808 if [[ "`$CC -dM -E - </dev/null | grep __ELF__`" != "" ]]
809 then
810 LINKFORSHARED="-Wl,--export-dynamic"
811 fi;;
Guido van Rossum2b5ca001998-03-05 15:41:09 +0000812 SunOS/5*) case $CC in
813 *gcc*)
Guido van Rossum9c6ba9b2000-02-03 13:42:50 +0000814 if $CC -Xlinker -V 2>&1 | grep BFD >/dev/null
Guido van Rossum8f4ceb11997-12-18 23:42:19 +0000815 then
816 LINKFORSHARED="-Xlinker --export-dynamic"
Guido van Rossum2b5ca001998-03-05 15:41:09 +0000817 fi;;
818 esac;;
Guido van Rossumac405f61994-09-12 10:56:06 +0000819 esac
Guido van Rossumac405f61994-09-12 10:56:06 +0000820fi
Guido van Rossum76be6ed1995-01-02 18:33:54 +0000821AC_MSG_RESULT($LINKFORSHARED)
Guido van Rossumac405f61994-09-12 10:56:06 +0000822
Neil Schemenauer61c51152001-01-26 16:18:16 +0000823AC_SUBST(CFLAGSFORSHARED)
824AC_MSG_CHECKING(CFLAGSFORSHARED)
825if test ! "$LIBRARY" = "$LDLIBRARY"
826then
Neil Schemenauerd9cf41c2001-01-27 21:39:17 +0000827 case $ac_sys_system in
828 CYGWIN*)
829 # Cygwin needs CCSHARED when building extension DLLs
830 # but not when building the interpreter DLL.
831 CFLAGSFORSHARED='';;
832 *)
833 CFLAGSFORSHARED='$(CCSHARED)'
834 esac
Neil Schemenauer61c51152001-01-26 16:18:16 +0000835fi
836AC_MSG_RESULT($CFLAGSFORSHARED)
837
Guido van Rossum627b2d71993-12-24 10:39:16 +0000838# checks for libraries
Guido van Rossum76be6ed1995-01-02 18:33:54 +0000839AC_CHECK_LIB(dl, dlopen) # Dynamic linking for SunOS/Solaris and SYSV
840AC_CHECK_LIB(dld, shl_load) # Dynamic linking for HP-UX
Guido van Rossum0eefa3f1999-11-16 15:57:37 +0000841
842# checks for system dependent C++ extensions support
843case "$ac_sys_system" in
844 AIX*) AC_MSG_CHECKING(for genuine AIX C++ extensions support)
845 AC_TRY_LINK([#include "/usr/lpp/xlC/include/load.h"],
846 [loadAndInit("", 0, "")],
847 [AC_DEFINE(AIX_GENUINE_CPLUSPLUS)
848 AC_MSG_RESULT(yes)],
849 [AC_MSG_RESULT(no)]);;
850 *) ;;
851esac
852
Guido van Rossum70c7f481998-03-26 18:44:10 +0000853# Most SVR4 platforms (e.g. Solaris) need -lsocket and -lnsl.
854# However on SGI IRIX, these exist but are broken.
Guido van Rossumec95c7b1998-08-04 17:59:56 +0000855# BeOS' sockets are stashed in libnet.
856case "$ac_sys_system" in
857IRIX*) ;;
Guido van Rossum2cb56601998-05-07 13:25:56 +0000858*)
Guido van Rossumf618d2c1995-01-17 16:36:13 +0000859AC_CHECK_LIB(nsl, t_open, [LIBS="-lnsl $LIBS"]) # SVR4
Guido van Rossumf618d2c1995-01-17 16:36:13 +0000860AC_CHECK_LIB(socket, socket, [LIBS="-lsocket $LIBS"], [], $LIBS) # SVR4 sockets
Jeremy Hyltoncb25d5e2000-07-27 21:23:28 +0000861;;
862esac
863case "$ac_sys_system" in
864BeOS*)
Guido van Rossumec95c7b1998-08-04 17:59:56 +0000865AC_CHECK_LIB(net, socket, [LIBS="-lnet $LIBS"], [], $LIBS) # BeOS
866;;
867esac
Guido van Rossum70c7f481998-03-26 18:44:10 +0000868
Guido van Rossumc5a39031996-07-31 17:35:03 +0000869AC_MSG_CHECKING(for --with-libs)
Barry Warsawc0d24d8b2000-06-29 16:12:00 +0000870AC_ARG_WITH(libs,
871[ --with-libs='lib1 ...' link against additional libs], [
Guido van Rossumc5a39031996-07-31 17:35:03 +0000872AC_MSG_RESULT($withval)
873LIBS="$withval $LIBS"
874], AC_MSG_RESULT(no))
Guido van Rossum627b2d71993-12-24 10:39:16 +0000875
Neil Schemenauer55f0cf32001-01-24 17:24:33 +0000876# Determine if signalmodule should be used.
877AC_SUBST(USE_SIGNAL_MODULE)
878AC_SUBST(SIGNAL_OBJS)
879AC_MSG_CHECKING(for --with-signal-module)
880AC_ARG_WITH(signal-module,
881[ --with-signal-module disable/enable signal module])
882
883if test -z "$with_signal_module"
884then with_signal_module="yes"
885fi
886AC_MSG_RESULT($with_signal_module)
887
888if test "${with_signal_module}" = "yes"; then
889 USE_SIGNAL_MODULE=""
890 SIGNAL_OBJS=""
891else
892 USE_SIGNAL_MODULE="#"
893 SIGNAL_OBJS="Parser/intrcheck.o Python/sigcheck.o"
894fi
895
Guido van Rossum3d15bd82001-01-10 18:53:48 +0000896# This is used to generate Setup.config
Guido van Rossum009f7871997-12-04 00:51:42 +0000897AC_SUBST(USE_THREAD_MODULE)
Barry Warsawc0d24d8b2000-06-29 16:12:00 +0000898USE_THREAD_MODULE=""
Guido van Rossum009f7871997-12-04 00:51:42 +0000899
Guido van Rossum54d93d41997-01-22 20:51:58 +0000900AC_MSG_CHECKING(for --with-dec-threads)
901AC_SUBST(LDLAST)
902AC_ARG_WITH(dec-threads,
Barry Warsawc0d24d8b2000-06-29 16:12:00 +0000903[ --with-dec-threads use DEC Alpha/OSF1 thread-safe libraries], [
904AC_MSG_RESULT($withval)
Guido van Rossum54d93d41997-01-22 20:51:58 +0000905LDLAST=-threads
Guido van Rossumf78abae1997-01-21 22:02:36 +0000906if test "${with_thread+set}" != set; then
Guido van Rossum54d93d41997-01-22 20:51:58 +0000907 with_thread="$withval";
908fi],
909AC_MSG_RESULT(no))
910
911AC_MSG_CHECKING(for --with-threads)
Barry Warsawc0d24d8b2000-06-29 16:12:00 +0000912AC_ARG_WITH(threads,
913[ --with(out)-threads[=DIRECTORY] disable/enable thread support])
Guido van Rossum54d93d41997-01-22 20:51:58 +0000914
Barry Warsawc0d24d8b2000-06-29 16:12:00 +0000915# --with-thread is deprecated, but check for it anyway
Barry Warsawa0f3c5c2000-06-30 16:39:35 +0000916AC_ARG_WITH(thread,
917[ --with(out)-thread[=DIRECTORY] deprecated; use --with(out)-threads],[
918with_threads=$with_thread])
Barry Warsawc0d24d8b2000-06-29 16:12:00 +0000919
920if test -z "$with_threads"
921then with_threads="yes"
Guido van Rossum433c8ad1994-08-01 12:07:07 +0000922fi
Barry Warsawc0d24d8b2000-06-29 16:12:00 +0000923AC_MSG_RESULT($with_threads)
Guido van Rossum6400c261997-05-22 20:34:27 +0000924
Barry Warsawc0d24d8b2000-06-29 16:12:00 +0000925if test "$with_threads" = "no"
926then
927 USE_THREAD_MODULE="#"
Martin v. Löwis130fb172001-07-19 11:00:41 +0000928elif test "$ac_cv_kpthread" = "yes"
929then
930 CC="$CC -Kpthread"
931 AC_DEFINE(WITH_THREAD)
932 AC_DEFINE(_POSIX_THREADS)
Guido van Rossumd0b69ec2001-09-10 14:10:54 +0000933 posix_threads=yes
Martin v. Löwis130fb172001-07-19 11:00:41 +0000934 LIBOBJS="$LIBOBJS thread.o"
Barry Warsawc0d24d8b2000-06-29 16:12:00 +0000935else
Martin v. Löwis130fb172001-07-19 11:00:41 +0000936 if test ! -z "$with_threads" -a -d "$with_threads"
937 then LDFLAGS="$LDFLAGS -L$with_threads"
938 fi
939 if test ! -z "$withval" -a -d "$withval"
940 then LDFLAGS="$LDFLAGS -L$withval"
941 fi
942 AC_DEFINE(_REENTRANT)
943 AC_CHECK_HEADER(mach/cthreads.h, [AC_DEFINE(WITH_THREAD)
944 AC_DEFINE(C_THREADS)
945 LIBOBJS="$LIBOBJS thread.o"],[
946 AC_MSG_CHECKING(for --with-pth)
947 AC_ARG_WITH(pth,
948 [ --with-pth use GNU pth threading libraries], [
949 AC_MSG_RESULT($withval)
950 AC_DEFINE(WITH_THREAD)
951 AC_DEFINE(HAVE_PTH)
952 LIBS="-lpth $LIBS"
953 LIBOBJS="$LIBOBJS thread.o"],[
954 AC_MSG_RESULT(no)
Martin v. Löwis8158b5a2001-10-08 13:17:28 +0000955
956 # Just looking for pthread_create in libpthread is not enough:
957 # on HP/UX, pthread.h renames pthread_create to a different symbol name.
958 # So we really have to include pthread.h, and then link.
959 _libs=$LIBS
960 LIBS="$LIBS -lpthread"
961 AC_MSG_CHECKING([for pthread_create in -lpthread])
962 AC_TRY_LINK([#include <pthread.h>
963
964void * start_routine (void *arg) { exit (0); }], [
965pthread_create (NULL, NULL, start_routine, NULL)], [
966 AC_MSG_RESULT(yes)
967 AC_DEFINE(WITH_THREAD)
Jack Jansen9a66b6d2001-08-08 13:56:14 +0000968 case $ac_sys_system in
969 Darwin*) ;;
Guido van Rossumd0b69ec2001-09-10 14:10:54 +0000970 *) AC_DEFINE(_POSIX_THREADS)
971 posix_threads=yes
972 ;;
Jack Jansen9a66b6d2001-08-08 13:56:14 +0000973 esac
Martin v. Löwis130fb172001-07-19 11:00:41 +0000974 LIBOBJS="$LIBOBJS thread.o"],[
Martin v. Löwis8158b5a2001-10-08 13:17:28 +0000975 LIBS=$_libs
Martin v. Löwis130fb172001-07-19 11:00:41 +0000976 AC_CHECK_FUNC(pthread_detach, [AC_DEFINE(WITH_THREAD)
977 case $ac_sys_system in
978 Darwin*) ;;
Guido van Rossumd0b69ec2001-09-10 14:10:54 +0000979 *) AC_DEFINE(_POSIX_THREADS)
980 posix_threads=yes
981 ;;
Martin v. Löwis130fb172001-07-19 11:00:41 +0000982 esac
983 LIBOBJS="$LIBOBJS thread.o"],[
984 AC_CHECK_HEADER(kernel/OS.h, [AC_DEFINE(WITH_THREAD)
985 AC_DEFINE(BEOS_THREADS)
986 LIBOBJS="$LIBOBJS thread.o"],[
987 AC_CHECK_LIB(pthreads, pthread_create, [AC_DEFINE(WITH_THREAD)
988 AC_DEFINE(_POSIX_THREADS)
Guido van Rossumd0b69ec2001-09-10 14:10:54 +0000989 posix_threads=yes
Martin v. Löwis130fb172001-07-19 11:00:41 +0000990 LIBS="$LIBS -lpthreads"
991 LIBOBJS="$LIBOBJS thread.o"], [
992 AC_CHECK_LIB(c_r, pthread_create, [AC_DEFINE(WITH_THREAD)
993 AC_DEFINE(_POSIX_THREADS)
Guido van Rossumd0b69ec2001-09-10 14:10:54 +0000994 posix_threads=yes
Martin v. Löwis130fb172001-07-19 11:00:41 +0000995 LIBS="$LIBS -lc_r"
996 LIBOBJS="$LIBOBJS thread.o"], [
997 AC_CHECK_LIB(thread, __d6_pthread_create, [AC_DEFINE(WITH_THREAD)
998 AC_DEFINE(_POSIX_THREADS)
Guido van Rossumd0b69ec2001-09-10 14:10:54 +0000999 posix_threads=yes
Martin v. Löwis130fb172001-07-19 11:00:41 +00001000 LIBS="$LIBS -lthread"
1001 LIBOBJS="$LIBOBJS thread.o"], [
1002 AC_CHECK_LIB(pthread, __pthread_create_system, [AC_DEFINE(WITH_THREAD)
1003 AC_DEFINE(_POSIX_THREADS)
Guido van Rossumd0b69ec2001-09-10 14:10:54 +00001004 posix_threads=yes
Martin v. Löwis130fb172001-07-19 11:00:41 +00001005 LIBS="$LIBS -lpthread"
1006 LIBOBJS="$LIBOBJS thread.o"], [
1007 AC_CHECK_LIB(cma, pthread_create, [AC_DEFINE(WITH_THREAD)
1008 AC_DEFINE(_POSIX_THREADS)
Guido van Rossumd0b69ec2001-09-10 14:10:54 +00001009 posix_threads=yes
Martin v. Löwis130fb172001-07-19 11:00:41 +00001010 LIBS="$LIBS -lcma"
1011 LIBOBJS="$LIBOBJS thread.o"],[
1012 USE_THREAD_MODULE="#"])
1013 ])])])])])])])])])
Barry Warsawc0d24d8b2000-06-29 16:12:00 +00001014
Guido van Rossumd0b69ec2001-09-10 14:10:54 +00001015 if test "$posix_threads" = "yes"; then
1016 AC_MSG_CHECKING(if PTHREAD_SCOPE_SYSTEM is supported)
1017 AC_CACHE_VAL(ac_cv_pthread_system_supported,
1018 [AC_TRY_RUN([#include <pthread.h>
1019 void *foo(void *parm) {
1020 return NULL;
1021 }
1022 main() {
1023 pthread_attr_t attr;
1024 if (pthread_attr_init(&attr)) exit(-1);
1025 if (pthread_attr_setscope(&attr, PTHREAD_SCOPE_SYSTEM)) exit(-1);
1026 if (pthread_create(NULL, &attr, foo, NULL)) exit(-1);
1027 exit(0);
Guido van Rossum3065c942001-09-17 04:03:14 +00001028 }],
1029 ac_cv_pthread_system_supported=yes,
1030 ac_cv_pthread_system_supported=no,
1031 ac_cv_pthread_system_supported=no)
Guido van Rossumd0b69ec2001-09-10 14:10:54 +00001032 ])
1033 AC_MSG_RESULT($ac_cv_pthread_system_supported)
1034 if test "$ac_cv_pthread_system_supported" = "yes"; then
1035 AC_DEFINE(PTHREAD_SYSTEM_SCHED_SUPPORTED)
1036 fi
1037 fi
1038
Martin v. Löwis130fb172001-07-19 11:00:41 +00001039 AC_CHECK_LIB(mpc, usconfig, [AC_DEFINE(WITH_THREAD)
1040 LIBS="$LIBS -lmpc"
1041 LIBOBJS="$LIBOBJS thread.o"
1042 USE_THREAD_MODULE=""])
1043 AC_CHECK_LIB(thread, thr_create, [AC_DEFINE(WITH_THREAD)
1044 LIBS="$LIBS -lthread"
1045 LIBOBJS="$LIBOBJS thread.o"
1046 USE_THREAD_MODULE=""])
Jeremy Hylton1a2ca862000-10-16 16:59:12 +00001047
Martin v. Löwis130fb172001-07-19 11:00:41 +00001048 if test "$USE_THREAD_MODULE" != "#"
1049 then
1050 # If the above checks didn't disable threads, (at least) OSF1
1051 # needs this '-threads' argument during linking.
1052 case $ac_sys_system in
1053 OSF1) LDLAST=-threads;;
1054 esac
Jeremy Hylton1a2ca862000-10-16 16:59:12 +00001055 fi
Barry Warsawc0d24d8b2000-06-29 16:12:00 +00001056fi
Guido van Rossum433c8ad1994-08-01 12:07:07 +00001057
Martin v. Löwisa2ac6022001-08-09 11:40:14 +00001058# Check for enable-ipv6
Martin v. Löwisa5f8bb52001-09-05 08:22:34 +00001059AC_MSG_CHECKING([if --enable-ipv6 is specified])
Martin v. Löwisa2ac6022001-08-09 11:40:14 +00001060AC_ARG_ENABLE(ipv6,
1061[ --enable-ipv6 Enable ipv6 (with ipv4) support
1062 --disable-ipv6 Disable ipv6 support],
1063[ case "$enableval" in
1064 no)
1065 AC_MSG_RESULT(no)
1066 ipv6=no
1067 ;;
1068 *) AC_MSG_RESULT(yes)
1069 AC_DEFINE(ENABLE_IPV6)
1070 ipv6=yes
1071 ;;
1072 esac ],
1073
Martin v. Löwisa5f8bb52001-09-05 08:22:34 +00001074[
1075dnl the check does not work on cross compilation case...
Martin v. Löwisa2ac6022001-08-09 11:40:14 +00001076 AC_TRY_RUN([ /* AF_INET6 available check */
1077#include <sys/types.h>
1078#include <sys/socket.h>
1079main()
1080{
1081 if (socket(AF_INET6, SOCK_STREAM, 0) < 0)
1082 exit(1);
1083 else
1084 exit(0);
1085}
1086],
1087 AC_MSG_RESULT(yes)
Martin v. Löwisa2ac6022001-08-09 11:40:14 +00001088 ipv6=yes,
1089 AC_MSG_RESULT(no)
1090 ipv6=no,
1091 AC_MSG_RESULT(no)
1092 ipv6=no
Martin v. Löwisa5f8bb52001-09-05 08:22:34 +00001093)
1094
1095if test "$ipv6" = "yes"; then
1096 AC_MSG_CHECKING(if RFC2553 API is available)
1097 AC_TRY_COMPILE([#include <sys/types.h>
1098#include <netinet/in.h>],
1099 [struct sockaddr_in6 x;
1100x.sin6_scope_id;],
1101 AC_MSG_RESULT(yes)
1102 ipv6=yes,
1103 AC_MSG_RESULT(no, IPv6 disabled)
1104 ipv6=no)
1105fi
1106
1107if test "$ipv6" = "yes"; then
1108 AC_DEFINE(ENABLE_IPV6)
1109fi
1110])
Martin v. Löwisa2ac6022001-08-09 11:40:14 +00001111
1112ipv6type=unknown
1113ipv6lib=none
1114ipv6trylibc=no
1115
1116if test "$ipv6" = "yes"; then
1117 AC_MSG_CHECKING([ipv6 stack type])
Guido van Rossumb8552162001-09-05 14:58:11 +00001118 for i in inria kame linux-glibc linux-inet6 solaris toshiba v6d zeta;
1119 do
Martin v. Löwisa2ac6022001-08-09 11:40:14 +00001120 case $i in
1121 inria)
1122 dnl http://www.kame.net/
1123 AC_EGREP_CPP(yes, [dnl
1124#include <netinet/in.h>
1125#ifdef IPV6_INRIA_VERSION
1126yes
1127#endif],
1128 [ipv6type=$i;
1129 OPT="-DINET6 $OPT"])
1130 ;;
1131 kame)
1132 dnl http://www.kame.net/
1133 AC_EGREP_CPP(yes, [dnl
1134#include <netinet/in.h>
1135#ifdef __KAME__
1136yes
1137#endif],
1138 [ipv6type=$i;
1139 ipv6lib=inet6
1140 ipv6libdir=/usr/local/v6/lib
1141 ipv6trylibc=yes
1142 OPT="-DINET6 $OPT"])
1143 ;;
1144 linux-glibc)
1145 dnl http://www.v6.linux.or.jp/
1146 AC_EGREP_CPP(yes, [dnl
1147#include <features.h>
1148#if defined(__GLIBC__) && ((__GLIBC__ == 2 && __GLIBC_MINOR__ >= 1) || (__GLIBC__ > 2))
1149yes
1150#endif],
1151 [ipv6type=$i;
1152 ipv6trylibc=yes
1153 OPT="-DINET6 $OPT"])
1154 ;;
1155 linux-inet6)
1156 dnl http://www.v6.linux.or.jp/
1157 if test -d /usr/inet6; then
1158 ipv6type=$i
1159 ipv6lib=inet6
1160 ipv6libdir=/usr/inet6/lib
1161 OPT="-DINET6 -I/usr/inet6/include $OPT"
1162 fi
1163 ;;
1164 solaris)
1165 if test -f /etc/netconfig; then
1166 if /usr/xpg4/bin/grep -q tcp6 /etc/netconfig; then
1167 ipv6type=$i
1168 ipv6trylibc=yes
1169 OPT="-DINET6 $OPT"
1170 fi
1171 fi
1172 ;;
1173 toshiba)
1174 AC_EGREP_CPP(yes, [dnl
1175#include <sys/param.h>
1176#ifdef _TOSHIBA_INET6
1177yes
1178#endif],
1179 [ipv6type=$i;
1180 ipv6lib=inet6;
1181 ipv6libdir=/usr/local/v6/lib;
1182 OPT="-DINET6 $OPT"])
1183 ;;
1184 v6d)
1185 AC_EGREP_CPP(yes, [dnl
1186#include </usr/local/v6/include/sys/v6config.h>
1187#ifdef __V6D__
1188yes
1189#endif],
1190 [ipv6type=$i;
1191 ipv6lib=v6;
1192 ipv6libdir=/usr/local/v6/lib;
1193 OPT="-I/usr/local/v6/include $OPT"])
1194 ;;
1195 zeta)
1196 AC_EGREP_CPP(yes, [dnl
1197#include <sys/param.h>
1198#ifdef _ZETA_MINAMI_INET6
1199yes
1200#endif],
1201 [ipv6type=$i;
1202 ipv6lib=inet6;
1203 ipv6libdir=/usr/local/v6/lib;
1204 OPT="-DINET6 $OPT"])
1205 ;;
1206 esac
1207 if test "$ipv6type" != "unknown"; then
1208 break
1209 fi
1210 done
1211 AC_MSG_RESULT($ipv6type)
1212fi
1213
1214if test "$ipv6" = "yes" -a "$ipv6lib" != "none"; then
1215 if test -d $ipv6libdir -a -f $ipv6libdir/lib$ipv6lib.a; then
1216 LIBS="-L$ipv6libdir -l$ipv6lib $LIBS"
1217 echo "using lib$ipv6lib"
1218 else
1219 if test $ipv6trylibc = "yes"; then
1220 echo "using libc"
1221 else
1222 echo 'Fatal: no $ipv6lib library found. cannot continue.'
1223 echo "You need to fetch lib$ipv6lib.a from appropriate"
1224 echo 'ipv6 kit and compile beforehand.'
1225 exit 1
1226 fi
1227 fi
1228fi
1229
Barry Warsawef82cd72000-06-30 16:21:01 +00001230# Check for GC support
Barry Warsawef82cd72000-06-30 16:21:01 +00001231AC_MSG_CHECKING(for --with-cycle-gc)
1232AC_ARG_WITH(cycle-gc,
1233[ --with(out)-cycle-gc disable/enable garbage collection])
1234
1235if test -z "$with_cycle_gc"
1236then with_cycle_gc="yes"
1237fi
Neil Schemenauer9c63e6d2001-08-29 23:44:38 +00001238if test "$with_cycle_gc" != "no"
Barry Warsawef82cd72000-06-30 16:21:01 +00001239then
Barry Warsawef82cd72000-06-30 16:21:01 +00001240 AC_DEFINE(WITH_CYCLE_GC)
1241fi
1242AC_MSG_RESULT($with_cycle_gc)
1243
Neil Schemenauera35c6882001-02-27 04:45:05 +00001244# Check for Python-specific malloc support
1245AC_MSG_CHECKING(for --with-pymalloc)
1246AC_ARG_WITH(pymalloc,
1247[ --with(out)-pymalloc disable/enable specialized mallocs], [
1248if test "$withval" != no
1249then AC_DEFINE(WITH_PYMALLOC) AC_MSG_RESULT(yes)
1250else AC_MSG_RESULT(no)
1251fi],
1252[AC_MSG_RESULT(no)])
1253
Barry Warsawef82cd72000-06-30 16:21:01 +00001254# Check for --with-wctype-functions
1255AC_MSG_CHECKING(for --with-wctype-functions)
1256AC_ARG_WITH(wctype-functions,
1257[ --with-wctype-functions use wctype.h functions], [
1258if test "$withval" != no
1259then AC_DEFINE(WANT_WCTYPE_FUNCTIONS) AC_MSG_RESULT(yes)
1260else AC_MSG_RESULT(no)
1261fi],
1262[AC_MSG_RESULT(no)])
1263
Guido van Rossum68242b51996-05-28 22:53:03 +00001264# -I${DLINCLDIR} is added to the compile rule for importdl.o
Guido van Rossum433c8ad1994-08-01 12:07:07 +00001265AC_SUBST(DLINCLDIR)
Guido van Rossum98935bf2001-09-05 19:13:16 +00001266DLINCLDIR=.
Guido van Rossum433c8ad1994-08-01 12:07:07 +00001267
Guido van Rossum5739e7e1995-01-20 16:50:53 +00001268AC_MSG_CHECKING(for --with-sgi-dl)
Barry Warsawc0d24d8b2000-06-29 16:12:00 +00001269AC_ARG_WITH(sgi-dl,
1270[ --with-sgi-dl=DIRECTORY IRIX 4 dynamic linking], [
Guido van Rossum5739e7e1995-01-20 16:50:53 +00001271AC_MSG_RESULT($withval)
Guido van Rossum76be6ed1995-01-02 18:33:54 +00001272AC_DEFINE(WITH_SGI_DL)
Guido van Rossume97ee181999-12-20 21:27:22 +00001273DYNLOADFILE="dynload_dl.o"
Guido van Rossum433c8ad1994-08-01 12:07:07 +00001274dldir=$withval
Guido van Rossum40951012000-10-07 16:21:27 +00001275if test ! -z "$dldir" -a -d "$dldir"
Guido van Rossum300fda71996-08-19 21:58:16 +00001276then LDFLAGS="$LDFLAGS -L$dldir"
Guido van Rossum433c8ad1994-08-01 12:07:07 +00001277else AC_ERROR(proper usage is --with-sgi-dl=DIRECTORY)
1278fi
1279DLINCLDIR=${dldir}
Guido van Rossum5739e7e1995-01-20 16:50:53 +00001280LIBS="$LIBS -ldl -lmld"], AC_MSG_RESULT(no))
Guido van Rossum433c8ad1994-08-01 12:07:07 +00001281
Guido van Rossum5739e7e1995-01-20 16:50:53 +00001282AC_MSG_CHECKING(for --with-dl-dld)
Barry Warsawc0d24d8b2000-06-29 16:12:00 +00001283AC_ARG_WITH(dl-dld, [ --with-dl-dld=DL_DIR,DLD_DIR GNU dynamic linking], [
Guido van Rossum5739e7e1995-01-20 16:50:53 +00001284AC_MSG_RESULT($withval)
Guido van Rossum76be6ed1995-01-02 18:33:54 +00001285AC_DEFINE(WITH_DL_DLD)
Guido van Rossume97ee181999-12-20 21:27:22 +00001286DYNLOADFILE="dynload_dl.o"
Guido van Rossum433c8ad1994-08-01 12:07:07 +00001287dldir=`echo "$withval" | sed 's/,.*//'`
1288dlddir=`echo "$withval" | sed 's/.*,//'`
Barry Warsaw7d1219d2000-10-05 18:45:53 +00001289if test ! -z "$dldir" -a -d "$dldir" -a ! -z "$dlddir" -a -d "$dlddir"
Guido van Rossum300fda71996-08-19 21:58:16 +00001290then LDFLAGS="$LDFLAGS -L$dldir -L$dlddir"
Guido van Rossum433c8ad1994-08-01 12:07:07 +00001291else AC_ERROR(proper usage is --with-dl-dld=DL_DIRECTORY,DLD_DIRECTORY)
1292fi
1293DLINCLDIR=${dldir}
Guido van Rossum5739e7e1995-01-20 16:50:53 +00001294LIBS="$LIBS -ldl -ldld"], AC_MSG_RESULT(no))
Guido van Rossum627b2d71993-12-24 10:39:16 +00001295
Guido van Rossume97ee181999-12-20 21:27:22 +00001296# the dlopen() function means we might want to use dynload_shlib.o. some
1297# platforms, such as AIX, have dlopen(), but don't want to use it.
Thomas Wouters3a584202000-08-05 23:28:51 +00001298AC_CHECK_FUNCS(dlopen)
Guido van Rossume97ee181999-12-20 21:27:22 +00001299
1300# DYNLOADFILE specifies which dynload_*.o file we will use for dynamic
1301# loading of modules.
1302AC_SUBST(DYNLOADFILE)
1303AC_MSG_CHECKING(DYNLOADFILE)
1304if test -z "$DYNLOADFILE"
1305then
1306 case $ac_sys_system/$ac_sys_release in
1307 AIX*) DYNLOADFILE="dynload_aix.o";;
1308 BeOS*) DYNLOADFILE="dynload_beos.o";;
1309 hp*|HP*) DYNLOADFILE="dynload_hpux.o";;
Jack Jansenb6e9cad2001-08-15 01:26:28 +00001310 Darwin/*) DYNLOADFILE="dynload_next.o";;
Guido van Rossume97ee181999-12-20 21:27:22 +00001311 *)
1312 # use dynload_shlib.c and dlopen() if we have it; otherwise stub
1313 # out any dynamic loading
1314 if test "$ac_cv_func_dlopen" = yes
1315 then DYNLOADFILE="dynload_shlib.o"
1316 else DYNLOADFILE="dynload_stub.o"
1317 fi
1318 ;;
1319 esac
1320fi
1321AC_MSG_RESULT($DYNLOADFILE)
1322if test "$DYNLOADFILE" != "dynload_stub.o"
1323then
1324 AC_DEFINE(HAVE_DYNAMIC_LOADING)
1325fi
1326
Jack Jansenc49e5b72001-06-19 15:00:23 +00001327# MACHDEP_OBJS can be set to platform-specific object files needed by Python
1328
1329AC_SUBST(MACHDEP_OBJS)
1330AC_MSG_CHECKING(MACHDEP_OBJS)
1331if test -z "$MACHDEP_OBJS"
1332then
Jack Jansenb6e9cad2001-08-15 01:26:28 +00001333 MACHDEP_OBJS=$extra_machdep_objs
1334else
1335 MACHDEP_OBJS="$MACHDEP_OBJS $extra_machdep_objs"
Jack Jansenc49e5b72001-06-19 15:00:23 +00001336fi
Jack Jansenb6e9cad2001-08-15 01:26:28 +00001337AC_MSG_RESULT(MACHDEP_OBJS)
Jack Jansenc49e5b72001-06-19 15:00:23 +00001338
Guido van Rossum627b2d71993-12-24 10:39:16 +00001339# checks for library functions
Martin v. Löwis244edc82001-10-04 22:44:26 +00001340AC_CHECK_FUNCS(alarm chown chroot clock confstr ctermid ctermid_r execv \
Fred Drake35a092f1999-12-13 16:23:35 +00001341 flock fork fsync fdatasync fpathconf ftime ftruncate \
Martin v. Löwisf95dd0a2001-08-15 17:14:33 +00001342 gai_strerror getgroups getlogin getpeername getpid getpwent getwd \
Martin v. Löwis864e9ff2001-08-04 22:32:03 +00001343 hstrerror inet_pton kill link lstat mkfifo mktime mremap \
Andrew M. Kuchling5821b772000-08-25 01:14:08 +00001344 nice pathconf pause plock poll pthread_init \
Fred Drake35a092f1999-12-13 16:23:35 +00001345 putenv readlink \
Andrew M. Kuchling8d2f2b22000-07-13 01:26:58 +00001346 select setegid seteuid setgid \
Martin v. Löwis791bfda2001-07-24 06:33:08 +00001347 setlocale setregid setreuid setsid setpgid setuid setvbuf snprintf \
Fred Drake35a092f1999-12-13 16:23:35 +00001348 sigaction siginterrupt sigrelse strftime strptime symlink sysconf \
Fred Drake89143df1999-12-09 22:03:25 +00001349 tcgetpgrp tcsetpgrp tempnam timegm times tmpfile tmpnam tmpnam_r \
Thomas Woutersc2c12dc2001-07-11 14:45:34 +00001350 truncate uname waitpid _getpty getpriority)
Guido van Rossum00f0f6e1999-01-06 18:52:29 +00001351
Fred Drake8cef4cf2000-06-28 16:40:38 +00001352# check for openpty and forkpty
1353
1354AC_CHECK_FUNCS(openpty,, AC_CHECK_LIB(util,openpty, [AC_DEFINE(HAVE_OPENPTY)] [LIBS="$LIBS -lutil"]))
1355AC_CHECK_FUNCS(forkpty,, AC_CHECK_LIB(util,forkpty, [AC_DEFINE(HAVE_FORKPTY)] [LIBS="$LIBS -lutil"]))
1356
Guido van Rossum00f0f6e1999-01-06 18:52:29 +00001357# check for long file support functions
1358AC_CHECK_FUNCS(fseek64 fseeko fstatvfs ftell64 ftello statvfs)
1359
Guido van Rossumf2f7eb31996-08-30 15:18:00 +00001360AC_REPLACE_FUNCS(dup2 getcwd strdup strerror memmove)
Thomas Wouters3a584202000-08-05 23:28:51 +00001361AC_CHECK_FUNCS(getpgrp, AC_TRY_COMPILE([#include <unistd.h>], [getpgrp(0);], AC_DEFINE(GETPGRP_HAVE_ARG)))
1362AC_CHECK_FUNCS(setpgrp, AC_TRY_COMPILE([#include <unistd.h>], [setpgrp(0,0);], AC_DEFINE(SETPGRP_HAVE_ARG)))
1363AC_CHECK_FUNCS(gettimeofday, AC_TRY_COMPILE([#include <sys/time.h>], [gettimeofday((struct timeval*)0,(struct timezone*)0);], ,AC_DEFINE(GETTIMEOFDAY_NO_TZ)))
Guido van Rossum627b2d71993-12-24 10:39:16 +00001364
Martin v. Löwis01dfdb32001-06-23 16:30:13 +00001365AC_CHECK_FUNCS(getaddrinfo, [dnl
1366AC_MSG_CHECKING(getaddrinfo bug)
1367AC_TRY_RUN([
1368#include <sys/types.h>
1369#include <netdb.h>
1370#include <string.h>
1371#include <sys/socket.h>
1372#include <netinet/in.h>
1373
1374main()
1375{
1376 int passive, gaierr, inet4 = 0, inet6 = 0;
1377 struct addrinfo hints, *ai, *aitop;
1378 char straddr[INET6_ADDRSTRLEN], strport[16];
1379
1380 for (passive = 0; passive <= 1; passive++) {
1381 memset(&hints, 0, sizeof(hints));
1382 hints.ai_family = AF_UNSPEC;
1383 hints.ai_flags = passive ? AI_PASSIVE : 0;
1384 hints.ai_socktype = SOCK_STREAM;
1385 if ((gaierr = getaddrinfo(NULL, "54321", &hints, &aitop)) != 0) {
1386 (void)gai_strerror(gaierr);
1387 goto bad;
1388 }
1389 for (ai = aitop; ai; ai = ai->ai_next) {
1390 if (ai->ai_addr == NULL ||
1391 ai->ai_addrlen == 0 ||
1392 getnameinfo(ai->ai_addr, ai->ai_addrlen,
1393 straddr, sizeof(straddr), strport, sizeof(strport),
1394 NI_NUMERICHOST|NI_NUMERICSERV) != 0) {
1395 goto bad;
1396 }
1397 switch (ai->ai_family) {
1398 case AF_INET:
1399 if (strcmp(strport, "54321") != 0) {
1400 goto bad;
1401 }
1402 if (passive) {
1403 if (strcmp(straddr, "0.0.0.0") != 0) {
1404 goto bad;
1405 }
1406 } else {
1407 if (strcmp(straddr, "127.0.0.1") != 0) {
1408 goto bad;
1409 }
1410 }
1411 inet4++;
1412 break;
1413 case AF_INET6:
1414 if (strcmp(strport, "54321") != 0) {
1415 goto bad;
1416 }
1417 if (passive) {
1418 if (strcmp(straddr, "::") != 0) {
1419 goto bad;
1420 }
1421 } else {
1422 if (strcmp(straddr, "::1") != 0) {
1423 goto bad;
1424 }
1425 }
1426 inet6++;
1427 break;
1428 case AF_UNSPEC:
1429 goto bad;
1430 break;
1431 default:
1432 /* another family support? */
1433 break;
1434 }
1435 }
1436 }
1437
1438 if (!(inet4 == 0 || inet4 == 2))
1439 goto bad;
1440 if (!(inet6 == 0 || inet6 == 2))
1441 goto bad;
1442
1443 if (aitop)
1444 freeaddrinfo(aitop);
1445 exit(0);
1446
1447 bad:
1448 if (aitop)
1449 freeaddrinfo(aitop);
1450 exit(1);
1451}
1452],
1453AC_MSG_RESULT(good)
1454buggygetaddrinfo=no,
1455AC_MSG_RESULT(buggy)
1456buggygetaddrinfo=yes,
1457AC_MSG_RESULT(buggy)
1458buggygetaddrinfo=yes)], [buggygetaddrinfo=yes])
1459
1460if test "$buggygetaddrinfo" = "yes"; then
1461 if test "$ipv6" = "yes"; then
1462 echo 'Fatal: You must get working getaddrinfo() function.'
1463 echo ' or you can specify "--disable-ipv6"'.
1464 exit 1
1465 fi
1466fi
Thomas Woutersb0db85a2001-08-08 10:39:03 +00001467AC_CHECK_FUNCS(getnameinfo)
Martin v. Löwis01dfdb32001-06-23 16:30:13 +00001468
Guido van Rossum627b2d71993-12-24 10:39:16 +00001469# checks for structures
Guido van Rossum76be6ed1995-01-02 18:33:54 +00001470AC_HEADER_TIME
Guido van Rossum627b2d71993-12-24 10:39:16 +00001471AC_STRUCT_TM
Guido van Rossum76be6ed1995-01-02 18:33:54 +00001472AC_STRUCT_TIMEZONE
1473
1474AC_MSG_CHECKING(for time.h that defines altzone)
1475AC_CACHE_VAL(ac_cv_header_time_altzone,
1476[AC_TRY_COMPILE([#include <time.h>], [return altzone;],
1477 ac_cv_header_time_altzone=yes,
1478 ac_cv_header_time_altzone=no)])
1479AC_MSG_RESULT($ac_cv_header_time_altzone)
1480if test $ac_cv_header_time_altzone = yes; then
1481 AC_DEFINE(HAVE_ALTZONE)
1482fi
1483
Guido van Rossum5739e7e1995-01-20 16:50:53 +00001484was_it_defined=no
1485AC_MSG_CHECKING(whether sys/select.h and sys/time.h may both be included)
Guido van Rossum76be6ed1995-01-02 18:33:54 +00001486AC_TRY_COMPILE([
Guido van Rossum433c8ad1994-08-01 12:07:07 +00001487#include <sys/types.h>
1488#include <sys/select.h>
1489#include <sys/time.h>
Guido van Rossum5739e7e1995-01-20 16:50:53 +00001490], [;], [AC_DEFINE(SYS_SELECT_WITH_SYS_TIME) was_it_defined=yes])
1491AC_MSG_RESULT($was_it_defined)
Guido van Rossum627b2d71993-12-24 10:39:16 +00001492
Martin v. Löwis01dfdb32001-06-23 16:30:13 +00001493AC_MSG_CHECKING(for addrinfo)
1494AC_CACHE_VAL(ac_cv_struct_addrinfo,
1495AC_TRY_COMPILE([
1496# include <netdb.h>],
1497 [struct addrinfo a],
1498 ac_cv_struct_addrinfo=yes,
1499 ac_cv_struct_addrinfo=no))
1500AC_MSG_RESULT($ac_cv_struct_addrinfo)
1501if test $ac_cv_struct_addrinfo = yes; then
1502 AC_DEFINE(HAVE_ADDRINFO)
1503fi
1504
1505AC_MSG_CHECKING(for sockaddr_storage)
1506AC_CACHE_VAL(ac_cv_struct_sockaddr_storage,
1507AC_TRY_COMPILE([
1508# include <sys/types.h>
1509# include <sys/socket.h>],
1510 [struct sockaddr_storage s],
1511 ac_cv_struct_sockaddr_storage=yes,
1512 ac_cv_struct_sockaddr_storage=no))
1513AC_MSG_RESULT($ac_cv_struct_sockaddr_storage)
1514if test $ac_cv_struct_sockaddr_storage = yes; then
1515 AC_DEFINE(HAVE_SOCKADDR_STORAGE)
1516fi
1517
Guido van Rossum627b2d71993-12-24 10:39:16 +00001518# checks for compiler characteristics
Guido van Rossum433c8ad1994-08-01 12:07:07 +00001519
Guido van Rossum76be6ed1995-01-02 18:33:54 +00001520AC_C_CHAR_UNSIGNED
Guido van Rossum76be6ed1995-01-02 18:33:54 +00001521AC_C_CONST
Guido van Rossum433c8ad1994-08-01 12:07:07 +00001522
Guido van Rossum5739e7e1995-01-20 16:50:53 +00001523works=no
1524AC_MSG_CHECKING(for working volatile)
1525AC_TRY_COMPILE([],[volatile int x; x = 0;], works=yes, AC_DEFINE(volatile, []))
1526AC_MSG_RESULT($works)
Guido van Rossumdabb11b1994-10-11 15:04:27 +00001527
Guido van Rossum5739e7e1995-01-20 16:50:53 +00001528works=no
1529AC_MSG_CHECKING(for working signed char)
1530AC_TRY_COMPILE([], [signed char c;], works=yes, AC_DEFINE(signed, []))
1531AC_MSG_RESULT($works)
Guido van Rossum433c8ad1994-08-01 12:07:07 +00001532
Guido van Rossum5739e7e1995-01-20 16:50:53 +00001533have_prototypes=no
1534AC_MSG_CHECKING(for prototypes)
Guido van Rossum76be6ed1995-01-02 18:33:54 +00001535AC_TRY_COMPILE([int foo(int x) { return 0; }], [return foo(10);],
1536AC_DEFINE(HAVE_PROTOTYPES) have_prototypes=yes)
Guido van Rossum5739e7e1995-01-20 16:50:53 +00001537AC_MSG_RESULT($have_prototypes)
Guido van Rossum433c8ad1994-08-01 12:07:07 +00001538
Guido van Rossum5739e7e1995-01-20 16:50:53 +00001539works=no
1540AC_MSG_CHECKING(for variable length prototypes and stdarg.h)
Guido van Rossum76be6ed1995-01-02 18:33:54 +00001541AC_TRY_COMPILE([
Guido van Rossum433c8ad1994-08-01 12:07:07 +00001542#include <stdarg.h>
Guido van Rossum3f13e481996-08-30 20:58:11 +00001543int foo(int x, ...) {
1544 va_list va;
1545 va_start(va, x);
1546 va_arg(va, int);
1547 va_arg(va, char *);
1548 va_arg(va, double);
1549 return 0;
1550}
1551], [return foo(10, "", 3.14);],
Guido van Rossum5739e7e1995-01-20 16:50:53 +00001552AC_DEFINE(HAVE_STDARG_PROTOTYPES) works=yes)
1553AC_MSG_RESULT($works)
Guido van Rossum76be6ed1995-01-02 18:33:54 +00001554
Guido van Rossum5739e7e1995-01-20 16:50:53 +00001555if test "$have_prototypes" = yes; then
1556bad_prototypes=no
1557AC_MSG_CHECKING(for bad exec* prototypes)
1558AC_TRY_COMPILE([#include <unistd.h>], [char **t;execve("@",t,t);], ,
1559 AC_DEFINE(BAD_EXEC_PROTOTYPES) bad_prototypes=yes)
1560AC_MSG_RESULT($bad_prototypes)
Guido van Rossum627b2d71993-12-24 10:39:16 +00001561fi
1562
Martin v. Löwis01dfdb32001-06-23 16:30:13 +00001563# check if sockaddr has sa_len member
1564AC_MSG_CHECKING(if sockaddr has sa_len member)
1565AC_TRY_COMPILE([#include <sys/types.h>
1566#include <sys/socket.h>],
1567[struct sockaddr x;
1568x.sa_len = 0;],
1569 AC_MSG_RESULT(yes)
1570 AC_DEFINE(HAVE_SOCKADDR_SA_LEN),
1571 AC_MSG_RESULT(no))
1572
Guido van Rossum5739e7e1995-01-20 16:50:53 +00001573AC_MSG_CHECKING(for bad static forward)
Martin v. Löwis1d5ecb72001-08-09 10:29:44 +00001574AC_CACHE_VAL(ac_cv_bad_static_forward,
1575[AC_TRY_RUN([
Guido van Rossum433c8ad1994-08-01 12:07:07 +00001576struct s { int a; int b; };
1577static struct s foo;
Guido van Rossum5dee5e71994-11-10 23:06:54 +00001578int foobar() {
1579 static int random;
1580 random = (int) &foo;
1581 return random;
1582}
Guido van Rossum433c8ad1994-08-01 12:07:07 +00001583static struct s foo = { 1, 2 };
Guido van Rossum5dee5e71994-11-10 23:06:54 +00001584main() {
1585 exit(!((int)&foo == foobar()));
Guido van Rossum3065c942001-09-17 04:03:14 +00001586}],
1587ac_cv_bad_static_forward=no,
1588ac_cv_bad_static_forward=yes,
1589ac_cv_bad_static_forward=no)])
Martin v. Löwis1d5ecb72001-08-09 10:29:44 +00001590AC_MSG_RESULT($ac_cv_bad_static_forward)
1591if test "$ac_cv_bad_static_forward" = yes
1592then
1593 AC_DEFINE(BAD_STATIC_FORWARD)
1594fi
Guido van Rossum433c8ad1994-08-01 12:07:07 +00001595
Guido van Rossum5739e7e1995-01-20 16:50:53 +00001596va_list_is_array=no
1597AC_MSG_CHECKING(whether va_list is an array)
Guido van Rossum76be6ed1995-01-02 18:33:54 +00001598AC_TRY_COMPILE([
1599#ifdef HAVE_STDARG_PROTOTYPES
1600#include <stdarg.h>
1601#else
1602#include <varargs.h>
1603#endif
Guido van Rossum5739e7e1995-01-20 16:50:53 +00001604], [va_list list1, list2; list1 = list2;], ,
1605AC_DEFINE(VA_LIST_IS_ARRAY) va_list_is_array=yes)
1606AC_MSG_RESULT($va_list_is_array)
Guido van Rossum76be6ed1995-01-02 18:33:54 +00001607
Guido van Rossuma96f0ba1999-03-22 21:49:51 +00001608# sigh -- gethostbyname_r is a mess; it can have 3, 5 or 6 arguments :-(
1609AC_CHECK_FUNC(gethostbyname_r, [
1610 AC_DEFINE(HAVE_GETHOSTBYNAME_R)
1611 AC_MSG_CHECKING([gethostbyname_r with 6 args])
1612 OLD_CFLAGS=$CFLAGS
1613 CFLAGS="$CFLAGS $MY_CPPFLAGS $MY_THREAD_CPPFLAGS $MY_CFLAGS"
1614 AC_TRY_COMPILE([
1615# include <netdb.h>
1616 ], [
1617 char *name;
1618 struct hostent *he, *res;
1619 char buffer[2048];
1620 int buflen = 2048;
1621 int h_errnop;
1622
1623 (void) gethostbyname_r(name, he, buffer, buflen, &res, &h_errnop)
1624 ], [
Guido van Rossum8db7d8b1999-03-23 16:40:33 +00001625 AC_DEFINE(HAVE_GETHOSTBYNAME_R)
Guido van Rossuma96f0ba1999-03-22 21:49:51 +00001626 AC_DEFINE(HAVE_GETHOSTBYNAME_R_6_ARG)
1627 AC_MSG_RESULT(yes)
1628 ], [
1629 AC_MSG_RESULT(no)
1630 AC_MSG_CHECKING([gethostbyname_r with 5 args])
1631 AC_TRY_COMPILE([
1632# include <netdb.h>
1633 ], [
1634 char *name;
1635 struct hostent *he;
1636 char buffer[2048];
1637 int buflen = 2048;
1638 int h_errnop;
1639
1640 (void) gethostbyname_r(name, he, buffer, buflen, &h_errnop)
1641 ], [
Guido van Rossum8db7d8b1999-03-23 16:40:33 +00001642 AC_DEFINE(HAVE_GETHOSTBYNAME_R)
Guido van Rossuma96f0ba1999-03-22 21:49:51 +00001643 AC_DEFINE(HAVE_GETHOSTBYNAME_R_5_ARG)
1644 AC_MSG_RESULT(yes)
1645 ], [
1646 AC_MSG_RESULT(no)
1647 AC_MSG_CHECKING([gethostbyname_r with 3 args])
1648 AC_TRY_COMPILE([
1649# include <netdb.h>
1650 ], [
1651 char *name;
1652 struct hostent *he;
1653 struct hostent_data data;
1654
1655 (void) gethostbyname_r(name, he, &data);
1656 ], [
Guido van Rossum8db7d8b1999-03-23 16:40:33 +00001657 AC_DEFINE(HAVE_GETHOSTBYNAME_R)
Guido van Rossuma96f0ba1999-03-22 21:49:51 +00001658 AC_DEFINE(HAVE_GETHOSTBYNAME_R_3_ARG)
1659 AC_MSG_RESULT(yes)
1660 ], [
1661 AC_MSG_RESULT(no)
1662 ])
1663 ])
1664 ])
1665 CFLAGS=$OLD_CFLAGS
1666], [
Thomas Wouters3a584202000-08-05 23:28:51 +00001667 AC_CHECK_FUNCS(gethostbyname)
Guido van Rossuma96f0ba1999-03-22 21:49:51 +00001668])
1669AC_SUBST(HAVE_GETHOSTBYNAME_R_6_ARG)
1670AC_SUBST(HAVE_GETHOSTBYNAME_R_5_ARG)
1671AC_SUBST(HAVE_GETHOSTBYNAME_R_3_ARG)
Guido van Rossum8db7d8b1999-03-23 16:40:33 +00001672AC_SUBST(HAVE_GETHOSTBYNAME_R)
Guido van Rossuma96f0ba1999-03-22 21:49:51 +00001673AC_SUBST(HAVE_GETHOSTBYNAME)
1674
Guido van Rossum627b2d71993-12-24 10:39:16 +00001675# checks for system services
1676# (none yet)
1677
Guido van Rossum76be6ed1995-01-02 18:33:54 +00001678# Linux requires this for correct f.p. operations
Jeremy Hyltonbe28f5b2000-07-27 21:03:04 +00001679AC_CHECK_FUNC(__fpu_control,
1680 [],
1681 [AC_CHECK_LIB(ieee, __fpu_control)
1682])
Guido van Rossum627b2d71993-12-24 10:39:16 +00001683
Guido van Rossum93274221997-05-09 02:42:00 +00001684# Check for --with-fpectl
Guido van Rossum93274221997-05-09 02:42:00 +00001685AC_MSG_CHECKING(for --with-fpectl)
Barry Warsawc0d24d8b2000-06-29 16:12:00 +00001686AC_ARG_WITH(fpectl,
1687[ --with-fpectl enable SIGFPE catching], [
Guido van Rossum93274221997-05-09 02:42:00 +00001688if test "$withval" != no
1689then AC_DEFINE(WANT_SIGFPE_HANDLER) AC_MSG_RESULT(yes)
1690else AC_MSG_RESULT(no)
Guido van Rossumef2255b2000-03-10 22:30:29 +00001691fi],
1692[AC_MSG_RESULT(no)])
Guido van Rossum93274221997-05-09 02:42:00 +00001693
Guido van Rossum433c8ad1994-08-01 12:07:07 +00001694# check for --with-libm=...
1695AC_SUBST(LIBM)
Guido van Rossum4b6b5791996-09-09 20:09:34 +00001696case $ac_sys_system in
Guido van Rossum3dc0a512000-10-05 18:00:06 +00001697Darwin) ;;
Guido van Rossumec95c7b1998-08-04 17:59:56 +00001698BeOS) ;;
Guido van Rossum4b6b5791996-09-09 20:09:34 +00001699*) LIBM=-lm
1700esac
Guido van Rossum93274221997-05-09 02:42:00 +00001701AC_MSG_CHECKING(for --with-libm=STRING)
Barry Warsawc0d24d8b2000-06-29 16:12:00 +00001702AC_ARG_WITH(libm, [ --with-libm=STRING math library], [
Guido van Rossum93274221997-05-09 02:42:00 +00001703if test "$withval" = no
1704then LIBM=
1705 AC_MSG_RESULT(force LIBM empty)
1706elif test "$withval" != yes
Guido van Rossum433c8ad1994-08-01 12:07:07 +00001707then LIBM=$withval
Guido van Rossum93274221997-05-09 02:42:00 +00001708 AC_MSG_RESULT(set LIBM=\"$withval\")
Guido van Rossum433c8ad1994-08-01 12:07:07 +00001709else AC_ERROR(proper usage is --with-libm=STRING)
Guido van Rossum93274221997-05-09 02:42:00 +00001710fi],
1711[AC_MSG_RESULT(default LIBM=\"$LIBM\")])
Guido van Rossum433c8ad1994-08-01 12:07:07 +00001712
1713# check for --with-libc=...
1714AC_SUBST(LIBC)
Guido van Rossum93274221997-05-09 02:42:00 +00001715AC_MSG_CHECKING(for --with-libc=STRING)
Barry Warsawc0d24d8b2000-06-29 16:12:00 +00001716AC_ARG_WITH(libc, [ --with-libc=STRING C library], [
Guido van Rossum93274221997-05-09 02:42:00 +00001717if test "$withval" = no
1718then LIBC=
1719 AC_MSG_RESULT(force LIBC empty)
1720elif test "$withval" != yes
Guido van Rossum433c8ad1994-08-01 12:07:07 +00001721then LIBC=$withval
Guido van Rossum93274221997-05-09 02:42:00 +00001722 AC_MSG_RESULT(set LIBC=\"$withval\")
Guido van Rossum433c8ad1994-08-01 12:07:07 +00001723else AC_ERROR(proper usage is --with-libc=STRING)
Guido van Rossum93274221997-05-09 02:42:00 +00001724fi],
1725[AC_MSG_RESULT(default LIBC=\"$LIBC\")])
Guido van Rossum433c8ad1994-08-01 12:07:07 +00001726
Guido van Rossumaf5b83e1995-01-04 19:02:35 +00001727# check for hypot() in math library
1728LIBS_SAVE=$LIBS
1729LIBS="$LIBS $LIBM"
Guido van Rossumf2f7eb31996-08-30 15:18:00 +00001730AC_REPLACE_FUNCS(hypot)
Guido van Rossumaf5b83e1995-01-04 19:02:35 +00001731LIBS=$LIBS_SAVE
1732
Guido van Rossumad713701997-07-10 22:42:38 +00001733# check whether malloc(0) returns NULL or not
Guido van Rossumad713701997-07-10 22:42:38 +00001734AC_MSG_CHECKING(what malloc(0) returns)
1735AC_CACHE_VAL(ac_cv_malloc_zero,
1736[AC_TRY_RUN([#include <stdio.h>
1737#ifdef HAVE_STDLIB
1738#include <stdlib.h>
1739#else
1740char *malloc(), *realloc();
1741int *free();
1742#endif
1743main() {
1744 char *p;
1745 p = malloc(0);
1746 if (p == NULL) exit(1);
1747 p = realloc(p, 0);
1748 if (p == NULL) exit(1);
1749 free(p);
1750 exit(0);
Guido van Rossum3065c942001-09-17 04:03:14 +00001751}],
1752ac_cv_malloc_zero=nonnull,
1753ac_cv_malloc_zero=null,
1754ac_cv_malloc_zero=nonnull)]) # XXX arm cross-compile?
Guido van Rossumad713701997-07-10 22:42:38 +00001755AC_MSG_RESULT($ac_cv_malloc_zero)
1756if test "$ac_cv_malloc_zero" = null
1757then
1758 AC_DEFINE(MALLOC_ZERO_RETURNS_NULL)
1759fi
1760
Guido van Rossumef2255b2000-03-10 22:30:29 +00001761# check for wchar.h
1762AC_CHECK_HEADER(wchar.h,
1763AC_DEFINE(HAVE_WCHAR_H) wchar_h="yes",
1764wchar_h="no"
1765)
1766
Martin v. Löwis0ba70cc2001-06-26 22:22:37 +00001767# determine wchar_t size
1768if test "$wchar_h" = yes
1769then
Guido van Rossum3065c942001-09-17 04:03:14 +00001770 AC_CHECK_SIZEOF(wchar_t, 4)
Martin v. Löwis0ba70cc2001-06-26 22:22:37 +00001771fi
1772
1773AC_MSG_CHECKING(what type to use for unicode)
1774AC_ARG_ENABLE(unicode,
1775[ --enable-unicode[=ucs2,ucs4] Enable Unicode strings (default is yes)],,enable_unicode=yes)
1776
1777if test $enable_unicode = yes
1778then
Martin v. Löwisfd917792001-06-27 20:22:04 +00001779 # Without any arguments, Py_UNICODE defaults to two-byte mode
1780 enable_unicode="ucs2"
Martin v. Löwis0ba70cc2001-06-26 22:22:37 +00001781fi
1782
1783case "$enable_unicode" in
1784ucs2) unicode_size="2"
1785 AC_DEFINE(Py_UNICODE_SIZE,2)
1786 ;;
1787ucs4) unicode_size="4"
1788 AC_DEFINE(Py_UNICODE_SIZE,4)
1789 ;;
1790esac
1791
Martin v. Löwis339d0f72001-08-17 18:39:25 +00001792AC_SUBST(UNICODE_OBJS)
Martin v. Löwis0ba70cc2001-06-26 22:22:37 +00001793if test "$enable_unicode" = "no"
1794then
Martin v. Löwis339d0f72001-08-17 18:39:25 +00001795 UNICODE_OBJS=""
Martin v. Löwis0ba70cc2001-06-26 22:22:37 +00001796 AC_MSG_RESULT(not used)
1797else
Martin v. Löwis339d0f72001-08-17 18:39:25 +00001798 UNICODE_OBJS="Objects/unicodeobject.o Objects/unicodectype.o"
Martin v. Löwis0ba70cc2001-06-26 22:22:37 +00001799 AC_DEFINE(Py_USING_UNICODE)
1800 if test "$unicode_size" = "$ac_cv_sizeof_wchar_t"
1801 then
1802 PY_UNICODE_TYPE="wchar_t"
1803 AC_DEFINE(HAVE_USABLE_WCHAR_T)
1804 AC_DEFINE(PY_UNICODE_TYPE,wchar_t)
1805 elif test "$ac_cv_sizeof_short" = "$unicode_size"
1806 then
1807 PY_UNICODE_TYPE="unsigned short"
1808 AC_DEFINE(PY_UNICODE_TYPE,unsigned short)
1809 elif test "$ac_cv_sizeof_long" = "$unicode_size"
1810 then
1811 PY_UNICODE_TYPE="unsigned long"
1812 AC_DEFINE(PY_UNICODE_TYPE,unsigned long)
1813 else
1814 PY_UNICODE_TYPE="no type found"
1815 fi
1816 AC_MSG_RESULT($PY_UNICODE_TYPE)
1817fi
Guido van Rossumef2255b2000-03-10 22:30:29 +00001818
1819# check for endianness
1820AC_C_BIGENDIAN
1821
Vladimir Marangozov9a5a5d12000-07-12 03:02:16 +00001822# Check whether right shifting a negative integer extends the sign bit
1823# or fills with zeros (like the Cray J90, according to Tim Peters).
1824AC_MSG_CHECKING(whether right shift extends the sign bit)
Vladimir Marangozova6180282000-07-12 05:05:06 +00001825AC_CACHE_VAL(ac_cv_rshift_extends_sign, [
Vladimir Marangozov9a5a5d12000-07-12 03:02:16 +00001826AC_TRY_RUN([
1827int main()
1828{
Vladimir Marangozova6180282000-07-12 05:05:06 +00001829 exit(((-1)>>3 == -1) ? 0 : 1);
Vladimir Marangozov9a5a5d12000-07-12 03:02:16 +00001830}
Guido van Rossum3065c942001-09-17 04:03:14 +00001831],
1832ac_cv_rshift_extends_sign=yes,
1833ac_cv_rshift_extends_sign=no,
1834ac_cv_rshift_extends_sign=yes)])
Vladimir Marangozova6180282000-07-12 05:05:06 +00001835AC_MSG_RESULT($ac_cv_rshift_extends_sign)
1836if test "$ac_cv_rshift_extends_sign" = no
1837then
1838 AC_DEFINE(SIGNED_RIGHT_SHIFT_ZERO_FILLS)
1839fi
1840
Guido van Rossumcadfaec2001-01-05 14:45:49 +00001841# check for getc_unlocked and related locking functions
1842AC_MSG_CHECKING(for getc_unlocked() and friends)
1843AC_CACHE_VAL(ac_cv_have_getc_unlocked, [
1844AC_TRY_LINK([#include <stdio.h>],[
1845 FILE *f = fopen("/dev/null", "r");
1846 flockfile(f);
1847 getc_unlocked(f);
1848 funlockfile(f);
1849], ac_cv_have_getc_unlocked=yes, ac_cv_have_getc_unlocked=no)])
1850AC_MSG_RESULT($ac_cv_have_getc_unlocked)
1851if test "$ac_cv_have_getc_unlocked" = yes
1852then
1853 AC_DEFINE(HAVE_GETC_UNLOCKED)
1854fi
Vladimir Marangozov9a5a5d12000-07-12 03:02:16 +00001855
Martin v. Löwis0daad592001-09-30 21:09:59 +00001856# check for readline 4.0
1857AC_CHECK_LIB(readline, rl_pre_input_hook,
1858 AC_DEFINE(HAVE_RL_PRE_INPUT_HOOK), , -ltermcap)
1859
Guido van Rossum353ae582001-07-10 16:45:32 +00001860# check for readline 4.2
1861AC_CHECK_LIB(readline, rl_completion_matches,
1862 AC_DEFINE(HAVE_RL_COMPLETION_MATCHES), , -ltermcap)
1863
Thomas Wouterse38b2f12001-07-11 22:35:31 +00001864AC_MSG_CHECKING(for broken nice())
1865AC_CACHE_VAL(ac_cv_broken_nice, [
1866AC_TRY_RUN([
1867int main()
1868{
1869 int val1 = nice(1);
1870 if (val1 != -1 && val1 == nice(2))
1871 exit(0);
1872 exit(1);
1873}
Guido van Rossum3065c942001-09-17 04:03:14 +00001874],
1875ac_cv_broken_nice=yes,
1876ac_cv_broken_nice=no,
1877ac_cv_broken_nice=no)])
Thomas Wouterse38b2f12001-07-11 22:35:31 +00001878AC_MSG_RESULT($ac_cv_broken_nice)
1879if test "$ac_cv_broken_nice" = yes
1880then
1881 AC_DEFINE(HAVE_BROKEN_NICE)
1882fi
1883
Guido van Rossum95713eb2000-05-18 20:53:31 +00001884# THIS MUST BE LAST, IT CAN BREAK OTHER TESTS!
1885# Add sys/socket.h to confdefs.h
1886cat >> confdefs.h <<\EOF
1887#ifdef HAVE_SYS_SOCKET_H
1888#include <sys/socket.h>
1889#endif
1890EOF
1891AC_CHECK_TYPE(socklen_t, int)
1892
Neil Schemenauerf25cf6c2001-03-04 06:39:33 +00001893# Add Python/ prefix to LIBOBJS
1894libobjs=$LIBOBJS
1895LIBOBJS=
1896for obj in $libobjs; do
1897 LIBOBJS="$LIBOBJS Python/$obj"
1898done
1899
Neil Schemenauer55f0cf32001-01-24 17:24:33 +00001900#AC_MSG_CHECKING(for Modules/Setup)
1901#if test ! -f Modules/Setup ; then
1902# if test ! -d Modules ; then
1903# mkdir Modules
1904# fi
1905# cp "$srcdir/Modules/Setup.dist" Modules/Setup
1906# AC_MSG_RESULT(creating)
1907#else
1908# AC_MSG_RESULT(already exists)
1909#fi
1910
1911AC_SUBST(SRCDIRS)
Neil Schemenaueracbf9ef2001-02-27 02:15:14 +00001912SRCDIRS="Parser Grammar Objects Python Modules"
Andrew M. Kuchling8abedde2001-01-26 22:55:24 +00001913AC_MSG_CHECKING(for build directories)
Neil Schemenauer55f0cf32001-01-24 17:24:33 +00001914for dir in $SRCDIRS; do
1915 if test ! -d $dir; then
1916 mkdir $dir
Fred Drake884d3ba2000-11-02 17:52:56 +00001917 fi
Neil Schemenauer55f0cf32001-01-24 17:24:33 +00001918done
1919AC_MSG_RESULT(done)
Fred Drake036144d2000-10-26 17:09:35 +00001920
Guido van Rossum627b2d71993-12-24 10:39:16 +00001921# generate output files
Andrew M. Kuchling8abedde2001-01-26 22:55:24 +00001922AC_OUTPUT(Makefile.pre Modules/Setup.config)
Neil Schemenauer61c51152001-01-26 16:18:16 +00001923
1924echo "creating Setup"
1925if test ! -f Modules/Setup
1926then
1927 cp $srcdir/Modules/Setup.dist Modules/Setup
1928fi
1929
1930echo "creating Setup.local"
1931if test ! -f Modules/Setup.local
1932then
1933 echo "# Edit this file for local setup changes" >Modules/Setup.local
1934fi
1935
1936echo "creating Makefile"
1937$SHELL $srcdir/Modules/makesetup -c $srcdir/Modules/config.c.in \
1938 -s Modules Modules/Setup.config \
Neil Schemenauerf8b71c52001-04-21 17:41:16 +00001939 Modules/Setup.local Modules/Setup
Neil Schemenauer66252162001-02-19 04:47:42 +00001940mv config.c Modules