blob: e9c90ad7d86e92eaa76e1d8d5e7f4cb67fc2b272 [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 Jansen9a66b6d2001-08-08 13:56:14 +0000201# Test whether we're running on a non-case-sensitive system, in which
202# case we give a warning if no ext is given
203if test -d "python" -a -z "$EXEEXT"
204then
205 AC_MSG_WARN(This filesystem is not case-sensitive so you should probably use --with-suffix)
206fi
Guido van Rossumfb842551997-08-06 23:42:07 +0000207
Guido van Rossumdd997f71998-10-07 19:58:26 +0000208case $MACHDEP in
209bsdos*)
210 case $CC in
211 gcc) CC="$CC -D_HAVE_BSDI";;
212 esac;;
213esac
214
Guido van Rossum84561611997-08-21 00:08:11 +0000215case $ac_sys_system in
216hp*|HP*)
217 case $CC in
Guido van Rossumcd5ff9f2000-09-22 16:15:54 +0000218 cc|*/cc) CC="$CC -Ae";;
Guido van Rossum84561611997-08-21 00:08:11 +0000219 esac;;
Trent Mick635f6fb2000-08-23 21:33:05 +0000220Monterey*)
221 case $CC in
222 cc) CC="$CC -Wl,-Bexport";;
223 esac;;
Martin v. Löwise8964d42001-03-06 12:09:07 +0000224SunOS*)
225 # Some functions have a prototype only with that define, e.g. confstr
226 AC_DEFINE(__EXTENSIONS__)
227 ;;
Guido van Rossum84561611997-08-21 00:08:11 +0000228esac
229
Martin v. Löwise8964d42001-03-06 12:09:07 +0000230
Neil Schemenauer61c51152001-01-26 16:18:16 +0000231AC_SUBST(LIBRARY)
232AC_MSG_CHECKING(LIBRARY)
233if test -z "$LIBRARY"
234then
235 LIBRARY='libpython$(VERSION).a'
236fi
237AC_MSG_RESULT($LIBRARY)
238
Guido van Rossum54ecc3d1999-01-27 17:53:11 +0000239# LDLIBRARY is the name of the library to link against (as opposed to the
Jack Jansenb6e9cad2001-08-15 01:26:28 +0000240# name of the library into which to insert object files). BLDLIBRARY is also
241# the library to link against, usually. On Mac OS X frameworks, BLDLIBRARY
242# is blank as the main program is not linked directly against LDLIBRARY.
243# LDLIBRARYDIR is the path to LDLIBRARY, which is made in a subdirectory. On
244# systems without shared libraries, LDLIBRARY is the same as LIBRARY
245# (defined in the Makefiles). On Cygwin LDLIBRARY is the import library,
246# DLLLIBRARY is the shared (i.e., DLL) library.
247#
Guido van Rossum54ecc3d1999-01-27 17:53:11 +0000248AC_SUBST(LDLIBRARY)
Guido van Rossum27552902001-01-23 01:52:26 +0000249AC_SUBST(DLLLIBRARY)
Jack Jansenb6e9cad2001-08-15 01:26:28 +0000250AC_SUBST(BLDLIBRARY)
251AC_SUBST(LDLIBRARYDIR)
Neil Schemenauer61c51152001-01-26 16:18:16 +0000252LDLIBRARY="$LIBRARY"
Jack Jansenb6e9cad2001-08-15 01:26:28 +0000253BLDLIBRARY='$(LDLIBRARY)'
Guido van Rossum27552902001-01-23 01:52:26 +0000254DLLLIBRARY=''
Jack Jansenb6e9cad2001-08-15 01:26:28 +0000255LDLIBRARYDIR=''
Guido van Rossum54ecc3d1999-01-27 17:53:11 +0000256
Guido van Rossumfb842551997-08-06 23:42:07 +0000257# LINKCC is the command that links the python executable -- default is $(CC).
Martin v. Löwisb7da67a2001-10-18 15:35:38 +0000258# If CXX is set, and if it is needed to link a main function that was
259# compiled with CXX, LINKCC is CXX instead. Always using CXX is undesirable:
260# python might then depend on the C++ runtime
Fred Drake5790be12000-10-09 17:06:13 +0000261# This is altered for AIX in order to build the export list before
Guido van Rossumec95c7b1998-08-04 17:59:56 +0000262# linking.
Guido van Rossumfb842551997-08-06 23:42:07 +0000263AC_SUBST(LINKCC)
264AC_MSG_CHECKING(LINKCC)
265if test -z "$LINKCC"
266then
Martin v. Löwisb7da67a2001-10-18 15:35:38 +0000267 if test -z "$CXX"; then
268 LINKCC="\$(PURIFY) \$(CC)"
269 else
270 echo 'int main(){return 0;}' > conftest.$ac_ext
271 $CXX -c conftest.$ac_ext 2>&5
272 if $CC -o conftest$ac_exeext conftest.$ac_objext 2>&5 \
273 && test -s conftest$ac_exeext && ./conftest$ac_exeext
274 then
275 LINKCC="\$(PURIFY) \$(CC)"
276 else
277 LINKCC="\$(PURIFY) \$(CXX)"
278 fi
279 rm -fr conftest*
280 fi
Guido van Rossumfb842551997-08-06 23:42:07 +0000281 case $ac_sys_system in
282 AIX*)
Martin v. Löwisb7da67a2001-10-18 15:35:38 +0000283 LINKCC="\$(srcdir)/Modules/makexp_aix Modules/python.exp \"\" \$(LIBRARY); $(LINKCC)";;
Guido van Rossum3c4bb801997-12-18 23:55:32 +0000284 dgux*)
Martin v. Löwisb7da67a2001-10-18 15:35:38 +0000285 LINKCC="LD_RUN_PATH=$libdir $(LINKCC)";;
Trent Mick635f6fb2000-08-23 21:33:05 +0000286 Monterey64*)
Martin v. Löwisb7da67a2001-10-18 15:35:38 +0000287 LINKCC="$(LINKCC) -L/usr/lib/ia64l64";;
Guido van Rossumfb842551997-08-06 23:42:07 +0000288 esac
289fi
290AC_MSG_RESULT($LINKCC)
291
Guido van Rossum54ecc3d1999-01-27 17:53:11 +0000292AC_MSG_CHECKING(LDLIBRARY)
293
Guido van Rossum54ecc3d1999-01-27 17:53:11 +0000294# DG/UX requires some fancy ld contortions to produce a .so from an .a
Fred Drake5790be12000-10-09 17:06:13 +0000295case $MACHDEP in
296dguxR4)
297 LDLIBRARY='libpython$(VERSION).so'
298 OPT="$OPT -pic"
299 ;;
300beos*)
301 LDLIBRARY='libpython$(VERSION).so'
302 ;;
Guido van Rossumaef734b2001-01-10 21:09:12 +0000303cygwin*)
304 LDLIBRARY='libpython$(VERSION).dll.a'
Neil Schemenauer55f0cf32001-01-24 17:24:33 +0000305 DLLLIBRARY='libpython$(VERSION).dll'
Guido van Rossumaef734b2001-01-10 21:09:12 +0000306 ;;
Fred Drake5790be12000-10-09 17:06:13 +0000307esac
Jack Jansenb6e9cad2001-08-15 01:26:28 +0000308
Guido van Rossumb8552162001-09-05 14:58:11 +0000309# MacOSX framework builds need more magic. LDLIBRARY is the dynamic
310# library that we build, but we do not want to link against it (we
311# will find it with a -framework option). For this reason there is an
312# extra variable BLDLIBRARY against which Python and the extension
313# modules are linked, BLDLIBRARY. This is normally the same as
314# LDLIBRARY, but empty for MacOSX framework builds.
Jack Jansenb6e9cad2001-08-15 01:26:28 +0000315if test "$enable_framework"
316then
317 LDLIBRARY='$(PYTHONFRAMEWORKDIR)/Versions/$(VERSION)/$(PYTHONFRAMEWORK)'
318 LDLIBRARYDIR='$(PYTHONFRAMEWORKDIR)'
319 BLDLIBRARY=''
320else
321 BLDLIBRARY='$(LDLIBRARY)'
322fi
323
Guido van Rossum54ecc3d1999-01-27 17:53:11 +0000324AC_MSG_RESULT($LDLIBRARY)
325
Guido van Rossum627b2d71993-12-24 10:39:16 +0000326AC_PROG_RANLIB
Guido van Rossum433c8ad1994-08-01 12:07:07 +0000327AC_SUBST(AR)
Guido van Rossum76be6ed1995-01-02 18:33:54 +0000328AC_CHECK_PROGS(AR, ar aal, ar)
Neil Schemenauera42c8272001-03-31 00:01:55 +0000329
330case $MACHDEP in
Neil Schemenaueraf5567f2001-10-21 22:32:04 +0000331bsdos*|hp*|HP*)
332 # install -d does not work on BSDI or HP-UX
Neil Schemenauera42c8272001-03-31 00:01:55 +0000333 if test -z "$INSTALL"
334 then
335 INSTALL="${srcdir}/install-sh -c"
336 fi
337esac
Neil Schemenauer55f0cf32001-01-24 17:24:33 +0000338AC_PROG_INSTALL
Guido van Rossumb418f891996-07-30 18:06:02 +0000339
Guido van Rossumec95c7b1998-08-04 17:59:56 +0000340# Not every filesystem supports hard links
341AC_SUBST(LN)
342if test -z "$LN" ; then
343 case $ac_sys_system in
344 BeOS*) LN="ln -s";;
Guido van Rossumaef734b2001-01-10 21:09:12 +0000345 CYGWIN*) LN="ln -s";;
Guido van Rossumec95c7b1998-08-04 17:59:56 +0000346 *) LN=ln;;
347 esac
348fi
349
Fred Drake9f715822001-07-11 06:27:00 +0000350# Check for --with-pydebug
351AC_MSG_CHECKING(for --with-pydebug)
352AC_ARG_WITH(pydebug,
353[ --with-pydebug build with Py_DEBUG defined], [
354if test "$withval" != no
355then AC_DEFINE(Py_DEBUG) AC_MSG_RESULT(yes); Py_DEBUG='true'
356else AC_MSG_RESULT(no); Py_DEBUG='false'
357fi],
358[AC_MSG_RESULT(no)])
359
Neil Schemenauer55f0cf32001-01-24 17:24:33 +0000360# Optimizer/debugger flags
Guido van Rossumb418f891996-07-30 18:06:02 +0000361AC_SUBST(OPT)
Guido van Rossum4e8af441994-08-19 15:33:54 +0000362if test -z "$OPT"
Guido van Rossumb418f891996-07-30 18:06:02 +0000363then
Guido van Rossumb5875b61997-07-18 23:29:09 +0000364 case $GCC in
365 yes)
366 case $ac_cv_prog_cc_g in
Guido van Rossum2242f2f2001-04-11 20:58:20 +0000367 yes)
Fred Drake9f715822001-07-11 06:27:00 +0000368 if test "$Py_DEBUG" = 'true' ; then
369 # Optimization messes up debuggers, so turn it off for
370 # debug builds.
371 OPT="-g -Wall -Wstrict-prototypes"
372 else
373 OPT="-g -O3 -Wall -Wstrict-prototypes"
374 fi;;
Guido van Rossum2242f2f2001-04-11 20:58:20 +0000375 *)
Fred Drake9f715822001-07-11 06:27:00 +0000376 OPT="-O3 -Wall -Wstrict-prototypes";;
377 esac
378 ;;
Guido van Rossum2242f2f2001-04-11 20:58:20 +0000379 *)
380 case $ac_sys_system in
Martin v. Löwis25ae43b2001-10-07 08:39:18 +0000381 OpenUNIX*|UnixWare*)
Guido van Rossum2242f2f2001-04-11 20:58:20 +0000382 OPT="-O -K pentium,host,inline,loop_unroll,alloca ";;
383 *)
384 OPT="-O";;
Guido van Rossumb418f891996-07-30 18:06:02 +0000385 esac
Guido van Rossum2242f2f2001-04-11 20:58:20 +0000386 esac
Jack Jansenca06bc62001-08-03 15:32:23 +0000387 case $ac_sys_system in
388 Darwin*)
389 OPT="$OPT -no-cpp-precomp";;
390 esac
Guido van Rossum4e8af441994-08-19 15:33:54 +0000391fi
Guido van Rossum627b2d71993-12-24 10:39:16 +0000392
Fred Drakee1ceaa02001-12-04 20:55:47 +0000393if test "$Py_DEBUG" = 'true'; then
394 :
395else
396 OPT="-DNDEBUG $OPT"
397fi
398
Trent Mick635f6fb2000-08-23 21:33:05 +0000399# The current (beta) Monterey compiler dies with optimizations
400case $ac_sys_system in
401Monterey*) OPT="";;
402esac
403
Guido van Rossum6f2260e1996-09-09 16:21:03 +0000404if test "$ac_arch_flags"
Guido van Rossumc5a39031996-07-31 17:35:03 +0000405then
406 OPT="$OPT $ac_arch_flags"
407fi
Guido van Rossum5739e7e1995-01-20 16:50:53 +0000408
Guido van Rossum91922671997-10-09 20:24:13 +0000409AC_MSG_CHECKING(whether $CC accepts -OPT:Olimit=0)
410AC_CACHE_VAL(ac_cv_opt_olimit_ok,
411[ac_save_cc="$CC"
412CC="$CC -OPT:Olimit=0"
413AC_TRY_RUN([int main() { return 0; }],
414 ac_cv_opt_olimit_ok=yes,
Guido van Rossum3065c942001-09-17 04:03:14 +0000415 ac_cv_opt_olimit_ok=no,
Guido van Rossum91922671997-10-09 20:24:13 +0000416 ac_cv_opt_olimit_ok=no)
417CC="$ac_save_cc"])
418AC_MSG_RESULT($ac_cv_opt_olimit_ok)
Guido van Rossum2efa34b1997-10-23 17:43:11 +0000419if test $ac_cv_opt_olimit_ok = yes; then
Guido van Rossum5839e582000-10-09 19:52:35 +0000420 case $ac_sys_system in
421 Darwin*) OPT="$OPT" ;;
422 *) OPT="$OPT -OPT:Olimit=0";;
423 esac
Guido van Rossumf8678121998-07-07 21:05:09 +0000424else
425 AC_MSG_CHECKING(whether $CC accepts -Olimit 1500)
426 AC_CACHE_VAL(ac_cv_olimit_ok,
427 [ac_save_cc="$CC"
428 CC="$CC -Olimit 1500"
429 AC_TRY_RUN([int main() { return 0; }],
430 ac_cv_olimit_ok=yes,
Guido van Rossum3065c942001-09-17 04:03:14 +0000431 ac_cv_olimit_ok=no,
Guido van Rossumf8678121998-07-07 21:05:09 +0000432 ac_cv_olimit_ok=no)
433 CC="$ac_save_cc"])
434 AC_MSG_RESULT($ac_cv_olimit_ok)
435 if test $ac_cv_olimit_ok = yes; then
436 OPT="$OPT -Olimit 1500"
437 fi
Guido van Rossum201afe51997-05-14 21:14:44 +0000438fi
Guido van Rossumf8678121998-07-07 21:05:09 +0000439
Martin v. Löwisa5f73f92001-10-15 08:06:29 +0000440# On some compilers, pthreads are available without further options
441# (e.g. MacOS X). On some of these systems, the compiler will not
442# complain if unaccepted options are passed (e.g. gcc on Mac OS X).
443# So we have to see first whether pthreads are available without
444# options before we can check whether -Kpthread improves anything.
445AC_MSG_CHECKING(whether pthreads are available without options)
446AC_CACHE_VAL(ac_cv_pthread_is_default,
447[AC_TRY_RUN([
448#include <pthread.h>
449
450void* routine(void* p){return NULL;}
451
452int main(){
453 pthread_t p;
454 if(pthread_create(&p,NULL,routine,NULL)!=0)
455 return 1;
456 return 0;
457}
458],
459 ac_cv_pthread_is_default=yes,
460 ac_cv_pthread_is_default=no,
461 ac_cv_pthread_is_default=no)
462])
463AC_MSG_RESULT($ac_cv_pthread_is_default)
464
465
466if test $ac_cv_pthread_is_default = yes
467then
468 ac_cv_kpthread=no
469else
Martin v. Löwis130fb172001-07-19 11:00:41 +0000470# -Kpthread, if available, provides the right #defines
471# and linker options to make pthread_create available
Martin v. Löwis260aecc2001-10-07 08:14:41 +0000472# Some compilers won't report that they do not support -Kpthread,
473# so we need to run a program to see whether it really made the
474# function available.
Martin v. Löwis130fb172001-07-19 11:00:41 +0000475AC_MSG_CHECKING(whether $CC accepts -Kpthread)
476AC_CACHE_VAL(ac_cv_kpthread,
477[ac_save_cc="$CC"
478CC="$CC -Kpthread"
Martin v. Löwis260aecc2001-10-07 08:14:41 +0000479AC_TRY_RUN([
480#include <pthread.h>
481
482void* routine(void* p){return NULL;}
483
484int main(){
485 pthread_t p;
486 if(pthread_create(&p,NULL,routine,NULL)!=0)
487 return 1;
488 return 0;
489}
490],
Martin v. Löwis130fb172001-07-19 11:00:41 +0000491 ac_cv_kpthread=yes,
Martin v. Löwis260aecc2001-10-07 08:14:41 +0000492 ac_cv_kpthread=no,
Martin v. Löwis130fb172001-07-19 11:00:41 +0000493 ac_cv_kpthread=no)
494CC="$ac_save_cc"])
Martin v. Löwis130fb172001-07-19 11:00:41 +0000495AC_MSG_RESULT($ac_cv_kpthread)
Martin v. Löwisa5f73f92001-10-15 08:06:29 +0000496fi
Martin v. Löwis130fb172001-07-19 11:00:41 +0000497
Fred Drakece81d592000-07-09 14:39:29 +0000498dnl # check for ANSI or K&R ("traditional") preprocessor
499dnl AC_MSG_CHECKING(for C preprocessor type)
500dnl AC_TRY_COMPILE([
501dnl #define spam(name, doc) {#name, &name, #name "() -- " doc}
502dnl int foo;
503dnl struct {char *name; int *addr; char *doc;} desc = spam(foo, "something");
504dnl ], [;], cpp_type=ansi, AC_DEFINE(HAVE_OLD_CPP) cpp_type=traditional)
505dnl AC_MSG_RESULT($cpp_type)
Guido van Rossum300fda71996-08-19 21:58:16 +0000506
Guido van Rossum627b2d71993-12-24 10:39:16 +0000507# checks for header files
Guido van Rossum76be6ed1995-01-02 18:33:54 +0000508AC_HEADER_STDC
Guido van Rossuma6535fd2001-10-18 19:44:10 +0000509AC_CHECK_HEADERS(dlfcn.h fcntl.h grp.h limits.h langinfo.h locale.h \
Martin v. Löwis9b75dca2001-08-10 13:58:50 +0000510ncurses.h poll.h pthread.h \
Eric S. Raymond13603592001-01-16 15:01:26 +0000511signal.h stdarg.h stddef.h stdlib.h thread.h unistd.h utime.h termios.h \
Fred Drake2ca5f3b2001-05-11 16:10:56 +0000512sys/audioio.h sys/file.h sys/lock.h sys/modem.h db_185.h db.h \
Andrew M. Kuchling881fd902001-07-14 20:55:52 +0000513sys/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 +0000514sys/un.h sys/utsname.h sys/wait.h pty.h term.h libutil.h \
Martin v. Löwis1ba3fd52001-08-10 20:29:40 +0000515ndbm.h db1/ndbm.h gdbm/ndbm.h sys/resource.h netpacket/packet.h)
Guido van Rossum76be6ed1995-01-02 18:33:54 +0000516AC_HEADER_DIRENT
Guido van Rossum627b2d71993-12-24 10:39:16 +0000517
518# checks for typedefs
Guido van Rossum5739e7e1995-01-20 16:50:53 +0000519was_it_defined=no
520AC_MSG_CHECKING(for clock_t in time.h)
521AC_EGREP_HEADER(clock_t, time.h, was_it_defined=yes, AC_DEFINE(clock_t, long))
522AC_MSG_RESULT($was_it_defined)
523
Guido van Rossum810cc512001-09-09 23:51:39 +0000524# Two defines needed to enable largefile support on various platforms
525# These may affect some typedefs
526AC_DEFINE(_LARGEFILE_SOURCE)
527AC_DEFINE(_FILE_OFFSET_BITS, 64)
528
Guido van Rossum300fda71996-08-19 21:58:16 +0000529# Add some code to confdefs.h so that the test for off_t works on SCO
530cat >> confdefs.h <<\EOF
531#if defined(SCO_DS)
532#undef _OFF_T
533#endif
534EOF
535
Guido van Rossumef2255b2000-03-10 22:30:29 +0000536# Type availability checks
Guido van Rossum76be6ed1995-01-02 18:33:54 +0000537AC_TYPE_MODE_T
538AC_TYPE_OFF_T
539AC_TYPE_PID_T
540AC_TYPE_SIGNAL
541AC_TYPE_SIZE_T
542AC_TYPE_UID_T
Guido van Rossum627b2d71993-12-24 10:39:16 +0000543
Guido van Rossumef2255b2000-03-10 22:30:29 +0000544# Sizes of various common basic types
Guido van Rossum3065c942001-09-17 04:03:14 +0000545AC_CHECK_SIZEOF(int, 4)
546AC_CHECK_SIZEOF(long, 4)
547AC_CHECK_SIZEOF(void *, 4)
548AC_CHECK_SIZEOF(char, 1)
549AC_CHECK_SIZEOF(short, 2)
550AC_CHECK_SIZEOF(float, 4)
551AC_CHECK_SIZEOF(double, 8)
552AC_CHECK_SIZEOF(fpos_t, 4)
Guido van Rossumac405f61994-09-12 10:56:06 +0000553
Guido van Rossumec95c7b1998-08-04 17:59:56 +0000554AC_MSG_CHECKING(for long long support)
555have_long_long=no
556AC_TRY_COMPILE([], [long long x; x = (long long)0;], AC_DEFINE(HAVE_LONG_LONG) have_long_long=yes)
557AC_MSG_RESULT($have_long_long)
Guido van Rossum8bc1dfd1999-04-10 16:01:48 +0000558if test "$have_long_long" = yes ; then
Guido van Rossum3065c942001-09-17 04:03:14 +0000559AC_CHECK_SIZEOF(long long, 8)
Guido van Rossumec95c7b1998-08-04 17:59:56 +0000560fi
561
Barry Warsawbc7c7f92000-08-18 04:53:33 +0000562AC_MSG_CHECKING(for uintptr_t support)
563have_uintptr_t=no
564AC_TRY_COMPILE([], [uintptr_t x; x = (uintptr_t)0;], AC_DEFINE(HAVE_UINTPTR_T) have_uintptr_t=yes)
565AC_MSG_RESULT($have_uintptr_t)
566if test "$have_uintptr_t" = yes ; then
Guido van Rossum3065c942001-09-17 04:03:14 +0000567AC_CHECK_SIZEOF(uintptr_t, 4)
Barry Warsawbc7c7f92000-08-18 04:53:33 +0000568fi
569
Guido van Rossum00f0f6e1999-01-06 18:52:29 +0000570# Hmph. AC_CHECK_SIZEOF() doesn't include <sys/types.h>.
571AC_MSG_CHECKING(size of off_t)
572AC_CACHE_VAL(ac_cv_sizeof_off_t,
573[AC_TRY_RUN([#include <stdio.h>
574#include <sys/types.h>
575main()
576{
577 FILE *f=fopen("conftestval", "w");
578 if (!f) exit(1);
579 fprintf(f, "%d\n", sizeof(off_t));
580 exit(0);
Guido van Rossum3065c942001-09-17 04:03:14 +0000581}],
582ac_cv_sizeof_off_t=`cat conftestval`,
583ac_cv_sizeof_off_t=0,
584ac_cv_sizeof_off_t=4)
Guido van Rossum00f0f6e1999-01-06 18:52:29 +0000585])
586AC_MSG_RESULT($ac_cv_sizeof_off_t)
587AC_DEFINE_UNQUOTED(SIZEOF_OFF_T, $ac_cv_sizeof_off_t)
588
589AC_MSG_CHECKING(whether to enable large file support)
Guido van Rossum8bc1dfd1999-04-10 16:01:48 +0000590if test "$have_long_long" = yes -a \
591 "$ac_cv_sizeof_off_t" -gt "$ac_cv_sizeof_long" -a \
592 "$ac_cv_sizeof_long_long" -ge "$ac_cv_sizeof_off_t"; then
Guido van Rossum00f0f6e1999-01-06 18:52:29 +0000593 AC_DEFINE(HAVE_LARGEFILE_SUPPORT)
594 AC_MSG_RESULT(yes)
595else
596 AC_MSG_RESULT(no)
597fi
598
Fred Drakea3f6e912000-06-29 20:44:47 +0000599# AC_CHECK_SIZEOF() doesn't include <time.h>.
600AC_MSG_CHECKING(size of time_t)
601AC_CACHE_VAL(ac_cv_sizeof_time_t,
602[AC_TRY_RUN([#include <stdio.h>
603#include <time.h>
604main()
605{
606 FILE *f=fopen("conftestval", "w");
607 if (!f) exit(1);
608 fprintf(f, "%d\n", sizeof(time_t));
609 exit(0);
Guido van Rossum3065c942001-09-17 04:03:14 +0000610}],
611ac_cv_sizeof_time_t=`cat conftestval`,
612ac_cv_sizeof_time_t=0,
613ac_cv_sizeof_time_t=4)
Fred Drakea3f6e912000-06-29 20:44:47 +0000614])
615AC_MSG_RESULT($ac_cv_sizeof_time_t)
616AC_DEFINE_UNQUOTED(SIZEOF_TIME_T, $ac_cv_sizeof_time_t)
617
Guido van Rossum00f0f6e1999-01-06 18:52:29 +0000618
Trent Mick635f6fb2000-08-23 21:33:05 +0000619# if have pthread_t then define SIZEOF_PTHREAD_T
Martin v. Löwis123cbd22001-07-19 14:21:10 +0000620ac_save_cc="$CC"
621if test "$ac_cv_kpthread" = "yes"
622then CC="$CC -Kpthread"
623fi
Trent Mick635f6fb2000-08-23 21:33:05 +0000624AC_MSG_CHECKING(for pthread_t)
625have_pthread_t=no
Guido van Rossum12580492000-09-24 16:47:19 +0000626AC_TRY_COMPILE([#include <pthread.h>], [pthread_t x; x = *(pthread_t*)0;], have_pthread_t=yes)
Trent Mick635f6fb2000-08-23 21:33:05 +0000627AC_MSG_RESULT($have_pthread_t)
628if test "$have_pthread_t" = yes ; then
629 # AC_CHECK_SIZEOF() doesn't include <pthread.h>.
630 AC_MSG_CHECKING(size of pthread_t)
631 AC_CACHE_VAL(ac_cv_sizeof_pthread_t,
632 [AC_TRY_RUN([#include <stdio.h>
633 #include <pthread.h>
634 main()
635 {
636 FILE *f=fopen("conftestval", "w");
637 if (!f) exit(1);
638 fprintf(f, "%d\n", sizeof(pthread_t));
639 exit(0);
Guido van Rossum3065c942001-09-17 04:03:14 +0000640 }],
641 ac_cv_sizeof_pthread_t=`cat conftestval`,
642 ac_cv_sizeof_pthread_t=0,
643 ac_cv_sizeof_pthread_t=4)
Trent Mick635f6fb2000-08-23 21:33:05 +0000644 ])
645 AC_MSG_RESULT($ac_cv_sizeof_pthread_t)
646 AC_DEFINE_UNQUOTED(SIZEOF_PTHREAD_T, $ac_cv_sizeof_pthread_t)
647fi
Martin v. Löwis123cbd22001-07-19 14:21:10 +0000648CC="$ac_save_cc"
Trent Mick635f6fb2000-08-23 21:33:05 +0000649
Jack Jansenb6e9cad2001-08-15 01:26:28 +0000650AC_MSG_CHECKING(for --enable-toolbox-glue)
651AC_ARG_ENABLE(toolbox-glue,
652[ --enable-toolbox-glue disable/enable MacOSX glue code for extensions])
653
654if test -z "$enable_toolbox_glue"
655then
656 case $ac_sys_system/$ac_sys_release in
657 Darwin/*)
658 enable_toolbox_glue="yes";;
659 *)
660 enable_toolbox_glue="no";;
661 esac
662fi
663case "$enable_toolbox_glue" in
664yes)
Jack Jansen666b1e72001-10-31 12:11:48 +0000665 extra_frameworks="-framework CoreServices -framework Foundation"
Jack Jansenb6e9cad2001-08-15 01:26:28 +0000666 extra_machdep_objs="Python/mactoolboxglue.o"
Jack Jansen591cbed2001-08-15 13:55:15 +0000667 extra_undefs="-u __dummy -u _PyMac_Error"
Jack Jansenb6e9cad2001-08-15 01:26:28 +0000668 AC_DEFINE(USE_TOOLBOX_OBJECT_GLUE)
669 ;;
670*)
671 extra_frameworks=""
672 extra_machdep_objs=""
Jack Jansen591cbed2001-08-15 13:55:15 +0000673 extra_undefs=""
Jack Jansenb6e9cad2001-08-15 01:26:28 +0000674 ;;
675esac
676AC_MSG_RESULT($enable_toolbox_glue)
677
Guido van Rossum54ecc3d1999-01-27 17:53:11 +0000678AC_SUBST(LIBTOOL_CRUFT)
679case $ac_sys_system/$ac_sys_release in
Jack Jansen418c3b12001-11-14 10:59:57 +0000680 Darwin/1.3*)
Jack Jansena3891ea2001-09-07 14:25:12 +0000681 ns_undef_sym='_environ'
Jack Jansen418c3b12001-11-14 10:59:57 +0000682 LIBTOOL_CRUFT="-lcc_dynamic -arch_only ppc -U $ns_undef_sym"
683 LIBTOOL_CRUFT="$LIBTOOL_CRUFT $extra_frameworks"
Jack Jansena3891ea2001-09-07 14:25:12 +0000684 LIBTOOL_CRUFT=$LIBTOOL_CRUFT' -install_name $(PYTHONFRAMEWORKDIR)/Versions/$(VERSION)/Python'
685 LIBTOOL_CRUFT=$LIBTOOL_CRUFT' -compatibility_version $(VERSION) -current_version $(VERSION)';;
Guido van Rossum5839e582000-10-09 19:52:35 +0000686 Darwin/*)
687 ns_undef_sym='_environ'
Jack Jansen418c3b12001-11-14 10:59:57 +0000688 LIBTOOL_CRUFT="-lcc_dynamic -arch_only ppc -flat_namespace -U $ns_undef_sym"
689 LIBTOOL_CRUFT="$LIBTOOL_CRUFT $extra_frameworks"
Jack Jansenb6e9cad2001-08-15 01:26:28 +0000690 LIBTOOL_CRUFT=$LIBTOOL_CRUFT' -install_name $(PYTHONFRAMEWORKDIR)/Versions/$(VERSION)/Python'
691 LIBTOOL_CRUFT=$LIBTOOL_CRUFT' -compatibility_version $(VERSION) -current_version $(VERSION)';;
Guido van Rossum54ecc3d1999-01-27 17:53:11 +0000692esac
693
Jack Jansenb6e9cad2001-08-15 01:26:28 +0000694AC_MSG_CHECKING(for --enable-framework)
695if test "$enable_framework"
Guido van Rossum54ecc3d1999-01-27 17:53:11 +0000696then
Jack Jansenca06bc62001-08-03 15:32:23 +0000697 OPT="$OPT -fno-common -dynamic"
Guido van Rossum54ecc3d1999-01-27 17:53:11 +0000698 # -U __environ is needed since bundles don't have access
699 # to crt0 when built but will always be linked against it
Jack Jansenb6e9cad2001-08-15 01:26:28 +0000700 # -F. is needed to allow linking to the framework while
701 # in the build location.
702
Jack Jansena3891ea2001-09-07 14:25:12 +0000703 case $ac_sys_system/$ac_sys_release in
Jack Jansen418c3b12001-11-14 10:59:57 +0000704 Darwin/1.3*)LDFLAGS="$LDFLAGS -Wl,-F. -Wl,-U,$ns_undef_sym";;
705 Darwin/*)LDFLAGS="$LDFLAGS -Wl,-F. -Wl,-flat_namespace,-U,$ns_undef_sym";;
Jack Jansena3891ea2001-09-07 14:25:12 +0000706 esac
Guido van Rossum54ecc3d1999-01-27 17:53:11 +0000707 AC_DEFINE(WITH_NEXT_FRAMEWORK)
708 AC_MSG_RESULT(yes)
709else
710 AC_MSG_RESULT(no)
711fi
712
Jack Jansenb6e9cad2001-08-15 01:26:28 +0000713AC_MSG_CHECKING(for dyld)
Jack Jansen9a66b6d2001-08-08 13:56:14 +0000714case $ac_sys_system/$ac_sys_release in
715 Darwin/*)
716 AC_DEFINE(WITH_DYLD)
717 AC_MSG_RESULT(always on for Darwin)
718 ;;
719 *)
Jack Jansenb6e9cad2001-08-15 01:26:28 +0000720 AC_MSG_RESULT(no)
721 ;;
Jack Jansen9a66b6d2001-08-08 13:56:14 +0000722esac
Guido van Rossum54ecc3d1999-01-27 17:53:11 +0000723
Guido van Rossumac405f61994-09-12 10:56:06 +0000724# Set info about shared libraries.
Guido van Rossumac405f61994-09-12 10:56:06 +0000725AC_SUBST(SO)
726AC_SUBST(LDSHARED)
Neil Schemenauerb3531b82001-02-16 04:09:05 +0000727AC_SUBST(BLDSHARED)
Guido van Rossumac405f61994-09-12 10:56:06 +0000728AC_SUBST(CCSHARED)
729AC_SUBST(LINKFORSHARED)
Guido van Rossumac405f61994-09-12 10:56:06 +0000730# SO is the extension of shared libraries `(including the dot!)
Guido van Rossumaef734b2001-01-10 21:09:12 +0000731# -- usually .so, .sl on HP-UX, .dll on Cygwin
Guido van Rossum76be6ed1995-01-02 18:33:54 +0000732AC_MSG_CHECKING(SO)
Guido van Rossumac405f61994-09-12 10:56:06 +0000733if test -z "$SO"
734then
Guido van Rossum76be6ed1995-01-02 18:33:54 +0000735 case $ac_sys_system in
Guido van Rossum4b6b5791996-09-09 20:09:34 +0000736 hp*|HP*) SO=.sl;;
Guido van Rossumaef734b2001-01-10 21:09:12 +0000737 CYGWIN*) SO=.dll;;
Guido van Rossum4b6b5791996-09-09 20:09:34 +0000738 *) SO=.so;;
Guido van Rossumac405f61994-09-12 10:56:06 +0000739 esac
Guido van Rossumac405f61994-09-12 10:56:06 +0000740fi
Guido van Rossum76be6ed1995-01-02 18:33:54 +0000741AC_MSG_RESULT($SO)
Guido van Rossumac405f61994-09-12 10:56:06 +0000742# LDSHARED is the ld *command* used to create shared library
Martin v. Löwis5b718fc2001-09-10 15:34:42 +0000743# -- "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 +0000744# (Shared libraries in this instance are shared modules to be loaded into
745# Python, as opposed to building Python itself as a shared library.)
Guido van Rossum76be6ed1995-01-02 18:33:54 +0000746AC_MSG_CHECKING(LDSHARED)
Guido van Rossumac405f61994-09-12 10:56:06 +0000747if test -z "$LDSHARED"
748then
Guido van Rossum76be6ed1995-01-02 18:33:54 +0000749 case $ac_sys_system/$ac_sys_release in
Neil Schemenauerb3531b82001-02-16 04:09:05 +0000750 AIX*)
751 BLDSHARED="\$(srcdir)/Modules/ld_so_aix \$(CC) -bI:Modules/python.exp"
Guido van Rossumce608b02001-09-28 15:59:38 +0000752 LDSHARED="\$(BINLIBDEST)/config/ld_so_aix \$(CC) -bI:\$(BINLIBDEST)/config/python.exp"
Neil Schemenauerb3531b82001-02-16 04:09:05 +0000753 ;;
754 BeOS*)
755 BLDSHARED="\$(srcdir)/Modules/ld_so_beos $LDLIBRARY"
Guido van Rossumce608b02001-09-28 15:59:38 +0000756 LDSHARED="\$(BINLIBDEST)/config/ld_so_beos \$(LIBDIR)/$LDLIBRARY"
Neil Schemenauerb3531b82001-02-16 04:09:05 +0000757 ;;
Guido van Rossum6100aaf1997-04-29 21:48:51 +0000758 IRIX/5*) LDSHARED="ld -shared";;
Guido van Rossum91922671997-10-09 20:24:13 +0000759 IRIX*/6*) LDSHARED="ld ${SGI_ABI} -shared -all";;
Guido van Rossumac405f61994-09-12 10:56:06 +0000760 SunOS/4*) LDSHARED="ld";;
Greg Ward57c9a6632000-05-26 12:22:54 +0000761 SunOS/5*)
762 if test "$GCC" = "yes"
Neil Schemenauer95052722001-02-19 18:17:33 +0000763 then LDSHARED='$(CC) -shared'
Martin v. Löwis5b718fc2001-09-10 15:34:42 +0000764 else LDSHARED="$(CC) -G";
Greg Ward57c9a6632000-05-26 12:22:54 +0000765 fi ;;
Guido van Rossumac405f61994-09-12 10:56:06 +0000766 hp*|HP*) LDSHARED="ld -b";;
Guido van Rossum71001e41995-01-26 00:44:03 +0000767 OSF*) LDSHARED="ld -shared -expect_unresolved \"*\"";;
Guido van Rossum7d473291995-01-20 14:12:16 +0000768 DYNIX/ptx*) LDSHARED="ld -G";;
Jack Jansen418c3b12001-11-14 10:59:57 +0000769 Darwin/1.3*)
Jack Jansena3891ea2001-09-07 14:25:12 +0000770 LDSHARED='$(CC) $(LDFLAGS) -bundle'
771 if test "$enable_framework" ; then
772 # Link against the framework. All externals should be defined.
773 LDSHARED="$LDSHARED "'-framework $(PYTHONFRAMEWORK)'
774 else
775 # No framework. Ignore undefined symbols, assuming they come from Python
Jack Jansen418c3b12001-11-14 10:59:57 +0000776 LDSHARED="$LDSHARED -undefined suppress"
Jack Jansena3891ea2001-09-07 14:25:12 +0000777 fi ;;
Jack Jansenb6e9cad2001-08-15 01:26:28 +0000778 Darwin/*)
779 LDSHARED='$(CC) $(LDFLAGS) -bundle'
780 if test "$enable_framework" ; then
781 # Link against the framework. All externals should be defined.
782 LDSHARED="$LDSHARED "'-framework $(PYTHONFRAMEWORK)'
783 else
784 # No framework. Ignore undefined symbols, assuming they come from Python
Jack Jansen418c3b12001-11-14 10:59:57 +0000785 LDSHARED="$LDSHARED -flat_namespace -undefined suppress"
Guido van Rossum54ecc3d1999-01-27 17:53:11 +0000786 fi ;;
Guido van Rossum81652ab1996-07-21 02:53:27 +0000787 Linux*) LDSHARED="gcc -shared";;
Guido van Rossum3c4bb801997-12-18 23:55:32 +0000788 dgux*) LDSHARED="ld -G";;
Guido van Rossum458e7fa1999-09-17 15:40:40 +0000789 BSD/OS*/4*) LDSHARED="gcc -shared";;
Martin v. Löwis36546db2001-09-05 14:24:43 +0000790 OpenBSD*|NetBSD*|FreeBSD*)
Jeremy Hylton4bcc7c52000-08-31 17:45:35 +0000791 if [[ "`$CC -dM -E - </dev/null | grep __ELF__`" != "" ]]
Guido van Rossum0286ae82000-08-29 15:06:49 +0000792 then
793 LDSHARED="cc -shared ${LDFLAGS}"
794 else
795 LDSHARED="ld -Bshareable ${LDFLAGS}"
796 fi;;
Martin v. Löwis25ae43b2001-10-07 08:39:18 +0000797 OpenUNIX*|UnixWare*)
Martin v. Löwisbec19582001-03-21 15:57:54 +0000798 if test "$GCC" = "yes"
799 then LDSHARED="$(CC) -shared"
Martin v. Löwis130fb172001-07-19 11:00:41 +0000800 else LDSHARED="$(CC) -G"
Martin v. Löwisbec19582001-03-21 15:57:54 +0000801 fi;;
Guido van Rossum300fda71996-08-19 21:58:16 +0000802 SCO_SV*) LDSHARED="cc -G -KPIC -Ki486 -belf -Wl,-Bexport";;
Trent Mick635f6fb2000-08-23 21:33:05 +0000803 Monterey*) LDSHARED="cc -G -dy -Bdynamic -Bexport -L/usr/lib/ia64l64";;
Guido van Rossumaef734b2001-01-10 21:09:12 +0000804 CYGWIN*) LDSHARED="gcc -shared -Wl,--enable-auto-image-base";;
Guido van Rossumac405f61994-09-12 10:56:06 +0000805 *) LDSHARED="ld";;
806 esac
Guido van Rossumac405f61994-09-12 10:56:06 +0000807fi
Guido van Rossum76be6ed1995-01-02 18:33:54 +0000808AC_MSG_RESULT($LDSHARED)
Neil Schemenauerb3531b82001-02-16 04:09:05 +0000809BLDSHARED=${BLDSHARED-$LDSHARED}
Guido van Rossumac405f61994-09-12 10:56:06 +0000810# CCSHARED are the C *flags* used to create objects to go into a shared
Guido van Rossum54ecc3d1999-01-27 17:53:11 +0000811# library (module) -- this is only needed for a few systems
Guido van Rossum76be6ed1995-01-02 18:33:54 +0000812AC_MSG_CHECKING(CCSHARED)
Guido van Rossumac405f61994-09-12 10:56:06 +0000813if test -z "$CCSHARED"
814then
Guido van Rossum6100aaf1997-04-29 21:48:51 +0000815 case $ac_sys_system/$ac_sys_release in
Neil Schemenauer66252162001-02-19 04:47:42 +0000816 SunOS*) if test "$GCC" = yes;
817 then CCSHARED="-fPIC";
818 fi;;
Guido van Rossumaf07a441995-02-13 19:45:27 +0000819 hp*|HP*) if test "$GCC" = yes;
Martin v. Löwis703ad702001-09-05 08:36:52 +0000820 then CCSHARED="-fPIC";
Guido van Rossumaf07a441995-02-13 19:45:27 +0000821 else CCSHARED="+z";
822 fi;;
Neil Schemenauer61c51152001-01-26 16:18:16 +0000823 Linux*) CCSHARED="-fPIC";;
Guido van Rossumf5957ea1999-10-05 21:59:33 +0000824 BSD/OS*/4*) CCSHARED="-fpic";;
Martin v. Löwis36546db2001-09-05 14:24:43 +0000825 FreeBSD*|NetBSD*|OpenBSD*) CCSHARED="-fPIC";;
Martin v. Löwis25ae43b2001-10-07 08:39:18 +0000826 OpenUNIX*|UnixWare*)
Martin v. Löwisbec19582001-03-21 15:57:54 +0000827 if test "$GCC" = "yes"
828 then CCSHARED="-fPIC"
Martin v. Löwis130fb172001-07-19 11:00:41 +0000829 else CCSHARED="-KPIC"
Martin v. Löwisbec19582001-03-21 15:57:54 +0000830 fi;;
Guido van Rossum300fda71996-08-19 21:58:16 +0000831 SCO_SV*) CCSHARED="-KPIC -dy -Bdynamic";;
Trent Mick635f6fb2000-08-23 21:33:05 +0000832 Monterey*) CCSHARED="-G";;
Guido van Rossum2b5ca001998-03-05 15:41:09 +0000833 IRIX*/6*) case $CC in
834 *gcc*) CCSHARED="-shared";;
Guido van Rossumee21f411998-04-20 18:51:54 +0000835 *) CCSHARED="";;
Guido van Rossum2b5ca001998-03-05 15:41:09 +0000836 esac;;
Guido van Rossumaef734b2001-01-10 21:09:12 +0000837 CYGWIN*) CCSHARED="-DUSE_DL_IMPORT";;
Guido van Rossumac405f61994-09-12 10:56:06 +0000838 esac
Guido van Rossumac405f61994-09-12 10:56:06 +0000839fi
Guido van Rossum76be6ed1995-01-02 18:33:54 +0000840AC_MSG_RESULT($CCSHARED)
Guido van Rossumac405f61994-09-12 10:56:06 +0000841# LINKFORSHARED are the flags passed to the $(CC) command that links
Guido van Rossumb65a48e1995-06-14 18:21:23 +0000842# the python executable -- this is only needed for a few systems
Guido van Rossum76be6ed1995-01-02 18:33:54 +0000843AC_MSG_CHECKING(LINKFORSHARED)
Guido van Rossumac405f61994-09-12 10:56:06 +0000844if test -z "$LINKFORSHARED"
845then
Guido van Rossum6100aaf1997-04-29 21:48:51 +0000846 case $ac_sys_system/$ac_sys_release in
Neil Schemenauerb3531b82001-02-16 04:09:05 +0000847 AIX*) LINKFORSHARED='-Wl,-bE:Modules/python.exp -lld';;
Guido van Rossum5dab3d81996-12-06 21:18:18 +0000848 hp*|HP*)
Guido van Rossum304dd2d1997-10-20 23:10:56 +0000849 LINKFORSHARED="-Wl,-E -Wl,+s -Wl,+b\$(BINLIBDEST)/lib-dynload";;
Guido van Rossumf5957ea1999-10-05 21:59:33 +0000850 BSD/OS/4*) LINKFORSHARED="-Xlinker -export-dynamic";;
Guido van Rossum2d9feed1997-11-24 17:36:21 +0000851 Linux*) LINKFORSHARED="-Xlinker -export-dynamic";;
Guido van Rossum54ecc3d1999-01-27 17:53:11 +0000852 # -u libsys_s pulls in all symbols in libsys
Jack Jansenb6e9cad2001-08-15 01:26:28 +0000853 Darwin/*)
854 # -u __dummy makes the linker aware of the objc runtime
855 # in System.framework; otherwise, __objcInit (referenced in
856 # crt1.o) gets erroneously defined as common, which breaks dynamic
857 # loading of any modules which reference it in System.framework.
858 # -u _PyMac_Error is needed to pull in the mac toolbox glue, which is
859 # not used by the core itself but which needs to be in the core so
860 # that dynamically loaded extension modules have access to it.
Jack Jansen591cbed2001-08-15 13:55:15 +0000861 LINKFORSHARED="$extra_undefs -framework System"
Jack Jansenb6e9cad2001-08-15 01:26:28 +0000862 if test "$enable_framework"
863 then
864 LINKFORSHARED="$LINKFORSHARED -framework Python"
865 fi
866 LINKFORSHARED="$LINKFORSHARED $extra_frameworks";;
Martin v. Löwis25ae43b2001-10-07 08:39:18 +0000867 OpenUNIX*|UnixWare*) LINKFORSHARED="-Wl,-Bexport";;
Guido van Rossum300fda71996-08-19 21:58:16 +0000868 SCO_SV*) LINKFORSHARED="-Bdynamic -dy -Wl,-Bexport";;
Fred Drake02706f52000-09-25 15:08:46 +0000869 ReliantUNIX*) LINKFORSHARED="-W1 -Blargedynsym";;
Martin v. Löwis36546db2001-09-05 14:24:43 +0000870 FreeBSD*|NetBSD*|OpenBSD*)
Guido van Rossumdf693651999-01-07 21:50:41 +0000871 if [[ "`$CC -dM -E - </dev/null | grep __ELF__`" != "" ]]
872 then
873 LINKFORSHARED="-Wl,--export-dynamic"
874 fi;;
Guido van Rossum2b5ca001998-03-05 15:41:09 +0000875 SunOS/5*) case $CC in
876 *gcc*)
Guido van Rossum9c6ba9b2000-02-03 13:42:50 +0000877 if $CC -Xlinker -V 2>&1 | grep BFD >/dev/null
Guido van Rossum8f4ceb11997-12-18 23:42:19 +0000878 then
879 LINKFORSHARED="-Xlinker --export-dynamic"
Guido van Rossum2b5ca001998-03-05 15:41:09 +0000880 fi;;
881 esac;;
Guido van Rossumac405f61994-09-12 10:56:06 +0000882 esac
Guido van Rossumac405f61994-09-12 10:56:06 +0000883fi
Guido van Rossum76be6ed1995-01-02 18:33:54 +0000884AC_MSG_RESULT($LINKFORSHARED)
Guido van Rossumac405f61994-09-12 10:56:06 +0000885
Neil Schemenauer61c51152001-01-26 16:18:16 +0000886AC_SUBST(CFLAGSFORSHARED)
887AC_MSG_CHECKING(CFLAGSFORSHARED)
888if test ! "$LIBRARY" = "$LDLIBRARY"
889then
Neil Schemenauerd9cf41c2001-01-27 21:39:17 +0000890 case $ac_sys_system in
891 CYGWIN*)
892 # Cygwin needs CCSHARED when building extension DLLs
893 # but not when building the interpreter DLL.
894 CFLAGSFORSHARED='';;
895 *)
896 CFLAGSFORSHARED='$(CCSHARED)'
897 esac
Neil Schemenauer61c51152001-01-26 16:18:16 +0000898fi
899AC_MSG_RESULT($CFLAGSFORSHARED)
900
Guido van Rossum627b2d71993-12-24 10:39:16 +0000901# checks for libraries
Guido van Rossum76be6ed1995-01-02 18:33:54 +0000902AC_CHECK_LIB(dl, dlopen) # Dynamic linking for SunOS/Solaris and SYSV
903AC_CHECK_LIB(dld, shl_load) # Dynamic linking for HP-UX
Guido van Rossum0eefa3f1999-11-16 15:57:37 +0000904
905# checks for system dependent C++ extensions support
906case "$ac_sys_system" in
907 AIX*) AC_MSG_CHECKING(for genuine AIX C++ extensions support)
908 AC_TRY_LINK([#include "/usr/lpp/xlC/include/load.h"],
909 [loadAndInit("", 0, "")],
910 [AC_DEFINE(AIX_GENUINE_CPLUSPLUS)
911 AC_MSG_RESULT(yes)],
912 [AC_MSG_RESULT(no)]);;
913 *) ;;
914esac
915
Guido van Rossum70c7f481998-03-26 18:44:10 +0000916# Most SVR4 platforms (e.g. Solaris) need -lsocket and -lnsl.
917# However on SGI IRIX, these exist but are broken.
Guido van Rossumec95c7b1998-08-04 17:59:56 +0000918# BeOS' sockets are stashed in libnet.
919case "$ac_sys_system" in
920IRIX*) ;;
Guido van Rossum2cb56601998-05-07 13:25:56 +0000921*)
Guido van Rossumf618d2c1995-01-17 16:36:13 +0000922AC_CHECK_LIB(nsl, t_open, [LIBS="-lnsl $LIBS"]) # SVR4
Guido van Rossumf618d2c1995-01-17 16:36:13 +0000923AC_CHECK_LIB(socket, socket, [LIBS="-lsocket $LIBS"], [], $LIBS) # SVR4 sockets
Jeremy Hyltoncb25d5e2000-07-27 21:23:28 +0000924;;
925esac
926case "$ac_sys_system" in
927BeOS*)
Guido van Rossumec95c7b1998-08-04 17:59:56 +0000928AC_CHECK_LIB(net, socket, [LIBS="-lnet $LIBS"], [], $LIBS) # BeOS
929;;
930esac
Guido van Rossum70c7f481998-03-26 18:44:10 +0000931
Guido van Rossumc5a39031996-07-31 17:35:03 +0000932AC_MSG_CHECKING(for --with-libs)
Barry Warsawc0d24d8b2000-06-29 16:12:00 +0000933AC_ARG_WITH(libs,
934[ --with-libs='lib1 ...' link against additional libs], [
Guido van Rossumc5a39031996-07-31 17:35:03 +0000935AC_MSG_RESULT($withval)
936LIBS="$withval $LIBS"
937], AC_MSG_RESULT(no))
Guido van Rossum627b2d71993-12-24 10:39:16 +0000938
Neil Schemenauer55f0cf32001-01-24 17:24:33 +0000939# Determine if signalmodule should be used.
940AC_SUBST(USE_SIGNAL_MODULE)
941AC_SUBST(SIGNAL_OBJS)
942AC_MSG_CHECKING(for --with-signal-module)
943AC_ARG_WITH(signal-module,
944[ --with-signal-module disable/enable signal module])
945
946if test -z "$with_signal_module"
947then with_signal_module="yes"
948fi
949AC_MSG_RESULT($with_signal_module)
950
951if test "${with_signal_module}" = "yes"; then
952 USE_SIGNAL_MODULE=""
953 SIGNAL_OBJS=""
954else
955 USE_SIGNAL_MODULE="#"
956 SIGNAL_OBJS="Parser/intrcheck.o Python/sigcheck.o"
957fi
958
Guido van Rossum3d15bd82001-01-10 18:53:48 +0000959# This is used to generate Setup.config
Guido van Rossum009f7871997-12-04 00:51:42 +0000960AC_SUBST(USE_THREAD_MODULE)
Barry Warsawc0d24d8b2000-06-29 16:12:00 +0000961USE_THREAD_MODULE=""
Guido van Rossum009f7871997-12-04 00:51:42 +0000962
Guido van Rossum54d93d41997-01-22 20:51:58 +0000963AC_MSG_CHECKING(for --with-dec-threads)
964AC_SUBST(LDLAST)
965AC_ARG_WITH(dec-threads,
Barry Warsawc0d24d8b2000-06-29 16:12:00 +0000966[ --with-dec-threads use DEC Alpha/OSF1 thread-safe libraries], [
967AC_MSG_RESULT($withval)
Guido van Rossum54d93d41997-01-22 20:51:58 +0000968LDLAST=-threads
Guido van Rossumf78abae1997-01-21 22:02:36 +0000969if test "${with_thread+set}" != set; then
Guido van Rossum54d93d41997-01-22 20:51:58 +0000970 with_thread="$withval";
971fi],
972AC_MSG_RESULT(no))
973
974AC_MSG_CHECKING(for --with-threads)
Barry Warsawc0d24d8b2000-06-29 16:12:00 +0000975AC_ARG_WITH(threads,
976[ --with(out)-threads[=DIRECTORY] disable/enable thread support])
Guido van Rossum54d93d41997-01-22 20:51:58 +0000977
Barry Warsawc0d24d8b2000-06-29 16:12:00 +0000978# --with-thread is deprecated, but check for it anyway
Barry Warsawa0f3c5c2000-06-30 16:39:35 +0000979AC_ARG_WITH(thread,
980[ --with(out)-thread[=DIRECTORY] deprecated; use --with(out)-threads],[
981with_threads=$with_thread])
Barry Warsawc0d24d8b2000-06-29 16:12:00 +0000982
983if test -z "$with_threads"
984then with_threads="yes"
Guido van Rossum433c8ad1994-08-01 12:07:07 +0000985fi
Barry Warsawc0d24d8b2000-06-29 16:12:00 +0000986AC_MSG_RESULT($with_threads)
Guido van Rossum6400c261997-05-22 20:34:27 +0000987
Barry Warsawc0d24d8b2000-06-29 16:12:00 +0000988if test "$with_threads" = "no"
989then
990 USE_THREAD_MODULE="#"
Martin v. Löwisa5f73f92001-10-15 08:06:29 +0000991elif test "$ac_cv_pthread_is_default" = yes
992then
993 AC_DEFINE(WITH_THREAD)
Martin v. Löwisa5f73f92001-10-15 08:06:29 +0000994 # Defining _REENTRANT on system with POSIX threads should not hurt.
995 AC_DEFINE(_REENTRANT)
996 posix_threads=yes
997 LIBOBJS="$LIBOBJS thread.o"
Martin v. Löwis130fb172001-07-19 11:00:41 +0000998elif test "$ac_cv_kpthread" = "yes"
999then
1000 CC="$CC -Kpthread"
1001 AC_DEFINE(WITH_THREAD)
Guido van Rossumd0b69ec2001-09-10 14:10:54 +00001002 posix_threads=yes
Martin v. Löwis130fb172001-07-19 11:00:41 +00001003 LIBOBJS="$LIBOBJS thread.o"
Barry Warsawc0d24d8b2000-06-29 16:12:00 +00001004else
Martin v. Löwis130fb172001-07-19 11:00:41 +00001005 if test ! -z "$with_threads" -a -d "$with_threads"
1006 then LDFLAGS="$LDFLAGS -L$with_threads"
1007 fi
1008 if test ! -z "$withval" -a -d "$withval"
1009 then LDFLAGS="$LDFLAGS -L$withval"
1010 fi
Martin v. Löwis69c0ff32001-10-15 14:34:42 +00001011
1012 # According to the POSIX spec, a pthreads implementation must
1013 # define _POSIX_THREADS in unistd.h. Some apparently don't (which ones?)
1014 AC_MSG_CHECKING(for _POSIX_THREADS in unistd.h)
1015 AC_EGREP_CPP(yes,
1016 [#include <unistd.h>
1017 #ifdef _POSIX_THREADS
1018 yes
1019 #endif
1020 ], unistd_defines_pthreads=yes, unistd_defines_pthreads=no)
1021 AC_MSG_RESULT($unistd_defines_pthreads)
1022
Martin v. Löwis130fb172001-07-19 11:00:41 +00001023 AC_DEFINE(_REENTRANT)
1024 AC_CHECK_HEADER(mach/cthreads.h, [AC_DEFINE(WITH_THREAD)
1025 AC_DEFINE(C_THREADS)
1026 LIBOBJS="$LIBOBJS thread.o"],[
1027 AC_MSG_CHECKING(for --with-pth)
1028 AC_ARG_WITH(pth,
1029 [ --with-pth use GNU pth threading libraries], [
1030 AC_MSG_RESULT($withval)
1031 AC_DEFINE(WITH_THREAD)
1032 AC_DEFINE(HAVE_PTH)
1033 LIBS="-lpth $LIBS"
1034 LIBOBJS="$LIBOBJS thread.o"],[
1035 AC_MSG_RESULT(no)
Martin v. Löwis8158b5a2001-10-08 13:17:28 +00001036
1037 # Just looking for pthread_create in libpthread is not enough:
1038 # on HP/UX, pthread.h renames pthread_create to a different symbol name.
1039 # So we really have to include pthread.h, and then link.
1040 _libs=$LIBS
1041 LIBS="$LIBS -lpthread"
1042 AC_MSG_CHECKING([for pthread_create in -lpthread])
1043 AC_TRY_LINK([#include <pthread.h>
1044
1045void * start_routine (void *arg) { exit (0); }], [
1046pthread_create (NULL, NULL, start_routine, NULL)], [
1047 AC_MSG_RESULT(yes)
1048 AC_DEFINE(WITH_THREAD)
Martin v. Löwis69c0ff32001-10-15 14:34:42 +00001049 posix_threads=yes
Martin v. Löwis130fb172001-07-19 11:00:41 +00001050 LIBOBJS="$LIBOBJS thread.o"],[
Martin v. Löwis8158b5a2001-10-08 13:17:28 +00001051 LIBS=$_libs
Martin v. Löwis130fb172001-07-19 11:00:41 +00001052 AC_CHECK_FUNC(pthread_detach, [AC_DEFINE(WITH_THREAD)
Martin v. Löwis69c0ff32001-10-15 14:34:42 +00001053 posix_threads=yes
Martin v. Löwis130fb172001-07-19 11:00:41 +00001054 LIBOBJS="$LIBOBJS thread.o"],[
1055 AC_CHECK_HEADER(kernel/OS.h, [AC_DEFINE(WITH_THREAD)
1056 AC_DEFINE(BEOS_THREADS)
1057 LIBOBJS="$LIBOBJS thread.o"],[
1058 AC_CHECK_LIB(pthreads, pthread_create, [AC_DEFINE(WITH_THREAD)
Guido van Rossumd0b69ec2001-09-10 14:10:54 +00001059 posix_threads=yes
Martin v. Löwis130fb172001-07-19 11:00:41 +00001060 LIBS="$LIBS -lpthreads"
1061 LIBOBJS="$LIBOBJS thread.o"], [
1062 AC_CHECK_LIB(c_r, pthread_create, [AC_DEFINE(WITH_THREAD)
Guido van Rossumd0b69ec2001-09-10 14:10:54 +00001063 posix_threads=yes
Martin v. Löwis130fb172001-07-19 11:00:41 +00001064 LIBS="$LIBS -lc_r"
1065 LIBOBJS="$LIBOBJS thread.o"], [
1066 AC_CHECK_LIB(thread, __d6_pthread_create, [AC_DEFINE(WITH_THREAD)
Guido van Rossumd0b69ec2001-09-10 14:10:54 +00001067 posix_threads=yes
Martin v. Löwis130fb172001-07-19 11:00:41 +00001068 LIBS="$LIBS -lthread"
1069 LIBOBJS="$LIBOBJS thread.o"], [
1070 AC_CHECK_LIB(pthread, __pthread_create_system, [AC_DEFINE(WITH_THREAD)
Guido van Rossumd0b69ec2001-09-10 14:10:54 +00001071 posix_threads=yes
Martin v. Löwis130fb172001-07-19 11:00:41 +00001072 LIBS="$LIBS -lpthread"
1073 LIBOBJS="$LIBOBJS thread.o"], [
1074 AC_CHECK_LIB(cma, pthread_create, [AC_DEFINE(WITH_THREAD)
Guido van Rossumd0b69ec2001-09-10 14:10:54 +00001075 posix_threads=yes
Martin v. Löwis130fb172001-07-19 11:00:41 +00001076 LIBS="$LIBS -lcma"
1077 LIBOBJS="$LIBOBJS thread.o"],[
1078 USE_THREAD_MODULE="#"])
1079 ])])])])])])])])])
Barry Warsawc0d24d8b2000-06-29 16:12:00 +00001080
Guido van Rossumd0b69ec2001-09-10 14:10:54 +00001081 if test "$posix_threads" = "yes"; then
Martin v. Löwis69c0ff32001-10-15 14:34:42 +00001082 if test "$unistd_defines_pthreads" = "no"; then
1083 AC_DEFINE(_POSIX_THREADS)
1084 fi
1085
Guido van Rossumd0b69ec2001-09-10 14:10:54 +00001086 AC_MSG_CHECKING(if PTHREAD_SCOPE_SYSTEM is supported)
1087 AC_CACHE_VAL(ac_cv_pthread_system_supported,
1088 [AC_TRY_RUN([#include <pthread.h>
1089 void *foo(void *parm) {
1090 return NULL;
1091 }
1092 main() {
1093 pthread_attr_t attr;
1094 if (pthread_attr_init(&attr)) exit(-1);
1095 if (pthread_attr_setscope(&attr, PTHREAD_SCOPE_SYSTEM)) exit(-1);
1096 if (pthread_create(NULL, &attr, foo, NULL)) exit(-1);
1097 exit(0);
Guido van Rossum3065c942001-09-17 04:03:14 +00001098 }],
1099 ac_cv_pthread_system_supported=yes,
1100 ac_cv_pthread_system_supported=no,
1101 ac_cv_pthread_system_supported=no)
Guido van Rossumd0b69ec2001-09-10 14:10:54 +00001102 ])
1103 AC_MSG_RESULT($ac_cv_pthread_system_supported)
1104 if test "$ac_cv_pthread_system_supported" = "yes"; then
1105 AC_DEFINE(PTHREAD_SYSTEM_SCHED_SUPPORTED)
1106 fi
Martin v. Löwis69c0ff32001-10-15 14:34:42 +00001107 AC_CHECK_FUNCS(pthread_sigmask)
Guido van Rossumd0b69ec2001-09-10 14:10:54 +00001108 fi
1109
Martin v. Löwis130fb172001-07-19 11:00:41 +00001110 AC_CHECK_LIB(mpc, usconfig, [AC_DEFINE(WITH_THREAD)
1111 LIBS="$LIBS -lmpc"
1112 LIBOBJS="$LIBOBJS thread.o"
1113 USE_THREAD_MODULE=""])
1114 AC_CHECK_LIB(thread, thr_create, [AC_DEFINE(WITH_THREAD)
1115 LIBS="$LIBS -lthread"
1116 LIBOBJS="$LIBOBJS thread.o"
1117 USE_THREAD_MODULE=""])
Jeremy Hylton1a2ca862000-10-16 16:59:12 +00001118
Martin v. Löwis130fb172001-07-19 11:00:41 +00001119 if test "$USE_THREAD_MODULE" != "#"
1120 then
1121 # If the above checks didn't disable threads, (at least) OSF1
1122 # needs this '-threads' argument during linking.
1123 case $ac_sys_system in
1124 OSF1) LDLAST=-threads;;
1125 esac
Jeremy Hylton1a2ca862000-10-16 16:59:12 +00001126 fi
Barry Warsawc0d24d8b2000-06-29 16:12:00 +00001127fi
Guido van Rossum433c8ad1994-08-01 12:07:07 +00001128
Martin v. Löwisa2ac6022001-08-09 11:40:14 +00001129# Check for enable-ipv6
Martin v. Löwisa5f8bb52001-09-05 08:22:34 +00001130AC_MSG_CHECKING([if --enable-ipv6 is specified])
Martin v. Löwisa2ac6022001-08-09 11:40:14 +00001131AC_ARG_ENABLE(ipv6,
1132[ --enable-ipv6 Enable ipv6 (with ipv4) support
1133 --disable-ipv6 Disable ipv6 support],
1134[ case "$enableval" in
1135 no)
1136 AC_MSG_RESULT(no)
1137 ipv6=no
1138 ;;
1139 *) AC_MSG_RESULT(yes)
1140 AC_DEFINE(ENABLE_IPV6)
1141 ipv6=yes
1142 ;;
1143 esac ],
1144
Martin v. Löwisa5f8bb52001-09-05 08:22:34 +00001145[
1146dnl the check does not work on cross compilation case...
Martin v. Löwisa2ac6022001-08-09 11:40:14 +00001147 AC_TRY_RUN([ /* AF_INET6 available check */
1148#include <sys/types.h>
1149#include <sys/socket.h>
1150main()
1151{
1152 if (socket(AF_INET6, SOCK_STREAM, 0) < 0)
1153 exit(1);
1154 else
1155 exit(0);
1156}
1157],
1158 AC_MSG_RESULT(yes)
Martin v. Löwisa2ac6022001-08-09 11:40:14 +00001159 ipv6=yes,
1160 AC_MSG_RESULT(no)
1161 ipv6=no,
1162 AC_MSG_RESULT(no)
1163 ipv6=no
Martin v. Löwisa5f8bb52001-09-05 08:22:34 +00001164)
1165
1166if test "$ipv6" = "yes"; then
1167 AC_MSG_CHECKING(if RFC2553 API is available)
1168 AC_TRY_COMPILE([#include <sys/types.h>
1169#include <netinet/in.h>],
1170 [struct sockaddr_in6 x;
1171x.sin6_scope_id;],
1172 AC_MSG_RESULT(yes)
1173 ipv6=yes,
1174 AC_MSG_RESULT(no, IPv6 disabled)
1175 ipv6=no)
1176fi
1177
1178if test "$ipv6" = "yes"; then
1179 AC_DEFINE(ENABLE_IPV6)
1180fi
1181])
Martin v. Löwisa2ac6022001-08-09 11:40:14 +00001182
1183ipv6type=unknown
1184ipv6lib=none
1185ipv6trylibc=no
1186
1187if test "$ipv6" = "yes"; then
1188 AC_MSG_CHECKING([ipv6 stack type])
Guido van Rossumb8552162001-09-05 14:58:11 +00001189 for i in inria kame linux-glibc linux-inet6 solaris toshiba v6d zeta;
1190 do
Martin v. Löwisa2ac6022001-08-09 11:40:14 +00001191 case $i in
1192 inria)
1193 dnl http://www.kame.net/
Martin v. Löwisa5f73f92001-10-15 08:06:29 +00001194 AC_EGREP_CPP(yes, [
Martin v. Löwisa2ac6022001-08-09 11:40:14 +00001195#include <netinet/in.h>
1196#ifdef IPV6_INRIA_VERSION
1197yes
1198#endif],
Martin v. Löwis44ddbde2001-12-02 10:15:37 +00001199 [ipv6type=$i])
Martin v. Löwisa2ac6022001-08-09 11:40:14 +00001200 ;;
1201 kame)
1202 dnl http://www.kame.net/
Martin v. Löwisa5f73f92001-10-15 08:06:29 +00001203 AC_EGREP_CPP(yes, [
Martin v. Löwisa2ac6022001-08-09 11:40:14 +00001204#include <netinet/in.h>
1205#ifdef __KAME__
1206yes
1207#endif],
1208 [ipv6type=$i;
1209 ipv6lib=inet6
1210 ipv6libdir=/usr/local/v6/lib
Martin v. Löwis44ddbde2001-12-02 10:15:37 +00001211 ipv6trylibc=yes])
Martin v. Löwisa2ac6022001-08-09 11:40:14 +00001212 ;;
1213 linux-glibc)
1214 dnl http://www.v6.linux.or.jp/
Martin v. Löwisa5f73f92001-10-15 08:06:29 +00001215 AC_EGREP_CPP(yes, [
Martin v. Löwisa2ac6022001-08-09 11:40:14 +00001216#include <features.h>
1217#if defined(__GLIBC__) && ((__GLIBC__ == 2 && __GLIBC_MINOR__ >= 1) || (__GLIBC__ > 2))
1218yes
1219#endif],
1220 [ipv6type=$i;
Martin v. Löwis44ddbde2001-12-02 10:15:37 +00001221 ipv6trylibc=yes])
Martin v. Löwisa2ac6022001-08-09 11:40:14 +00001222 ;;
1223 linux-inet6)
1224 dnl http://www.v6.linux.or.jp/
1225 if test -d /usr/inet6; then
1226 ipv6type=$i
1227 ipv6lib=inet6
1228 ipv6libdir=/usr/inet6/lib
Martin v. Löwis44ddbde2001-12-02 10:15:37 +00001229 OPT="-I/usr/inet6/include $OPT"
Martin v. Löwisa2ac6022001-08-09 11:40:14 +00001230 fi
1231 ;;
1232 solaris)
1233 if test -f /etc/netconfig; then
1234 if /usr/xpg4/bin/grep -q tcp6 /etc/netconfig; then
1235 ipv6type=$i
1236 ipv6trylibc=yes
Martin v. Löwisa2ac6022001-08-09 11:40:14 +00001237 fi
1238 fi
1239 ;;
1240 toshiba)
Martin v. Löwisa5f73f92001-10-15 08:06:29 +00001241 AC_EGREP_CPP(yes, [
Martin v. Löwisa2ac6022001-08-09 11:40:14 +00001242#include <sys/param.h>
1243#ifdef _TOSHIBA_INET6
1244yes
1245#endif],
1246 [ipv6type=$i;
1247 ipv6lib=inet6;
Martin v. Löwis44ddbde2001-12-02 10:15:37 +00001248 ipv6libdir=/usr/local/v6/lib])
Martin v. Löwisa2ac6022001-08-09 11:40:14 +00001249 ;;
1250 v6d)
Martin v. Löwisa5f73f92001-10-15 08:06:29 +00001251 AC_EGREP_CPP(yes, [
Martin v. Löwisa2ac6022001-08-09 11:40:14 +00001252#include </usr/local/v6/include/sys/v6config.h>
1253#ifdef __V6D__
1254yes
1255#endif],
1256 [ipv6type=$i;
1257 ipv6lib=v6;
1258 ipv6libdir=/usr/local/v6/lib;
1259 OPT="-I/usr/local/v6/include $OPT"])
1260 ;;
1261 zeta)
Martin v. Löwisa5f73f92001-10-15 08:06:29 +00001262 AC_EGREP_CPP(yes, [
Martin v. Löwisa2ac6022001-08-09 11:40:14 +00001263#include <sys/param.h>
1264#ifdef _ZETA_MINAMI_INET6
1265yes
1266#endif],
1267 [ipv6type=$i;
1268 ipv6lib=inet6;
Martin v. Löwis44ddbde2001-12-02 10:15:37 +00001269 ipv6libdir=/usr/local/v6/lib])
Martin v. Löwisa2ac6022001-08-09 11:40:14 +00001270 ;;
1271 esac
1272 if test "$ipv6type" != "unknown"; then
1273 break
1274 fi
1275 done
1276 AC_MSG_RESULT($ipv6type)
1277fi
1278
1279if test "$ipv6" = "yes" -a "$ipv6lib" != "none"; then
1280 if test -d $ipv6libdir -a -f $ipv6libdir/lib$ipv6lib.a; then
1281 LIBS="-L$ipv6libdir -l$ipv6lib $LIBS"
1282 echo "using lib$ipv6lib"
1283 else
1284 if test $ipv6trylibc = "yes"; then
1285 echo "using libc"
1286 else
1287 echo 'Fatal: no $ipv6lib library found. cannot continue.'
1288 echo "You need to fetch lib$ipv6lib.a from appropriate"
1289 echo 'ipv6 kit and compile beforehand.'
1290 exit 1
1291 fi
1292 fi
1293fi
1294
Barry Warsawef82cd72000-06-30 16:21:01 +00001295# Check for GC support
Barry Warsawef82cd72000-06-30 16:21:01 +00001296AC_MSG_CHECKING(for --with-cycle-gc)
1297AC_ARG_WITH(cycle-gc,
1298[ --with(out)-cycle-gc disable/enable garbage collection])
1299
1300if test -z "$with_cycle_gc"
1301then with_cycle_gc="yes"
1302fi
Neil Schemenauer9c63e6d2001-08-29 23:44:38 +00001303if test "$with_cycle_gc" != "no"
Barry Warsawef82cd72000-06-30 16:21:01 +00001304then
Barry Warsawef82cd72000-06-30 16:21:01 +00001305 AC_DEFINE(WITH_CYCLE_GC)
1306fi
1307AC_MSG_RESULT($with_cycle_gc)
1308
Neil Schemenauera35c6882001-02-27 04:45:05 +00001309# Check for Python-specific malloc support
1310AC_MSG_CHECKING(for --with-pymalloc)
1311AC_ARG_WITH(pymalloc,
1312[ --with(out)-pymalloc disable/enable specialized mallocs], [
1313if test "$withval" != no
1314then AC_DEFINE(WITH_PYMALLOC) AC_MSG_RESULT(yes)
1315else AC_MSG_RESULT(no)
1316fi],
1317[AC_MSG_RESULT(no)])
1318
Barry Warsawef82cd72000-06-30 16:21:01 +00001319# Check for --with-wctype-functions
1320AC_MSG_CHECKING(for --with-wctype-functions)
1321AC_ARG_WITH(wctype-functions,
1322[ --with-wctype-functions use wctype.h functions], [
1323if test "$withval" != no
1324then AC_DEFINE(WANT_WCTYPE_FUNCTIONS) AC_MSG_RESULT(yes)
1325else AC_MSG_RESULT(no)
1326fi],
1327[AC_MSG_RESULT(no)])
1328
Guido van Rossum68242b51996-05-28 22:53:03 +00001329# -I${DLINCLDIR} is added to the compile rule for importdl.o
Guido van Rossum433c8ad1994-08-01 12:07:07 +00001330AC_SUBST(DLINCLDIR)
Guido van Rossum98935bf2001-09-05 19:13:16 +00001331DLINCLDIR=.
Guido van Rossum433c8ad1994-08-01 12:07:07 +00001332
Guido van Rossum5739e7e1995-01-20 16:50:53 +00001333AC_MSG_CHECKING(for --with-sgi-dl)
Barry Warsawc0d24d8b2000-06-29 16:12:00 +00001334AC_ARG_WITH(sgi-dl,
1335[ --with-sgi-dl=DIRECTORY IRIX 4 dynamic linking], [
Guido van Rossum5739e7e1995-01-20 16:50:53 +00001336AC_MSG_RESULT($withval)
Guido van Rossum76be6ed1995-01-02 18:33:54 +00001337AC_DEFINE(WITH_SGI_DL)
Guido van Rossume97ee181999-12-20 21:27:22 +00001338DYNLOADFILE="dynload_dl.o"
Guido van Rossum433c8ad1994-08-01 12:07:07 +00001339dldir=$withval
Guido van Rossum40951012000-10-07 16:21:27 +00001340if test ! -z "$dldir" -a -d "$dldir"
Guido van Rossum300fda71996-08-19 21:58:16 +00001341then LDFLAGS="$LDFLAGS -L$dldir"
Guido van Rossum433c8ad1994-08-01 12:07:07 +00001342else AC_ERROR(proper usage is --with-sgi-dl=DIRECTORY)
1343fi
1344DLINCLDIR=${dldir}
Guido van Rossum5739e7e1995-01-20 16:50:53 +00001345LIBS="$LIBS -ldl -lmld"], AC_MSG_RESULT(no))
Guido van Rossum433c8ad1994-08-01 12:07:07 +00001346
Guido van Rossum5739e7e1995-01-20 16:50:53 +00001347AC_MSG_CHECKING(for --with-dl-dld)
Barry Warsawc0d24d8b2000-06-29 16:12:00 +00001348AC_ARG_WITH(dl-dld, [ --with-dl-dld=DL_DIR,DLD_DIR GNU dynamic linking], [
Guido van Rossum5739e7e1995-01-20 16:50:53 +00001349AC_MSG_RESULT($withval)
Guido van Rossum76be6ed1995-01-02 18:33:54 +00001350AC_DEFINE(WITH_DL_DLD)
Guido van Rossume97ee181999-12-20 21:27:22 +00001351DYNLOADFILE="dynload_dl.o"
Guido van Rossum433c8ad1994-08-01 12:07:07 +00001352dldir=`echo "$withval" | sed 's/,.*//'`
1353dlddir=`echo "$withval" | sed 's/.*,//'`
Barry Warsaw7d1219d2000-10-05 18:45:53 +00001354if test ! -z "$dldir" -a -d "$dldir" -a ! -z "$dlddir" -a -d "$dlddir"
Guido van Rossum300fda71996-08-19 21:58:16 +00001355then LDFLAGS="$LDFLAGS -L$dldir -L$dlddir"
Guido van Rossum433c8ad1994-08-01 12:07:07 +00001356else AC_ERROR(proper usage is --with-dl-dld=DL_DIRECTORY,DLD_DIRECTORY)
1357fi
1358DLINCLDIR=${dldir}
Guido van Rossum5739e7e1995-01-20 16:50:53 +00001359LIBS="$LIBS -ldl -ldld"], AC_MSG_RESULT(no))
Guido van Rossum627b2d71993-12-24 10:39:16 +00001360
Guido van Rossume97ee181999-12-20 21:27:22 +00001361# the dlopen() function means we might want to use dynload_shlib.o. some
1362# platforms, such as AIX, have dlopen(), but don't want to use it.
Thomas Wouters3a584202000-08-05 23:28:51 +00001363AC_CHECK_FUNCS(dlopen)
Guido van Rossume97ee181999-12-20 21:27:22 +00001364
1365# DYNLOADFILE specifies which dynload_*.o file we will use for dynamic
1366# loading of modules.
1367AC_SUBST(DYNLOADFILE)
1368AC_MSG_CHECKING(DYNLOADFILE)
1369if test -z "$DYNLOADFILE"
1370then
1371 case $ac_sys_system/$ac_sys_release in
1372 AIX*) DYNLOADFILE="dynload_aix.o";;
1373 BeOS*) DYNLOADFILE="dynload_beos.o";;
1374 hp*|HP*) DYNLOADFILE="dynload_hpux.o";;
Jack Jansenb6e9cad2001-08-15 01:26:28 +00001375 Darwin/*) DYNLOADFILE="dynload_next.o";;
Guido van Rossume97ee181999-12-20 21:27:22 +00001376 *)
1377 # use dynload_shlib.c and dlopen() if we have it; otherwise stub
1378 # out any dynamic loading
1379 if test "$ac_cv_func_dlopen" = yes
1380 then DYNLOADFILE="dynload_shlib.o"
1381 else DYNLOADFILE="dynload_stub.o"
1382 fi
1383 ;;
1384 esac
1385fi
1386AC_MSG_RESULT($DYNLOADFILE)
1387if test "$DYNLOADFILE" != "dynload_stub.o"
1388then
1389 AC_DEFINE(HAVE_DYNAMIC_LOADING)
1390fi
1391
Jack Jansenc49e5b72001-06-19 15:00:23 +00001392# MACHDEP_OBJS can be set to platform-specific object files needed by Python
1393
1394AC_SUBST(MACHDEP_OBJS)
1395AC_MSG_CHECKING(MACHDEP_OBJS)
1396if test -z "$MACHDEP_OBJS"
1397then
Jack Jansenb6e9cad2001-08-15 01:26:28 +00001398 MACHDEP_OBJS=$extra_machdep_objs
1399else
1400 MACHDEP_OBJS="$MACHDEP_OBJS $extra_machdep_objs"
Jack Jansenc49e5b72001-06-19 15:00:23 +00001401fi
Jack Jansenb6e9cad2001-08-15 01:26:28 +00001402AC_MSG_RESULT(MACHDEP_OBJS)
Jack Jansenc49e5b72001-06-19 15:00:23 +00001403
Guido van Rossum627b2d71993-12-24 10:39:16 +00001404# checks for library functions
Martin v. Löwis244edc82001-10-04 22:44:26 +00001405AC_CHECK_FUNCS(alarm chown chroot clock confstr ctermid ctermid_r execv \
Fred Drake35a092f1999-12-13 16:23:35 +00001406 flock fork fsync fdatasync fpathconf ftime ftruncate \
Martin v. Löwisf95dd0a2001-08-15 17:14:33 +00001407 gai_strerror getgroups getlogin getpeername getpid getpwent getwd \
Martin v. Löwis864e9ff2001-08-04 22:32:03 +00001408 hstrerror inet_pton kill link lstat mkfifo mktime mremap \
Andrew M. Kuchling5821b772000-08-25 01:14:08 +00001409 nice pathconf pause plock poll pthread_init \
Fred Drake35a092f1999-12-13 16:23:35 +00001410 putenv readlink \
Martin v. Löwis61c5edf2001-10-18 04:06:00 +00001411 select setegid seteuid setgid setgroups \
Martin v. Löwis791bfda2001-07-24 06:33:08 +00001412 setlocale setregid setreuid setsid setpgid setuid setvbuf snprintf \
Fred Drake35a092f1999-12-13 16:23:35 +00001413 sigaction siginterrupt sigrelse strftime strptime symlink sysconf \
Fred Drake89143df1999-12-09 22:03:25 +00001414 tcgetpgrp tcsetpgrp tempnam timegm times tmpfile tmpnam tmpnam_r \
Guido van Rossumc524d952001-10-19 01:31:59 +00001415 truncate uname unsetenv waitpid _getpty getpriority)
Guido van Rossum00f0f6e1999-01-06 18:52:29 +00001416
Fred Drake8cef4cf2000-06-28 16:40:38 +00001417# check for openpty and forkpty
1418
1419AC_CHECK_FUNCS(openpty,, AC_CHECK_LIB(util,openpty, [AC_DEFINE(HAVE_OPENPTY)] [LIBS="$LIBS -lutil"]))
1420AC_CHECK_FUNCS(forkpty,, AC_CHECK_LIB(util,forkpty, [AC_DEFINE(HAVE_FORKPTY)] [LIBS="$LIBS -lutil"]))
1421
Guido van Rossum00f0f6e1999-01-06 18:52:29 +00001422# check for long file support functions
1423AC_CHECK_FUNCS(fseek64 fseeko fstatvfs ftell64 ftello statvfs)
1424
Guido van Rossumf2f7eb31996-08-30 15:18:00 +00001425AC_REPLACE_FUNCS(dup2 getcwd strdup strerror memmove)
Thomas Wouters3a584202000-08-05 23:28:51 +00001426AC_CHECK_FUNCS(getpgrp, AC_TRY_COMPILE([#include <unistd.h>], [getpgrp(0);], AC_DEFINE(GETPGRP_HAVE_ARG)))
1427AC_CHECK_FUNCS(setpgrp, AC_TRY_COMPILE([#include <unistd.h>], [setpgrp(0,0);], AC_DEFINE(SETPGRP_HAVE_ARG)))
1428AC_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 +00001429
Martin v. Löwis861a65b2001-10-24 14:36:00 +00001430
1431# On OSF/1 V5.1, getaddrinfo is available, but a define
1432# for [no]getaddrinfo in netdb.h.
1433AC_MSG_CHECKING(for getaddrinfo)
1434AC_TRY_LINK([
Martin v. Löwisc010b6d2001-11-09 17:50:52 +00001435#include <sys/types.h>
Martin v. Löwis861a65b2001-10-24 14:36:00 +00001436#include <sys/socket.h>
1437#include <netdb.h>
Martin v. Löwisc010b6d2001-11-09 17:50:52 +00001438#include <stdio.h>
Martin v. Löwis861a65b2001-10-24 14:36:00 +00001439],[
1440getaddrinfo(NULL, NULL, NULL, NULL);
1441], [
1442AC_MSG_RESULT(yes)
Martin v. Löwis01dfdb32001-06-23 16:30:13 +00001443AC_MSG_CHECKING(getaddrinfo bug)
1444AC_TRY_RUN([
1445#include <sys/types.h>
1446#include <netdb.h>
1447#include <string.h>
1448#include <sys/socket.h>
1449#include <netinet/in.h>
1450
1451main()
1452{
1453 int passive, gaierr, inet4 = 0, inet6 = 0;
1454 struct addrinfo hints, *ai, *aitop;
1455 char straddr[INET6_ADDRSTRLEN], strport[16];
1456
1457 for (passive = 0; passive <= 1; passive++) {
1458 memset(&hints, 0, sizeof(hints));
1459 hints.ai_family = AF_UNSPEC;
1460 hints.ai_flags = passive ? AI_PASSIVE : 0;
1461 hints.ai_socktype = SOCK_STREAM;
1462 if ((gaierr = getaddrinfo(NULL, "54321", &hints, &aitop)) != 0) {
1463 (void)gai_strerror(gaierr);
1464 goto bad;
1465 }
1466 for (ai = aitop; ai; ai = ai->ai_next) {
1467 if (ai->ai_addr == NULL ||
1468 ai->ai_addrlen == 0 ||
1469 getnameinfo(ai->ai_addr, ai->ai_addrlen,
1470 straddr, sizeof(straddr), strport, sizeof(strport),
1471 NI_NUMERICHOST|NI_NUMERICSERV) != 0) {
1472 goto bad;
1473 }
1474 switch (ai->ai_family) {
1475 case AF_INET:
1476 if (strcmp(strport, "54321") != 0) {
1477 goto bad;
1478 }
1479 if (passive) {
1480 if (strcmp(straddr, "0.0.0.0") != 0) {
1481 goto bad;
1482 }
1483 } else {
1484 if (strcmp(straddr, "127.0.0.1") != 0) {
1485 goto bad;
1486 }
1487 }
1488 inet4++;
1489 break;
1490 case AF_INET6:
1491 if (strcmp(strport, "54321") != 0) {
1492 goto bad;
1493 }
1494 if (passive) {
1495 if (strcmp(straddr, "::") != 0) {
1496 goto bad;
1497 }
1498 } else {
1499 if (strcmp(straddr, "::1") != 0) {
1500 goto bad;
1501 }
1502 }
1503 inet6++;
1504 break;
1505 case AF_UNSPEC:
1506 goto bad;
1507 break;
1508 default:
1509 /* another family support? */
1510 break;
1511 }
1512 }
1513 }
1514
1515 if (!(inet4 == 0 || inet4 == 2))
1516 goto bad;
1517 if (!(inet6 == 0 || inet6 == 2))
1518 goto bad;
1519
1520 if (aitop)
1521 freeaddrinfo(aitop);
1522 exit(0);
1523
1524 bad:
1525 if (aitop)
1526 freeaddrinfo(aitop);
1527 exit(1);
1528}
1529],
1530AC_MSG_RESULT(good)
1531buggygetaddrinfo=no,
1532AC_MSG_RESULT(buggy)
1533buggygetaddrinfo=yes,
1534AC_MSG_RESULT(buggy)
Martin v. Löwis861a65b2001-10-24 14:36:00 +00001535buggygetaddrinfo=yes)], [
1536AC_MSG_RESULT(no)
1537buggygetaddrinfo=yes
1538])
Martin v. Löwis01dfdb32001-06-23 16:30:13 +00001539
1540if test "$buggygetaddrinfo" = "yes"; then
1541 if test "$ipv6" = "yes"; then
1542 echo 'Fatal: You must get working getaddrinfo() function.'
1543 echo ' or you can specify "--disable-ipv6"'.
1544 exit 1
1545 fi
Martin v. Löwis861a65b2001-10-24 14:36:00 +00001546else
1547 AC_DEFINE(HAVE_GETADDRINFO)
Martin v. Löwis01dfdb32001-06-23 16:30:13 +00001548fi
Thomas Woutersb0db85a2001-08-08 10:39:03 +00001549AC_CHECK_FUNCS(getnameinfo)
Martin v. Löwis01dfdb32001-06-23 16:30:13 +00001550
Guido van Rossum627b2d71993-12-24 10:39:16 +00001551# checks for structures
Guido van Rossum76be6ed1995-01-02 18:33:54 +00001552AC_HEADER_TIME
Guido van Rossum627b2d71993-12-24 10:39:16 +00001553AC_STRUCT_TM
Guido van Rossum76be6ed1995-01-02 18:33:54 +00001554AC_STRUCT_TIMEZONE
Guido van Rossum98bf58f2001-10-18 20:34:25 +00001555AC_STRUCT_ST_RDEV
1556AC_STRUCT_ST_BLKSIZE
1557AC_STRUCT_ST_BLOCKS
Guido van Rossum76be6ed1995-01-02 18:33:54 +00001558
1559AC_MSG_CHECKING(for time.h that defines altzone)
1560AC_CACHE_VAL(ac_cv_header_time_altzone,
1561[AC_TRY_COMPILE([#include <time.h>], [return altzone;],
1562 ac_cv_header_time_altzone=yes,
1563 ac_cv_header_time_altzone=no)])
1564AC_MSG_RESULT($ac_cv_header_time_altzone)
1565if test $ac_cv_header_time_altzone = yes; then
1566 AC_DEFINE(HAVE_ALTZONE)
1567fi
1568
Guido van Rossum5739e7e1995-01-20 16:50:53 +00001569was_it_defined=no
1570AC_MSG_CHECKING(whether sys/select.h and sys/time.h may both be included)
Guido van Rossum76be6ed1995-01-02 18:33:54 +00001571AC_TRY_COMPILE([
Guido van Rossum433c8ad1994-08-01 12:07:07 +00001572#include <sys/types.h>
1573#include <sys/select.h>
1574#include <sys/time.h>
Guido van Rossum5739e7e1995-01-20 16:50:53 +00001575], [;], [AC_DEFINE(SYS_SELECT_WITH_SYS_TIME) was_it_defined=yes])
1576AC_MSG_RESULT($was_it_defined)
Guido van Rossum627b2d71993-12-24 10:39:16 +00001577
Martin v. Löwis01dfdb32001-06-23 16:30:13 +00001578AC_MSG_CHECKING(for addrinfo)
1579AC_CACHE_VAL(ac_cv_struct_addrinfo,
1580AC_TRY_COMPILE([
1581# include <netdb.h>],
1582 [struct addrinfo a],
1583 ac_cv_struct_addrinfo=yes,
1584 ac_cv_struct_addrinfo=no))
1585AC_MSG_RESULT($ac_cv_struct_addrinfo)
1586if test $ac_cv_struct_addrinfo = yes; then
1587 AC_DEFINE(HAVE_ADDRINFO)
1588fi
1589
1590AC_MSG_CHECKING(for sockaddr_storage)
1591AC_CACHE_VAL(ac_cv_struct_sockaddr_storage,
1592AC_TRY_COMPILE([
1593# include <sys/types.h>
1594# include <sys/socket.h>],
1595 [struct sockaddr_storage s],
1596 ac_cv_struct_sockaddr_storage=yes,
1597 ac_cv_struct_sockaddr_storage=no))
1598AC_MSG_RESULT($ac_cv_struct_sockaddr_storage)
1599if test $ac_cv_struct_sockaddr_storage = yes; then
1600 AC_DEFINE(HAVE_SOCKADDR_STORAGE)
1601fi
1602
Guido van Rossum627b2d71993-12-24 10:39:16 +00001603# checks for compiler characteristics
Guido van Rossum433c8ad1994-08-01 12:07:07 +00001604
Guido van Rossum76be6ed1995-01-02 18:33:54 +00001605AC_C_CHAR_UNSIGNED
Guido van Rossum76be6ed1995-01-02 18:33:54 +00001606AC_C_CONST
Guido van Rossum433c8ad1994-08-01 12:07:07 +00001607
Guido van Rossum5739e7e1995-01-20 16:50:53 +00001608works=no
1609AC_MSG_CHECKING(for working volatile)
1610AC_TRY_COMPILE([],[volatile int x; x = 0;], works=yes, AC_DEFINE(volatile, []))
1611AC_MSG_RESULT($works)
Guido van Rossumdabb11b1994-10-11 15:04:27 +00001612
Guido van Rossum5739e7e1995-01-20 16:50:53 +00001613works=no
1614AC_MSG_CHECKING(for working signed char)
1615AC_TRY_COMPILE([], [signed char c;], works=yes, AC_DEFINE(signed, []))
1616AC_MSG_RESULT($works)
Guido van Rossum433c8ad1994-08-01 12:07:07 +00001617
Guido van Rossum5739e7e1995-01-20 16:50:53 +00001618have_prototypes=no
1619AC_MSG_CHECKING(for prototypes)
Guido van Rossum76be6ed1995-01-02 18:33:54 +00001620AC_TRY_COMPILE([int foo(int x) { return 0; }], [return foo(10);],
1621AC_DEFINE(HAVE_PROTOTYPES) have_prototypes=yes)
Guido van Rossum5739e7e1995-01-20 16:50:53 +00001622AC_MSG_RESULT($have_prototypes)
Guido van Rossum433c8ad1994-08-01 12:07:07 +00001623
Guido van Rossum5739e7e1995-01-20 16:50:53 +00001624works=no
1625AC_MSG_CHECKING(for variable length prototypes and stdarg.h)
Guido van Rossum76be6ed1995-01-02 18:33:54 +00001626AC_TRY_COMPILE([
Guido van Rossum433c8ad1994-08-01 12:07:07 +00001627#include <stdarg.h>
Guido van Rossum3f13e481996-08-30 20:58:11 +00001628int foo(int x, ...) {
1629 va_list va;
1630 va_start(va, x);
1631 va_arg(va, int);
1632 va_arg(va, char *);
1633 va_arg(va, double);
1634 return 0;
1635}
1636], [return foo(10, "", 3.14);],
Guido van Rossum5739e7e1995-01-20 16:50:53 +00001637AC_DEFINE(HAVE_STDARG_PROTOTYPES) works=yes)
1638AC_MSG_RESULT($works)
Guido van Rossum76be6ed1995-01-02 18:33:54 +00001639
Guido van Rossum5739e7e1995-01-20 16:50:53 +00001640if test "$have_prototypes" = yes; then
1641bad_prototypes=no
1642AC_MSG_CHECKING(for bad exec* prototypes)
1643AC_TRY_COMPILE([#include <unistd.h>], [char **t;execve("@",t,t);], ,
1644 AC_DEFINE(BAD_EXEC_PROTOTYPES) bad_prototypes=yes)
1645AC_MSG_RESULT($bad_prototypes)
Guido van Rossum627b2d71993-12-24 10:39:16 +00001646fi
1647
Martin v. Löwis01dfdb32001-06-23 16:30:13 +00001648# check if sockaddr has sa_len member
1649AC_MSG_CHECKING(if sockaddr has sa_len member)
1650AC_TRY_COMPILE([#include <sys/types.h>
1651#include <sys/socket.h>],
1652[struct sockaddr x;
1653x.sa_len = 0;],
1654 AC_MSG_RESULT(yes)
1655 AC_DEFINE(HAVE_SOCKADDR_SA_LEN),
1656 AC_MSG_RESULT(no))
1657
Guido van Rossum5739e7e1995-01-20 16:50:53 +00001658AC_MSG_CHECKING(for bad static forward)
Martin v. Löwis1d5ecb72001-08-09 10:29:44 +00001659AC_CACHE_VAL(ac_cv_bad_static_forward,
1660[AC_TRY_RUN([
Guido van Rossum433c8ad1994-08-01 12:07:07 +00001661struct s { int a; int b; };
1662static struct s foo;
Guido van Rossum5dee5e71994-11-10 23:06:54 +00001663int foobar() {
1664 static int random;
1665 random = (int) &foo;
1666 return random;
1667}
Guido van Rossum433c8ad1994-08-01 12:07:07 +00001668static struct s foo = { 1, 2 };
Guido van Rossum5dee5e71994-11-10 23:06:54 +00001669main() {
1670 exit(!((int)&foo == foobar()));
Guido van Rossum3065c942001-09-17 04:03:14 +00001671}],
1672ac_cv_bad_static_forward=no,
1673ac_cv_bad_static_forward=yes,
1674ac_cv_bad_static_forward=no)])
Martin v. Löwis1d5ecb72001-08-09 10:29:44 +00001675AC_MSG_RESULT($ac_cv_bad_static_forward)
1676if test "$ac_cv_bad_static_forward" = yes
1677then
1678 AC_DEFINE(BAD_STATIC_FORWARD)
1679fi
Guido van Rossum433c8ad1994-08-01 12:07:07 +00001680
Guido van Rossum5739e7e1995-01-20 16:50:53 +00001681va_list_is_array=no
1682AC_MSG_CHECKING(whether va_list is an array)
Guido van Rossum76be6ed1995-01-02 18:33:54 +00001683AC_TRY_COMPILE([
1684#ifdef HAVE_STDARG_PROTOTYPES
1685#include <stdarg.h>
1686#else
1687#include <varargs.h>
1688#endif
Guido van Rossum5739e7e1995-01-20 16:50:53 +00001689], [va_list list1, list2; list1 = list2;], ,
1690AC_DEFINE(VA_LIST_IS_ARRAY) va_list_is_array=yes)
1691AC_MSG_RESULT($va_list_is_array)
Guido van Rossum76be6ed1995-01-02 18:33:54 +00001692
Guido van Rossuma96f0ba1999-03-22 21:49:51 +00001693# sigh -- gethostbyname_r is a mess; it can have 3, 5 or 6 arguments :-(
1694AC_CHECK_FUNC(gethostbyname_r, [
1695 AC_DEFINE(HAVE_GETHOSTBYNAME_R)
1696 AC_MSG_CHECKING([gethostbyname_r with 6 args])
1697 OLD_CFLAGS=$CFLAGS
1698 CFLAGS="$CFLAGS $MY_CPPFLAGS $MY_THREAD_CPPFLAGS $MY_CFLAGS"
1699 AC_TRY_COMPILE([
1700# include <netdb.h>
1701 ], [
1702 char *name;
1703 struct hostent *he, *res;
1704 char buffer[2048];
1705 int buflen = 2048;
1706 int h_errnop;
1707
1708 (void) gethostbyname_r(name, he, buffer, buflen, &res, &h_errnop)
1709 ], [
Guido van Rossum8db7d8b1999-03-23 16:40:33 +00001710 AC_DEFINE(HAVE_GETHOSTBYNAME_R)
Guido van Rossuma96f0ba1999-03-22 21:49:51 +00001711 AC_DEFINE(HAVE_GETHOSTBYNAME_R_6_ARG)
1712 AC_MSG_RESULT(yes)
1713 ], [
1714 AC_MSG_RESULT(no)
1715 AC_MSG_CHECKING([gethostbyname_r with 5 args])
1716 AC_TRY_COMPILE([
1717# include <netdb.h>
1718 ], [
1719 char *name;
1720 struct hostent *he;
1721 char buffer[2048];
1722 int buflen = 2048;
1723 int h_errnop;
1724
1725 (void) gethostbyname_r(name, he, buffer, buflen, &h_errnop)
1726 ], [
Guido van Rossum8db7d8b1999-03-23 16:40:33 +00001727 AC_DEFINE(HAVE_GETHOSTBYNAME_R)
Guido van Rossuma96f0ba1999-03-22 21:49:51 +00001728 AC_DEFINE(HAVE_GETHOSTBYNAME_R_5_ARG)
1729 AC_MSG_RESULT(yes)
1730 ], [
1731 AC_MSG_RESULT(no)
1732 AC_MSG_CHECKING([gethostbyname_r with 3 args])
1733 AC_TRY_COMPILE([
1734# include <netdb.h>
1735 ], [
1736 char *name;
1737 struct hostent *he;
1738 struct hostent_data data;
1739
1740 (void) gethostbyname_r(name, he, &data);
1741 ], [
Guido van Rossum8db7d8b1999-03-23 16:40:33 +00001742 AC_DEFINE(HAVE_GETHOSTBYNAME_R)
Guido van Rossuma96f0ba1999-03-22 21:49:51 +00001743 AC_DEFINE(HAVE_GETHOSTBYNAME_R_3_ARG)
1744 AC_MSG_RESULT(yes)
1745 ], [
1746 AC_MSG_RESULT(no)
1747 ])
1748 ])
1749 ])
1750 CFLAGS=$OLD_CFLAGS
1751], [
Thomas Wouters3a584202000-08-05 23:28:51 +00001752 AC_CHECK_FUNCS(gethostbyname)
Guido van Rossuma96f0ba1999-03-22 21:49:51 +00001753])
1754AC_SUBST(HAVE_GETHOSTBYNAME_R_6_ARG)
1755AC_SUBST(HAVE_GETHOSTBYNAME_R_5_ARG)
1756AC_SUBST(HAVE_GETHOSTBYNAME_R_3_ARG)
Guido van Rossum8db7d8b1999-03-23 16:40:33 +00001757AC_SUBST(HAVE_GETHOSTBYNAME_R)
Guido van Rossuma96f0ba1999-03-22 21:49:51 +00001758AC_SUBST(HAVE_GETHOSTBYNAME)
1759
Guido van Rossum627b2d71993-12-24 10:39:16 +00001760# checks for system services
1761# (none yet)
1762
Guido van Rossum76be6ed1995-01-02 18:33:54 +00001763# Linux requires this for correct f.p. operations
Jeremy Hyltonbe28f5b2000-07-27 21:03:04 +00001764AC_CHECK_FUNC(__fpu_control,
1765 [],
1766 [AC_CHECK_LIB(ieee, __fpu_control)
1767])
Guido van Rossum627b2d71993-12-24 10:39:16 +00001768
Guido van Rossum93274221997-05-09 02:42:00 +00001769# Check for --with-fpectl
Guido van Rossum93274221997-05-09 02:42:00 +00001770AC_MSG_CHECKING(for --with-fpectl)
Barry Warsawc0d24d8b2000-06-29 16:12:00 +00001771AC_ARG_WITH(fpectl,
1772[ --with-fpectl enable SIGFPE catching], [
Guido van Rossum93274221997-05-09 02:42:00 +00001773if test "$withval" != no
1774then AC_DEFINE(WANT_SIGFPE_HANDLER) AC_MSG_RESULT(yes)
1775else AC_MSG_RESULT(no)
Guido van Rossumef2255b2000-03-10 22:30:29 +00001776fi],
1777[AC_MSG_RESULT(no)])
Guido van Rossum93274221997-05-09 02:42:00 +00001778
Guido van Rossum433c8ad1994-08-01 12:07:07 +00001779# check for --with-libm=...
1780AC_SUBST(LIBM)
Guido van Rossum4b6b5791996-09-09 20:09:34 +00001781case $ac_sys_system in
Guido van Rossum3dc0a512000-10-05 18:00:06 +00001782Darwin) ;;
Guido van Rossumec95c7b1998-08-04 17:59:56 +00001783BeOS) ;;
Guido van Rossum4b6b5791996-09-09 20:09:34 +00001784*) LIBM=-lm
1785esac
Guido van Rossum93274221997-05-09 02:42:00 +00001786AC_MSG_CHECKING(for --with-libm=STRING)
Barry Warsawc0d24d8b2000-06-29 16:12:00 +00001787AC_ARG_WITH(libm, [ --with-libm=STRING math library], [
Guido van Rossum93274221997-05-09 02:42:00 +00001788if test "$withval" = no
1789then LIBM=
1790 AC_MSG_RESULT(force LIBM empty)
1791elif test "$withval" != yes
Guido van Rossum433c8ad1994-08-01 12:07:07 +00001792then LIBM=$withval
Guido van Rossum93274221997-05-09 02:42:00 +00001793 AC_MSG_RESULT(set LIBM=\"$withval\")
Guido van Rossum433c8ad1994-08-01 12:07:07 +00001794else AC_ERROR(proper usage is --with-libm=STRING)
Guido van Rossum93274221997-05-09 02:42:00 +00001795fi],
1796[AC_MSG_RESULT(default LIBM=\"$LIBM\")])
Guido van Rossum433c8ad1994-08-01 12:07:07 +00001797
1798# check for --with-libc=...
1799AC_SUBST(LIBC)
Guido van Rossum93274221997-05-09 02:42:00 +00001800AC_MSG_CHECKING(for --with-libc=STRING)
Barry Warsawc0d24d8b2000-06-29 16:12:00 +00001801AC_ARG_WITH(libc, [ --with-libc=STRING C library], [
Guido van Rossum93274221997-05-09 02:42:00 +00001802if test "$withval" = no
1803then LIBC=
1804 AC_MSG_RESULT(force LIBC empty)
1805elif test "$withval" != yes
Guido van Rossum433c8ad1994-08-01 12:07:07 +00001806then LIBC=$withval
Guido van Rossum93274221997-05-09 02:42:00 +00001807 AC_MSG_RESULT(set LIBC=\"$withval\")
Guido van Rossum433c8ad1994-08-01 12:07:07 +00001808else AC_ERROR(proper usage is --with-libc=STRING)
Guido van Rossum93274221997-05-09 02:42:00 +00001809fi],
1810[AC_MSG_RESULT(default LIBC=\"$LIBC\")])
Guido van Rossum433c8ad1994-08-01 12:07:07 +00001811
Guido van Rossumaf5b83e1995-01-04 19:02:35 +00001812# check for hypot() in math library
1813LIBS_SAVE=$LIBS
1814LIBS="$LIBS $LIBM"
Guido van Rossumf2f7eb31996-08-30 15:18:00 +00001815AC_REPLACE_FUNCS(hypot)
Guido van Rossumaf5b83e1995-01-04 19:02:35 +00001816LIBS=$LIBS_SAVE
1817
Guido van Rossumad713701997-07-10 22:42:38 +00001818# check whether malloc(0) returns NULL or not
Guido van Rossumad713701997-07-10 22:42:38 +00001819AC_MSG_CHECKING(what malloc(0) returns)
1820AC_CACHE_VAL(ac_cv_malloc_zero,
1821[AC_TRY_RUN([#include <stdio.h>
1822#ifdef HAVE_STDLIB
1823#include <stdlib.h>
1824#else
1825char *malloc(), *realloc();
1826int *free();
1827#endif
1828main() {
1829 char *p;
1830 p = malloc(0);
1831 if (p == NULL) exit(1);
1832 p = realloc(p, 0);
1833 if (p == NULL) exit(1);
1834 free(p);
1835 exit(0);
Guido van Rossum3065c942001-09-17 04:03:14 +00001836}],
1837ac_cv_malloc_zero=nonnull,
1838ac_cv_malloc_zero=null,
1839ac_cv_malloc_zero=nonnull)]) # XXX arm cross-compile?
Guido van Rossumad713701997-07-10 22:42:38 +00001840AC_MSG_RESULT($ac_cv_malloc_zero)
1841if test "$ac_cv_malloc_zero" = null
1842then
1843 AC_DEFINE(MALLOC_ZERO_RETURNS_NULL)
1844fi
1845
Guido van Rossumef2255b2000-03-10 22:30:29 +00001846# check for wchar.h
1847AC_CHECK_HEADER(wchar.h,
1848AC_DEFINE(HAVE_WCHAR_H) wchar_h="yes",
1849wchar_h="no"
1850)
1851
Martin v. Löwis0ba70cc2001-06-26 22:22:37 +00001852# determine wchar_t size
1853if test "$wchar_h" = yes
1854then
Guido van Rossum67b26592001-10-20 14:21:45 +00001855 AC_CHECK_SIZEOF(wchar_t, 4, [#include <wchar.h>])
Martin v. Löwis0ba70cc2001-06-26 22:22:37 +00001856fi
1857
1858AC_MSG_CHECKING(what type to use for unicode)
1859AC_ARG_ENABLE(unicode,
1860[ --enable-unicode[=ucs2,ucs4] Enable Unicode strings (default is yes)],,enable_unicode=yes)
1861
1862if test $enable_unicode = yes
1863then
Martin v. Löwisfd917792001-06-27 20:22:04 +00001864 # Without any arguments, Py_UNICODE defaults to two-byte mode
1865 enable_unicode="ucs2"
Martin v. Löwis0ba70cc2001-06-26 22:22:37 +00001866fi
1867
1868case "$enable_unicode" in
1869ucs2) unicode_size="2"
1870 AC_DEFINE(Py_UNICODE_SIZE,2)
1871 ;;
1872ucs4) unicode_size="4"
1873 AC_DEFINE(Py_UNICODE_SIZE,4)
1874 ;;
1875esac
1876
Martin v. Löwis339d0f72001-08-17 18:39:25 +00001877AC_SUBST(UNICODE_OBJS)
Martin v. Löwis0ba70cc2001-06-26 22:22:37 +00001878if test "$enable_unicode" = "no"
1879then
Martin v. Löwis339d0f72001-08-17 18:39:25 +00001880 UNICODE_OBJS=""
Martin v. Löwis0ba70cc2001-06-26 22:22:37 +00001881 AC_MSG_RESULT(not used)
1882else
Martin v. Löwis339d0f72001-08-17 18:39:25 +00001883 UNICODE_OBJS="Objects/unicodeobject.o Objects/unicodectype.o"
Martin v. Löwis0ba70cc2001-06-26 22:22:37 +00001884 AC_DEFINE(Py_USING_UNICODE)
1885 if test "$unicode_size" = "$ac_cv_sizeof_wchar_t"
1886 then
1887 PY_UNICODE_TYPE="wchar_t"
1888 AC_DEFINE(HAVE_USABLE_WCHAR_T)
1889 AC_DEFINE(PY_UNICODE_TYPE,wchar_t)
1890 elif test "$ac_cv_sizeof_short" = "$unicode_size"
1891 then
1892 PY_UNICODE_TYPE="unsigned short"
1893 AC_DEFINE(PY_UNICODE_TYPE,unsigned short)
1894 elif test "$ac_cv_sizeof_long" = "$unicode_size"
1895 then
1896 PY_UNICODE_TYPE="unsigned long"
1897 AC_DEFINE(PY_UNICODE_TYPE,unsigned long)
1898 else
1899 PY_UNICODE_TYPE="no type found"
1900 fi
1901 AC_MSG_RESULT($PY_UNICODE_TYPE)
1902fi
Guido van Rossumef2255b2000-03-10 22:30:29 +00001903
1904# check for endianness
1905AC_C_BIGENDIAN
1906
Vladimir Marangozov9a5a5d12000-07-12 03:02:16 +00001907# Check whether right shifting a negative integer extends the sign bit
1908# or fills with zeros (like the Cray J90, according to Tim Peters).
1909AC_MSG_CHECKING(whether right shift extends the sign bit)
Vladimir Marangozova6180282000-07-12 05:05:06 +00001910AC_CACHE_VAL(ac_cv_rshift_extends_sign, [
Vladimir Marangozov9a5a5d12000-07-12 03:02:16 +00001911AC_TRY_RUN([
1912int main()
1913{
Vladimir Marangozova6180282000-07-12 05:05:06 +00001914 exit(((-1)>>3 == -1) ? 0 : 1);
Vladimir Marangozov9a5a5d12000-07-12 03:02:16 +00001915}
Guido van Rossum3065c942001-09-17 04:03:14 +00001916],
1917ac_cv_rshift_extends_sign=yes,
1918ac_cv_rshift_extends_sign=no,
1919ac_cv_rshift_extends_sign=yes)])
Vladimir Marangozova6180282000-07-12 05:05:06 +00001920AC_MSG_RESULT($ac_cv_rshift_extends_sign)
1921if test "$ac_cv_rshift_extends_sign" = no
1922then
1923 AC_DEFINE(SIGNED_RIGHT_SHIFT_ZERO_FILLS)
1924fi
1925
Guido van Rossumcadfaec2001-01-05 14:45:49 +00001926# check for getc_unlocked and related locking functions
1927AC_MSG_CHECKING(for getc_unlocked() and friends)
1928AC_CACHE_VAL(ac_cv_have_getc_unlocked, [
1929AC_TRY_LINK([#include <stdio.h>],[
1930 FILE *f = fopen("/dev/null", "r");
1931 flockfile(f);
1932 getc_unlocked(f);
1933 funlockfile(f);
1934], ac_cv_have_getc_unlocked=yes, ac_cv_have_getc_unlocked=no)])
1935AC_MSG_RESULT($ac_cv_have_getc_unlocked)
1936if test "$ac_cv_have_getc_unlocked" = yes
1937then
1938 AC_DEFINE(HAVE_GETC_UNLOCKED)
1939fi
Vladimir Marangozov9a5a5d12000-07-12 03:02:16 +00001940
Martin v. Löwis0daad592001-09-30 21:09:59 +00001941# check for readline 4.0
1942AC_CHECK_LIB(readline, rl_pre_input_hook,
1943 AC_DEFINE(HAVE_RL_PRE_INPUT_HOOK), , -ltermcap)
1944
Guido van Rossum353ae582001-07-10 16:45:32 +00001945# check for readline 4.2
1946AC_CHECK_LIB(readline, rl_completion_matches,
1947 AC_DEFINE(HAVE_RL_COMPLETION_MATCHES), , -ltermcap)
1948
Thomas Wouterse38b2f12001-07-11 22:35:31 +00001949AC_MSG_CHECKING(for broken nice())
1950AC_CACHE_VAL(ac_cv_broken_nice, [
1951AC_TRY_RUN([
1952int main()
1953{
1954 int val1 = nice(1);
1955 if (val1 != -1 && val1 == nice(2))
1956 exit(0);
1957 exit(1);
1958}
Guido van Rossum3065c942001-09-17 04:03:14 +00001959],
1960ac_cv_broken_nice=yes,
1961ac_cv_broken_nice=no,
1962ac_cv_broken_nice=no)])
Thomas Wouterse38b2f12001-07-11 22:35:31 +00001963AC_MSG_RESULT($ac_cv_broken_nice)
1964if test "$ac_cv_broken_nice" = yes
1965then
1966 AC_DEFINE(HAVE_BROKEN_NICE)
1967fi
1968
Martin v. Löwiseb9b1032001-10-24 17:10:49 +00001969# On HP/UX 11.0, mvwdelch is a block with a return statement
1970AC_MSG_CHECKING(whether mvwdelch is an expression)
1971AC_CACHE_VAL(ac_cv_mvwdelch_is_expression,
1972AC_TRY_COMPILE([#include <curses.h>], [
1973 int rtn;
1974 rtn = mvwdelch(0,0,0);
1975], ac_cv_mvwdelch_is_expression=yes,
1976 ac_cv_mvwdelch_is_expression=no,
1977 ac_cv_mvwdelch_is_expression=yes))
1978AC_MSG_RESULT($ac_cv_mvwdelch_is_expression)
1979
1980if test "$ac_cv_mvwdelch_is_expression" = yes
1981then
1982 AC_DEFINE(MVWDELCH_IS_EXPRESSION)
1983fi
1984
1985AC_MSG_CHECKING(whether WINDOW has _flags)
1986AC_CACHE_VAL(ac_cv_window_has_flags,
1987AC_TRY_COMPILE([#include <curses.h>], [
1988 WINDOW *w;
1989 w->_flags = 0;
1990], ac_cv_window_has_flags=yes,
1991 ac_cv_window_has_flags=no,
1992 ac_cv_window_has_flags=no))
1993AC_MSG_RESULT($ac_cv_window_has_flags)
1994
1995
1996if test "$ac_cv_window_has_flags" = yes
1997then
1998 AC_DEFINE(WINDOW_HAS_FLAGS)
1999fi
2000
Guido van Rossum95713eb2000-05-18 20:53:31 +00002001# THIS MUST BE LAST, IT CAN BREAK OTHER TESTS!
2002# Add sys/socket.h to confdefs.h
2003cat >> confdefs.h <<\EOF
2004#ifdef HAVE_SYS_SOCKET_H
2005#include <sys/socket.h>
2006#endif
2007EOF
2008AC_CHECK_TYPE(socklen_t, int)
2009
Neil Schemenauerf25cf6c2001-03-04 06:39:33 +00002010# Add Python/ prefix to LIBOBJS
2011libobjs=$LIBOBJS
2012LIBOBJS=
2013for obj in $libobjs; do
2014 LIBOBJS="$LIBOBJS Python/$obj"
2015done
2016
Neil Schemenauer55f0cf32001-01-24 17:24:33 +00002017#AC_MSG_CHECKING(for Modules/Setup)
2018#if test ! -f Modules/Setup ; then
2019# if test ! -d Modules ; then
2020# mkdir Modules
2021# fi
2022# cp "$srcdir/Modules/Setup.dist" Modules/Setup
2023# AC_MSG_RESULT(creating)
2024#else
2025# AC_MSG_RESULT(already exists)
2026#fi
2027
Martin v. Löwis06f15bb2001-12-02 13:02:32 +00002028AC_SUBST(THREADHEADERS)
2029
2030for h in `(cd $srcdir;echo Python/thread_*.h)`
2031do
2032 THREADHEADERS="$THREADHEADERS \$(srcdir)/$h"
2033done
2034
Neil Schemenauer55f0cf32001-01-24 17:24:33 +00002035AC_SUBST(SRCDIRS)
Neil Schemenaueracbf9ef2001-02-27 02:15:14 +00002036SRCDIRS="Parser Grammar Objects Python Modules"
Andrew M. Kuchling8abedde2001-01-26 22:55:24 +00002037AC_MSG_CHECKING(for build directories)
Neil Schemenauer55f0cf32001-01-24 17:24:33 +00002038for dir in $SRCDIRS; do
2039 if test ! -d $dir; then
2040 mkdir $dir
Fred Drake884d3ba2000-11-02 17:52:56 +00002041 fi
Neil Schemenauer55f0cf32001-01-24 17:24:33 +00002042done
2043AC_MSG_RESULT(done)
Fred Drake036144d2000-10-26 17:09:35 +00002044
Guido van Rossum627b2d71993-12-24 10:39:16 +00002045# generate output files
Andrew M. Kuchling8abedde2001-01-26 22:55:24 +00002046AC_OUTPUT(Makefile.pre Modules/Setup.config)
Neil Schemenauer61c51152001-01-26 16:18:16 +00002047
2048echo "creating Setup"
2049if test ! -f Modules/Setup
2050then
2051 cp $srcdir/Modules/Setup.dist Modules/Setup
2052fi
2053
2054echo "creating Setup.local"
2055if test ! -f Modules/Setup.local
2056then
2057 echo "# Edit this file for local setup changes" >Modules/Setup.local
2058fi
2059
2060echo "creating Makefile"
2061$SHELL $srcdir/Modules/makesetup -c $srcdir/Modules/config.c.in \
2062 -s Modules Modules/Setup.config \
Neil Schemenauerf8b71c52001-04-21 17:41:16 +00002063 Modules/Setup.local Modules/Setup
Neil Schemenauer66252162001-02-19 04:47:42 +00002064mv config.c Modules