blob: 3a21ddbe2ea2f3879bf9351fc674aa29eb71a5e9 [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 |
Guido van Rossum67b26592001-10-20 14:21:45 +000066 tr -d '[/ ]' | sed 's/^[[A-Z]]\.//' | 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";;
Jack Jansen8a97f4a2001-12-05 23:27:32 +000071 darwin*) MACHDEP="darwin";;
Guido van Rossumb97ef171997-09-28 05:44:03 +000072 '') MACHDEP="unknown";;
Guido van Rossumb418f891996-07-30 18:06:02 +000073 esac
74fi
Guido van Rossum91922671997-10-09 20:24:13 +000075
76#
77# SGI compilers allow the specification of the both the ABI and the
78# ISA on the command line. Depending on the values of these switches,
79# different and often incompatable code will be generated.
80#
81# The SGI_ABI variable can be used to modify the CC and LDFLAGS and
82# thus supply support for various ABI/ISA combinations. The MACHDEP
83# variable is also adjusted.
84#
85AC_SUBST(SGI_ABI)
86if test ! -z "$SGI_ABI"
87then
88 CC="cc $SGI_ABI"
89 LDFLAGS="$SGI_ABI $LDFLAGS"
90 MACHDEP=`echo "${MACHDEP}${SGI_ABI}" | sed 's/ *//g'`
91fi
Guido van Rossumb418f891996-07-30 18:06:02 +000092AC_MSG_RESULT($MACHDEP)
93
Guido van Rossum627b2d71993-12-24 10:39:16 +000094# checks for alternative programs
Guido van Rossum5739e7e1995-01-20 16:50:53 +000095AC_MSG_CHECKING(for --without-gcc)
Barry Warsawc0d24d8b2000-06-29 16:12:00 +000096AC_ARG_WITH(gcc, [ --without-gcc never use gcc], [
Guido van Rossum433c8ad1994-08-01 12:07:07 +000097 case $withval in
Guido van Rossum5739e7e1995-01-20 16:50:53 +000098 no) CC=cc
99 without_gcc=yes;;
100 yes) CC=gcc
101 without_gcc=no;;
102 *) CC=$withval
103 without_gcc=$withval;;
Guido van Rossum55a214e1995-09-13 17:48:09 +0000104 esac], [
Guido van Rossumb418f891996-07-30 18:06:02 +0000105 case $ac_sys_system in
Neil Schemenauerb3531b82001-02-16 04:09:05 +0000106 AIX*) CC=cc_r
107 without_gcc=;;
Guido van Rossum7a5f4201999-01-12 20:30:23 +0000108 BeOS*)
Guido van Rossum7a5f4201999-01-12 20:30:23 +0000109 case $BE_HOST_CPU in
110 ppc)
Fred Drake5790be12000-10-09 17:06:13 +0000111 CC=mwcc
Guido van Rossum7a5f4201999-01-12 20:30:23 +0000112 without_gcc=yes
Fred Drake5790be12000-10-09 17:06:13 +0000113 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 +0000114 CCSHARED="-UDL_IMPORT -D'DL_IMPORT(RTYPE)=__declspec(dllimport) RTYPE'"
Guido van Rossum7a5f4201999-01-12 20:30:23 +0000115 LDFLAGS="$LDFLAGS -nodup"
Guido van Rossum7a5f4201999-01-12 20:30:23 +0000116 ;;
117 x86)
Fred Drake5790be12000-10-09 17:06:13 +0000118 CC=gcc
Guido van Rossum7a5f4201999-01-12 20:30:23 +0000119 without_gcc=no
Fred Drake5790be12000-10-09 17:06:13 +0000120 OPT=-O
Guido van Rossum7a5f4201999-01-12 20:30:23 +0000121 ;;
122 *)
Fred Drake5790be12000-10-09 17:06:13 +0000123 AC_ERROR(Unknown BeOS platform \"$BE_HOST_CPU\")
Guido van Rossum7a5f4201999-01-12 20:30:23 +0000124 ;;
125 esac
Neil Schemenauerb3531b82001-02-16 04:09:05 +0000126 AR="\$(srcdir)/Modules/ar_beos"
127 RANLIB=:
Guido van Rossum7a5f4201999-01-12 20:30:23 +0000128 ;;
Trent Mick635f6fb2000-08-23 21:33:05 +0000129 Monterey*)
130 RANLIB=:
Martin v. Löwis130fb172001-07-19 11:00:41 +0000131 without_gcc=;;
132 *) without_gcc=no;;
Guido van Rossum55a214e1995-09-13 17:48:09 +0000133 esac])
Guido van Rossum5739e7e1995-01-20 16:50:53 +0000134AC_MSG_RESULT($without_gcc)
135
Guido van Rossum27552902001-01-23 01:52:26 +0000136AC_SUBST(CXX)
Guido van Rossum95012191999-12-16 17:50:52 +0000137AC_SUBST(MAINOBJ)
Fred Drakea1a84e72001-03-06 05:52:16 +0000138MAINOBJ=python.o
Guido van Rossum95012191999-12-16 17:50:52 +0000139AC_MSG_CHECKING(for --with-cxx=<compiler>)
Barry Warsawc0d24d8b2000-06-29 16:12:00 +0000140AC_ARG_WITH(cxx, [ --with-cxx=<compiler> enable C++ support],[
Martin v. Löwis537970f2000-12-13 17:37:02 +0000141 check_cxx=no
Guido van Rossum95012191999-12-16 17:50:52 +0000142 case $withval in
143 no) CXX=
144 with_cxx=no;;
145 *) CXX=$withval
Fred Drakea1a84e72001-03-06 05:52:16 +0000146 MAINOBJ=ccpython.o
Guido van Rossum95012191999-12-16 17:50:52 +0000147 with_cxx=$withval;;
148 esac], [
149 with_cxx=no
Martin v. Löwis537970f2000-12-13 17:37:02 +0000150 check_cxx=yes
Guido van Rossum95012191999-12-16 17:50:52 +0000151])
152AC_MSG_RESULT($with_cxx)
Martin v. Löwis537970f2000-12-13 17:37:02 +0000153
154dnl The following fragment works similar to AC_PROG_CXX.
155dnl It does not fail if CXX is not found, and it is not executed if
Martin v. Löwisa5f73f92001-10-15 08:06:29 +0000156dnl --without-cxx was given.
Martin v. Löwis537970f2000-12-13 17:37:02 +0000157dnl Finally, it does not test whether CXX is g++.
158
Martin v. Löwisa5f73f92001-10-15 08:06:29 +0000159dnl Autoconf 2.5x does not have AC_PROG_CXX_WORKS anymore
160ifdef([AC_PROG_CXX_WORKS],[],
161 [AC_DEFUN([AC_PROG_CXX_WORKS],
162 [AC_LANG_PUSH(C++)dnl
163 _AC_COMPILER_EXEEXT
164 AC_LANG_POP()
165 ]
166)])
167
Martin v. Löwis537970f2000-12-13 17:37:02 +0000168if test "$check_cxx" = "yes"
169then
170 AC_CHECK_PROGS(CXX, $CCC c++ g++ gcc CC cxx cc++ cl, notfound)
171 if test "$CXX" = "notfound"
172 then
173 CXX=
174 else
175 AC_PROG_CXX_WORKS
176 fi
177fi
178
Guido van Rossum03ad99f1995-03-09 14:09:54 +0000179# If the user switches compilers, we can't believe the cache
180if test ! -z "$ac_cv_prog_CC" -a ! -z "$CC" -a "$CC" != "$ac_cv_prog_CC"
181then
182 AC_ERROR(cached CC is different -- throw away $cache_file
183(it is also a good idea to do 'make clean' before compiling))
184fi
185
Guido van Rossum627b2d71993-12-24 10:39:16 +0000186AC_PROG_CC
Martin v. Löwis1d5ecb72001-08-09 10:29:44 +0000187
188# checks for UNIX variants that set C preprocessor variables
189AC_AIX
190AC_MINIX
191
Neil Schemenauer55f0cf32001-01-24 17:24:33 +0000192AC_EXEEXT
Neil Schemenauer3ae1d0a2001-01-27 06:54:42 +0000193AC_MSG_CHECKING(for --with-suffix)
194AC_ARG_WITH(suffix, [ --with-suffix=.exe set executable suffix],[
195 case $withval in
196 no) EXEEXT=;;
197 yes) EXEEXT=.exe;;
198 *) EXEEXT=$withval;;
199 esac])
200AC_MSG_RESULT($EXEEXT)
Jack Jansen1999ef42001-12-06 21:47:20 +0000201
Jack Jansen9a66b6d2001-08-08 13:56:14 +0000202# Test whether we're running on a non-case-sensitive system, in which
203# case we give a warning if no ext is given
Jack Jansen1999ef42001-12-06 21:47:20 +0000204AC_SUBST(BUILDEXEEXT)
205AC_MSG_CHECKING(for case-insensitive build directory)
206if test -d "python"
Jack Jansen9a66b6d2001-08-08 13:56:14 +0000207then
Jack Jansen1999ef42001-12-06 21:47:20 +0000208 AC_MSG_RESULT(yes)
209 BUILDEXEEXT=.exe
210else
211 AC_MSG_RESULT(no)
212 BUILDEXEEXT='$(EXEEXT)'
Jack Jansen9a66b6d2001-08-08 13:56:14 +0000213fi
Guido van Rossumfb842551997-08-06 23:42:07 +0000214
Guido van Rossumdd997f71998-10-07 19:58:26 +0000215case $MACHDEP in
216bsdos*)
217 case $CC in
218 gcc) CC="$CC -D_HAVE_BSDI";;
219 esac;;
220esac
221
Guido van Rossum84561611997-08-21 00:08:11 +0000222case $ac_sys_system in
223hp*|HP*)
224 case $CC in
Guido van Rossumcd5ff9f2000-09-22 16:15:54 +0000225 cc|*/cc) CC="$CC -Ae";;
Guido van Rossum84561611997-08-21 00:08:11 +0000226 esac;;
Trent Mick635f6fb2000-08-23 21:33:05 +0000227Monterey*)
228 case $CC in
229 cc) CC="$CC -Wl,-Bexport";;
230 esac;;
Martin v. Löwise8964d42001-03-06 12:09:07 +0000231SunOS*)
232 # Some functions have a prototype only with that define, e.g. confstr
233 AC_DEFINE(__EXTENSIONS__)
234 ;;
Guido van Rossum84561611997-08-21 00:08:11 +0000235esac
236
Martin v. Löwise8964d42001-03-06 12:09:07 +0000237
Neil Schemenauer61c51152001-01-26 16:18:16 +0000238AC_SUBST(LIBRARY)
239AC_MSG_CHECKING(LIBRARY)
240if test -z "$LIBRARY"
241then
242 LIBRARY='libpython$(VERSION).a'
243fi
244AC_MSG_RESULT($LIBRARY)
245
Guido van Rossum54ecc3d1999-01-27 17:53:11 +0000246# LDLIBRARY is the name of the library to link against (as opposed to the
Jack Jansenb6e9cad2001-08-15 01:26:28 +0000247# name of the library into which to insert object files). BLDLIBRARY is also
248# the library to link against, usually. On Mac OS X frameworks, BLDLIBRARY
249# is blank as the main program is not linked directly against LDLIBRARY.
250# LDLIBRARYDIR is the path to LDLIBRARY, which is made in a subdirectory. On
251# systems without shared libraries, LDLIBRARY is the same as LIBRARY
252# (defined in the Makefiles). On Cygwin LDLIBRARY is the import library,
253# DLLLIBRARY is the shared (i.e., DLL) library.
254#
Guido van Rossum54ecc3d1999-01-27 17:53:11 +0000255AC_SUBST(LDLIBRARY)
Guido van Rossum27552902001-01-23 01:52:26 +0000256AC_SUBST(DLLLIBRARY)
Jack Jansenb6e9cad2001-08-15 01:26:28 +0000257AC_SUBST(BLDLIBRARY)
258AC_SUBST(LDLIBRARYDIR)
Neil Schemenauer61c51152001-01-26 16:18:16 +0000259LDLIBRARY="$LIBRARY"
Jack Jansenb6e9cad2001-08-15 01:26:28 +0000260BLDLIBRARY='$(LDLIBRARY)'
Guido van Rossum27552902001-01-23 01:52:26 +0000261DLLLIBRARY=''
Jack Jansenb6e9cad2001-08-15 01:26:28 +0000262LDLIBRARYDIR=''
Guido van Rossum54ecc3d1999-01-27 17:53:11 +0000263
Guido van Rossumfb842551997-08-06 23:42:07 +0000264# LINKCC is the command that links the python executable -- default is $(CC).
Martin v. Löwisb7da67a2001-10-18 15:35:38 +0000265# If CXX is set, and if it is needed to link a main function that was
266# compiled with CXX, LINKCC is CXX instead. Always using CXX is undesirable:
267# python might then depend on the C++ runtime
Fred Drake5790be12000-10-09 17:06:13 +0000268# This is altered for AIX in order to build the export list before
Guido van Rossumec95c7b1998-08-04 17:59:56 +0000269# linking.
Guido van Rossumfb842551997-08-06 23:42:07 +0000270AC_SUBST(LINKCC)
271AC_MSG_CHECKING(LINKCC)
272if test -z "$LINKCC"
273then
Martin v. Löwisb7da67a2001-10-18 15:35:38 +0000274 if test -z "$CXX"; then
275 LINKCC="\$(PURIFY) \$(CC)"
276 else
277 echo 'int main(){return 0;}' > conftest.$ac_ext
278 $CXX -c conftest.$ac_ext 2>&5
279 if $CC -o conftest$ac_exeext conftest.$ac_objext 2>&5 \
280 && test -s conftest$ac_exeext && ./conftest$ac_exeext
281 then
282 LINKCC="\$(PURIFY) \$(CC)"
283 else
284 LINKCC="\$(PURIFY) \$(CXX)"
285 fi
286 rm -fr conftest*
287 fi
Guido van Rossumfb842551997-08-06 23:42:07 +0000288 case $ac_sys_system in
289 AIX*)
Martin v. Löwisb7da67a2001-10-18 15:35:38 +0000290 LINKCC="\$(srcdir)/Modules/makexp_aix Modules/python.exp \"\" \$(LIBRARY); $(LINKCC)";;
Guido van Rossum3c4bb801997-12-18 23:55:32 +0000291 dgux*)
Martin v. Löwisb7da67a2001-10-18 15:35:38 +0000292 LINKCC="LD_RUN_PATH=$libdir $(LINKCC)";;
Trent Mick635f6fb2000-08-23 21:33:05 +0000293 Monterey64*)
Martin v. Löwisb7da67a2001-10-18 15:35:38 +0000294 LINKCC="$(LINKCC) -L/usr/lib/ia64l64";;
Guido van Rossumfb842551997-08-06 23:42:07 +0000295 esac
296fi
297AC_MSG_RESULT($LINKCC)
298
Guido van Rossum54ecc3d1999-01-27 17:53:11 +0000299AC_MSG_CHECKING(LDLIBRARY)
300
Guido van Rossum54ecc3d1999-01-27 17:53:11 +0000301# DG/UX requires some fancy ld contortions to produce a .so from an .a
Fred Drake5790be12000-10-09 17:06:13 +0000302case $MACHDEP in
303dguxR4)
304 LDLIBRARY='libpython$(VERSION).so'
305 OPT="$OPT -pic"
306 ;;
307beos*)
308 LDLIBRARY='libpython$(VERSION).so'
309 ;;
Guido van Rossumaef734b2001-01-10 21:09:12 +0000310cygwin*)
311 LDLIBRARY='libpython$(VERSION).dll.a'
Neil Schemenauer55f0cf32001-01-24 17:24:33 +0000312 DLLLIBRARY='libpython$(VERSION).dll'
Guido van Rossumaef734b2001-01-10 21:09:12 +0000313 ;;
Fred Drake5790be12000-10-09 17:06:13 +0000314esac
Jack Jansenb6e9cad2001-08-15 01:26:28 +0000315
Guido van Rossumb8552162001-09-05 14:58:11 +0000316# MacOSX framework builds need more magic. LDLIBRARY is the dynamic
317# library that we build, but we do not want to link against it (we
318# will find it with a -framework option). For this reason there is an
319# extra variable BLDLIBRARY against which Python and the extension
320# modules are linked, BLDLIBRARY. This is normally the same as
321# LDLIBRARY, but empty for MacOSX framework builds.
Jack Jansenb6e9cad2001-08-15 01:26:28 +0000322if test "$enable_framework"
323then
324 LDLIBRARY='$(PYTHONFRAMEWORKDIR)/Versions/$(VERSION)/$(PYTHONFRAMEWORK)'
325 LDLIBRARYDIR='$(PYTHONFRAMEWORKDIR)'
326 BLDLIBRARY=''
327else
328 BLDLIBRARY='$(LDLIBRARY)'
329fi
330
Guido van Rossum54ecc3d1999-01-27 17:53:11 +0000331AC_MSG_RESULT($LDLIBRARY)
332
Guido van Rossum627b2d71993-12-24 10:39:16 +0000333AC_PROG_RANLIB
Guido van Rossum433c8ad1994-08-01 12:07:07 +0000334AC_SUBST(AR)
Guido van Rossum76be6ed1995-01-02 18:33:54 +0000335AC_CHECK_PROGS(AR, ar aal, ar)
Neil Schemenauera42c8272001-03-31 00:01:55 +0000336
337case $MACHDEP in
Neil Schemenaueraf5567f2001-10-21 22:32:04 +0000338bsdos*|hp*|HP*)
339 # install -d does not work on BSDI or HP-UX
Neil Schemenauera42c8272001-03-31 00:01:55 +0000340 if test -z "$INSTALL"
341 then
342 INSTALL="${srcdir}/install-sh -c"
343 fi
344esac
Neil Schemenauer55f0cf32001-01-24 17:24:33 +0000345AC_PROG_INSTALL
Guido van Rossumb418f891996-07-30 18:06:02 +0000346
Guido van Rossumec95c7b1998-08-04 17:59:56 +0000347# Not every filesystem supports hard links
348AC_SUBST(LN)
349if test -z "$LN" ; then
350 case $ac_sys_system in
351 BeOS*) LN="ln -s";;
Guido van Rossumaef734b2001-01-10 21:09:12 +0000352 CYGWIN*) LN="ln -s";;
Guido van Rossumec95c7b1998-08-04 17:59:56 +0000353 *) LN=ln;;
354 esac
355fi
356
Fred Drake9f715822001-07-11 06:27:00 +0000357# Check for --with-pydebug
358AC_MSG_CHECKING(for --with-pydebug)
359AC_ARG_WITH(pydebug,
360[ --with-pydebug build with Py_DEBUG defined], [
361if test "$withval" != no
362then AC_DEFINE(Py_DEBUG) AC_MSG_RESULT(yes); Py_DEBUG='true'
363else AC_MSG_RESULT(no); Py_DEBUG='false'
364fi],
365[AC_MSG_RESULT(no)])
366
Neil Schemenauer55f0cf32001-01-24 17:24:33 +0000367# Optimizer/debugger flags
Guido van Rossumb418f891996-07-30 18:06:02 +0000368AC_SUBST(OPT)
Guido van Rossum4e8af441994-08-19 15:33:54 +0000369if test -z "$OPT"
Guido van Rossumb418f891996-07-30 18:06:02 +0000370then
Guido van Rossumb5875b61997-07-18 23:29:09 +0000371 case $GCC in
372 yes)
373 case $ac_cv_prog_cc_g in
Guido van Rossum2242f2f2001-04-11 20:58:20 +0000374 yes)
Fred Drake9f715822001-07-11 06:27:00 +0000375 if test "$Py_DEBUG" = 'true' ; then
376 # Optimization messes up debuggers, so turn it off for
377 # debug builds.
378 OPT="-g -Wall -Wstrict-prototypes"
379 else
380 OPT="-g -O3 -Wall -Wstrict-prototypes"
381 fi;;
Guido van Rossum2242f2f2001-04-11 20:58:20 +0000382 *)
Fred Drake9f715822001-07-11 06:27:00 +0000383 OPT="-O3 -Wall -Wstrict-prototypes";;
384 esac
385 ;;
Guido van Rossum2242f2f2001-04-11 20:58:20 +0000386 *)
387 case $ac_sys_system in
Martin v. Löwis25ae43b2001-10-07 08:39:18 +0000388 OpenUNIX*|UnixWare*)
Guido van Rossum2242f2f2001-04-11 20:58:20 +0000389 OPT="-O -K pentium,host,inline,loop_unroll,alloca ";;
390 *)
391 OPT="-O";;
Guido van Rossumb418f891996-07-30 18:06:02 +0000392 esac
Guido van Rossum2242f2f2001-04-11 20:58:20 +0000393 esac
Jack Jansenca06bc62001-08-03 15:32:23 +0000394 case $ac_sys_system in
395 Darwin*)
396 OPT="$OPT -no-cpp-precomp";;
397 esac
Guido van Rossum4e8af441994-08-19 15:33:54 +0000398fi
Guido van Rossum627b2d71993-12-24 10:39:16 +0000399
Fred Drakee1ceaa02001-12-04 20:55:47 +0000400if test "$Py_DEBUG" = 'true'; then
401 :
402else
403 OPT="-DNDEBUG $OPT"
404fi
405
Trent Mick635f6fb2000-08-23 21:33:05 +0000406# The current (beta) Monterey compiler dies with optimizations
407case $ac_sys_system in
408Monterey*) OPT="";;
409esac
410
Guido van Rossum6f2260e1996-09-09 16:21:03 +0000411if test "$ac_arch_flags"
Guido van Rossumc5a39031996-07-31 17:35:03 +0000412then
413 OPT="$OPT $ac_arch_flags"
414fi
Guido van Rossum5739e7e1995-01-20 16:50:53 +0000415
Guido van Rossum91922671997-10-09 20:24:13 +0000416AC_MSG_CHECKING(whether $CC accepts -OPT:Olimit=0)
417AC_CACHE_VAL(ac_cv_opt_olimit_ok,
418[ac_save_cc="$CC"
419CC="$CC -OPT:Olimit=0"
420AC_TRY_RUN([int main() { return 0; }],
421 ac_cv_opt_olimit_ok=yes,
Guido van Rossum3065c942001-09-17 04:03:14 +0000422 ac_cv_opt_olimit_ok=no,
Guido van Rossum91922671997-10-09 20:24:13 +0000423 ac_cv_opt_olimit_ok=no)
424CC="$ac_save_cc"])
425AC_MSG_RESULT($ac_cv_opt_olimit_ok)
Guido van Rossum2efa34b1997-10-23 17:43:11 +0000426if test $ac_cv_opt_olimit_ok = yes; then
Guido van Rossum5839e582000-10-09 19:52:35 +0000427 case $ac_sys_system in
428 Darwin*) OPT="$OPT" ;;
429 *) OPT="$OPT -OPT:Olimit=0";;
430 esac
Guido van Rossumf8678121998-07-07 21:05:09 +0000431else
432 AC_MSG_CHECKING(whether $CC accepts -Olimit 1500)
433 AC_CACHE_VAL(ac_cv_olimit_ok,
434 [ac_save_cc="$CC"
435 CC="$CC -Olimit 1500"
436 AC_TRY_RUN([int main() { return 0; }],
437 ac_cv_olimit_ok=yes,
Guido van Rossum3065c942001-09-17 04:03:14 +0000438 ac_cv_olimit_ok=no,
Guido van Rossumf8678121998-07-07 21:05:09 +0000439 ac_cv_olimit_ok=no)
440 CC="$ac_save_cc"])
441 AC_MSG_RESULT($ac_cv_olimit_ok)
442 if test $ac_cv_olimit_ok = yes; then
443 OPT="$OPT -Olimit 1500"
444 fi
Guido van Rossum201afe51997-05-14 21:14:44 +0000445fi
Guido van Rossumf8678121998-07-07 21:05:09 +0000446
Martin v. Löwisa5f73f92001-10-15 08:06:29 +0000447# On some compilers, pthreads are available without further options
448# (e.g. MacOS X). On some of these systems, the compiler will not
449# complain if unaccepted options are passed (e.g. gcc on Mac OS X).
450# So we have to see first whether pthreads are available without
451# options before we can check whether -Kpthread improves anything.
452AC_MSG_CHECKING(whether pthreads are available without options)
453AC_CACHE_VAL(ac_cv_pthread_is_default,
454[AC_TRY_RUN([
455#include <pthread.h>
456
457void* routine(void* p){return NULL;}
458
459int main(){
460 pthread_t p;
461 if(pthread_create(&p,NULL,routine,NULL)!=0)
462 return 1;
463 return 0;
464}
465],
466 ac_cv_pthread_is_default=yes,
467 ac_cv_pthread_is_default=no,
468 ac_cv_pthread_is_default=no)
469])
470AC_MSG_RESULT($ac_cv_pthread_is_default)
471
472
473if test $ac_cv_pthread_is_default = yes
474then
475 ac_cv_kpthread=no
476else
Martin v. Löwis130fb172001-07-19 11:00:41 +0000477# -Kpthread, if available, provides the right #defines
478# and linker options to make pthread_create available
Martin v. Löwis260aecc2001-10-07 08:14:41 +0000479# Some compilers won't report that they do not support -Kpthread,
480# so we need to run a program to see whether it really made the
481# function available.
Martin v. Löwis130fb172001-07-19 11:00:41 +0000482AC_MSG_CHECKING(whether $CC accepts -Kpthread)
483AC_CACHE_VAL(ac_cv_kpthread,
484[ac_save_cc="$CC"
485CC="$CC -Kpthread"
Martin v. Löwis260aecc2001-10-07 08:14:41 +0000486AC_TRY_RUN([
487#include <pthread.h>
488
489void* routine(void* p){return NULL;}
490
491int main(){
492 pthread_t p;
493 if(pthread_create(&p,NULL,routine,NULL)!=0)
494 return 1;
495 return 0;
496}
497],
Martin v. Löwis130fb172001-07-19 11:00:41 +0000498 ac_cv_kpthread=yes,
Martin v. Löwis260aecc2001-10-07 08:14:41 +0000499 ac_cv_kpthread=no,
Martin v. Löwis130fb172001-07-19 11:00:41 +0000500 ac_cv_kpthread=no)
501CC="$ac_save_cc"])
Martin v. Löwis130fb172001-07-19 11:00:41 +0000502AC_MSG_RESULT($ac_cv_kpthread)
Martin v. Löwisa5f73f92001-10-15 08:06:29 +0000503fi
Martin v. Löwis130fb172001-07-19 11:00:41 +0000504
Fred Drakece81d592000-07-09 14:39:29 +0000505dnl # check for ANSI or K&R ("traditional") preprocessor
506dnl AC_MSG_CHECKING(for C preprocessor type)
507dnl AC_TRY_COMPILE([
508dnl #define spam(name, doc) {#name, &name, #name "() -- " doc}
509dnl int foo;
510dnl struct {char *name; int *addr; char *doc;} desc = spam(foo, "something");
511dnl ], [;], cpp_type=ansi, AC_DEFINE(HAVE_OLD_CPP) cpp_type=traditional)
512dnl AC_MSG_RESULT($cpp_type)
Guido van Rossum300fda71996-08-19 21:58:16 +0000513
Guido van Rossum627b2d71993-12-24 10:39:16 +0000514# checks for header files
Guido van Rossum76be6ed1995-01-02 18:33:54 +0000515AC_HEADER_STDC
Guido van Rossuma6535fd2001-10-18 19:44:10 +0000516AC_CHECK_HEADERS(dlfcn.h fcntl.h grp.h limits.h langinfo.h locale.h \
Martin v. Löwis9b75dca2001-08-10 13:58:50 +0000517ncurses.h poll.h pthread.h \
Eric S. Raymond13603592001-01-16 15:01:26 +0000518signal.h stdarg.h stddef.h stdlib.h thread.h unistd.h utime.h termios.h \
Fred Drake2ca5f3b2001-05-11 16:10:56 +0000519sys/audioio.h sys/file.h sys/lock.h sys/modem.h db_185.h db.h \
Andrew M. Kuchling881fd902001-07-14 20:55:52 +0000520sys/param.h sys/poll.h sys/select.h sys/socket.h sys/time.h sys/times.h \
Martin v. Löwis69532332001-10-13 09:12:41 +0000521sys/un.h sys/utsname.h sys/wait.h pty.h term.h libutil.h \
Martin v. Löwis1ba3fd52001-08-10 20:29:40 +0000522ndbm.h db1/ndbm.h gdbm/ndbm.h sys/resource.h netpacket/packet.h)
Guido van Rossum76be6ed1995-01-02 18:33:54 +0000523AC_HEADER_DIRENT
Guido van Rossum627b2d71993-12-24 10:39:16 +0000524
525# checks for typedefs
Guido van Rossum5739e7e1995-01-20 16:50:53 +0000526was_it_defined=no
527AC_MSG_CHECKING(for clock_t in time.h)
528AC_EGREP_HEADER(clock_t, time.h, was_it_defined=yes, AC_DEFINE(clock_t, long))
529AC_MSG_RESULT($was_it_defined)
530
Guido van Rossum810cc512001-09-09 23:51:39 +0000531# Two defines needed to enable largefile support on various platforms
532# These may affect some typedefs
533AC_DEFINE(_LARGEFILE_SOURCE)
534AC_DEFINE(_FILE_OFFSET_BITS, 64)
535
Guido van Rossum300fda71996-08-19 21:58:16 +0000536# Add some code to confdefs.h so that the test for off_t works on SCO
537cat >> confdefs.h <<\EOF
538#if defined(SCO_DS)
539#undef _OFF_T
540#endif
541EOF
542
Guido van Rossumef2255b2000-03-10 22:30:29 +0000543# Type availability checks
Guido van Rossum76be6ed1995-01-02 18:33:54 +0000544AC_TYPE_MODE_T
545AC_TYPE_OFF_T
546AC_TYPE_PID_T
547AC_TYPE_SIGNAL
548AC_TYPE_SIZE_T
549AC_TYPE_UID_T
Guido van Rossum627b2d71993-12-24 10:39:16 +0000550
Guido van Rossumef2255b2000-03-10 22:30:29 +0000551# Sizes of various common basic types
Guido van Rossum3065c942001-09-17 04:03:14 +0000552AC_CHECK_SIZEOF(int, 4)
553AC_CHECK_SIZEOF(long, 4)
554AC_CHECK_SIZEOF(void *, 4)
555AC_CHECK_SIZEOF(char, 1)
556AC_CHECK_SIZEOF(short, 2)
557AC_CHECK_SIZEOF(float, 4)
558AC_CHECK_SIZEOF(double, 8)
559AC_CHECK_SIZEOF(fpos_t, 4)
Guido van Rossumac405f61994-09-12 10:56:06 +0000560
Guido van Rossumec95c7b1998-08-04 17:59:56 +0000561AC_MSG_CHECKING(for long long support)
562have_long_long=no
563AC_TRY_COMPILE([], [long long x; x = (long long)0;], AC_DEFINE(HAVE_LONG_LONG) have_long_long=yes)
564AC_MSG_RESULT($have_long_long)
Guido van Rossum8bc1dfd1999-04-10 16:01:48 +0000565if test "$have_long_long" = yes ; then
Guido van Rossum3065c942001-09-17 04:03:14 +0000566AC_CHECK_SIZEOF(long long, 8)
Guido van Rossumec95c7b1998-08-04 17:59:56 +0000567fi
568
Barry Warsawbc7c7f92000-08-18 04:53:33 +0000569AC_MSG_CHECKING(for uintptr_t support)
570have_uintptr_t=no
571AC_TRY_COMPILE([], [uintptr_t x; x = (uintptr_t)0;], AC_DEFINE(HAVE_UINTPTR_T) have_uintptr_t=yes)
572AC_MSG_RESULT($have_uintptr_t)
573if test "$have_uintptr_t" = yes ; then
Guido van Rossum3065c942001-09-17 04:03:14 +0000574AC_CHECK_SIZEOF(uintptr_t, 4)
Barry Warsawbc7c7f92000-08-18 04:53:33 +0000575fi
576
Guido van Rossum00f0f6e1999-01-06 18:52:29 +0000577# Hmph. AC_CHECK_SIZEOF() doesn't include <sys/types.h>.
578AC_MSG_CHECKING(size of off_t)
579AC_CACHE_VAL(ac_cv_sizeof_off_t,
580[AC_TRY_RUN([#include <stdio.h>
581#include <sys/types.h>
582main()
583{
584 FILE *f=fopen("conftestval", "w");
585 if (!f) exit(1);
586 fprintf(f, "%d\n", sizeof(off_t));
587 exit(0);
Guido van Rossum3065c942001-09-17 04:03:14 +0000588}],
589ac_cv_sizeof_off_t=`cat conftestval`,
590ac_cv_sizeof_off_t=0,
591ac_cv_sizeof_off_t=4)
Guido van Rossum00f0f6e1999-01-06 18:52:29 +0000592])
593AC_MSG_RESULT($ac_cv_sizeof_off_t)
594AC_DEFINE_UNQUOTED(SIZEOF_OFF_T, $ac_cv_sizeof_off_t)
595
596AC_MSG_CHECKING(whether to enable large file support)
Guido van Rossum8bc1dfd1999-04-10 16:01:48 +0000597if test "$have_long_long" = yes -a \
598 "$ac_cv_sizeof_off_t" -gt "$ac_cv_sizeof_long" -a \
599 "$ac_cv_sizeof_long_long" -ge "$ac_cv_sizeof_off_t"; then
Guido van Rossum00f0f6e1999-01-06 18:52:29 +0000600 AC_DEFINE(HAVE_LARGEFILE_SUPPORT)
601 AC_MSG_RESULT(yes)
602else
603 AC_MSG_RESULT(no)
604fi
605
Fred Drakea3f6e912000-06-29 20:44:47 +0000606# AC_CHECK_SIZEOF() doesn't include <time.h>.
607AC_MSG_CHECKING(size of time_t)
608AC_CACHE_VAL(ac_cv_sizeof_time_t,
609[AC_TRY_RUN([#include <stdio.h>
610#include <time.h>
611main()
612{
613 FILE *f=fopen("conftestval", "w");
614 if (!f) exit(1);
615 fprintf(f, "%d\n", sizeof(time_t));
616 exit(0);
Guido van Rossum3065c942001-09-17 04:03:14 +0000617}],
618ac_cv_sizeof_time_t=`cat conftestval`,
619ac_cv_sizeof_time_t=0,
620ac_cv_sizeof_time_t=4)
Fred Drakea3f6e912000-06-29 20:44:47 +0000621])
622AC_MSG_RESULT($ac_cv_sizeof_time_t)
623AC_DEFINE_UNQUOTED(SIZEOF_TIME_T, $ac_cv_sizeof_time_t)
624
Guido van Rossum00f0f6e1999-01-06 18:52:29 +0000625
Trent Mick635f6fb2000-08-23 21:33:05 +0000626# if have pthread_t then define SIZEOF_PTHREAD_T
Martin v. Löwis123cbd22001-07-19 14:21:10 +0000627ac_save_cc="$CC"
628if test "$ac_cv_kpthread" = "yes"
629then CC="$CC -Kpthread"
630fi
Trent Mick635f6fb2000-08-23 21:33:05 +0000631AC_MSG_CHECKING(for pthread_t)
632have_pthread_t=no
Guido van Rossum12580492000-09-24 16:47:19 +0000633AC_TRY_COMPILE([#include <pthread.h>], [pthread_t x; x = *(pthread_t*)0;], have_pthread_t=yes)
Trent Mick635f6fb2000-08-23 21:33:05 +0000634AC_MSG_RESULT($have_pthread_t)
635if test "$have_pthread_t" = yes ; then
636 # AC_CHECK_SIZEOF() doesn't include <pthread.h>.
637 AC_MSG_CHECKING(size of pthread_t)
638 AC_CACHE_VAL(ac_cv_sizeof_pthread_t,
639 [AC_TRY_RUN([#include <stdio.h>
640 #include <pthread.h>
641 main()
642 {
643 FILE *f=fopen("conftestval", "w");
644 if (!f) exit(1);
645 fprintf(f, "%d\n", sizeof(pthread_t));
646 exit(0);
Guido van Rossum3065c942001-09-17 04:03:14 +0000647 }],
648 ac_cv_sizeof_pthread_t=`cat conftestval`,
649 ac_cv_sizeof_pthread_t=0,
650 ac_cv_sizeof_pthread_t=4)
Trent Mick635f6fb2000-08-23 21:33:05 +0000651 ])
652 AC_MSG_RESULT($ac_cv_sizeof_pthread_t)
653 AC_DEFINE_UNQUOTED(SIZEOF_PTHREAD_T, $ac_cv_sizeof_pthread_t)
654fi
Martin v. Löwis123cbd22001-07-19 14:21:10 +0000655CC="$ac_save_cc"
Trent Mick635f6fb2000-08-23 21:33:05 +0000656
Jack Jansenb6e9cad2001-08-15 01:26:28 +0000657AC_MSG_CHECKING(for --enable-toolbox-glue)
658AC_ARG_ENABLE(toolbox-glue,
659[ --enable-toolbox-glue disable/enable MacOSX glue code for extensions])
660
661if test -z "$enable_toolbox_glue"
662then
663 case $ac_sys_system/$ac_sys_release in
664 Darwin/*)
665 enable_toolbox_glue="yes";;
666 *)
667 enable_toolbox_glue="no";;
668 esac
669fi
670case "$enable_toolbox_glue" in
671yes)
Jack Jansen666b1e72001-10-31 12:11:48 +0000672 extra_frameworks="-framework CoreServices -framework Foundation"
Jack Jansenb6e9cad2001-08-15 01:26:28 +0000673 extra_machdep_objs="Python/mactoolboxglue.o"
Jack Jansen591cbed2001-08-15 13:55:15 +0000674 extra_undefs="-u __dummy -u _PyMac_Error"
Jack Jansenb6e9cad2001-08-15 01:26:28 +0000675 AC_DEFINE(USE_TOOLBOX_OBJECT_GLUE)
676 ;;
677*)
678 extra_frameworks=""
679 extra_machdep_objs=""
Jack Jansen591cbed2001-08-15 13:55:15 +0000680 extra_undefs=""
Jack Jansenb6e9cad2001-08-15 01:26:28 +0000681 ;;
682esac
683AC_MSG_RESULT($enable_toolbox_glue)
684
Guido van Rossum54ecc3d1999-01-27 17:53:11 +0000685AC_SUBST(LIBTOOL_CRUFT)
686case $ac_sys_system/$ac_sys_release in
Jack Jansen418c3b12001-11-14 10:59:57 +0000687 Darwin/1.3*)
Jack Jansena3891ea2001-09-07 14:25:12 +0000688 ns_undef_sym='_environ'
Jack Jansen418c3b12001-11-14 10:59:57 +0000689 LIBTOOL_CRUFT="-lcc_dynamic -arch_only ppc -U $ns_undef_sym"
690 LIBTOOL_CRUFT="$LIBTOOL_CRUFT $extra_frameworks"
Jack Jansena3891ea2001-09-07 14:25:12 +0000691 LIBTOOL_CRUFT=$LIBTOOL_CRUFT' -install_name $(PYTHONFRAMEWORKDIR)/Versions/$(VERSION)/Python'
692 LIBTOOL_CRUFT=$LIBTOOL_CRUFT' -compatibility_version $(VERSION) -current_version $(VERSION)';;
Guido van Rossum5839e582000-10-09 19:52:35 +0000693 Darwin/*)
694 ns_undef_sym='_environ'
Jack Jansen418c3b12001-11-14 10:59:57 +0000695 LIBTOOL_CRUFT="-lcc_dynamic -arch_only ppc -flat_namespace -U $ns_undef_sym"
696 LIBTOOL_CRUFT="$LIBTOOL_CRUFT $extra_frameworks"
Jack Jansenb6e9cad2001-08-15 01:26:28 +0000697 LIBTOOL_CRUFT=$LIBTOOL_CRUFT' -install_name $(PYTHONFRAMEWORKDIR)/Versions/$(VERSION)/Python'
698 LIBTOOL_CRUFT=$LIBTOOL_CRUFT' -compatibility_version $(VERSION) -current_version $(VERSION)';;
Guido van Rossum54ecc3d1999-01-27 17:53:11 +0000699esac
700
Jack Jansenb6e9cad2001-08-15 01:26:28 +0000701AC_MSG_CHECKING(for --enable-framework)
702if test "$enable_framework"
Guido van Rossum54ecc3d1999-01-27 17:53:11 +0000703then
Jack Jansenca06bc62001-08-03 15:32:23 +0000704 OPT="$OPT -fno-common -dynamic"
Guido van Rossum54ecc3d1999-01-27 17:53:11 +0000705 # -U __environ is needed since bundles don't have access
706 # to crt0 when built but will always be linked against it
Jack Jansenb6e9cad2001-08-15 01:26:28 +0000707 # -F. is needed to allow linking to the framework while
708 # in the build location.
709
Jack Jansena3891ea2001-09-07 14:25:12 +0000710 case $ac_sys_system/$ac_sys_release in
Jack Jansen418c3b12001-11-14 10:59:57 +0000711 Darwin/1.3*)LDFLAGS="$LDFLAGS -Wl,-F. -Wl,-U,$ns_undef_sym";;
712 Darwin/*)LDFLAGS="$LDFLAGS -Wl,-F. -Wl,-flat_namespace,-U,$ns_undef_sym";;
Jack Jansena3891ea2001-09-07 14:25:12 +0000713 esac
Guido van Rossum54ecc3d1999-01-27 17:53:11 +0000714 AC_DEFINE(WITH_NEXT_FRAMEWORK)
715 AC_MSG_RESULT(yes)
716else
717 AC_MSG_RESULT(no)
718fi
719
Jack Jansenb6e9cad2001-08-15 01:26:28 +0000720AC_MSG_CHECKING(for dyld)
Jack Jansen9a66b6d2001-08-08 13:56:14 +0000721case $ac_sys_system/$ac_sys_release in
722 Darwin/*)
723 AC_DEFINE(WITH_DYLD)
724 AC_MSG_RESULT(always on for Darwin)
725 ;;
726 *)
Jack Jansenb6e9cad2001-08-15 01:26:28 +0000727 AC_MSG_RESULT(no)
728 ;;
Jack Jansen9a66b6d2001-08-08 13:56:14 +0000729esac
Guido van Rossum54ecc3d1999-01-27 17:53:11 +0000730
Guido van Rossumac405f61994-09-12 10:56:06 +0000731# Set info about shared libraries.
Guido van Rossumac405f61994-09-12 10:56:06 +0000732AC_SUBST(SO)
733AC_SUBST(LDSHARED)
Neil Schemenauerb3531b82001-02-16 04:09:05 +0000734AC_SUBST(BLDSHARED)
Guido van Rossumac405f61994-09-12 10:56:06 +0000735AC_SUBST(CCSHARED)
736AC_SUBST(LINKFORSHARED)
Guido van Rossumac405f61994-09-12 10:56:06 +0000737# SO is the extension of shared libraries `(including the dot!)
Guido van Rossumaef734b2001-01-10 21:09:12 +0000738# -- usually .so, .sl on HP-UX, .dll on Cygwin
Guido van Rossum76be6ed1995-01-02 18:33:54 +0000739AC_MSG_CHECKING(SO)
Guido van Rossumac405f61994-09-12 10:56:06 +0000740if test -z "$SO"
741then
Guido van Rossum76be6ed1995-01-02 18:33:54 +0000742 case $ac_sys_system in
Guido van Rossum4b6b5791996-09-09 20:09:34 +0000743 hp*|HP*) SO=.sl;;
Guido van Rossumaef734b2001-01-10 21:09:12 +0000744 CYGWIN*) SO=.dll;;
Guido van Rossum4b6b5791996-09-09 20:09:34 +0000745 *) SO=.so;;
Guido van Rossumac405f61994-09-12 10:56:06 +0000746 esac
Guido van Rossumac405f61994-09-12 10:56:06 +0000747fi
Guido van Rossum76be6ed1995-01-02 18:33:54 +0000748AC_MSG_RESULT($SO)
Guido van Rossumac405f61994-09-12 10:56:06 +0000749# LDSHARED is the ld *command* used to create shared library
Martin v. Löwis5b718fc2001-09-10 15:34:42 +0000750# -- "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 +0000751# (Shared libraries in this instance are shared modules to be loaded into
752# Python, as opposed to building Python itself as a shared library.)
Guido van Rossum76be6ed1995-01-02 18:33:54 +0000753AC_MSG_CHECKING(LDSHARED)
Guido van Rossumac405f61994-09-12 10:56:06 +0000754if test -z "$LDSHARED"
755then
Guido van Rossum76be6ed1995-01-02 18:33:54 +0000756 case $ac_sys_system/$ac_sys_release in
Neil Schemenauerb3531b82001-02-16 04:09:05 +0000757 AIX*)
758 BLDSHARED="\$(srcdir)/Modules/ld_so_aix \$(CC) -bI:Modules/python.exp"
Guido van Rossumce608b02001-09-28 15:59:38 +0000759 LDSHARED="\$(BINLIBDEST)/config/ld_so_aix \$(CC) -bI:\$(BINLIBDEST)/config/python.exp"
Neil Schemenauerb3531b82001-02-16 04:09:05 +0000760 ;;
761 BeOS*)
762 BLDSHARED="\$(srcdir)/Modules/ld_so_beos $LDLIBRARY"
Guido van Rossumce608b02001-09-28 15:59:38 +0000763 LDSHARED="\$(BINLIBDEST)/config/ld_so_beos \$(LIBDIR)/$LDLIBRARY"
Neil Schemenauerb3531b82001-02-16 04:09:05 +0000764 ;;
Guido van Rossum6100aaf1997-04-29 21:48:51 +0000765 IRIX/5*) LDSHARED="ld -shared";;
Guido van Rossum91922671997-10-09 20:24:13 +0000766 IRIX*/6*) LDSHARED="ld ${SGI_ABI} -shared -all";;
Guido van Rossumac405f61994-09-12 10:56:06 +0000767 SunOS/4*) LDSHARED="ld";;
Greg Ward57c9a6632000-05-26 12:22:54 +0000768 SunOS/5*)
769 if test "$GCC" = "yes"
Neil Schemenauer95052722001-02-19 18:17:33 +0000770 then LDSHARED='$(CC) -shared'
Martin v. Löwis5b718fc2001-09-10 15:34:42 +0000771 else LDSHARED="$(CC) -G";
Greg Ward57c9a6632000-05-26 12:22:54 +0000772 fi ;;
Guido van Rossumac405f61994-09-12 10:56:06 +0000773 hp*|HP*) LDSHARED="ld -b";;
Guido van Rossum71001e41995-01-26 00:44:03 +0000774 OSF*) LDSHARED="ld -shared -expect_unresolved \"*\"";;
Guido van Rossum7d473291995-01-20 14:12:16 +0000775 DYNIX/ptx*) LDSHARED="ld -G";;
Jack Jansen418c3b12001-11-14 10:59:57 +0000776 Darwin/1.3*)
Jack Jansena3891ea2001-09-07 14:25:12 +0000777 LDSHARED='$(CC) $(LDFLAGS) -bundle'
778 if test "$enable_framework" ; then
779 # Link against the framework. All externals should be defined.
780 LDSHARED="$LDSHARED "'-framework $(PYTHONFRAMEWORK)'
781 else
782 # No framework. Ignore undefined symbols, assuming they come from Python
Jack Jansen418c3b12001-11-14 10:59:57 +0000783 LDSHARED="$LDSHARED -undefined suppress"
Jack Jansena3891ea2001-09-07 14:25:12 +0000784 fi ;;
Jack Jansenb6e9cad2001-08-15 01:26:28 +0000785 Darwin/*)
786 LDSHARED='$(CC) $(LDFLAGS) -bundle'
787 if test "$enable_framework" ; then
788 # Link against the framework. All externals should be defined.
789 LDSHARED="$LDSHARED "'-framework $(PYTHONFRAMEWORK)'
790 else
791 # No framework. Ignore undefined symbols, assuming they come from Python
Jack Jansen418c3b12001-11-14 10:59:57 +0000792 LDSHARED="$LDSHARED -flat_namespace -undefined suppress"
Guido van Rossum54ecc3d1999-01-27 17:53:11 +0000793 fi ;;
Guido van Rossum81652ab1996-07-21 02:53:27 +0000794 Linux*) LDSHARED="gcc -shared";;
Guido van Rossum3c4bb801997-12-18 23:55:32 +0000795 dgux*) LDSHARED="ld -G";;
Guido van Rossum458e7fa1999-09-17 15:40:40 +0000796 BSD/OS*/4*) LDSHARED="gcc -shared";;
Martin v. Löwis36546db2001-09-05 14:24:43 +0000797 OpenBSD*|NetBSD*|FreeBSD*)
Jeremy Hylton4bcc7c52000-08-31 17:45:35 +0000798 if [[ "`$CC -dM -E - </dev/null | grep __ELF__`" != "" ]]
Guido van Rossum0286ae82000-08-29 15:06:49 +0000799 then
800 LDSHARED="cc -shared ${LDFLAGS}"
801 else
802 LDSHARED="ld -Bshareable ${LDFLAGS}"
803 fi;;
Martin v. Löwis25ae43b2001-10-07 08:39:18 +0000804 OpenUNIX*|UnixWare*)
Martin v. Löwisbec19582001-03-21 15:57:54 +0000805 if test "$GCC" = "yes"
806 then LDSHARED="$(CC) -shared"
Martin v. Löwis130fb172001-07-19 11:00:41 +0000807 else LDSHARED="$(CC) -G"
Martin v. Löwisbec19582001-03-21 15:57:54 +0000808 fi;;
Guido van Rossum300fda71996-08-19 21:58:16 +0000809 SCO_SV*) LDSHARED="cc -G -KPIC -Ki486 -belf -Wl,-Bexport";;
Trent Mick635f6fb2000-08-23 21:33:05 +0000810 Monterey*) LDSHARED="cc -G -dy -Bdynamic -Bexport -L/usr/lib/ia64l64";;
Guido van Rossumaef734b2001-01-10 21:09:12 +0000811 CYGWIN*) LDSHARED="gcc -shared -Wl,--enable-auto-image-base";;
Guido van Rossumac405f61994-09-12 10:56:06 +0000812 *) LDSHARED="ld";;
813 esac
Guido van Rossumac405f61994-09-12 10:56:06 +0000814fi
Guido van Rossum76be6ed1995-01-02 18:33:54 +0000815AC_MSG_RESULT($LDSHARED)
Neil Schemenauerb3531b82001-02-16 04:09:05 +0000816BLDSHARED=${BLDSHARED-$LDSHARED}
Guido van Rossumac405f61994-09-12 10:56:06 +0000817# CCSHARED are the C *flags* used to create objects to go into a shared
Guido van Rossum54ecc3d1999-01-27 17:53:11 +0000818# library (module) -- this is only needed for a few systems
Guido van Rossum76be6ed1995-01-02 18:33:54 +0000819AC_MSG_CHECKING(CCSHARED)
Guido van Rossumac405f61994-09-12 10:56:06 +0000820if test -z "$CCSHARED"
821then
Guido van Rossum6100aaf1997-04-29 21:48:51 +0000822 case $ac_sys_system/$ac_sys_release in
Neil Schemenauer66252162001-02-19 04:47:42 +0000823 SunOS*) if test "$GCC" = yes;
824 then CCSHARED="-fPIC";
825 fi;;
Guido van Rossumaf07a441995-02-13 19:45:27 +0000826 hp*|HP*) if test "$GCC" = yes;
Martin v. Löwis703ad702001-09-05 08:36:52 +0000827 then CCSHARED="-fPIC";
Guido van Rossumaf07a441995-02-13 19:45:27 +0000828 else CCSHARED="+z";
829 fi;;
Neil Schemenauer61c51152001-01-26 16:18:16 +0000830 Linux*) CCSHARED="-fPIC";;
Guido van Rossumf5957ea1999-10-05 21:59:33 +0000831 BSD/OS*/4*) CCSHARED="-fpic";;
Martin v. Löwis36546db2001-09-05 14:24:43 +0000832 FreeBSD*|NetBSD*|OpenBSD*) CCSHARED="-fPIC";;
Martin v. Löwis25ae43b2001-10-07 08:39:18 +0000833 OpenUNIX*|UnixWare*)
Martin v. Löwisbec19582001-03-21 15:57:54 +0000834 if test "$GCC" = "yes"
835 then CCSHARED="-fPIC"
Martin v. Löwis130fb172001-07-19 11:00:41 +0000836 else CCSHARED="-KPIC"
Martin v. Löwisbec19582001-03-21 15:57:54 +0000837 fi;;
Guido van Rossum300fda71996-08-19 21:58:16 +0000838 SCO_SV*) CCSHARED="-KPIC -dy -Bdynamic";;
Trent Mick635f6fb2000-08-23 21:33:05 +0000839 Monterey*) CCSHARED="-G";;
Guido van Rossum2b5ca001998-03-05 15:41:09 +0000840 IRIX*/6*) case $CC in
841 *gcc*) CCSHARED="-shared";;
Guido van Rossumee21f411998-04-20 18:51:54 +0000842 *) CCSHARED="";;
Guido van Rossum2b5ca001998-03-05 15:41:09 +0000843 esac;;
Guido van Rossumaef734b2001-01-10 21:09:12 +0000844 CYGWIN*) CCSHARED="-DUSE_DL_IMPORT";;
Guido van Rossumac405f61994-09-12 10:56:06 +0000845 esac
Guido van Rossumac405f61994-09-12 10:56:06 +0000846fi
Guido van Rossum76be6ed1995-01-02 18:33:54 +0000847AC_MSG_RESULT($CCSHARED)
Guido van Rossumac405f61994-09-12 10:56:06 +0000848# LINKFORSHARED are the flags passed to the $(CC) command that links
Guido van Rossumb65a48e1995-06-14 18:21:23 +0000849# the python executable -- this is only needed for a few systems
Guido van Rossum76be6ed1995-01-02 18:33:54 +0000850AC_MSG_CHECKING(LINKFORSHARED)
Guido van Rossumac405f61994-09-12 10:56:06 +0000851if test -z "$LINKFORSHARED"
852then
Guido van Rossum6100aaf1997-04-29 21:48:51 +0000853 case $ac_sys_system/$ac_sys_release in
Neil Schemenauerb3531b82001-02-16 04:09:05 +0000854 AIX*) LINKFORSHARED='-Wl,-bE:Modules/python.exp -lld';;
Guido van Rossum5dab3d81996-12-06 21:18:18 +0000855 hp*|HP*)
Guido van Rossum304dd2d1997-10-20 23:10:56 +0000856 LINKFORSHARED="-Wl,-E -Wl,+s -Wl,+b\$(BINLIBDEST)/lib-dynload";;
Guido van Rossumf5957ea1999-10-05 21:59:33 +0000857 BSD/OS/4*) LINKFORSHARED="-Xlinker -export-dynamic";;
Guido van Rossum2d9feed1997-11-24 17:36:21 +0000858 Linux*) LINKFORSHARED="-Xlinker -export-dynamic";;
Guido van Rossum54ecc3d1999-01-27 17:53:11 +0000859 # -u libsys_s pulls in all symbols in libsys
Jack Jansenb6e9cad2001-08-15 01:26:28 +0000860 Darwin/*)
861 # -u __dummy makes the linker aware of the objc runtime
862 # in System.framework; otherwise, __objcInit (referenced in
863 # crt1.o) gets erroneously defined as common, which breaks dynamic
864 # loading of any modules which reference it in System.framework.
865 # -u _PyMac_Error is needed to pull in the mac toolbox glue, which is
866 # not used by the core itself but which needs to be in the core so
867 # that dynamically loaded extension modules have access to it.
Jack Jansen591cbed2001-08-15 13:55:15 +0000868 LINKFORSHARED="$extra_undefs -framework System"
Jack Jansenb6e9cad2001-08-15 01:26:28 +0000869 if test "$enable_framework"
870 then
871 LINKFORSHARED="$LINKFORSHARED -framework Python"
872 fi
873 LINKFORSHARED="$LINKFORSHARED $extra_frameworks";;
Martin v. Löwis25ae43b2001-10-07 08:39:18 +0000874 OpenUNIX*|UnixWare*) LINKFORSHARED="-Wl,-Bexport";;
Guido van Rossum300fda71996-08-19 21:58:16 +0000875 SCO_SV*) LINKFORSHARED="-Bdynamic -dy -Wl,-Bexport";;
Fred Drake02706f52000-09-25 15:08:46 +0000876 ReliantUNIX*) LINKFORSHARED="-W1 -Blargedynsym";;
Martin v. Löwis36546db2001-09-05 14:24:43 +0000877 FreeBSD*|NetBSD*|OpenBSD*)
Guido van Rossumdf693651999-01-07 21:50:41 +0000878 if [[ "`$CC -dM -E - </dev/null | grep __ELF__`" != "" ]]
879 then
880 LINKFORSHARED="-Wl,--export-dynamic"
881 fi;;
Guido van Rossum2b5ca001998-03-05 15:41:09 +0000882 SunOS/5*) case $CC in
883 *gcc*)
Guido van Rossum9c6ba9b2000-02-03 13:42:50 +0000884 if $CC -Xlinker -V 2>&1 | grep BFD >/dev/null
Guido van Rossum8f4ceb11997-12-18 23:42:19 +0000885 then
886 LINKFORSHARED="-Xlinker --export-dynamic"
Guido van Rossum2b5ca001998-03-05 15:41:09 +0000887 fi;;
888 esac;;
Guido van Rossumac405f61994-09-12 10:56:06 +0000889 esac
Guido van Rossumac405f61994-09-12 10:56:06 +0000890fi
Guido van Rossum76be6ed1995-01-02 18:33:54 +0000891AC_MSG_RESULT($LINKFORSHARED)
Guido van Rossumac405f61994-09-12 10:56:06 +0000892
Neil Schemenauer61c51152001-01-26 16:18:16 +0000893AC_SUBST(CFLAGSFORSHARED)
894AC_MSG_CHECKING(CFLAGSFORSHARED)
895if test ! "$LIBRARY" = "$LDLIBRARY"
896then
Neil Schemenauerd9cf41c2001-01-27 21:39:17 +0000897 case $ac_sys_system in
898 CYGWIN*)
899 # Cygwin needs CCSHARED when building extension DLLs
900 # but not when building the interpreter DLL.
901 CFLAGSFORSHARED='';;
902 *)
903 CFLAGSFORSHARED='$(CCSHARED)'
904 esac
Neil Schemenauer61c51152001-01-26 16:18:16 +0000905fi
906AC_MSG_RESULT($CFLAGSFORSHARED)
907
Guido van Rossum627b2d71993-12-24 10:39:16 +0000908# checks for libraries
Guido van Rossum76be6ed1995-01-02 18:33:54 +0000909AC_CHECK_LIB(dl, dlopen) # Dynamic linking for SunOS/Solaris and SYSV
910AC_CHECK_LIB(dld, shl_load) # Dynamic linking for HP-UX
Guido van Rossum0eefa3f1999-11-16 15:57:37 +0000911
912# checks for system dependent C++ extensions support
913case "$ac_sys_system" in
914 AIX*) AC_MSG_CHECKING(for genuine AIX C++ extensions support)
915 AC_TRY_LINK([#include "/usr/lpp/xlC/include/load.h"],
916 [loadAndInit("", 0, "")],
917 [AC_DEFINE(AIX_GENUINE_CPLUSPLUS)
918 AC_MSG_RESULT(yes)],
919 [AC_MSG_RESULT(no)]);;
920 *) ;;
921esac
922
Guido van Rossum70c7f481998-03-26 18:44:10 +0000923# Most SVR4 platforms (e.g. Solaris) need -lsocket and -lnsl.
924# However on SGI IRIX, these exist but are broken.
Guido van Rossumec95c7b1998-08-04 17:59:56 +0000925# BeOS' sockets are stashed in libnet.
926case "$ac_sys_system" in
927IRIX*) ;;
Guido van Rossum2cb56601998-05-07 13:25:56 +0000928*)
Guido van Rossumf618d2c1995-01-17 16:36:13 +0000929AC_CHECK_LIB(nsl, t_open, [LIBS="-lnsl $LIBS"]) # SVR4
Guido van Rossumf618d2c1995-01-17 16:36:13 +0000930AC_CHECK_LIB(socket, socket, [LIBS="-lsocket $LIBS"], [], $LIBS) # SVR4 sockets
Jeremy Hyltoncb25d5e2000-07-27 21:23:28 +0000931;;
932esac
933case "$ac_sys_system" in
934BeOS*)
Guido van Rossumec95c7b1998-08-04 17:59:56 +0000935AC_CHECK_LIB(net, socket, [LIBS="-lnet $LIBS"], [], $LIBS) # BeOS
936;;
937esac
Guido van Rossum70c7f481998-03-26 18:44:10 +0000938
Guido van Rossumc5a39031996-07-31 17:35:03 +0000939AC_MSG_CHECKING(for --with-libs)
Barry Warsawc0d24d8b2000-06-29 16:12:00 +0000940AC_ARG_WITH(libs,
941[ --with-libs='lib1 ...' link against additional libs], [
Guido van Rossumc5a39031996-07-31 17:35:03 +0000942AC_MSG_RESULT($withval)
943LIBS="$withval $LIBS"
944], AC_MSG_RESULT(no))
Guido van Rossum627b2d71993-12-24 10:39:16 +0000945
Neil Schemenauer55f0cf32001-01-24 17:24:33 +0000946# Determine if signalmodule should be used.
947AC_SUBST(USE_SIGNAL_MODULE)
948AC_SUBST(SIGNAL_OBJS)
949AC_MSG_CHECKING(for --with-signal-module)
950AC_ARG_WITH(signal-module,
951[ --with-signal-module disable/enable signal module])
952
953if test -z "$with_signal_module"
954then with_signal_module="yes"
955fi
956AC_MSG_RESULT($with_signal_module)
957
958if test "${with_signal_module}" = "yes"; then
959 USE_SIGNAL_MODULE=""
960 SIGNAL_OBJS=""
961else
962 USE_SIGNAL_MODULE="#"
963 SIGNAL_OBJS="Parser/intrcheck.o Python/sigcheck.o"
964fi
965
Guido van Rossum3d15bd82001-01-10 18:53:48 +0000966# This is used to generate Setup.config
Guido van Rossum009f7871997-12-04 00:51:42 +0000967AC_SUBST(USE_THREAD_MODULE)
Barry Warsawc0d24d8b2000-06-29 16:12:00 +0000968USE_THREAD_MODULE=""
Guido van Rossum009f7871997-12-04 00:51:42 +0000969
Guido van Rossum54d93d41997-01-22 20:51:58 +0000970AC_MSG_CHECKING(for --with-dec-threads)
971AC_SUBST(LDLAST)
972AC_ARG_WITH(dec-threads,
Barry Warsawc0d24d8b2000-06-29 16:12:00 +0000973[ --with-dec-threads use DEC Alpha/OSF1 thread-safe libraries], [
974AC_MSG_RESULT($withval)
Guido van Rossum54d93d41997-01-22 20:51:58 +0000975LDLAST=-threads
Guido van Rossumf78abae1997-01-21 22:02:36 +0000976if test "${with_thread+set}" != set; then
Guido van Rossum54d93d41997-01-22 20:51:58 +0000977 with_thread="$withval";
978fi],
979AC_MSG_RESULT(no))
980
981AC_MSG_CHECKING(for --with-threads)
Barry Warsawc0d24d8b2000-06-29 16:12:00 +0000982AC_ARG_WITH(threads,
983[ --with(out)-threads[=DIRECTORY] disable/enable thread support])
Guido van Rossum54d93d41997-01-22 20:51:58 +0000984
Barry Warsawc0d24d8b2000-06-29 16:12:00 +0000985# --with-thread is deprecated, but check for it anyway
Barry Warsawa0f3c5c2000-06-30 16:39:35 +0000986AC_ARG_WITH(thread,
987[ --with(out)-thread[=DIRECTORY] deprecated; use --with(out)-threads],[
988with_threads=$with_thread])
Barry Warsawc0d24d8b2000-06-29 16:12:00 +0000989
990if test -z "$with_threads"
991then with_threads="yes"
Guido van Rossum433c8ad1994-08-01 12:07:07 +0000992fi
Barry Warsawc0d24d8b2000-06-29 16:12:00 +0000993AC_MSG_RESULT($with_threads)
Guido van Rossum6400c261997-05-22 20:34:27 +0000994
Barry Warsawc0d24d8b2000-06-29 16:12:00 +0000995if test "$with_threads" = "no"
996then
997 USE_THREAD_MODULE="#"
Martin v. Löwisa5f73f92001-10-15 08:06:29 +0000998elif test "$ac_cv_pthread_is_default" = yes
999then
1000 AC_DEFINE(WITH_THREAD)
Martin v. Löwisa5f73f92001-10-15 08:06:29 +00001001 # Defining _REENTRANT on system with POSIX threads should not hurt.
1002 AC_DEFINE(_REENTRANT)
1003 posix_threads=yes
1004 LIBOBJS="$LIBOBJS thread.o"
Martin v. Löwis130fb172001-07-19 11:00:41 +00001005elif test "$ac_cv_kpthread" = "yes"
1006then
1007 CC="$CC -Kpthread"
1008 AC_DEFINE(WITH_THREAD)
Guido van Rossumd0b69ec2001-09-10 14:10:54 +00001009 posix_threads=yes
Martin v. Löwis130fb172001-07-19 11:00:41 +00001010 LIBOBJS="$LIBOBJS thread.o"
Barry Warsawc0d24d8b2000-06-29 16:12:00 +00001011else
Martin v. Löwis130fb172001-07-19 11:00:41 +00001012 if test ! -z "$with_threads" -a -d "$with_threads"
1013 then LDFLAGS="$LDFLAGS -L$with_threads"
1014 fi
1015 if test ! -z "$withval" -a -d "$withval"
1016 then LDFLAGS="$LDFLAGS -L$withval"
1017 fi
Martin v. Löwis69c0ff32001-10-15 14:34:42 +00001018
1019 # According to the POSIX spec, a pthreads implementation must
1020 # define _POSIX_THREADS in unistd.h. Some apparently don't (which ones?)
1021 AC_MSG_CHECKING(for _POSIX_THREADS in unistd.h)
1022 AC_EGREP_CPP(yes,
1023 [#include <unistd.h>
1024 #ifdef _POSIX_THREADS
1025 yes
1026 #endif
1027 ], unistd_defines_pthreads=yes, unistd_defines_pthreads=no)
1028 AC_MSG_RESULT($unistd_defines_pthreads)
1029
Martin v. Löwis130fb172001-07-19 11:00:41 +00001030 AC_DEFINE(_REENTRANT)
1031 AC_CHECK_HEADER(mach/cthreads.h, [AC_DEFINE(WITH_THREAD)
1032 AC_DEFINE(C_THREADS)
1033 LIBOBJS="$LIBOBJS thread.o"],[
1034 AC_MSG_CHECKING(for --with-pth)
1035 AC_ARG_WITH(pth,
1036 [ --with-pth use GNU pth threading libraries], [
1037 AC_MSG_RESULT($withval)
1038 AC_DEFINE(WITH_THREAD)
1039 AC_DEFINE(HAVE_PTH)
1040 LIBS="-lpth $LIBS"
1041 LIBOBJS="$LIBOBJS thread.o"],[
1042 AC_MSG_RESULT(no)
Martin v. Löwis8158b5a2001-10-08 13:17:28 +00001043
1044 # Just looking for pthread_create in libpthread is not enough:
1045 # on HP/UX, pthread.h renames pthread_create to a different symbol name.
1046 # So we really have to include pthread.h, and then link.
1047 _libs=$LIBS
1048 LIBS="$LIBS -lpthread"
1049 AC_MSG_CHECKING([for pthread_create in -lpthread])
1050 AC_TRY_LINK([#include <pthread.h>
1051
1052void * start_routine (void *arg) { exit (0); }], [
1053pthread_create (NULL, NULL, start_routine, NULL)], [
1054 AC_MSG_RESULT(yes)
1055 AC_DEFINE(WITH_THREAD)
Martin v. Löwis69c0ff32001-10-15 14:34:42 +00001056 posix_threads=yes
Martin v. Löwis130fb172001-07-19 11:00:41 +00001057 LIBOBJS="$LIBOBJS thread.o"],[
Martin v. Löwis8158b5a2001-10-08 13:17:28 +00001058 LIBS=$_libs
Martin v. Löwis130fb172001-07-19 11:00:41 +00001059 AC_CHECK_FUNC(pthread_detach, [AC_DEFINE(WITH_THREAD)
Martin v. Löwis69c0ff32001-10-15 14:34:42 +00001060 posix_threads=yes
Martin v. Löwis130fb172001-07-19 11:00:41 +00001061 LIBOBJS="$LIBOBJS thread.o"],[
1062 AC_CHECK_HEADER(kernel/OS.h, [AC_DEFINE(WITH_THREAD)
1063 AC_DEFINE(BEOS_THREADS)
1064 LIBOBJS="$LIBOBJS thread.o"],[
1065 AC_CHECK_LIB(pthreads, pthread_create, [AC_DEFINE(WITH_THREAD)
Guido van Rossumd0b69ec2001-09-10 14:10:54 +00001066 posix_threads=yes
Martin v. Löwis130fb172001-07-19 11:00:41 +00001067 LIBS="$LIBS -lpthreads"
1068 LIBOBJS="$LIBOBJS thread.o"], [
1069 AC_CHECK_LIB(c_r, pthread_create, [AC_DEFINE(WITH_THREAD)
Guido van Rossumd0b69ec2001-09-10 14:10:54 +00001070 posix_threads=yes
Martin v. Löwis130fb172001-07-19 11:00:41 +00001071 LIBS="$LIBS -lc_r"
1072 LIBOBJS="$LIBOBJS thread.o"], [
1073 AC_CHECK_LIB(thread, __d6_pthread_create, [AC_DEFINE(WITH_THREAD)
Guido van Rossumd0b69ec2001-09-10 14:10:54 +00001074 posix_threads=yes
Martin v. Löwis130fb172001-07-19 11:00:41 +00001075 LIBS="$LIBS -lthread"
1076 LIBOBJS="$LIBOBJS thread.o"], [
1077 AC_CHECK_LIB(pthread, __pthread_create_system, [AC_DEFINE(WITH_THREAD)
Guido van Rossumd0b69ec2001-09-10 14:10:54 +00001078 posix_threads=yes
Martin v. Löwis130fb172001-07-19 11:00:41 +00001079 LIBS="$LIBS -lpthread"
1080 LIBOBJS="$LIBOBJS thread.o"], [
1081 AC_CHECK_LIB(cma, pthread_create, [AC_DEFINE(WITH_THREAD)
Guido van Rossumd0b69ec2001-09-10 14:10:54 +00001082 posix_threads=yes
Martin v. Löwis130fb172001-07-19 11:00:41 +00001083 LIBS="$LIBS -lcma"
1084 LIBOBJS="$LIBOBJS thread.o"],[
1085 USE_THREAD_MODULE="#"])
1086 ])])])])])])])])])
Barry Warsawc0d24d8b2000-06-29 16:12:00 +00001087
Guido van Rossumd0b69ec2001-09-10 14:10:54 +00001088 if test "$posix_threads" = "yes"; then
Martin v. Löwis69c0ff32001-10-15 14:34:42 +00001089 if test "$unistd_defines_pthreads" = "no"; then
1090 AC_DEFINE(_POSIX_THREADS)
1091 fi
1092
Guido van Rossumd0b69ec2001-09-10 14:10:54 +00001093 AC_MSG_CHECKING(if PTHREAD_SCOPE_SYSTEM is supported)
1094 AC_CACHE_VAL(ac_cv_pthread_system_supported,
1095 [AC_TRY_RUN([#include <pthread.h>
1096 void *foo(void *parm) {
1097 return NULL;
1098 }
1099 main() {
1100 pthread_attr_t attr;
1101 if (pthread_attr_init(&attr)) exit(-1);
1102 if (pthread_attr_setscope(&attr, PTHREAD_SCOPE_SYSTEM)) exit(-1);
1103 if (pthread_create(NULL, &attr, foo, NULL)) exit(-1);
1104 exit(0);
Guido van Rossum3065c942001-09-17 04:03:14 +00001105 }],
1106 ac_cv_pthread_system_supported=yes,
1107 ac_cv_pthread_system_supported=no,
1108 ac_cv_pthread_system_supported=no)
Guido van Rossumd0b69ec2001-09-10 14:10:54 +00001109 ])
1110 AC_MSG_RESULT($ac_cv_pthread_system_supported)
1111 if test "$ac_cv_pthread_system_supported" = "yes"; then
1112 AC_DEFINE(PTHREAD_SYSTEM_SCHED_SUPPORTED)
1113 fi
Martin v. Löwis69c0ff32001-10-15 14:34:42 +00001114 AC_CHECK_FUNCS(pthread_sigmask)
Guido van Rossumd0b69ec2001-09-10 14:10:54 +00001115 fi
1116
Martin v. Löwis130fb172001-07-19 11:00:41 +00001117 AC_CHECK_LIB(mpc, usconfig, [AC_DEFINE(WITH_THREAD)
1118 LIBS="$LIBS -lmpc"
1119 LIBOBJS="$LIBOBJS thread.o"
1120 USE_THREAD_MODULE=""])
1121 AC_CHECK_LIB(thread, thr_create, [AC_DEFINE(WITH_THREAD)
1122 LIBS="$LIBS -lthread"
1123 LIBOBJS="$LIBOBJS thread.o"
1124 USE_THREAD_MODULE=""])
Jeremy Hylton1a2ca862000-10-16 16:59:12 +00001125
Martin v. Löwis130fb172001-07-19 11:00:41 +00001126 if test "$USE_THREAD_MODULE" != "#"
1127 then
1128 # If the above checks didn't disable threads, (at least) OSF1
1129 # needs this '-threads' argument during linking.
1130 case $ac_sys_system in
1131 OSF1) LDLAST=-threads;;
1132 esac
Jeremy Hylton1a2ca862000-10-16 16:59:12 +00001133 fi
Barry Warsawc0d24d8b2000-06-29 16:12:00 +00001134fi
Guido van Rossum433c8ad1994-08-01 12:07:07 +00001135
Martin v. Löwisa2ac6022001-08-09 11:40:14 +00001136# Check for enable-ipv6
Martin v. Löwisa5f8bb52001-09-05 08:22:34 +00001137AC_MSG_CHECKING([if --enable-ipv6 is specified])
Martin v. Löwisa2ac6022001-08-09 11:40:14 +00001138AC_ARG_ENABLE(ipv6,
1139[ --enable-ipv6 Enable ipv6 (with ipv4) support
1140 --disable-ipv6 Disable ipv6 support],
1141[ case "$enableval" in
1142 no)
1143 AC_MSG_RESULT(no)
1144 ipv6=no
1145 ;;
1146 *) AC_MSG_RESULT(yes)
1147 AC_DEFINE(ENABLE_IPV6)
1148 ipv6=yes
1149 ;;
1150 esac ],
1151
Martin v. Löwisa5f8bb52001-09-05 08:22:34 +00001152[
1153dnl the check does not work on cross compilation case...
Martin v. Löwisa2ac6022001-08-09 11:40:14 +00001154 AC_TRY_RUN([ /* AF_INET6 available check */
1155#include <sys/types.h>
1156#include <sys/socket.h>
1157main()
1158{
1159 if (socket(AF_INET6, SOCK_STREAM, 0) < 0)
1160 exit(1);
1161 else
1162 exit(0);
1163}
1164],
1165 AC_MSG_RESULT(yes)
Martin v. Löwisa2ac6022001-08-09 11:40:14 +00001166 ipv6=yes,
1167 AC_MSG_RESULT(no)
1168 ipv6=no,
1169 AC_MSG_RESULT(no)
1170 ipv6=no
Martin v. Löwisa5f8bb52001-09-05 08:22:34 +00001171)
1172
1173if test "$ipv6" = "yes"; then
1174 AC_MSG_CHECKING(if RFC2553 API is available)
1175 AC_TRY_COMPILE([#include <sys/types.h>
1176#include <netinet/in.h>],
1177 [struct sockaddr_in6 x;
1178x.sin6_scope_id;],
1179 AC_MSG_RESULT(yes)
1180 ipv6=yes,
1181 AC_MSG_RESULT(no, IPv6 disabled)
1182 ipv6=no)
1183fi
1184
1185if test "$ipv6" = "yes"; then
1186 AC_DEFINE(ENABLE_IPV6)
1187fi
1188])
Martin v. Löwisa2ac6022001-08-09 11:40:14 +00001189
1190ipv6type=unknown
1191ipv6lib=none
1192ipv6trylibc=no
1193
1194if test "$ipv6" = "yes"; then
1195 AC_MSG_CHECKING([ipv6 stack type])
Guido van Rossumb8552162001-09-05 14:58:11 +00001196 for i in inria kame linux-glibc linux-inet6 solaris toshiba v6d zeta;
1197 do
Martin v. Löwisa2ac6022001-08-09 11:40:14 +00001198 case $i in
1199 inria)
1200 dnl http://www.kame.net/
Martin v. Löwisa5f73f92001-10-15 08:06:29 +00001201 AC_EGREP_CPP(yes, [
Martin v. Löwisa2ac6022001-08-09 11:40:14 +00001202#include <netinet/in.h>
1203#ifdef IPV6_INRIA_VERSION
1204yes
1205#endif],
Martin v. Löwis44ddbde2001-12-02 10:15:37 +00001206 [ipv6type=$i])
Martin v. Löwisa2ac6022001-08-09 11:40:14 +00001207 ;;
1208 kame)
1209 dnl http://www.kame.net/
Martin v. Löwisa5f73f92001-10-15 08:06:29 +00001210 AC_EGREP_CPP(yes, [
Martin v. Löwisa2ac6022001-08-09 11:40:14 +00001211#include <netinet/in.h>
1212#ifdef __KAME__
1213yes
1214#endif],
1215 [ipv6type=$i;
1216 ipv6lib=inet6
1217 ipv6libdir=/usr/local/v6/lib
Martin v. Löwis44ddbde2001-12-02 10:15:37 +00001218 ipv6trylibc=yes])
Martin v. Löwisa2ac6022001-08-09 11:40:14 +00001219 ;;
1220 linux-glibc)
1221 dnl http://www.v6.linux.or.jp/
Martin v. Löwisa5f73f92001-10-15 08:06:29 +00001222 AC_EGREP_CPP(yes, [
Martin v. Löwisa2ac6022001-08-09 11:40:14 +00001223#include <features.h>
1224#if defined(__GLIBC__) && ((__GLIBC__ == 2 && __GLIBC_MINOR__ >= 1) || (__GLIBC__ > 2))
1225yes
1226#endif],
1227 [ipv6type=$i;
Martin v. Löwis44ddbde2001-12-02 10:15:37 +00001228 ipv6trylibc=yes])
Martin v. Löwisa2ac6022001-08-09 11:40:14 +00001229 ;;
1230 linux-inet6)
1231 dnl http://www.v6.linux.or.jp/
1232 if test -d /usr/inet6; then
1233 ipv6type=$i
1234 ipv6lib=inet6
1235 ipv6libdir=/usr/inet6/lib
Martin v. Löwis44ddbde2001-12-02 10:15:37 +00001236 OPT="-I/usr/inet6/include $OPT"
Martin v. Löwisa2ac6022001-08-09 11:40:14 +00001237 fi
1238 ;;
1239 solaris)
1240 if test -f /etc/netconfig; then
1241 if /usr/xpg4/bin/grep -q tcp6 /etc/netconfig; then
1242 ipv6type=$i
1243 ipv6trylibc=yes
Martin v. Löwisa2ac6022001-08-09 11:40:14 +00001244 fi
1245 fi
1246 ;;
1247 toshiba)
Martin v. Löwisa5f73f92001-10-15 08:06:29 +00001248 AC_EGREP_CPP(yes, [
Martin v. Löwisa2ac6022001-08-09 11:40:14 +00001249#include <sys/param.h>
1250#ifdef _TOSHIBA_INET6
1251yes
1252#endif],
1253 [ipv6type=$i;
1254 ipv6lib=inet6;
Martin v. Löwis44ddbde2001-12-02 10:15:37 +00001255 ipv6libdir=/usr/local/v6/lib])
Martin v. Löwisa2ac6022001-08-09 11:40:14 +00001256 ;;
1257 v6d)
Martin v. Löwisa5f73f92001-10-15 08:06:29 +00001258 AC_EGREP_CPP(yes, [
Martin v. Löwisa2ac6022001-08-09 11:40:14 +00001259#include </usr/local/v6/include/sys/v6config.h>
1260#ifdef __V6D__
1261yes
1262#endif],
1263 [ipv6type=$i;
1264 ipv6lib=v6;
1265 ipv6libdir=/usr/local/v6/lib;
1266 OPT="-I/usr/local/v6/include $OPT"])
1267 ;;
1268 zeta)
Martin v. Löwisa5f73f92001-10-15 08:06:29 +00001269 AC_EGREP_CPP(yes, [
Martin v. Löwisa2ac6022001-08-09 11:40:14 +00001270#include <sys/param.h>
1271#ifdef _ZETA_MINAMI_INET6
1272yes
1273#endif],
1274 [ipv6type=$i;
1275 ipv6lib=inet6;
Martin v. Löwis44ddbde2001-12-02 10:15:37 +00001276 ipv6libdir=/usr/local/v6/lib])
Martin v. Löwisa2ac6022001-08-09 11:40:14 +00001277 ;;
1278 esac
1279 if test "$ipv6type" != "unknown"; then
1280 break
1281 fi
1282 done
1283 AC_MSG_RESULT($ipv6type)
1284fi
1285
1286if test "$ipv6" = "yes" -a "$ipv6lib" != "none"; then
1287 if test -d $ipv6libdir -a -f $ipv6libdir/lib$ipv6lib.a; then
1288 LIBS="-L$ipv6libdir -l$ipv6lib $LIBS"
1289 echo "using lib$ipv6lib"
1290 else
1291 if test $ipv6trylibc = "yes"; then
1292 echo "using libc"
1293 else
1294 echo 'Fatal: no $ipv6lib library found. cannot continue.'
1295 echo "You need to fetch lib$ipv6lib.a from appropriate"
1296 echo 'ipv6 kit and compile beforehand.'
1297 exit 1
1298 fi
1299 fi
1300fi
1301
Barry Warsawef82cd72000-06-30 16:21:01 +00001302# Check for GC support
Barry Warsawef82cd72000-06-30 16:21:01 +00001303AC_MSG_CHECKING(for --with-cycle-gc)
1304AC_ARG_WITH(cycle-gc,
1305[ --with(out)-cycle-gc disable/enable garbage collection])
1306
1307if test -z "$with_cycle_gc"
1308then with_cycle_gc="yes"
1309fi
Neil Schemenauer9c63e6d2001-08-29 23:44:38 +00001310if test "$with_cycle_gc" != "no"
Barry Warsawef82cd72000-06-30 16:21:01 +00001311then
Barry Warsawef82cd72000-06-30 16:21:01 +00001312 AC_DEFINE(WITH_CYCLE_GC)
1313fi
1314AC_MSG_RESULT($with_cycle_gc)
1315
Neil Schemenauera35c6882001-02-27 04:45:05 +00001316# Check for Python-specific malloc support
1317AC_MSG_CHECKING(for --with-pymalloc)
1318AC_ARG_WITH(pymalloc,
1319[ --with(out)-pymalloc disable/enable specialized mallocs], [
1320if test "$withval" != no
1321then AC_DEFINE(WITH_PYMALLOC) AC_MSG_RESULT(yes)
1322else AC_MSG_RESULT(no)
1323fi],
1324[AC_MSG_RESULT(no)])
1325
Barry Warsawef82cd72000-06-30 16:21:01 +00001326# Check for --with-wctype-functions
1327AC_MSG_CHECKING(for --with-wctype-functions)
1328AC_ARG_WITH(wctype-functions,
1329[ --with-wctype-functions use wctype.h functions], [
1330if test "$withval" != no
1331then AC_DEFINE(WANT_WCTYPE_FUNCTIONS) AC_MSG_RESULT(yes)
1332else AC_MSG_RESULT(no)
1333fi],
1334[AC_MSG_RESULT(no)])
1335
Guido van Rossum68242b51996-05-28 22:53:03 +00001336# -I${DLINCLDIR} is added to the compile rule for importdl.o
Guido van Rossum433c8ad1994-08-01 12:07:07 +00001337AC_SUBST(DLINCLDIR)
Guido van Rossum98935bf2001-09-05 19:13:16 +00001338DLINCLDIR=.
Guido van Rossum433c8ad1994-08-01 12:07:07 +00001339
Guido van Rossum5739e7e1995-01-20 16:50:53 +00001340AC_MSG_CHECKING(for --with-sgi-dl)
Barry Warsawc0d24d8b2000-06-29 16:12:00 +00001341AC_ARG_WITH(sgi-dl,
1342[ --with-sgi-dl=DIRECTORY IRIX 4 dynamic linking], [
Guido van Rossum5739e7e1995-01-20 16:50:53 +00001343AC_MSG_RESULT($withval)
Guido van Rossum76be6ed1995-01-02 18:33:54 +00001344AC_DEFINE(WITH_SGI_DL)
Guido van Rossume97ee181999-12-20 21:27:22 +00001345DYNLOADFILE="dynload_dl.o"
Guido van Rossum433c8ad1994-08-01 12:07:07 +00001346dldir=$withval
Guido van Rossum40951012000-10-07 16:21:27 +00001347if test ! -z "$dldir" -a -d "$dldir"
Guido van Rossum300fda71996-08-19 21:58:16 +00001348then LDFLAGS="$LDFLAGS -L$dldir"
Guido van Rossum433c8ad1994-08-01 12:07:07 +00001349else AC_ERROR(proper usage is --with-sgi-dl=DIRECTORY)
1350fi
1351DLINCLDIR=${dldir}
Guido van Rossum5739e7e1995-01-20 16:50:53 +00001352LIBS="$LIBS -ldl -lmld"], AC_MSG_RESULT(no))
Guido van Rossum433c8ad1994-08-01 12:07:07 +00001353
Guido van Rossum5739e7e1995-01-20 16:50:53 +00001354AC_MSG_CHECKING(for --with-dl-dld)
Barry Warsawc0d24d8b2000-06-29 16:12:00 +00001355AC_ARG_WITH(dl-dld, [ --with-dl-dld=DL_DIR,DLD_DIR GNU dynamic linking], [
Guido van Rossum5739e7e1995-01-20 16:50:53 +00001356AC_MSG_RESULT($withval)
Guido van Rossum76be6ed1995-01-02 18:33:54 +00001357AC_DEFINE(WITH_DL_DLD)
Guido van Rossume97ee181999-12-20 21:27:22 +00001358DYNLOADFILE="dynload_dl.o"
Guido van Rossum433c8ad1994-08-01 12:07:07 +00001359dldir=`echo "$withval" | sed 's/,.*//'`
1360dlddir=`echo "$withval" | sed 's/.*,//'`
Barry Warsaw7d1219d2000-10-05 18:45:53 +00001361if test ! -z "$dldir" -a -d "$dldir" -a ! -z "$dlddir" -a -d "$dlddir"
Guido van Rossum300fda71996-08-19 21:58:16 +00001362then LDFLAGS="$LDFLAGS -L$dldir -L$dlddir"
Guido van Rossum433c8ad1994-08-01 12:07:07 +00001363else AC_ERROR(proper usage is --with-dl-dld=DL_DIRECTORY,DLD_DIRECTORY)
1364fi
1365DLINCLDIR=${dldir}
Guido van Rossum5739e7e1995-01-20 16:50:53 +00001366LIBS="$LIBS -ldl -ldld"], AC_MSG_RESULT(no))
Guido van Rossum627b2d71993-12-24 10:39:16 +00001367
Guido van Rossume97ee181999-12-20 21:27:22 +00001368# the dlopen() function means we might want to use dynload_shlib.o. some
1369# platforms, such as AIX, have dlopen(), but don't want to use it.
Thomas Wouters3a584202000-08-05 23:28:51 +00001370AC_CHECK_FUNCS(dlopen)
Guido van Rossume97ee181999-12-20 21:27:22 +00001371
1372# DYNLOADFILE specifies which dynload_*.o file we will use for dynamic
1373# loading of modules.
1374AC_SUBST(DYNLOADFILE)
1375AC_MSG_CHECKING(DYNLOADFILE)
1376if test -z "$DYNLOADFILE"
1377then
1378 case $ac_sys_system/$ac_sys_release in
1379 AIX*) DYNLOADFILE="dynload_aix.o";;
1380 BeOS*) DYNLOADFILE="dynload_beos.o";;
1381 hp*|HP*) DYNLOADFILE="dynload_hpux.o";;
Jack Jansenb6e9cad2001-08-15 01:26:28 +00001382 Darwin/*) DYNLOADFILE="dynload_next.o";;
Guido van Rossume97ee181999-12-20 21:27:22 +00001383 *)
1384 # use dynload_shlib.c and dlopen() if we have it; otherwise stub
1385 # out any dynamic loading
1386 if test "$ac_cv_func_dlopen" = yes
1387 then DYNLOADFILE="dynload_shlib.o"
1388 else DYNLOADFILE="dynload_stub.o"
1389 fi
1390 ;;
1391 esac
1392fi
1393AC_MSG_RESULT($DYNLOADFILE)
1394if test "$DYNLOADFILE" != "dynload_stub.o"
1395then
1396 AC_DEFINE(HAVE_DYNAMIC_LOADING)
1397fi
1398
Jack Jansenc49e5b72001-06-19 15:00:23 +00001399# MACHDEP_OBJS can be set to platform-specific object files needed by Python
1400
1401AC_SUBST(MACHDEP_OBJS)
1402AC_MSG_CHECKING(MACHDEP_OBJS)
1403if test -z "$MACHDEP_OBJS"
1404then
Jack Jansenb6e9cad2001-08-15 01:26:28 +00001405 MACHDEP_OBJS=$extra_machdep_objs
1406else
1407 MACHDEP_OBJS="$MACHDEP_OBJS $extra_machdep_objs"
Jack Jansenc49e5b72001-06-19 15:00:23 +00001408fi
Jack Jansenb6e9cad2001-08-15 01:26:28 +00001409AC_MSG_RESULT(MACHDEP_OBJS)
Jack Jansenc49e5b72001-06-19 15:00:23 +00001410
Guido van Rossum627b2d71993-12-24 10:39:16 +00001411# checks for library functions
Martin v. Löwis244edc82001-10-04 22:44:26 +00001412AC_CHECK_FUNCS(alarm chown chroot clock confstr ctermid ctermid_r execv \
Fred Drake35a092f1999-12-13 16:23:35 +00001413 flock fork fsync fdatasync fpathconf ftime ftruncate \
Martin v. Löwisf95dd0a2001-08-15 17:14:33 +00001414 gai_strerror getgroups getlogin getpeername getpid getpwent getwd \
Martin v. Löwis864e9ff2001-08-04 22:32:03 +00001415 hstrerror inet_pton kill link lstat mkfifo mktime mremap \
Andrew M. Kuchling5821b772000-08-25 01:14:08 +00001416 nice pathconf pause plock poll pthread_init \
Fred Drake35a092f1999-12-13 16:23:35 +00001417 putenv readlink \
Martin v. Löwis61c5edf2001-10-18 04:06:00 +00001418 select setegid seteuid setgid setgroups \
Martin v. Löwis791bfda2001-07-24 06:33:08 +00001419 setlocale setregid setreuid setsid setpgid setuid setvbuf snprintf \
Fred Drake35a092f1999-12-13 16:23:35 +00001420 sigaction siginterrupt sigrelse strftime strptime symlink sysconf \
Fred Drake89143df1999-12-09 22:03:25 +00001421 tcgetpgrp tcsetpgrp tempnam timegm times tmpfile tmpnam tmpnam_r \
Guido van Rossumc524d952001-10-19 01:31:59 +00001422 truncate uname unsetenv waitpid _getpty getpriority)
Guido van Rossum00f0f6e1999-01-06 18:52:29 +00001423
Fred Drake8cef4cf2000-06-28 16:40:38 +00001424# check for openpty and forkpty
1425
1426AC_CHECK_FUNCS(openpty,, AC_CHECK_LIB(util,openpty, [AC_DEFINE(HAVE_OPENPTY)] [LIBS="$LIBS -lutil"]))
1427AC_CHECK_FUNCS(forkpty,, AC_CHECK_LIB(util,forkpty, [AC_DEFINE(HAVE_FORKPTY)] [LIBS="$LIBS -lutil"]))
1428
Guido van Rossum00f0f6e1999-01-06 18:52:29 +00001429# check for long file support functions
1430AC_CHECK_FUNCS(fseek64 fseeko fstatvfs ftell64 ftello statvfs)
1431
Guido van Rossumf2f7eb31996-08-30 15:18:00 +00001432AC_REPLACE_FUNCS(dup2 getcwd strdup strerror memmove)
Thomas Wouters3a584202000-08-05 23:28:51 +00001433AC_CHECK_FUNCS(getpgrp, AC_TRY_COMPILE([#include <unistd.h>], [getpgrp(0);], AC_DEFINE(GETPGRP_HAVE_ARG)))
1434AC_CHECK_FUNCS(setpgrp, AC_TRY_COMPILE([#include <unistd.h>], [setpgrp(0,0);], AC_DEFINE(SETPGRP_HAVE_ARG)))
1435AC_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 +00001436
Martin v. Löwis861a65b2001-10-24 14:36:00 +00001437
1438# On OSF/1 V5.1, getaddrinfo is available, but a define
1439# for [no]getaddrinfo in netdb.h.
1440AC_MSG_CHECKING(for getaddrinfo)
1441AC_TRY_LINK([
Martin v. Löwisc010b6d2001-11-09 17:50:52 +00001442#include <sys/types.h>
Martin v. Löwis861a65b2001-10-24 14:36:00 +00001443#include <sys/socket.h>
1444#include <netdb.h>
Martin v. Löwisc010b6d2001-11-09 17:50:52 +00001445#include <stdio.h>
Martin v. Löwis861a65b2001-10-24 14:36:00 +00001446],[
1447getaddrinfo(NULL, NULL, NULL, NULL);
1448], [
1449AC_MSG_RESULT(yes)
Martin v. Löwis01dfdb32001-06-23 16:30:13 +00001450AC_MSG_CHECKING(getaddrinfo bug)
1451AC_TRY_RUN([
1452#include <sys/types.h>
1453#include <netdb.h>
1454#include <string.h>
1455#include <sys/socket.h>
1456#include <netinet/in.h>
1457
1458main()
1459{
1460 int passive, gaierr, inet4 = 0, inet6 = 0;
1461 struct addrinfo hints, *ai, *aitop;
1462 char straddr[INET6_ADDRSTRLEN], strport[16];
1463
1464 for (passive = 0; passive <= 1; passive++) {
1465 memset(&hints, 0, sizeof(hints));
1466 hints.ai_family = AF_UNSPEC;
1467 hints.ai_flags = passive ? AI_PASSIVE : 0;
1468 hints.ai_socktype = SOCK_STREAM;
1469 if ((gaierr = getaddrinfo(NULL, "54321", &hints, &aitop)) != 0) {
1470 (void)gai_strerror(gaierr);
1471 goto bad;
1472 }
1473 for (ai = aitop; ai; ai = ai->ai_next) {
1474 if (ai->ai_addr == NULL ||
1475 ai->ai_addrlen == 0 ||
1476 getnameinfo(ai->ai_addr, ai->ai_addrlen,
1477 straddr, sizeof(straddr), strport, sizeof(strport),
1478 NI_NUMERICHOST|NI_NUMERICSERV) != 0) {
1479 goto bad;
1480 }
1481 switch (ai->ai_family) {
1482 case AF_INET:
1483 if (strcmp(strport, "54321") != 0) {
1484 goto bad;
1485 }
1486 if (passive) {
1487 if (strcmp(straddr, "0.0.0.0") != 0) {
1488 goto bad;
1489 }
1490 } else {
1491 if (strcmp(straddr, "127.0.0.1") != 0) {
1492 goto bad;
1493 }
1494 }
1495 inet4++;
1496 break;
1497 case AF_INET6:
1498 if (strcmp(strport, "54321") != 0) {
1499 goto bad;
1500 }
1501 if (passive) {
1502 if (strcmp(straddr, "::") != 0) {
1503 goto bad;
1504 }
1505 } else {
1506 if (strcmp(straddr, "::1") != 0) {
1507 goto bad;
1508 }
1509 }
1510 inet6++;
1511 break;
1512 case AF_UNSPEC:
1513 goto bad;
1514 break;
1515 default:
1516 /* another family support? */
1517 break;
1518 }
1519 }
1520 }
1521
1522 if (!(inet4 == 0 || inet4 == 2))
1523 goto bad;
1524 if (!(inet6 == 0 || inet6 == 2))
1525 goto bad;
1526
1527 if (aitop)
1528 freeaddrinfo(aitop);
1529 exit(0);
1530
1531 bad:
1532 if (aitop)
1533 freeaddrinfo(aitop);
1534 exit(1);
1535}
1536],
1537AC_MSG_RESULT(good)
1538buggygetaddrinfo=no,
1539AC_MSG_RESULT(buggy)
1540buggygetaddrinfo=yes,
1541AC_MSG_RESULT(buggy)
Martin v. Löwis861a65b2001-10-24 14:36:00 +00001542buggygetaddrinfo=yes)], [
1543AC_MSG_RESULT(no)
1544buggygetaddrinfo=yes
1545])
Martin v. Löwis01dfdb32001-06-23 16:30:13 +00001546
1547if test "$buggygetaddrinfo" = "yes"; then
1548 if test "$ipv6" = "yes"; then
1549 echo 'Fatal: You must get working getaddrinfo() function.'
1550 echo ' or you can specify "--disable-ipv6"'.
1551 exit 1
1552 fi
Martin v. Löwis861a65b2001-10-24 14:36:00 +00001553else
1554 AC_DEFINE(HAVE_GETADDRINFO)
Martin v. Löwis01dfdb32001-06-23 16:30:13 +00001555fi
Thomas Woutersb0db85a2001-08-08 10:39:03 +00001556AC_CHECK_FUNCS(getnameinfo)
Martin v. Löwis01dfdb32001-06-23 16:30:13 +00001557
Guido van Rossum627b2d71993-12-24 10:39:16 +00001558# checks for structures
Guido van Rossum76be6ed1995-01-02 18:33:54 +00001559AC_HEADER_TIME
Guido van Rossum627b2d71993-12-24 10:39:16 +00001560AC_STRUCT_TM
Guido van Rossum76be6ed1995-01-02 18:33:54 +00001561AC_STRUCT_TIMEZONE
Guido van Rossum98bf58f2001-10-18 20:34:25 +00001562AC_STRUCT_ST_RDEV
1563AC_STRUCT_ST_BLKSIZE
1564AC_STRUCT_ST_BLOCKS
Guido van Rossum76be6ed1995-01-02 18:33:54 +00001565
1566AC_MSG_CHECKING(for time.h that defines altzone)
1567AC_CACHE_VAL(ac_cv_header_time_altzone,
1568[AC_TRY_COMPILE([#include <time.h>], [return altzone;],
1569 ac_cv_header_time_altzone=yes,
1570 ac_cv_header_time_altzone=no)])
1571AC_MSG_RESULT($ac_cv_header_time_altzone)
1572if test $ac_cv_header_time_altzone = yes; then
1573 AC_DEFINE(HAVE_ALTZONE)
1574fi
1575
Guido van Rossum5739e7e1995-01-20 16:50:53 +00001576was_it_defined=no
1577AC_MSG_CHECKING(whether sys/select.h and sys/time.h may both be included)
Guido van Rossum76be6ed1995-01-02 18:33:54 +00001578AC_TRY_COMPILE([
Guido van Rossum433c8ad1994-08-01 12:07:07 +00001579#include <sys/types.h>
1580#include <sys/select.h>
1581#include <sys/time.h>
Guido van Rossum5739e7e1995-01-20 16:50:53 +00001582], [;], [AC_DEFINE(SYS_SELECT_WITH_SYS_TIME) was_it_defined=yes])
1583AC_MSG_RESULT($was_it_defined)
Guido van Rossum627b2d71993-12-24 10:39:16 +00001584
Martin v. Löwis01dfdb32001-06-23 16:30:13 +00001585AC_MSG_CHECKING(for addrinfo)
1586AC_CACHE_VAL(ac_cv_struct_addrinfo,
1587AC_TRY_COMPILE([
1588# include <netdb.h>],
1589 [struct addrinfo a],
1590 ac_cv_struct_addrinfo=yes,
1591 ac_cv_struct_addrinfo=no))
1592AC_MSG_RESULT($ac_cv_struct_addrinfo)
1593if test $ac_cv_struct_addrinfo = yes; then
1594 AC_DEFINE(HAVE_ADDRINFO)
1595fi
1596
1597AC_MSG_CHECKING(for sockaddr_storage)
1598AC_CACHE_VAL(ac_cv_struct_sockaddr_storage,
1599AC_TRY_COMPILE([
1600# include <sys/types.h>
1601# include <sys/socket.h>],
1602 [struct sockaddr_storage s],
1603 ac_cv_struct_sockaddr_storage=yes,
1604 ac_cv_struct_sockaddr_storage=no))
1605AC_MSG_RESULT($ac_cv_struct_sockaddr_storage)
1606if test $ac_cv_struct_sockaddr_storage = yes; then
1607 AC_DEFINE(HAVE_SOCKADDR_STORAGE)
1608fi
1609
Guido van Rossum627b2d71993-12-24 10:39:16 +00001610# checks for compiler characteristics
Guido van Rossum433c8ad1994-08-01 12:07:07 +00001611
Guido van Rossum76be6ed1995-01-02 18:33:54 +00001612AC_C_CHAR_UNSIGNED
Guido van Rossum76be6ed1995-01-02 18:33:54 +00001613AC_C_CONST
Guido van Rossum433c8ad1994-08-01 12:07:07 +00001614
Guido van Rossum5739e7e1995-01-20 16:50:53 +00001615works=no
1616AC_MSG_CHECKING(for working volatile)
1617AC_TRY_COMPILE([],[volatile int x; x = 0;], works=yes, AC_DEFINE(volatile, []))
1618AC_MSG_RESULT($works)
Guido van Rossumdabb11b1994-10-11 15:04:27 +00001619
Guido van Rossum5739e7e1995-01-20 16:50:53 +00001620works=no
1621AC_MSG_CHECKING(for working signed char)
1622AC_TRY_COMPILE([], [signed char c;], works=yes, AC_DEFINE(signed, []))
1623AC_MSG_RESULT($works)
Guido van Rossum433c8ad1994-08-01 12:07:07 +00001624
Guido van Rossum5739e7e1995-01-20 16:50:53 +00001625have_prototypes=no
1626AC_MSG_CHECKING(for prototypes)
Guido van Rossum76be6ed1995-01-02 18:33:54 +00001627AC_TRY_COMPILE([int foo(int x) { return 0; }], [return foo(10);],
1628AC_DEFINE(HAVE_PROTOTYPES) have_prototypes=yes)
Guido van Rossum5739e7e1995-01-20 16:50:53 +00001629AC_MSG_RESULT($have_prototypes)
Guido van Rossum433c8ad1994-08-01 12:07:07 +00001630
Guido van Rossum5739e7e1995-01-20 16:50:53 +00001631works=no
1632AC_MSG_CHECKING(for variable length prototypes and stdarg.h)
Guido van Rossum76be6ed1995-01-02 18:33:54 +00001633AC_TRY_COMPILE([
Guido van Rossum433c8ad1994-08-01 12:07:07 +00001634#include <stdarg.h>
Guido van Rossum3f13e481996-08-30 20:58:11 +00001635int foo(int x, ...) {
1636 va_list va;
1637 va_start(va, x);
1638 va_arg(va, int);
1639 va_arg(va, char *);
1640 va_arg(va, double);
1641 return 0;
1642}
1643], [return foo(10, "", 3.14);],
Guido van Rossum5739e7e1995-01-20 16:50:53 +00001644AC_DEFINE(HAVE_STDARG_PROTOTYPES) works=yes)
1645AC_MSG_RESULT($works)
Guido van Rossum76be6ed1995-01-02 18:33:54 +00001646
Guido van Rossum5739e7e1995-01-20 16:50:53 +00001647if test "$have_prototypes" = yes; then
1648bad_prototypes=no
1649AC_MSG_CHECKING(for bad exec* prototypes)
1650AC_TRY_COMPILE([#include <unistd.h>], [char **t;execve("@",t,t);], ,
1651 AC_DEFINE(BAD_EXEC_PROTOTYPES) bad_prototypes=yes)
1652AC_MSG_RESULT($bad_prototypes)
Guido van Rossum627b2d71993-12-24 10:39:16 +00001653fi
1654
Martin v. Löwis01dfdb32001-06-23 16:30:13 +00001655# check if sockaddr has sa_len member
1656AC_MSG_CHECKING(if sockaddr has sa_len member)
1657AC_TRY_COMPILE([#include <sys/types.h>
1658#include <sys/socket.h>],
1659[struct sockaddr x;
1660x.sa_len = 0;],
1661 AC_MSG_RESULT(yes)
1662 AC_DEFINE(HAVE_SOCKADDR_SA_LEN),
1663 AC_MSG_RESULT(no))
1664
Guido van Rossum5739e7e1995-01-20 16:50:53 +00001665AC_MSG_CHECKING(for bad static forward)
Martin v. Löwis1d5ecb72001-08-09 10:29:44 +00001666AC_CACHE_VAL(ac_cv_bad_static_forward,
1667[AC_TRY_RUN([
Guido van Rossum433c8ad1994-08-01 12:07:07 +00001668struct s { int a; int b; };
1669static struct s foo;
Guido van Rossum5dee5e71994-11-10 23:06:54 +00001670int foobar() {
1671 static int random;
1672 random = (int) &foo;
1673 return random;
1674}
Guido van Rossum433c8ad1994-08-01 12:07:07 +00001675static struct s foo = { 1, 2 };
Guido van Rossum5dee5e71994-11-10 23:06:54 +00001676main() {
1677 exit(!((int)&foo == foobar()));
Guido van Rossum3065c942001-09-17 04:03:14 +00001678}],
1679ac_cv_bad_static_forward=no,
1680ac_cv_bad_static_forward=yes,
1681ac_cv_bad_static_forward=no)])
Martin v. Löwis1d5ecb72001-08-09 10:29:44 +00001682AC_MSG_RESULT($ac_cv_bad_static_forward)
1683if test "$ac_cv_bad_static_forward" = yes
1684then
1685 AC_DEFINE(BAD_STATIC_FORWARD)
1686fi
Guido van Rossum433c8ad1994-08-01 12:07:07 +00001687
Guido van Rossum5739e7e1995-01-20 16:50:53 +00001688va_list_is_array=no
1689AC_MSG_CHECKING(whether va_list is an array)
Guido van Rossum76be6ed1995-01-02 18:33:54 +00001690AC_TRY_COMPILE([
1691#ifdef HAVE_STDARG_PROTOTYPES
1692#include <stdarg.h>
1693#else
1694#include <varargs.h>
1695#endif
Guido van Rossum5739e7e1995-01-20 16:50:53 +00001696], [va_list list1, list2; list1 = list2;], ,
1697AC_DEFINE(VA_LIST_IS_ARRAY) va_list_is_array=yes)
1698AC_MSG_RESULT($va_list_is_array)
Guido van Rossum76be6ed1995-01-02 18:33:54 +00001699
Guido van Rossuma96f0ba1999-03-22 21:49:51 +00001700# sigh -- gethostbyname_r is a mess; it can have 3, 5 or 6 arguments :-(
1701AC_CHECK_FUNC(gethostbyname_r, [
1702 AC_DEFINE(HAVE_GETHOSTBYNAME_R)
1703 AC_MSG_CHECKING([gethostbyname_r with 6 args])
1704 OLD_CFLAGS=$CFLAGS
1705 CFLAGS="$CFLAGS $MY_CPPFLAGS $MY_THREAD_CPPFLAGS $MY_CFLAGS"
1706 AC_TRY_COMPILE([
1707# include <netdb.h>
1708 ], [
1709 char *name;
1710 struct hostent *he, *res;
1711 char buffer[2048];
1712 int buflen = 2048;
1713 int h_errnop;
1714
1715 (void) gethostbyname_r(name, he, buffer, buflen, &res, &h_errnop)
1716 ], [
Guido van Rossum8db7d8b1999-03-23 16:40:33 +00001717 AC_DEFINE(HAVE_GETHOSTBYNAME_R)
Guido van Rossuma96f0ba1999-03-22 21:49:51 +00001718 AC_DEFINE(HAVE_GETHOSTBYNAME_R_6_ARG)
1719 AC_MSG_RESULT(yes)
1720 ], [
1721 AC_MSG_RESULT(no)
1722 AC_MSG_CHECKING([gethostbyname_r with 5 args])
1723 AC_TRY_COMPILE([
1724# include <netdb.h>
1725 ], [
1726 char *name;
1727 struct hostent *he;
1728 char buffer[2048];
1729 int buflen = 2048;
1730 int h_errnop;
1731
1732 (void) gethostbyname_r(name, he, buffer, buflen, &h_errnop)
1733 ], [
Guido van Rossum8db7d8b1999-03-23 16:40:33 +00001734 AC_DEFINE(HAVE_GETHOSTBYNAME_R)
Guido van Rossuma96f0ba1999-03-22 21:49:51 +00001735 AC_DEFINE(HAVE_GETHOSTBYNAME_R_5_ARG)
1736 AC_MSG_RESULT(yes)
1737 ], [
1738 AC_MSG_RESULT(no)
1739 AC_MSG_CHECKING([gethostbyname_r with 3 args])
1740 AC_TRY_COMPILE([
1741# include <netdb.h>
1742 ], [
1743 char *name;
1744 struct hostent *he;
1745 struct hostent_data data;
1746
1747 (void) gethostbyname_r(name, he, &data);
1748 ], [
Guido van Rossum8db7d8b1999-03-23 16:40:33 +00001749 AC_DEFINE(HAVE_GETHOSTBYNAME_R)
Guido van Rossuma96f0ba1999-03-22 21:49:51 +00001750 AC_DEFINE(HAVE_GETHOSTBYNAME_R_3_ARG)
1751 AC_MSG_RESULT(yes)
1752 ], [
1753 AC_MSG_RESULT(no)
1754 ])
1755 ])
1756 ])
1757 CFLAGS=$OLD_CFLAGS
1758], [
Thomas Wouters3a584202000-08-05 23:28:51 +00001759 AC_CHECK_FUNCS(gethostbyname)
Guido van Rossuma96f0ba1999-03-22 21:49:51 +00001760])
1761AC_SUBST(HAVE_GETHOSTBYNAME_R_6_ARG)
1762AC_SUBST(HAVE_GETHOSTBYNAME_R_5_ARG)
1763AC_SUBST(HAVE_GETHOSTBYNAME_R_3_ARG)
Guido van Rossum8db7d8b1999-03-23 16:40:33 +00001764AC_SUBST(HAVE_GETHOSTBYNAME_R)
Guido van Rossuma96f0ba1999-03-22 21:49:51 +00001765AC_SUBST(HAVE_GETHOSTBYNAME)
1766
Guido van Rossum627b2d71993-12-24 10:39:16 +00001767# checks for system services
1768# (none yet)
1769
Guido van Rossum76be6ed1995-01-02 18:33:54 +00001770# Linux requires this for correct f.p. operations
Jeremy Hyltonbe28f5b2000-07-27 21:03:04 +00001771AC_CHECK_FUNC(__fpu_control,
1772 [],
1773 [AC_CHECK_LIB(ieee, __fpu_control)
1774])
Guido van Rossum627b2d71993-12-24 10:39:16 +00001775
Guido van Rossum93274221997-05-09 02:42:00 +00001776# Check for --with-fpectl
Guido van Rossum93274221997-05-09 02:42:00 +00001777AC_MSG_CHECKING(for --with-fpectl)
Barry Warsawc0d24d8b2000-06-29 16:12:00 +00001778AC_ARG_WITH(fpectl,
1779[ --with-fpectl enable SIGFPE catching], [
Guido van Rossum93274221997-05-09 02:42:00 +00001780if test "$withval" != no
1781then AC_DEFINE(WANT_SIGFPE_HANDLER) AC_MSG_RESULT(yes)
1782else AC_MSG_RESULT(no)
Guido van Rossumef2255b2000-03-10 22:30:29 +00001783fi],
1784[AC_MSG_RESULT(no)])
Guido van Rossum93274221997-05-09 02:42:00 +00001785
Guido van Rossum433c8ad1994-08-01 12:07:07 +00001786# check for --with-libm=...
1787AC_SUBST(LIBM)
Guido van Rossum4b6b5791996-09-09 20:09:34 +00001788case $ac_sys_system in
Guido van Rossum3dc0a512000-10-05 18:00:06 +00001789Darwin) ;;
Guido van Rossumec95c7b1998-08-04 17:59:56 +00001790BeOS) ;;
Guido van Rossum4b6b5791996-09-09 20:09:34 +00001791*) LIBM=-lm
1792esac
Guido van Rossum93274221997-05-09 02:42:00 +00001793AC_MSG_CHECKING(for --with-libm=STRING)
Barry Warsawc0d24d8b2000-06-29 16:12:00 +00001794AC_ARG_WITH(libm, [ --with-libm=STRING math library], [
Guido van Rossum93274221997-05-09 02:42:00 +00001795if test "$withval" = no
1796then LIBM=
1797 AC_MSG_RESULT(force LIBM empty)
1798elif test "$withval" != yes
Guido van Rossum433c8ad1994-08-01 12:07:07 +00001799then LIBM=$withval
Guido van Rossum93274221997-05-09 02:42:00 +00001800 AC_MSG_RESULT(set LIBM=\"$withval\")
Guido van Rossum433c8ad1994-08-01 12:07:07 +00001801else AC_ERROR(proper usage is --with-libm=STRING)
Guido van Rossum93274221997-05-09 02:42:00 +00001802fi],
1803[AC_MSG_RESULT(default LIBM=\"$LIBM\")])
Guido van Rossum433c8ad1994-08-01 12:07:07 +00001804
1805# check for --with-libc=...
1806AC_SUBST(LIBC)
Guido van Rossum93274221997-05-09 02:42:00 +00001807AC_MSG_CHECKING(for --with-libc=STRING)
Barry Warsawc0d24d8b2000-06-29 16:12:00 +00001808AC_ARG_WITH(libc, [ --with-libc=STRING C library], [
Guido van Rossum93274221997-05-09 02:42:00 +00001809if test "$withval" = no
1810then LIBC=
1811 AC_MSG_RESULT(force LIBC empty)
1812elif test "$withval" != yes
Guido van Rossum433c8ad1994-08-01 12:07:07 +00001813then LIBC=$withval
Guido van Rossum93274221997-05-09 02:42:00 +00001814 AC_MSG_RESULT(set LIBC=\"$withval\")
Guido van Rossum433c8ad1994-08-01 12:07:07 +00001815else AC_ERROR(proper usage is --with-libc=STRING)
Guido van Rossum93274221997-05-09 02:42:00 +00001816fi],
1817[AC_MSG_RESULT(default LIBC=\"$LIBC\")])
Guido van Rossum433c8ad1994-08-01 12:07:07 +00001818
Guido van Rossumaf5b83e1995-01-04 19:02:35 +00001819# check for hypot() in math library
1820LIBS_SAVE=$LIBS
1821LIBS="$LIBS $LIBM"
Guido van Rossumf2f7eb31996-08-30 15:18:00 +00001822AC_REPLACE_FUNCS(hypot)
Guido van Rossumaf5b83e1995-01-04 19:02:35 +00001823LIBS=$LIBS_SAVE
1824
Guido van Rossumad713701997-07-10 22:42:38 +00001825# check whether malloc(0) returns NULL or not
Guido van Rossumad713701997-07-10 22:42:38 +00001826AC_MSG_CHECKING(what malloc(0) returns)
1827AC_CACHE_VAL(ac_cv_malloc_zero,
1828[AC_TRY_RUN([#include <stdio.h>
1829#ifdef HAVE_STDLIB
1830#include <stdlib.h>
1831#else
1832char *malloc(), *realloc();
1833int *free();
1834#endif
1835main() {
1836 char *p;
1837 p = malloc(0);
1838 if (p == NULL) exit(1);
1839 p = realloc(p, 0);
1840 if (p == NULL) exit(1);
1841 free(p);
1842 exit(0);
Guido van Rossum3065c942001-09-17 04:03:14 +00001843}],
1844ac_cv_malloc_zero=nonnull,
1845ac_cv_malloc_zero=null,
1846ac_cv_malloc_zero=nonnull)]) # XXX arm cross-compile?
Guido van Rossumad713701997-07-10 22:42:38 +00001847AC_MSG_RESULT($ac_cv_malloc_zero)
1848if test "$ac_cv_malloc_zero" = null
1849then
1850 AC_DEFINE(MALLOC_ZERO_RETURNS_NULL)
1851fi
1852
Guido van Rossumef2255b2000-03-10 22:30:29 +00001853# check for wchar.h
1854AC_CHECK_HEADER(wchar.h,
1855AC_DEFINE(HAVE_WCHAR_H) wchar_h="yes",
1856wchar_h="no"
1857)
1858
Martin v. Löwis0ba70cc2001-06-26 22:22:37 +00001859# determine wchar_t size
1860if test "$wchar_h" = yes
1861then
Guido van Rossum67b26592001-10-20 14:21:45 +00001862 AC_CHECK_SIZEOF(wchar_t, 4, [#include <wchar.h>])
Martin v. Löwis0ba70cc2001-06-26 22:22:37 +00001863fi
1864
1865AC_MSG_CHECKING(what type to use for unicode)
1866AC_ARG_ENABLE(unicode,
1867[ --enable-unicode[=ucs2,ucs4] Enable Unicode strings (default is yes)],,enable_unicode=yes)
1868
1869if test $enable_unicode = yes
1870then
Martin v. Löwisfd917792001-06-27 20:22:04 +00001871 # Without any arguments, Py_UNICODE defaults to two-byte mode
1872 enable_unicode="ucs2"
Martin v. Löwis0ba70cc2001-06-26 22:22:37 +00001873fi
1874
1875case "$enable_unicode" in
1876ucs2) unicode_size="2"
1877 AC_DEFINE(Py_UNICODE_SIZE,2)
1878 ;;
1879ucs4) unicode_size="4"
1880 AC_DEFINE(Py_UNICODE_SIZE,4)
1881 ;;
1882esac
1883
Martin v. Löwis339d0f72001-08-17 18:39:25 +00001884AC_SUBST(UNICODE_OBJS)
Martin v. Löwis0ba70cc2001-06-26 22:22:37 +00001885if test "$enable_unicode" = "no"
1886then
Martin v. Löwis339d0f72001-08-17 18:39:25 +00001887 UNICODE_OBJS=""
Martin v. Löwis0ba70cc2001-06-26 22:22:37 +00001888 AC_MSG_RESULT(not used)
1889else
Martin v. Löwis339d0f72001-08-17 18:39:25 +00001890 UNICODE_OBJS="Objects/unicodeobject.o Objects/unicodectype.o"
Martin v. Löwis0ba70cc2001-06-26 22:22:37 +00001891 AC_DEFINE(Py_USING_UNICODE)
1892 if test "$unicode_size" = "$ac_cv_sizeof_wchar_t"
1893 then
1894 PY_UNICODE_TYPE="wchar_t"
1895 AC_DEFINE(HAVE_USABLE_WCHAR_T)
1896 AC_DEFINE(PY_UNICODE_TYPE,wchar_t)
1897 elif test "$ac_cv_sizeof_short" = "$unicode_size"
1898 then
1899 PY_UNICODE_TYPE="unsigned short"
1900 AC_DEFINE(PY_UNICODE_TYPE,unsigned short)
1901 elif test "$ac_cv_sizeof_long" = "$unicode_size"
1902 then
1903 PY_UNICODE_TYPE="unsigned long"
1904 AC_DEFINE(PY_UNICODE_TYPE,unsigned long)
1905 else
1906 PY_UNICODE_TYPE="no type found"
1907 fi
1908 AC_MSG_RESULT($PY_UNICODE_TYPE)
1909fi
Guido van Rossumef2255b2000-03-10 22:30:29 +00001910
1911# check for endianness
1912AC_C_BIGENDIAN
1913
Vladimir Marangozov9a5a5d12000-07-12 03:02:16 +00001914# Check whether right shifting a negative integer extends the sign bit
1915# or fills with zeros (like the Cray J90, according to Tim Peters).
1916AC_MSG_CHECKING(whether right shift extends the sign bit)
Vladimir Marangozova6180282000-07-12 05:05:06 +00001917AC_CACHE_VAL(ac_cv_rshift_extends_sign, [
Vladimir Marangozov9a5a5d12000-07-12 03:02:16 +00001918AC_TRY_RUN([
1919int main()
1920{
Vladimir Marangozova6180282000-07-12 05:05:06 +00001921 exit(((-1)>>3 == -1) ? 0 : 1);
Vladimir Marangozov9a5a5d12000-07-12 03:02:16 +00001922}
Guido van Rossum3065c942001-09-17 04:03:14 +00001923],
1924ac_cv_rshift_extends_sign=yes,
1925ac_cv_rshift_extends_sign=no,
1926ac_cv_rshift_extends_sign=yes)])
Vladimir Marangozova6180282000-07-12 05:05:06 +00001927AC_MSG_RESULT($ac_cv_rshift_extends_sign)
1928if test "$ac_cv_rshift_extends_sign" = no
1929then
1930 AC_DEFINE(SIGNED_RIGHT_SHIFT_ZERO_FILLS)
1931fi
1932
Guido van Rossumcadfaec2001-01-05 14:45:49 +00001933# check for getc_unlocked and related locking functions
1934AC_MSG_CHECKING(for getc_unlocked() and friends)
1935AC_CACHE_VAL(ac_cv_have_getc_unlocked, [
1936AC_TRY_LINK([#include <stdio.h>],[
1937 FILE *f = fopen("/dev/null", "r");
1938 flockfile(f);
1939 getc_unlocked(f);
1940 funlockfile(f);
1941], ac_cv_have_getc_unlocked=yes, ac_cv_have_getc_unlocked=no)])
1942AC_MSG_RESULT($ac_cv_have_getc_unlocked)
1943if test "$ac_cv_have_getc_unlocked" = yes
1944then
1945 AC_DEFINE(HAVE_GETC_UNLOCKED)
1946fi
Vladimir Marangozov9a5a5d12000-07-12 03:02:16 +00001947
Martin v. Löwis0daad592001-09-30 21:09:59 +00001948# check for readline 4.0
1949AC_CHECK_LIB(readline, rl_pre_input_hook,
1950 AC_DEFINE(HAVE_RL_PRE_INPUT_HOOK), , -ltermcap)
1951
Guido van Rossum353ae582001-07-10 16:45:32 +00001952# check for readline 4.2
1953AC_CHECK_LIB(readline, rl_completion_matches,
1954 AC_DEFINE(HAVE_RL_COMPLETION_MATCHES), , -ltermcap)
1955
Thomas Wouterse38b2f12001-07-11 22:35:31 +00001956AC_MSG_CHECKING(for broken nice())
1957AC_CACHE_VAL(ac_cv_broken_nice, [
1958AC_TRY_RUN([
1959int main()
1960{
1961 int val1 = nice(1);
1962 if (val1 != -1 && val1 == nice(2))
1963 exit(0);
1964 exit(1);
1965}
Guido van Rossum3065c942001-09-17 04:03:14 +00001966],
1967ac_cv_broken_nice=yes,
1968ac_cv_broken_nice=no,
1969ac_cv_broken_nice=no)])
Thomas Wouterse38b2f12001-07-11 22:35:31 +00001970AC_MSG_RESULT($ac_cv_broken_nice)
1971if test "$ac_cv_broken_nice" = yes
1972then
1973 AC_DEFINE(HAVE_BROKEN_NICE)
1974fi
1975
Martin v. Löwiseb9b1032001-10-24 17:10:49 +00001976# On HP/UX 11.0, mvwdelch is a block with a return statement
1977AC_MSG_CHECKING(whether mvwdelch is an expression)
1978AC_CACHE_VAL(ac_cv_mvwdelch_is_expression,
1979AC_TRY_COMPILE([#include <curses.h>], [
1980 int rtn;
1981 rtn = mvwdelch(0,0,0);
1982], ac_cv_mvwdelch_is_expression=yes,
1983 ac_cv_mvwdelch_is_expression=no,
1984 ac_cv_mvwdelch_is_expression=yes))
1985AC_MSG_RESULT($ac_cv_mvwdelch_is_expression)
1986
1987if test "$ac_cv_mvwdelch_is_expression" = yes
1988then
1989 AC_DEFINE(MVWDELCH_IS_EXPRESSION)
1990fi
1991
1992AC_MSG_CHECKING(whether WINDOW has _flags)
1993AC_CACHE_VAL(ac_cv_window_has_flags,
1994AC_TRY_COMPILE([#include <curses.h>], [
1995 WINDOW *w;
1996 w->_flags = 0;
1997], ac_cv_window_has_flags=yes,
1998 ac_cv_window_has_flags=no,
1999 ac_cv_window_has_flags=no))
2000AC_MSG_RESULT($ac_cv_window_has_flags)
2001
2002
2003if test "$ac_cv_window_has_flags" = yes
2004then
2005 AC_DEFINE(WINDOW_HAS_FLAGS)
2006fi
2007
Guido van Rossum95713eb2000-05-18 20:53:31 +00002008# THIS MUST BE LAST, IT CAN BREAK OTHER TESTS!
2009# Add sys/socket.h to confdefs.h
2010cat >> confdefs.h <<\EOF
2011#ifdef HAVE_SYS_SOCKET_H
2012#include <sys/socket.h>
2013#endif
2014EOF
2015AC_CHECK_TYPE(socklen_t, int)
2016
Neil Schemenauerf25cf6c2001-03-04 06:39:33 +00002017# Add Python/ prefix to LIBOBJS
2018libobjs=$LIBOBJS
2019LIBOBJS=
2020for obj in $libobjs; do
2021 LIBOBJS="$LIBOBJS Python/$obj"
2022done
2023
Neil Schemenauer55f0cf32001-01-24 17:24:33 +00002024#AC_MSG_CHECKING(for Modules/Setup)
2025#if test ! -f Modules/Setup ; then
2026# if test ! -d Modules ; then
2027# mkdir Modules
2028# fi
2029# cp "$srcdir/Modules/Setup.dist" Modules/Setup
2030# AC_MSG_RESULT(creating)
2031#else
2032# AC_MSG_RESULT(already exists)
2033#fi
2034
Martin v. Löwis06f15bb2001-12-02 13:02:32 +00002035AC_SUBST(THREADHEADERS)
2036
2037for h in `(cd $srcdir;echo Python/thread_*.h)`
2038do
2039 THREADHEADERS="$THREADHEADERS \$(srcdir)/$h"
2040done
2041
Neil Schemenauer55f0cf32001-01-24 17:24:33 +00002042AC_SUBST(SRCDIRS)
Neil Schemenaueracbf9ef2001-02-27 02:15:14 +00002043SRCDIRS="Parser Grammar Objects Python Modules"
Andrew M. Kuchling8abedde2001-01-26 22:55:24 +00002044AC_MSG_CHECKING(for build directories)
Neil Schemenauer55f0cf32001-01-24 17:24:33 +00002045for dir in $SRCDIRS; do
2046 if test ! -d $dir; then
2047 mkdir $dir
Fred Drake884d3ba2000-11-02 17:52:56 +00002048 fi
Neil Schemenauer55f0cf32001-01-24 17:24:33 +00002049done
2050AC_MSG_RESULT(done)
Fred Drake036144d2000-10-26 17:09:35 +00002051
Guido van Rossum627b2d71993-12-24 10:39:16 +00002052# generate output files
Andrew M. Kuchling8abedde2001-01-26 22:55:24 +00002053AC_OUTPUT(Makefile.pre Modules/Setup.config)
Neil Schemenauer61c51152001-01-26 16:18:16 +00002054
2055echo "creating Setup"
2056if test ! -f Modules/Setup
2057then
2058 cp $srcdir/Modules/Setup.dist Modules/Setup
2059fi
2060
2061echo "creating Setup.local"
2062if test ! -f Modules/Setup.local
2063then
2064 echo "# Edit this file for local setup changes" >Modules/Setup.local
2065fi
2066
2067echo "creating Makefile"
2068$SHELL $srcdir/Modules/makesetup -c $srcdir/Modules/config.c.in \
2069 -s Modules Modules/Setup.config \
Neil Schemenauerf8b71c52001-04-21 17:41:16 +00002070 Modules/Setup.local Modules/Setup
Neil Schemenauer66252162001-02-19 04:47:42 +00002071mv config.c Modules