blob: e0dd64de3d7f9e8a33b5fd6194708442fa393fe7 [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.
Martin v. Löwis88afe662002-10-26 13:47:44 +00002
3# Set VERSION so we only need to edit in one place (i.e., here)
Fred Drake9bd44622003-07-30 17:39:48 +00004m4_define(PYTHON_VERSION, 2.4)
Martin v. Löwis88afe662002-10-26 13:47:44 +00005
Guido van Rossum76be6ed1995-01-02 18:33:54 +00006AC_REVISION($Revision$)
Martin v. Löwis97017322002-04-12 17:25:21 +00007AC_PREREQ(2.53)
Martin v. Löwis88afe662002-10-26 13:47:44 +00008AC_INIT(python, PYTHON_VERSION)
9AC_CONFIG_SRCDIR([Include/object.h])
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +000010AC_CONFIG_HEADER(pyconfig.h)
Guido van Rossum627b2d71993-12-24 10:39:16 +000011
Martin v. Löwis8316feb2003-06-14 07:48:07 +000012dnl This is for stuff that absolutely must end up in pyconfig.h.
13dnl Please use pyport.h instead, if possible.
Martin v. Löwisbddf5a52002-11-11 13:37:28 +000014AH_TOP([
15#ifndef Py_PYCONFIG_H
16#define Py_PYCONFIG_H
17])
Martin v. Löwis11437992002-04-12 09:54:03 +000018AH_BOTTOM([
Martin v. Löwis11437992002-04-12 09:54:03 +000019/* Define the macros needed if on a UnixWare 7.x system. */
20#if defined(__USLC__) && defined(__SCO_VERSION__)
21#define STRICT_SYSV_CURSES /* Don't use ncurses extensions */
22#endif
Martin v. Löwisbddf5a52002-11-11 13:37:28 +000023
24#endif /*Py_PYCONFIG_H*/
Martin v. Löwis11437992002-04-12 09:54:03 +000025])
26
Martin v. Löwis8316feb2003-06-14 07:48:07 +000027# We don't use PACKAGE_ variables, and they cause conflicts
28# with other autoconf-based packages that include Python.h
29grep -v 'define PACKAGE_' <confdefs.h >confdefs.h.new
30rm confdefs.h
31mv confdefs.h.new confdefs.h
32
Guido van Rossum642b6781997-07-19 19:35:41 +000033AC_SUBST(VERSION)
Martin v. Löwis88afe662002-10-26 13:47:44 +000034VERSION=PYTHON_VERSION
Guido van Rossum642b6781997-07-19 19:35:41 +000035
Martin v. Löwis1142de32002-03-29 16:28:31 +000036AC_SUBST(SOVERSION)
37SOVERSION=1.0
38
Martin v. Löwis6f18a3c2002-07-20 08:51:52 +000039# The later defininition of _XOPEN_SOURCE disables certain features
40# on Linux, so we need _GNU_SOURCE to re-enable them (makedev, tm_zone).
41AC_DEFINE(_GNU_SOURCE, 1, [Define on Linux to activate all library features])
42
Martin v. Löwisbcd93962003-05-03 10:32:18 +000043# The later defininition of _XOPEN_SOURCE and _POSIX_C_SOURCE disables
44# certain features on NetBSD, so we need _NETBSD_SOURCE to re-enable
45# them.
46AC_DEFINE(_NETBSD_SOURCE, 1, [Define on NetBSD to activate all library features])
47
Andrew MacIntyreabccf412003-07-02 13:53:25 +000048# The later defininition of _XOPEN_SOURCE and _POSIX_C_SOURCE disables
49# certain features on FreeBSD, so we need __BSD_VISIBLE to re-enable
50# them.
51AC_DEFINE(__BSD_VISIBLE, 1, [Define on FreeBSD to activate all library features])
52
Martin v. Löwise981a4e2002-11-11 13:26:51 +000053define_xopen_source=yes
Martin v. Löwis6f18a3c2002-07-20 08:51:52 +000054
Neil Schemenauer4edbc2a2001-03-22 00:34:03 +000055# Arguments passed to configure.
56AC_SUBST(CONFIG_ARGS)
57CONFIG_ARGS="$ac_configure_args"
58
Martin v. Löwis3e2c6322002-10-29 10:07:43 +000059dnl quadrigraphs "@<:@" and "@:>@" produce "[" and "]" in the output
Jack Jansenb6e9cad2001-08-15 01:26:28 +000060AC_ARG_ENABLE(framework,
Martin v. Löwis3e2c6322002-10-29 10:07:43 +000061 AC_HELP_STRING(--enable-framework@<:@=INSTALLDIR@:>@, Build (MacOSX|Darwin) framework),
62[
Jack Jansenb6e9cad2001-08-15 01:26:28 +000063 case $enableval in
64 yes)
65 enableval=/Library/Frameworks
Jack Jansen127e56e2001-09-11 14:41:54 +000066 esac
67 case $enableval in
68 no)
69 PYTHONFRAMEWORK=
70 PYTHONFRAMEWORKDIR=no-framework
71 PYTHONFRAMEWORKPREFIX=
72 PYTHONFRAMEWORKINSTALLDIR=
73 enable_framework=
Jack Jansenb6e9cad2001-08-15 01:26:28 +000074 ;;
75 *)
Jack Jansen127e56e2001-09-11 14:41:54 +000076 PYTHONFRAMEWORK=Python
77 PYTHONFRAMEWORKDIR=Python.framework
Jack Jansenb6e9cad2001-08-15 01:26:28 +000078 PYTHONFRAMEWORKPREFIX=$enableval
Jack Jansen127e56e2001-09-11 14:41:54 +000079 PYTHONFRAMEWORKINSTALLDIR=$PYTHONFRAMEWORKPREFIX/$PYTHONFRAMEWORKDIR
80 prefix=$PYTHONFRAMEWORKINSTALLDIR/Versions/$VERSION
Jack Jansenb6e9cad2001-08-15 01:26:28 +000081 esac
Jack Jansenb6e9cad2001-08-15 01:26:28 +000082 ],[
83 PYTHONFRAMEWORK=
Jack Jansen127e56e2001-09-11 14:41:54 +000084 PYTHONFRAMEWORKDIR=no-framework
Jack Jansenb6e9cad2001-08-15 01:26:28 +000085 PYTHONFRAMEWORKPREFIX=
86 PYTHONFRAMEWORKINSTALLDIR=
87 enable_framework=
88])
89AC_SUBST(PYTHONFRAMEWORK)
90AC_SUBST(PYTHONFRAMEWORKDIR)
91AC_SUBST(PYTHONFRAMEWORKPREFIX)
92AC_SUBST(PYTHONFRAMEWORKINSTALLDIR)
Guido van Rossum4b6b5791996-09-09 20:09:34 +000093
Jack Jansenb6e9cad2001-08-15 01:26:28 +000094##AC_ARG_WITH(dyld,
Martin v. Löwis3e2c6322002-10-29 10:07:43 +000095## AC_HELP_STRING(--with-dyld,
96## Use (OpenStep|Rhapsody) dynamic linker))
Jack Jansenb6e9cad2001-08-15 01:26:28 +000097##
Guido van Rossumb418f891996-07-30 18:06:02 +000098# Set name for machine-dependent library files
99AC_SUBST(MACHDEP)
100AC_MSG_CHECKING(MACHDEP)
101if test -z "$MACHDEP"
102then
Guido van Rossum4b6b5791996-09-09 20:09:34 +0000103 ac_sys_system=`uname -s`
Martin v. Löwis21ee4092002-09-30 16:19:48 +0000104 if test "$ac_sys_system" = "AIX" -o "$ac_sys_system" = "Monterey64" \
105 -o "$ac_sys_system" = "UnixWare" -o "$ac_sys_system" = "OpenUNIX"; then
Guido van Rossum4b6b5791996-09-09 20:09:34 +0000106 ac_sys_release=`uname -v`
Guido van Rossumb418f891996-07-30 18:06:02 +0000107 else
Guido van Rossum4b6b5791996-09-09 20:09:34 +0000108 ac_sys_release=`uname -r`
Guido van Rossumb418f891996-07-30 18:06:02 +0000109 fi
Guido van Rossum4b6b5791996-09-09 20:09:34 +0000110 ac_md_system=`echo $ac_sys_system |
111 tr -d '[/ ]' | tr '[[A-Z]]' '[[a-z]]'`
112 ac_md_release=`echo $ac_sys_release |
Guido van Rossum67b26592001-10-20 14:21:45 +0000113 tr -d '[/ ]' | sed 's/^[[A-Z]]\.//' | sed 's/\..*//'`
Guido van Rossumb97ef171997-09-28 05:44:03 +0000114 MACHDEP="$ac_md_system$ac_md_release"
Guido van Rossum4b6b5791996-09-09 20:09:34 +0000115
Guido van Rossumbcd91e01997-03-20 20:46:29 +0000116 case $MACHDEP in
Andrew M. Kuchling5a3e4cb2001-07-20 19:29:04 +0000117 cygwin*) MACHDEP="cygwin";;
Jack Jansen8a97f4a2001-12-05 23:27:32 +0000118 darwin*) MACHDEP="darwin";;
Martin v. Löwisf90ae202002-06-11 06:22:31 +0000119 atheos*) MACHDEP="atheos";;
Martin v. Löwisf3322282003-07-13 09:46:13 +0000120 irix646) MACHDEP="irix6";;
Guido van Rossumb97ef171997-09-28 05:44:03 +0000121 '') MACHDEP="unknown";;
Guido van Rossumb418f891996-07-30 18:06:02 +0000122 esac
123fi
Jack Jansen83f898c2002-12-30 22:23:40 +0000124
Martin v. Löwise981a4e2002-11-11 13:26:51 +0000125# Some systems cannot stand _XOPEN_SOURCE being defined at all; they
126# disable features if it is defined, without any means to access these
127# features as extensions. For these systems, we skip the definition of
128# _XOPEN_SOURCE. Before adding a system to the list to gain access to
129# some feature, make sure there is no alternative way to access this
130# feature. Also, when using wildcards, make sure you have verified the
131# need for not defining _XOPEN_SOURCE on all systems matching the
132# wildcard, and that the wildcard does not include future systems
133# (which may remove their limitations).
134dnl quadrigraphs "@<:@" and "@:>@" produce "[" and "]" in the output
135case $ac_sys_system/$ac_sys_release in
136 # On OpenBSD, select(2) is not available if _XOPEN_SOURCE is defined,
137 # even though select is a POSIX function. Reported by J. Ribbens.
Martin v. Löwis76bafc62003-10-03 13:47:44 +0000138 # Reconfirmed for OpenBSD 3.3 by Zachary Hamm, for 3.4 by Jason Ish.
139 OpenBSD/2.* | OpenBSD/3.@<:@01234@:>@)
Martin v. Löwise981a4e2002-11-11 13:26:51 +0000140 define_xopen_source=no;;
Martin v. Löwisa9d71422003-03-28 18:43:31 +0000141 # On Solaris 2.6, sys/wait.h is inconsistent in the usage
142 # of union __?sigval. Reported by Stuart Bishop.
143 SunOS/5.6)
144 define_xopen_source=no;;
Martin v. Löwisc2409b42003-05-11 05:53:41 +0000145 # On UnixWare 7, u_long is never defined with _XOPEN_SOURCE,
146 # but used in /usr/include/netinet/tcp.h. Reported by Tim Rice.
147 OpenUNIX/8.0.0| UnixWare/7.1.@<:@0-3@:>@)
148 define_xopen_source=no;;
149 # On OpenServer 5, u_short is never defined with _XOPEN_SOURCE,
Martin v. Löwis53e73c32003-05-05 05:13:18 +0000150 # but used in struct sockaddr.sa_family. Reported by Tim Rice.
Martin v. Löwisc2409b42003-05-11 05:53:41 +0000151 SCO_SV/3.2)
Martin v. Löwis53e73c32003-05-05 05:13:18 +0000152 define_xopen_source=no;;
Anthony Baxter6169c6b2003-10-04 07:46:23 +0000153 # On FreeBSD 4.8 and MacOS X 10.2, a bug in ncurses.h means that
154 # it craps out if _XOPEN_EXTENDED_SOURCE is defined. Apparently,
155 # this is fixed in 10.3, which identifies itself as Darwin/7.*
156 # This should hopefully be fixed in FreeBSD 4.9
157 FreeBSD/4.8* | Darwin/6* )
158 define_xopen_source=no;;
Martin v. Löwisc19c5a62003-11-18 20:00:44 +0000159 # On AIX 4, mbstate_t is defined only when _XOPEN_SOURCE == 500 but used in
160 # wcsnrtombs() and mbsnrtowcs() even if _XOPEN_SOURCE is not defined or
161 # has another value. By not (re)defining it, the defaults come in place.
162 AIX/4)
163 define_xopen_source=no;;
Martin v. Löwise981a4e2002-11-11 13:26:51 +0000164esac
165
166if test $define_xopen_source = yes
167then
Martin v. Löwis678fc1e2002-11-12 06:04:39 +0000168 AC_DEFINE(_XOPEN_SOURCE, 600,
169 Define to the level of X/Open that your system supports)
170
171 # On Tru64 Unix 4.0F, defining _XOPEN_SOURCE also requires
172 # definition of _XOPEN_SOURCE_EXTENDED and _POSIX_C_SOURCE, or else
173 # several APIs are not declared. Since this is also needed in some
174 # cases for HP-UX, we define it globally.
175
176 AC_DEFINE(_XOPEN_SOURCE_EXTENDED, 1, Define to activate Unix95-and-earlier features)
177 AC_DEFINE(_POSIX_C_SOURCE, 200112L, Define to activate features from IEEE Stds 1003.1-2001)
178
Martin v. Löwise981a4e2002-11-11 13:26:51 +0000179fi
180
Guido van Rossum91922671997-10-09 20:24:13 +0000181#
182# SGI compilers allow the specification of the both the ABI and the
183# ISA on the command line. Depending on the values of these switches,
184# different and often incompatable code will be generated.
185#
186# The SGI_ABI variable can be used to modify the CC and LDFLAGS and
187# thus supply support for various ABI/ISA combinations. The MACHDEP
188# variable is also adjusted.
189#
190AC_SUBST(SGI_ABI)
191if test ! -z "$SGI_ABI"
192then
193 CC="cc $SGI_ABI"
194 LDFLAGS="$SGI_ABI $LDFLAGS"
195 MACHDEP=`echo "${MACHDEP}${SGI_ABI}" | sed 's/ *//g'`
196fi
Guido van Rossumb418f891996-07-30 18:06:02 +0000197AC_MSG_RESULT($MACHDEP)
198
Jack Jansen83f898c2002-12-30 22:23:40 +0000199# And add extra plat-mac for darwin
200AC_SUBST(EXTRAPLATDIR)
Jack Jansen7b59b422003-03-17 15:44:10 +0000201AC_SUBST(EXTRAMACHDEPPATH)
Jack Jansen83f898c2002-12-30 22:23:40 +0000202AC_MSG_CHECKING(EXTRAPLATDIR)
203if test -z "$EXTRAPLATDIR"
204then
205 case $MACHDEP in
Jack Jansen7b59b422003-03-17 15:44:10 +0000206 darwin)
207 EXTRAPLATDIR="\$(PLATMACDIRS)"
208 EXTRAMACHDEPPATH="\$(PLATMACPATH)"
209 ;;
210 *)
211 EXTRAPLATDIR=""
212 EXTRAMACHDEPPATH=""
213 ;;
Jack Jansen83f898c2002-12-30 22:23:40 +0000214 esac
215fi
216AC_MSG_RESULT($EXTRAPLATDIR)
217
Guido van Rossum627b2d71993-12-24 10:39:16 +0000218# checks for alternative programs
Skip Montanarodecc6a42003-01-01 20:07:49 +0000219
220# compiler flags are generated in two sets, BASECFLAGS and OPT. OPT is just
221# for debug/optimization stuff. BASECFLAGS is for flags that are required
222# just to get things to compile and link. Users are free to override OPT
223# when running configure or make. The build should not break if they do.
224# BASECFLAGS should generally not be messed with, however.
225
226# XXX shouldn't some/most/all of this code be merged with the stuff later
227# on that fiddles with OPT and BASECFLAGS?
Guido van Rossum5739e7e1995-01-20 16:50:53 +0000228AC_MSG_CHECKING(for --without-gcc)
Martin v. Löwis3e2c6322002-10-29 10:07:43 +0000229AC_ARG_WITH(gcc,
230 AC_HELP_STRING(--without-gcc,never use gcc),
231[
Guido van Rossum433c8ad1994-08-01 12:07:07 +0000232 case $withval in
Guido van Rossum5739e7e1995-01-20 16:50:53 +0000233 no) CC=cc
234 without_gcc=yes;;
235 yes) CC=gcc
236 without_gcc=no;;
237 *) CC=$withval
238 without_gcc=$withval;;
Guido van Rossum55a214e1995-09-13 17:48:09 +0000239 esac], [
Guido van Rossumb418f891996-07-30 18:06:02 +0000240 case $ac_sys_system in
Neil Schemenauerb3531b82001-02-16 04:09:05 +0000241 AIX*) CC=cc_r
242 without_gcc=;;
Guido van Rossum7a5f4201999-01-12 20:30:23 +0000243 BeOS*)
Guido van Rossum7a5f4201999-01-12 20:30:23 +0000244 case $BE_HOST_CPU in
245 ppc)
Fred Drake5790be12000-10-09 17:06:13 +0000246 CC=mwcc
Guido van Rossum7a5f4201999-01-12 20:30:23 +0000247 without_gcc=yes
Skip Montanarodecc6a42003-01-01 20:07:49 +0000248 BASECFLAGS="$BASECFLAGS -export pragma"
249 OPT="$OPT -O"
Guido van Rossum7a5f4201999-01-12 20:30:23 +0000250 LDFLAGS="$LDFLAGS -nodup"
Guido van Rossum7a5f4201999-01-12 20:30:23 +0000251 ;;
252 x86)
Fred Drake5790be12000-10-09 17:06:13 +0000253 CC=gcc
Guido van Rossum7a5f4201999-01-12 20:30:23 +0000254 without_gcc=no
Skip Montanarodecc6a42003-01-01 20:07:49 +0000255 OPT="$OPT -O"
Guido van Rossum7a5f4201999-01-12 20:30:23 +0000256 ;;
257 *)
Martin v. Löwis3e2c6322002-10-29 10:07:43 +0000258 AC_MSG_ERROR([Unknown BeOS platform "$BE_HOST_CPU"])
Guido van Rossum7a5f4201999-01-12 20:30:23 +0000259 ;;
260 esac
Neil Schemenauerb3531b82001-02-16 04:09:05 +0000261 AR="\$(srcdir)/Modules/ar_beos"
262 RANLIB=:
Guido van Rossum7a5f4201999-01-12 20:30:23 +0000263 ;;
Trent Mick635f6fb2000-08-23 21:33:05 +0000264 Monterey*)
265 RANLIB=:
Martin v. Löwis130fb172001-07-19 11:00:41 +0000266 without_gcc=;;
267 *) without_gcc=no;;
Guido van Rossum55a214e1995-09-13 17:48:09 +0000268 esac])
Guido van Rossum5739e7e1995-01-20 16:50:53 +0000269AC_MSG_RESULT($without_gcc)
270
Guido van Rossum27552902001-01-23 01:52:26 +0000271AC_SUBST(CXX)
Guido van Rossum95012191999-12-16 17:50:52 +0000272AC_SUBST(MAINOBJ)
Fred Drakea1a84e72001-03-06 05:52:16 +0000273MAINOBJ=python.o
Guido van Rossum95012191999-12-16 17:50:52 +0000274AC_MSG_CHECKING(for --with-cxx=<compiler>)
Martin v. Löwis3e2c6322002-10-29 10:07:43 +0000275AC_ARG_WITH(cxx,
276 AC_HELP_STRING(--with-cxx=<compiler>, enable C++ support),
277[
Martin v. Löwis537970f2000-12-13 17:37:02 +0000278 check_cxx=no
Guido van Rossum95012191999-12-16 17:50:52 +0000279 case $withval in
280 no) CXX=
281 with_cxx=no;;
282 *) CXX=$withval
Fred Drakea1a84e72001-03-06 05:52:16 +0000283 MAINOBJ=ccpython.o
Guido van Rossum95012191999-12-16 17:50:52 +0000284 with_cxx=$withval;;
285 esac], [
286 with_cxx=no
Martin v. Löwis537970f2000-12-13 17:37:02 +0000287 check_cxx=yes
Guido van Rossum95012191999-12-16 17:50:52 +0000288])
289AC_MSG_RESULT($with_cxx)
Martin v. Löwis537970f2000-12-13 17:37:02 +0000290
Michael W. Hudson54241132001-12-07 15:38:26 +0000291if test "$with_cxx" = "yes"
292then
Martin v. Löwis3e2c6322002-10-29 10:07:43 +0000293 AC_MSG_ERROR([must supply a compiler when using --with-cxx])
Michael W. Hudson54241132001-12-07 15:38:26 +0000294fi
295
Martin v. Löwis537970f2000-12-13 17:37:02 +0000296dnl The following fragment works similar to AC_PROG_CXX.
297dnl It does not fail if CXX is not found, and it is not executed if
Martin v. Löwisa5f73f92001-10-15 08:06:29 +0000298dnl --without-cxx was given.
Martin v. Löwis537970f2000-12-13 17:37:02 +0000299dnl Finally, it does not test whether CXX is g++.
300
Martin v. Löwisa5f73f92001-10-15 08:06:29 +0000301dnl Autoconf 2.5x does not have AC_PROG_CXX_WORKS anymore
302ifdef([AC_PROG_CXX_WORKS],[],
303 [AC_DEFUN([AC_PROG_CXX_WORKS],
304 [AC_LANG_PUSH(C++)dnl
305 _AC_COMPILER_EXEEXT
306 AC_LANG_POP()
307 ]
308)])
309
Martin v. Löwis537970f2000-12-13 17:37:02 +0000310if test "$check_cxx" = "yes"
311then
312 AC_CHECK_PROGS(CXX, $CCC c++ g++ gcc CC cxx cc++ cl, notfound)
313 if test "$CXX" = "notfound"
314 then
315 CXX=
316 else
317 AC_PROG_CXX_WORKS
318 fi
319fi
320
Guido van Rossum03ad99f1995-03-09 14:09:54 +0000321# If the user switches compilers, we can't believe the cache
322if test ! -z "$ac_cv_prog_CC" -a ! -z "$CC" -a "$CC" != "$ac_cv_prog_CC"
323then
Martin v. Löwis3e2c6322002-10-29 10:07:43 +0000324 AC_MSG_ERROR([cached CC is different -- throw away $cache_file
325(it is also a good idea to do 'make clean' before compiling)])
Guido van Rossum03ad99f1995-03-09 14:09:54 +0000326fi
327
Guido van Rossum627b2d71993-12-24 10:39:16 +0000328AC_PROG_CC
Martin v. Löwis1d5ecb72001-08-09 10:29:44 +0000329
330# checks for UNIX variants that set C preprocessor variables
331AC_AIX
332AC_MINIX
333
Martin v. Löwis779ffc02002-12-02 22:17:01 +0000334# Check for unsupported systems
335case $ac_sys_system/$ac_sys_release in
336SunOS/4*|DYNIX/*|dgux*/*|IRIX/4*|Linux*/1*)
337 echo This system \($ac_sys_system/$ac_sys_release\) is no longer supported.
338 echo See README for details.
339 exit 1;;
340esac
341
342if test "$MINIX" = yes; then
343 echo This system \(MINIX\) is no longer supported.
344 echo Read README for details.
345 exit 1
346fi
347
Neil Schemenauer55f0cf32001-01-24 17:24:33 +0000348AC_EXEEXT
Neil Schemenauer3ae1d0a2001-01-27 06:54:42 +0000349AC_MSG_CHECKING(for --with-suffix)
Martin v. Löwis3e2c6322002-10-29 10:07:43 +0000350AC_ARG_WITH(suffix,
351 AC_HELP_STRING(--with-suffix=.exe, set executable suffix),
352[
Neil Schemenauer3ae1d0a2001-01-27 06:54:42 +0000353 case $withval in
354 no) EXEEXT=;;
355 yes) EXEEXT=.exe;;
356 *) EXEEXT=$withval;;
357 esac])
358AC_MSG_RESULT($EXEEXT)
Jack Jansen1999ef42001-12-06 21:47:20 +0000359
Jack Jansen9a66b6d2001-08-08 13:56:14 +0000360# Test whether we're running on a non-case-sensitive system, in which
361# case we give a warning if no ext is given
Jack Jansen1999ef42001-12-06 21:47:20 +0000362AC_SUBST(BUILDEXEEXT)
363AC_MSG_CHECKING(for case-insensitive build directory)
Jack Jansen3c2c4332002-11-06 13:33:32 +0000364if test ! -d CaseSensitiveTestDir; then
365mkdir CaseSensitiveTestDir
366fi
367
368if test -d casesensitivetestdir
Jack Jansen9a66b6d2001-08-08 13:56:14 +0000369then
Jack Jansen1999ef42001-12-06 21:47:20 +0000370 AC_MSG_RESULT(yes)
371 BUILDEXEEXT=.exe
372else
373 AC_MSG_RESULT(no)
Jack Jansendd19cf82001-12-06 22:36:17 +0000374 BUILDEXEEXT=$EXEEXT
Jack Jansen9a66b6d2001-08-08 13:56:14 +0000375fi
Jack Jansen3c2c4332002-11-06 13:33:32 +0000376rmdir CaseSensitiveTestDir
Guido van Rossumfb842551997-08-06 23:42:07 +0000377
Guido van Rossumdd997f71998-10-07 19:58:26 +0000378case $MACHDEP in
379bsdos*)
380 case $CC in
381 gcc) CC="$CC -D_HAVE_BSDI";;
382 esac;;
383esac
384
Guido van Rossum84561611997-08-21 00:08:11 +0000385case $ac_sys_system in
386hp*|HP*)
387 case $CC in
Guido van Rossumcd5ff9f2000-09-22 16:15:54 +0000388 cc|*/cc) CC="$CC -Ae";;
Guido van Rossum84561611997-08-21 00:08:11 +0000389 esac;;
Trent Mick635f6fb2000-08-23 21:33:05 +0000390Monterey*)
391 case $CC in
392 cc) CC="$CC -Wl,-Bexport";;
393 esac;;
Martin v. Löwise8964d42001-03-06 12:09:07 +0000394SunOS*)
395 # Some functions have a prototype only with that define, e.g. confstr
Martin v. Löwisc45929e2002-04-06 10:10:49 +0000396 AC_DEFINE(__EXTENSIONS__, 1, [Defined on Solaris to see additional function prototypes.])
Martin v. Löwise8964d42001-03-06 12:09:07 +0000397 ;;
Guido van Rossum84561611997-08-21 00:08:11 +0000398esac
399
Martin v. Löwise8964d42001-03-06 12:09:07 +0000400
Neil Schemenauer61c51152001-01-26 16:18:16 +0000401AC_SUBST(LIBRARY)
402AC_MSG_CHECKING(LIBRARY)
403if test -z "$LIBRARY"
404then
405 LIBRARY='libpython$(VERSION).a'
406fi
407AC_MSG_RESULT($LIBRARY)
408
Guido van Rossum54ecc3d1999-01-27 17:53:11 +0000409# LDLIBRARY is the name of the library to link against (as opposed to the
Jack Jansenb6e9cad2001-08-15 01:26:28 +0000410# name of the library into which to insert object files). BLDLIBRARY is also
411# the library to link against, usually. On Mac OS X frameworks, BLDLIBRARY
412# is blank as the main program is not linked directly against LDLIBRARY.
413# LDLIBRARYDIR is the path to LDLIBRARY, which is made in a subdirectory. On
414# systems without shared libraries, LDLIBRARY is the same as LIBRARY
415# (defined in the Makefiles). On Cygwin LDLIBRARY is the import library,
416# DLLLIBRARY is the shared (i.e., DLL) library.
417#
Martin v. Löwis1142de32002-03-29 16:28:31 +0000418# RUNSHARED is used to run shared python without installed libraries
419#
420# INSTSONAME is the name of the shared library that will be use to install
421# on the system - some systems like version suffix, others don't
Guido van Rossum54ecc3d1999-01-27 17:53:11 +0000422AC_SUBST(LDLIBRARY)
Guido van Rossum27552902001-01-23 01:52:26 +0000423AC_SUBST(DLLLIBRARY)
Jack Jansenb6e9cad2001-08-15 01:26:28 +0000424AC_SUBST(BLDLIBRARY)
425AC_SUBST(LDLIBRARYDIR)
Martin v. Löwis1142de32002-03-29 16:28:31 +0000426AC_SUBST(INSTSONAME)
427AC_SUBST(RUNSHARED)
Neil Schemenauer61c51152001-01-26 16:18:16 +0000428LDLIBRARY="$LIBRARY"
Jack Jansenb6e9cad2001-08-15 01:26:28 +0000429BLDLIBRARY='$(LDLIBRARY)'
Martin v. Löwis09bdf722002-05-08 08:51:29 +0000430INSTSONAME='$(LDLIBRARY)'
Guido van Rossum27552902001-01-23 01:52:26 +0000431DLLLIBRARY=''
Jack Jansenb6e9cad2001-08-15 01:26:28 +0000432LDLIBRARYDIR=''
Martin v. Löwis1142de32002-03-29 16:28:31 +0000433RUNSHARED=''
Guido van Rossum54ecc3d1999-01-27 17:53:11 +0000434
Guido van Rossumfb842551997-08-06 23:42:07 +0000435# LINKCC is the command that links the python executable -- default is $(CC).
Martin v. Löwisb7da67a2001-10-18 15:35:38 +0000436# If CXX is set, and if it is needed to link a main function that was
437# compiled with CXX, LINKCC is CXX instead. Always using CXX is undesirable:
438# python might then depend on the C++ runtime
Fred Drake5790be12000-10-09 17:06:13 +0000439# This is altered for AIX in order to build the export list before
Guido van Rossumec95c7b1998-08-04 17:59:56 +0000440# linking.
Guido van Rossumfb842551997-08-06 23:42:07 +0000441AC_SUBST(LINKCC)
442AC_MSG_CHECKING(LINKCC)
443if test -z "$LINKCC"
444then
Martin v. Löwisb7da67a2001-10-18 15:35:38 +0000445 if test -z "$CXX"; then
446 LINKCC="\$(PURIFY) \$(CC)"
447 else
Martin v. Löwis1931ca72002-06-01 21:39:58 +0000448 echo 'void foo();int main(){foo();}void foo(){}' > conftest.$ac_ext
Martin v. Löwisb7da67a2001-10-18 15:35:38 +0000449 $CXX -c conftest.$ac_ext 2>&5
450 if $CC -o conftest$ac_exeext conftest.$ac_objext 2>&5 \
451 && test -s conftest$ac_exeext && ./conftest$ac_exeext
452 then
453 LINKCC="\$(PURIFY) \$(CC)"
454 else
455 LINKCC="\$(PURIFY) \$(CXX)"
456 fi
457 rm -fr conftest*
458 fi
Guido van Rossumfb842551997-08-06 23:42:07 +0000459 case $ac_sys_system in
460 AIX*)
Neal Norwitz0b27ff92003-03-31 15:53:49 +0000461 exp_extra="\"\""
462 if test $ac_sys_release -ge 5 -o \
463 $ac_sys_release -eq 4 -a `uname -r` -ge 2 ; then
464 exp_extra="."
465 fi
466 LINKCC="\$(srcdir)/Modules/makexp_aix Modules/python.exp $exp_extra \$(LIBRARY); $LINKCC";;
Guido van Rossum3c4bb801997-12-18 23:55:32 +0000467 dgux*)
Martin v. Löwis4e732dc2002-03-19 15:15:32 +0000468 LINKCC="LD_RUN_PATH=$libdir $LINKCC";;
Trent Mick635f6fb2000-08-23 21:33:05 +0000469 Monterey64*)
Martin v. Löwis4e732dc2002-03-19 15:15:32 +0000470 LINKCC="$LINKCC -L/usr/lib/ia64l64";;
Guido van Rossumfb842551997-08-06 23:42:07 +0000471 esac
472fi
473AC_MSG_RESULT($LINKCC)
474
Martin v. Löwis1142de32002-03-29 16:28:31 +0000475AC_MSG_CHECKING(for --enable-shared)
476AC_ARG_ENABLE(shared,
Martin v. Löwis3e2c6322002-10-29 10:07:43 +0000477 AC_HELP_STRING(--enable-shared, disable/enable building shared python library))
Guido van Rossum54ecc3d1999-01-27 17:53:11 +0000478
Martin v. Löwis1142de32002-03-29 16:28:31 +0000479if test -z "$enable_shared"
480then
Martin v. Löwisb51033d2002-05-03 05:53:15 +0000481 case $ac_sys_system in
Martin v. Löwisf90ae202002-06-11 06:22:31 +0000482 CYGWIN* | atheos*)
Martin v. Löwisb51033d2002-05-03 05:53:15 +0000483 enable_shared="yes";;
484 *)
485 enable_shared="no";;
486 esac
Martin v. Löwis1142de32002-03-29 16:28:31 +0000487fi
488AC_MSG_RESULT($enable_shared)
489
490
491AC_MSG_CHECKING(LDLIBRARY)
Jack Jansenb6e9cad2001-08-15 01:26:28 +0000492
Guido van Rossumb8552162001-09-05 14:58:11 +0000493# MacOSX framework builds need more magic. LDLIBRARY is the dynamic
494# library that we build, but we do not want to link against it (we
495# will find it with a -framework option). For this reason there is an
496# extra variable BLDLIBRARY against which Python and the extension
497# modules are linked, BLDLIBRARY. This is normally the same as
498# LDLIBRARY, but empty for MacOSX framework builds.
Jack Jansenb6e9cad2001-08-15 01:26:28 +0000499if test "$enable_framework"
500then
501 LDLIBRARY='$(PYTHONFRAMEWORKDIR)/Versions/$(VERSION)/$(PYTHONFRAMEWORK)'
Jack Jansen66b84832003-07-04 12:14:39 +0000502 RUNSHARED=DYLD_FRAMEWORK_PATH="`pwd`:$DYLD_FRAMEWORK_PATH"
Jack Jansenb6e9cad2001-08-15 01:26:28 +0000503 BLDLIBRARY=''
504else
505 BLDLIBRARY='$(LDLIBRARY)'
506fi
507
Martin v. Löwis1142de32002-03-29 16:28:31 +0000508# Other platforms follow
509if test $enable_shared = "yes"; then
Mark Hammond8235ea12002-07-19 06:55:41 +0000510 AC_DEFINE(Py_ENABLE_SHARED, 1, [Defined if Python is built as a shared library.])
Martin v. Löwis1142de32002-03-29 16:28:31 +0000511 case $ac_sys_system in
512 BeOS*)
513 LDLIBRARY='libpython$(VERSION).so'
514 ;;
515 CYGWIN*)
516 LDLIBRARY='libpython$(VERSION).dll.a'
517 DLLLIBRARY='libpython$(VERSION).dll'
518 ;;
519 SunOS*)
520 LDLIBRARY='libpython$(VERSION).so'
Martin v. Löwisd141a8c2003-06-14 15:20:28 +0000521 BLDLIBRARY='-Wl,-R,$(LIBDIR) -L. -lpython$(VERSION)'
Martin v. Löwisfc9b75f2003-08-09 09:06:52 +0000522 RUNSHARED=LD_LIBRARY_PATH=`pwd`:${LD_LIBRARY_PATH}
Martin v. Löwis2389c412003-10-31 15:42:07 +0000523 INSTSONAME="$LDLIBRARY".$SOVERSION
Martin v. Löwis1142de32002-03-29 16:28:31 +0000524 ;;
Martin v. Löwis96ce8052003-05-31 07:58:45 +0000525 Linux*|GNU*|NetBSD*)
Martin v. Löwis1142de32002-03-29 16:28:31 +0000526 LDLIBRARY='libpython$(VERSION).so'
527 BLDLIBRARY='-L. -lpython$(VERSION)'
Martin v. Löwisfc9b75f2003-08-09 09:06:52 +0000528 RUNSHARED=LD_LIBRARY_PATH=`pwd`:${LD_LIBRARY_PATH}
Martin v. Löwis1142de32002-03-29 16:28:31 +0000529 INSTSONAME="$LDLIBRARY".$SOVERSION
530 ;;
531 hp*|HP*)
532 LDLIBRARY='libpython$(VERSION).sl'
533 BLDLIBRARY='-Wl,+b,$(LIBDIR) -L. -lpython$(VERSION)'
Martin v. Löwisfc9b75f2003-08-09 09:06:52 +0000534 RUNSHARED=SHLIB_PATH=`pwd`:${SHLIB_PATH}
Martin v. Löwis1142de32002-03-29 16:28:31 +0000535 ;;
536 OSF*)
537 LDLIBRARY='libpython$(VERSION).so'
538 BLDLIBRARY='-rpath $(LIBDIR) -L. -lpython$(VERSION)'
Martin v. Löwisfc9b75f2003-08-09 09:06:52 +0000539 RUNSHARED=LD_LIBRARY_PATH=`pwd`:${LD_LIBRARY_PATH}
Martin v. Löwis1142de32002-03-29 16:28:31 +0000540 ;;
Martin v. Löwisf90ae202002-06-11 06:22:31 +0000541 atheos*)
542 LDLIBRARY='libpython$(VERSION).so'
543 BLDLIBRARY='-L. -lpython$(VERSION)'
544 RUNSHARED=DLL_PATH=`pwd`:${DLL_PATH:-/atheos/sys/libs:/atheos/autolnk/lib}
545 ;;
Martin v. Löwis1142de32002-03-29 16:28:31 +0000546 esac
547 # DG/UX requires some fancy ld contortions to produce a .so from an .a
548 case $MACHDEP in
549 dguxR4)
550 LDLIBRARY='libpython$(VERSION).so'
Skip Montanarodecc6a42003-01-01 20:07:49 +0000551 BASECFLAGS="$BASECFLAGS -pic"
Martin v. Löwis1142de32002-03-29 16:28:31 +0000552 ;;
553 esac
Jason Tishler30765592003-09-04 11:04:06 +0000554else # shared is disabled
555 case $ac_sys_system in
556 CYGWIN*)
557 BLDLIBRARY='$(LIBRARY)'
558 LDLIBRARY='libpython$(VERSION).dll.a'
559 ;;
560 esac
Martin v. Löwis1142de32002-03-29 16:28:31 +0000561fi
562
Guido van Rossum54ecc3d1999-01-27 17:53:11 +0000563AC_MSG_RESULT($LDLIBRARY)
564
Guido van Rossum627b2d71993-12-24 10:39:16 +0000565AC_PROG_RANLIB
Guido van Rossum433c8ad1994-08-01 12:07:07 +0000566AC_SUBST(AR)
Guido van Rossum76be6ed1995-01-02 18:33:54 +0000567AC_CHECK_PROGS(AR, ar aal, ar)
Neil Schemenauera42c8272001-03-31 00:01:55 +0000568
569case $MACHDEP in
Neil Schemenaueraf5567f2001-10-21 22:32:04 +0000570bsdos*|hp*|HP*)
571 # install -d does not work on BSDI or HP-UX
Neil Schemenauera42c8272001-03-31 00:01:55 +0000572 if test -z "$INSTALL"
573 then
574 INSTALL="${srcdir}/install-sh -c"
575 fi
576esac
Neil Schemenauer55f0cf32001-01-24 17:24:33 +0000577AC_PROG_INSTALL
Guido van Rossumb418f891996-07-30 18:06:02 +0000578
Guido van Rossumec95c7b1998-08-04 17:59:56 +0000579# Not every filesystem supports hard links
580AC_SUBST(LN)
581if test -z "$LN" ; then
582 case $ac_sys_system in
583 BeOS*) LN="ln -s";;
Guido van Rossumaef734b2001-01-10 21:09:12 +0000584 CYGWIN*) LN="ln -s";;
Martin v. Löwisf90ae202002-06-11 06:22:31 +0000585 atheos*) LN="ln -s";;
Guido van Rossumec95c7b1998-08-04 17:59:56 +0000586 *) LN=ln;;
587 esac
588fi
589
Fred Drake9f715822001-07-11 06:27:00 +0000590# Check for --with-pydebug
591AC_MSG_CHECKING(for --with-pydebug)
592AC_ARG_WITH(pydebug,
Martin v. Löwis3e2c6322002-10-29 10:07:43 +0000593 AC_HELP_STRING(--with-pydebug, build with Py_DEBUG defined),
594[
Fred Drake9f715822001-07-11 06:27:00 +0000595if test "$withval" != no
Martin v. Löwisc45929e2002-04-06 10:10:49 +0000596then
597 AC_DEFINE(Py_DEBUG, 1,
598 [Define if you want to build an interpreter with many run-time checks.])
599 AC_MSG_RESULT(yes);
600 Py_DEBUG='true'
Fred Drake9f715822001-07-11 06:27:00 +0000601else AC_MSG_RESULT(no); Py_DEBUG='false'
602fi],
603[AC_MSG_RESULT(no)])
604
Skip Montanarodecc6a42003-01-01 20:07:49 +0000605# XXX Shouldn't the code above that fiddles with BASECFLAGS and OPT be
606# merged with this chunk of code?
607
Neil Schemenauer55f0cf32001-01-24 17:24:33 +0000608# Optimizer/debugger flags
Skip Montanarodecc6a42003-01-01 20:07:49 +0000609# ------------------------
610# (The following bit of code is complicated enough - please keep things
611# indented properly. Just pretend you're editing Python code. ;-)
612
613# There are two parallel sets of case statements below, one that checks to
614# see if OPT was set and one that does BASECFLAGS setting based upon
615# compiler and platform. BASECFLAGS tweaks need to be made even if the
616# user set OPT.
617
618# tweak OPT based on compiler and platform, only if the user didn't set
619# it on the command line
Guido van Rossumb418f891996-07-30 18:06:02 +0000620AC_SUBST(OPT)
Guido van Rossum4e8af441994-08-19 15:33:54 +0000621if test -z "$OPT"
Guido van Rossumb418f891996-07-30 18:06:02 +0000622then
Skip Montanarodecc6a42003-01-01 20:07:49 +0000623 case $GCC in
624 yes)
625 case $ac_cv_prog_cc_g in
Guido van Rossum2242f2f2001-04-11 20:58:20 +0000626 yes)
Fred Drake9f715822001-07-11 06:27:00 +0000627 if test "$Py_DEBUG" = 'true' ; then
628 # Optimization messes up debuggers, so turn it off for
629 # debug builds.
630 OPT="-g -Wall -Wstrict-prototypes"
631 else
632 OPT="-g -O3 -Wall -Wstrict-prototypes"
Skip Montanarodecc6a42003-01-01 20:07:49 +0000633 fi
634 ;;
Guido van Rossum2242f2f2001-04-11 20:58:20 +0000635 *)
Skip Montanarodecc6a42003-01-01 20:07:49 +0000636 OPT="-O3 -Wall -Wstrict-prototypes"
637 ;;
Fred Drake9f715822001-07-11 06:27:00 +0000638 esac
Martin v. Löwis21ee4092002-09-30 16:19:48 +0000639 case $ac_sys_system in
Skip Montanarodecc6a42003-01-01 20:07:49 +0000640 SCO_SV*) OPT="$OPT -m486 -DSCO5"
641 ;;
642 esac
Fred Drake9f715822001-07-11 06:27:00 +0000643 ;;
Skip Montanarodecc6a42003-01-01 20:07:49 +0000644
Guido van Rossum2242f2f2001-04-11 20:58:20 +0000645 *)
Skip Montanarodecc6a42003-01-01 20:07:49 +0000646 OPT="-O"
647 ;;
Guido van Rossum2242f2f2001-04-11 20:58:20 +0000648 esac
Skip Montanarodecc6a42003-01-01 20:07:49 +0000649
650 # The current (beta) Monterey compiler dies with optimizations
651 # XXX what is Monterey? Does it still die w/ -O? Can we get rid of this?
Jack Jansenca06bc62001-08-03 15:32:23 +0000652 case $ac_sys_system in
Skip Montanarodecc6a42003-01-01 20:07:49 +0000653 Monterey*)
654 OPT=""
655 ;;
Jack Jansenca06bc62001-08-03 15:32:23 +0000656 esac
Skip Montanarodecc6a42003-01-01 20:07:49 +0000657
Guido van Rossum4e8af441994-08-19 15:33:54 +0000658fi
Guido van Rossum627b2d71993-12-24 10:39:16 +0000659
Skip Montanarodecc6a42003-01-01 20:07:49 +0000660AC_SUBST(BASECFLAGS)
661# tweak BASECFLAGS based on compiler and platform
662case $GCC in
663yes)
Martin v. Löwis70fedcd2003-07-07 21:26:19 +0000664 # Python violates C99 rules, by casting between incompatible
665 # pointer types. GCC may generate bad code as a result of that,
666 # so use -fno-strict-aliasing if supported.
667 AC_MSG_CHECKING(whether $CC accepts -fno-strict-aliasing)
668 ac_save_cc="$CC"
669 CC="$CC -fno-strict-aliasing"
670 AC_TRY_RUN([int main() { return 0; }],
671 ac_cv_no_strict_aliasing_ok=yes,
672 ac_cv_no_strict_aliasing_ok=no,
673 ac_cv_no_strict_aliasing_ok=no)
674 CC="$ac_save_cc"
675 AC_MSG_RESULT($ac_cv_no_strict_aliasing_ok)
676 if test $ac_cv_no_strict_aliasing_ok = yes
677 then
678 BASECFLAGS="$BASECFLAGS -fno-strict-aliasing"
679 fi
Skip Montanarodecc6a42003-01-01 20:07:49 +0000680 case $ac_sys_system in
681 SCO_SV*)
682 BASECFLAGS="$BASECFLAGS -m486 -DSCO5"
683 ;;
684 # is there any other compiler on Darwin besides gcc?
685 Darwin*)
Jack Jansene0040412003-07-23 22:17:28 +0000686 BASECFLAGS="$BASECFLAGS -Wno-long-double -no-cpp-precomp -mno-fused-madd"
Skip Montanarodecc6a42003-01-01 20:07:49 +0000687 ;;
688 esac
689 ;;
690
691*)
692 case $ac_sys_system in
693 OpenUNIX*|UnixWare*)
694 BASECFLAGS="$BASECFLAGS -K pentium,host,inline,loop_unroll,alloca "
695 ;;
Neal Norwitzb44f1652003-05-26 14:11:55 +0000696 OSF*)
697 BASECFLAGS="$BASECFLAGS -ieee -std"
698 ;;
Skip Montanarodecc6a42003-01-01 20:07:49 +0000699 SCO_SV*)
700 BASECFLAGS="$BASECFLAGS -belf -Ki486 -DSCO5"
701 ;;
702 esac
703 ;;
704esac
705
Fred Drakee1ceaa02001-12-04 20:55:47 +0000706if test "$Py_DEBUG" = 'true'; then
707 :
708else
709 OPT="-DNDEBUG $OPT"
710fi
711
Guido van Rossum6f2260e1996-09-09 16:21:03 +0000712if test "$ac_arch_flags"
Guido van Rossumc5a39031996-07-31 17:35:03 +0000713then
Skip Montanarodecc6a42003-01-01 20:07:49 +0000714 BASECFLAGS="$BASECFLAGS $ac_arch_flags"
Guido van Rossumc5a39031996-07-31 17:35:03 +0000715fi
Guido van Rossum5739e7e1995-01-20 16:50:53 +0000716
Guido van Rossum91922671997-10-09 20:24:13 +0000717AC_MSG_CHECKING(whether $CC accepts -OPT:Olimit=0)
718AC_CACHE_VAL(ac_cv_opt_olimit_ok,
719[ac_save_cc="$CC"
720CC="$CC -OPT:Olimit=0"
721AC_TRY_RUN([int main() { return 0; }],
722 ac_cv_opt_olimit_ok=yes,
Guido van Rossum3065c942001-09-17 04:03:14 +0000723 ac_cv_opt_olimit_ok=no,
Guido van Rossum91922671997-10-09 20:24:13 +0000724 ac_cv_opt_olimit_ok=no)
725CC="$ac_save_cc"])
726AC_MSG_RESULT($ac_cv_opt_olimit_ok)
Guido van Rossum2efa34b1997-10-23 17:43:11 +0000727if test $ac_cv_opt_olimit_ok = yes; then
Guido van Rossum5839e582000-10-09 19:52:35 +0000728 case $ac_sys_system in
Skip Montanarodecc6a42003-01-01 20:07:49 +0000729 # XXX is this branch needed? On MacOSX 10.2.2 the result of the
730 # olimit_ok test is "no". Is it "yes" in some other Darwin-esque
731 # environment?
732 Darwin*)
733 ;;
734 *)
735 BASECFLAGS="$BASECFLAGS -OPT:Olimit=0"
736 ;;
Guido van Rossum5839e582000-10-09 19:52:35 +0000737 esac
Guido van Rossumf8678121998-07-07 21:05:09 +0000738else
739 AC_MSG_CHECKING(whether $CC accepts -Olimit 1500)
740 AC_CACHE_VAL(ac_cv_olimit_ok,
741 [ac_save_cc="$CC"
742 CC="$CC -Olimit 1500"
743 AC_TRY_RUN([int main() { return 0; }],
744 ac_cv_olimit_ok=yes,
Guido van Rossum3065c942001-09-17 04:03:14 +0000745 ac_cv_olimit_ok=no,
Guido van Rossumf8678121998-07-07 21:05:09 +0000746 ac_cv_olimit_ok=no)
747 CC="$ac_save_cc"])
748 AC_MSG_RESULT($ac_cv_olimit_ok)
749 if test $ac_cv_olimit_ok = yes; then
Skip Montanarodecc6a42003-01-01 20:07:49 +0000750 BASECFLAGS="$BASECFLAGS -Olimit 1500"
Guido van Rossumf8678121998-07-07 21:05:09 +0000751 fi
Guido van Rossum201afe51997-05-14 21:14:44 +0000752fi
Guido van Rossumf8678121998-07-07 21:05:09 +0000753
Martin v. Löwisa5f73f92001-10-15 08:06:29 +0000754# On some compilers, pthreads are available without further options
755# (e.g. MacOS X). On some of these systems, the compiler will not
756# complain if unaccepted options are passed (e.g. gcc on Mac OS X).
757# So we have to see first whether pthreads are available without
758# options before we can check whether -Kpthread improves anything.
759AC_MSG_CHECKING(whether pthreads are available without options)
760AC_CACHE_VAL(ac_cv_pthread_is_default,
761[AC_TRY_RUN([
762#include <pthread.h>
763
764void* routine(void* p){return NULL;}
765
766int main(){
767 pthread_t p;
768 if(pthread_create(&p,NULL,routine,NULL)!=0)
769 return 1;
Jack Jansen4f8d0542002-03-08 13:43:01 +0000770 (void)pthread_detach(p);
Martin v. Löwisa5f73f92001-10-15 08:06:29 +0000771 return 0;
772}
773],
Skip Montanarod8d39a02003-07-10 20:44:10 +0000774[
775 ac_cv_pthread_is_default=yes
776 ac_cv_kthread=no
777 ac_cv_pthread=no
778],
Martin v. Löwisa5f73f92001-10-15 08:06:29 +0000779 ac_cv_pthread_is_default=no,
780 ac_cv_pthread_is_default=no)
781])
782AC_MSG_RESULT($ac_cv_pthread_is_default)
783
784
785if test $ac_cv_pthread_is_default = yes
786then
787 ac_cv_kpthread=no
788else
Martin v. Löwis130fb172001-07-19 11:00:41 +0000789# -Kpthread, if available, provides the right #defines
790# and linker options to make pthread_create available
Martin v. Löwis260aecc2001-10-07 08:14:41 +0000791# Some compilers won't report that they do not support -Kpthread,
792# so we need to run a program to see whether it really made the
793# function available.
Martin v. Löwis130fb172001-07-19 11:00:41 +0000794AC_MSG_CHECKING(whether $CC accepts -Kpthread)
795AC_CACHE_VAL(ac_cv_kpthread,
796[ac_save_cc="$CC"
797CC="$CC -Kpthread"
Martin v. Löwis260aecc2001-10-07 08:14:41 +0000798AC_TRY_RUN([
799#include <pthread.h>
800
801void* routine(void* p){return NULL;}
802
803int main(){
804 pthread_t p;
805 if(pthread_create(&p,NULL,routine,NULL)!=0)
806 return 1;
Jack Jansen4f8d0542002-03-08 13:43:01 +0000807 (void)pthread_detach(p);
Martin v. Löwis260aecc2001-10-07 08:14:41 +0000808 return 0;
809}
810],
Martin v. Löwis130fb172001-07-19 11:00:41 +0000811 ac_cv_kpthread=yes,
Martin v. Löwis260aecc2001-10-07 08:14:41 +0000812 ac_cv_kpthread=no,
Martin v. Löwis130fb172001-07-19 11:00:41 +0000813 ac_cv_kpthread=no)
814CC="$ac_save_cc"])
Martin v. Löwis130fb172001-07-19 11:00:41 +0000815AC_MSG_RESULT($ac_cv_kpthread)
Martin v. Löwisa5f73f92001-10-15 08:06:29 +0000816fi
Martin v. Löwis130fb172001-07-19 11:00:41 +0000817
Skip Montanarod8d39a02003-07-10 20:44:10 +0000818if test $ac_cv_kpthread = no -a $ac_cv_pthread_is_default = no
Martin v. Löwis5f433f02003-05-05 05:05:30 +0000819then
820# -Kthread, if available, provides the right #defines
821# and linker options to make pthread_create available
822# Some compilers won't report that they do not support -Kthread,
823# so we need to run a program to see whether it really made the
824# function available.
825AC_MSG_CHECKING(whether $CC accepts -Kthread)
826AC_CACHE_VAL(ac_cv_kthread,
827[ac_save_cc="$CC"
828CC="$CC -Kthread"
829AC_TRY_RUN([
830#include <pthread.h>
831
832void* routine(void* p){return NULL;}
833
834int main(){
835 pthread_t p;
836 if(pthread_create(&p,NULL,routine,NULL)!=0)
837 return 1;
838 (void)pthread_detach(p);
839 return 0;
840}
841],
842 ac_cv_kthread=yes,
843 ac_cv_kthread=no,
844 ac_cv_kthread=no)
845CC="$ac_save_cc"])
846AC_MSG_RESULT($ac_cv_kthread)
847fi
848
Skip Montanarod8d39a02003-07-10 20:44:10 +0000849if test $ac_cv_kthread = no -a $ac_cv_pthread_is_default = no
Martin v. Löwis4ee6eef2003-05-26 05:37:51 +0000850then
851# -pthread, if available, provides the right #defines
852# and linker options to make pthread_create available
853# Some compilers won't report that they do not support -pthread,
854# so we need to run a program to see whether it really made the
855# function available.
856AC_MSG_CHECKING(whether $CC accepts -pthread)
857AC_CACHE_VAL(ac_cv_thread,
858[ac_save_cc="$CC"
859CC="$CC -pthread"
860AC_TRY_RUN([
861#include <pthread.h>
862
863void* routine(void* p){return NULL;}
864
865int main(){
866 pthread_t p;
867 if(pthread_create(&p,NULL,routine,NULL)!=0)
868 return 1;
869 (void)pthread_detach(p);
870 return 0;
871}
872],
873 ac_cv_pthread=yes,
874 ac_cv_pthread=no,
875 ac_cv_pthread=no)
876CC="$ac_save_cc"])
877AC_MSG_RESULT($ac_cv_pthread)
878fi
879
Martin v. Löwisab1e5852003-06-28 07:46:38 +0000880# If we have set a CC compiler flag for thread support then
881# check if it works for CXX, too.
882ac_cv_cxx_thread=no
883if test ! -z "$CXX"
884then
885AC_MSG_CHECKING(whether $CXX also accepts flags for thread support)
886ac_save_cxx="$CXX"
887
888if test "$ac_cv_kpthread" = "yes"
889then
Martin v. Löwis519adae2003-09-20 10:47:47 +0000890 CXX="$CXX -Kpthread"
Martin v. Löwisab1e5852003-06-28 07:46:38 +0000891 ac_cv_cxx_thread=yes
892elif test "$ac_cv_kthread" = "yes"
893then
894 CXX="$CXX -Kthread"
895 ac_cv_cxx_thread=yes
896elif test "$ac_cv_pthread" = "yes"
897then
898 CXX="$CXX -pthread"
899 ac_cv_cxx_thread=yes
900fi
901
902if test $ac_cv_cxx_thread = yes
903then
904 echo 'void foo();int main(){foo();}void foo(){}' > conftest.$ac_ext
905 $CXX -c conftest.$ac_ext 2>&5
906 if $CXX -o conftest$ac_exeext conftest.$ac_objext 2>&5 \
907 && test -s conftest$ac_exeext && ./conftest$ac_exeext
908 then
909 ac_cv_cxx_thread=yes
910 else
911 ac_cv_cxx_thread=no
Martin v. Löwisab1e5852003-06-28 07:46:38 +0000912 fi
913 rm -fr conftest*
Martin v. Löwisab1e5852003-06-28 07:46:38 +0000914fi
915fi
Martin v. Löwis519adae2003-09-20 10:47:47 +0000916CXX="$ac_save_cxx"
Martin v. Löwisab1e5852003-06-28 07:46:38 +0000917AC_MSG_RESULT($ac_cv_cxx_thread)
918
Fred Drakece81d592000-07-09 14:39:29 +0000919dnl # check for ANSI or K&R ("traditional") preprocessor
920dnl AC_MSG_CHECKING(for C preprocessor type)
921dnl AC_TRY_COMPILE([
922dnl #define spam(name, doc) {#name, &name, #name "() -- " doc}
923dnl int foo;
924dnl struct {char *name; int *addr; char *doc;} desc = spam(foo, "something");
925dnl ], [;], cpp_type=ansi, AC_DEFINE(HAVE_OLD_CPP) cpp_type=traditional)
926dnl AC_MSG_RESULT($cpp_type)
Guido van Rossum300fda71996-08-19 21:58:16 +0000927
Guido van Rossum627b2d71993-12-24 10:39:16 +0000928# checks for header files
Guido van Rossum76be6ed1995-01-02 18:33:54 +0000929AC_HEADER_STDC
Martin v. Löwis2e64c342002-03-27 18:49:02 +0000930AC_CHECK_HEADERS(dlfcn.h fcntl.h grp.h limits.h langinfo.h \
931libintl.h locale.h ncurses.h poll.h pthread.h \
Martin v. Löwis14e73b12003-01-01 09:51:12 +0000932signal.h stdarg.h stddef.h stdlib.h stropts.h termios.h thread.h \
933unistd.h utime.h \
Neal Norwitz82251032003-05-23 14:35:24 +0000934sys/audioio.h sys/bsdtty.h sys/file.h sys/lock.h sys/mkdev.h sys/modem.h \
Andrew M. Kuchling881fd902001-07-14 20:55:52 +0000935sys/param.h sys/poll.h sys/select.h sys/socket.h sys/time.h sys/times.h \
Martin v. Löwisa5f09072002-10-11 05:37:59 +0000936sys/un.h sys/utsname.h sys/wait.h pty.h term.h libutil.h \
Barry Warsawfe33b792003-01-07 22:42:49 +0000937sys/resource.h netpacket/packet.h sysexits.h)
Guido van Rossum76be6ed1995-01-02 18:33:54 +0000938AC_HEADER_DIRENT
Martin v. Löwisdbe3f762002-10-10 14:27:30 +0000939AC_HEADER_MAJOR
Guido van Rossum627b2d71993-12-24 10:39:16 +0000940
941# checks for typedefs
Guido van Rossum5739e7e1995-01-20 16:50:53 +0000942was_it_defined=no
943AC_MSG_CHECKING(for clock_t in time.h)
Martin v. Löwisc45929e2002-04-06 10:10:49 +0000944AC_EGREP_HEADER(clock_t, time.h, was_it_defined=yes, [
945 AC_DEFINE(clock_t, long, [Define to 'long' if <time.h> doesn't define.])
946])
Guido van Rossum5739e7e1995-01-20 16:50:53 +0000947AC_MSG_RESULT($was_it_defined)
948
Neal Norwitz11690112002-07-30 01:08:28 +0000949# Check whether using makedev requires defining _OSF_SOURCE
950AC_MSG_CHECKING(for makedev)
Neal Norwitz6eb37f02003-02-23 23:28:15 +0000951AC_TRY_LINK([#include <sys/types.h> ],
Neal Norwitz11690112002-07-30 01:08:28 +0000952 [ makedev(0, 0) ],
953 ac_cv_has_makedev=yes,
954 ac_cv_has_makedev=no)
955if test "$ac_cv_has_makedev" = "no"; then
956 # we didn't link, try if _OSF_SOURCE will allow us to link
957 AC_TRY_LINK([
Neal Norwitz6eb37f02003-02-23 23:28:15 +0000958#define _OSF_SOURCE 1
959#include <sys/types.h>
Neal Norwitz11690112002-07-30 01:08:28 +0000960 ],
961 [ makedev(0, 0) ],
962 ac_cv_has_makedev=yes,
963 ac_cv_has_makedev=no)
964 if test "$ac_cv_has_makedev" = "yes"; then
965 AC_DEFINE(_OSF_SOURCE, 1, [Define _OSF_SOURCE to get the makedev macro.])
966 fi
967fi
968AC_MSG_RESULT($ac_cv_has_makedev)
969if test "$ac_cv_has_makedev" = "yes"; then
970 AC_DEFINE(HAVE_MAKEDEV, 1, [Define this if you have the makedev macro.])
971fi
972
Martin v. Löwis399a6892002-10-04 10:22:02 +0000973# Enabling LFS on Solaris (2.6 to 9) with gcc 2.95 triggers a bug in
974# the system headers: If _XOPEN_SOURCE and _LARGEFILE_SOURCE are
975# defined, but the compiler does not support pragma redefine_extname,
976# and _LARGEFILE64_SOURCE is not defined, the headers refer to 64-bit
977# structures (such as rlimit64) without declaring them. As a
978# work-around, disable LFS on such configurations
979
980use_lfs=yes
981AC_MSG_CHECKING(Solaris LFS bug)
982AC_TRY_COMPILE([
983#define _LARGEFILE_SOURCE 1
984#define _FILE_OFFSET_BITS 64
985#include <sys/resource.h>
986],struct rlimit foo;,sol_lfs_bug=no,sol_lfs_bug=yes)
987AC_MSG_RESULT($sol_lfs_bug)
988if test "$sol_lfs_bug" = "yes"; then
989 use_lfs=no
990fi
991
992if test "$use_lfs" = "yes"; then
Guido van Rossum810cc512001-09-09 23:51:39 +0000993# Two defines needed to enable largefile support on various platforms
994# These may affect some typedefs
Martin v. Löwisc45929e2002-04-06 10:10:49 +0000995AC_DEFINE(_LARGEFILE_SOURCE, 1,
996[This must be defined on some systems to enable large file support.])
997AC_DEFINE(_FILE_OFFSET_BITS, 64,
998[This must be set to 64 on some systems to enable large file support.])
Martin v. Löwis399a6892002-10-04 10:22:02 +0000999fi
Guido van Rossum810cc512001-09-09 23:51:39 +00001000
Guido van Rossum300fda71996-08-19 21:58:16 +00001001# Add some code to confdefs.h so that the test for off_t works on SCO
1002cat >> confdefs.h <<\EOF
1003#if defined(SCO_DS)
1004#undef _OFF_T
1005#endif
1006EOF
1007
Guido van Rossumef2255b2000-03-10 22:30:29 +00001008# Type availability checks
Guido van Rossum76be6ed1995-01-02 18:33:54 +00001009AC_TYPE_MODE_T
1010AC_TYPE_OFF_T
1011AC_TYPE_PID_T
1012AC_TYPE_SIGNAL
1013AC_TYPE_SIZE_T
1014AC_TYPE_UID_T
Guido van Rossum627b2d71993-12-24 10:39:16 +00001015
Guido van Rossumef2255b2000-03-10 22:30:29 +00001016# Sizes of various common basic types
Guido van Rossum3065c942001-09-17 04:03:14 +00001017AC_CHECK_SIZEOF(int, 4)
1018AC_CHECK_SIZEOF(long, 4)
1019AC_CHECK_SIZEOF(void *, 4)
1020AC_CHECK_SIZEOF(char, 1)
1021AC_CHECK_SIZEOF(short, 2)
1022AC_CHECK_SIZEOF(float, 4)
1023AC_CHECK_SIZEOF(double, 8)
1024AC_CHECK_SIZEOF(fpos_t, 4)
Guido van Rossumac405f61994-09-12 10:56:06 +00001025
Guido van Rossumec95c7b1998-08-04 17:59:56 +00001026AC_MSG_CHECKING(for long long support)
1027have_long_long=no
Martin v. Löwisc45929e2002-04-06 10:10:49 +00001028AC_TRY_COMPILE([], [long long x; x = (long long)0;], [
1029 AC_DEFINE(HAVE_LONG_LONG, 1, [Define this if you have the type long long.])
1030 have_long_long=yes
1031])
Guido van Rossumec95c7b1998-08-04 17:59:56 +00001032AC_MSG_RESULT($have_long_long)
Guido van Rossum8bc1dfd1999-04-10 16:01:48 +00001033if test "$have_long_long" = yes ; then
Guido van Rossum3065c942001-09-17 04:03:14 +00001034AC_CHECK_SIZEOF(long long, 8)
Guido van Rossumec95c7b1998-08-04 17:59:56 +00001035fi
1036
Barry Warsawbc7c7f92000-08-18 04:53:33 +00001037AC_MSG_CHECKING(for uintptr_t support)
1038have_uintptr_t=no
Martin v. Löwisc45929e2002-04-06 10:10:49 +00001039AC_TRY_COMPILE([], [uintptr_t x; x = (uintptr_t)0;], [
1040 AC_DEFINE(HAVE_UINTPTR_T, 1, [Define this if you have the type uintptr_t.])
1041 have_uintptr_t=yes
1042])
Barry Warsawbc7c7f92000-08-18 04:53:33 +00001043AC_MSG_RESULT($have_uintptr_t)
1044if test "$have_uintptr_t" = yes ; then
Guido van Rossum3065c942001-09-17 04:03:14 +00001045AC_CHECK_SIZEOF(uintptr_t, 4)
Barry Warsawbc7c7f92000-08-18 04:53:33 +00001046fi
1047
Guido van Rossum00f0f6e1999-01-06 18:52:29 +00001048# Hmph. AC_CHECK_SIZEOF() doesn't include <sys/types.h>.
1049AC_MSG_CHECKING(size of off_t)
1050AC_CACHE_VAL(ac_cv_sizeof_off_t,
1051[AC_TRY_RUN([#include <stdio.h>
1052#include <sys/types.h>
1053main()
1054{
1055 FILE *f=fopen("conftestval", "w");
1056 if (!f) exit(1);
1057 fprintf(f, "%d\n", sizeof(off_t));
1058 exit(0);
Guido van Rossum3065c942001-09-17 04:03:14 +00001059}],
1060ac_cv_sizeof_off_t=`cat conftestval`,
1061ac_cv_sizeof_off_t=0,
1062ac_cv_sizeof_off_t=4)
Guido van Rossum00f0f6e1999-01-06 18:52:29 +00001063])
1064AC_MSG_RESULT($ac_cv_sizeof_off_t)
Martin v. Löwisc45929e2002-04-06 10:10:49 +00001065AC_DEFINE_UNQUOTED(SIZEOF_OFF_T, $ac_cv_sizeof_off_t,
1066[The number of bytes in an off_t.])
Guido van Rossum00f0f6e1999-01-06 18:52:29 +00001067
1068AC_MSG_CHECKING(whether to enable large file support)
Guido van Rossum8bc1dfd1999-04-10 16:01:48 +00001069if test "$have_long_long" = yes -a \
1070 "$ac_cv_sizeof_off_t" -gt "$ac_cv_sizeof_long" -a \
1071 "$ac_cv_sizeof_long_long" -ge "$ac_cv_sizeof_off_t"; then
Martin v. Löwisc45929e2002-04-06 10:10:49 +00001072 AC_DEFINE(HAVE_LARGEFILE_SUPPORT, 1,
1073 [Defined to enable large file support when an off_t is bigger than a long
1074 and long long is available and at least as big as an off_t. You may need
1075 to add some flags for configuration and compilation to enable this mode.
1076 (For Solaris and Linux, the necessary defines are already defined.)])
Guido van Rossum00f0f6e1999-01-06 18:52:29 +00001077 AC_MSG_RESULT(yes)
1078else
1079 AC_MSG_RESULT(no)
1080fi
1081
Fred Drakea3f6e912000-06-29 20:44:47 +00001082# AC_CHECK_SIZEOF() doesn't include <time.h>.
1083AC_MSG_CHECKING(size of time_t)
1084AC_CACHE_VAL(ac_cv_sizeof_time_t,
1085[AC_TRY_RUN([#include <stdio.h>
1086#include <time.h>
1087main()
1088{
1089 FILE *f=fopen("conftestval", "w");
1090 if (!f) exit(1);
1091 fprintf(f, "%d\n", sizeof(time_t));
1092 exit(0);
Guido van Rossum3065c942001-09-17 04:03:14 +00001093}],
1094ac_cv_sizeof_time_t=`cat conftestval`,
1095ac_cv_sizeof_time_t=0,
1096ac_cv_sizeof_time_t=4)
Fred Drakea3f6e912000-06-29 20:44:47 +00001097])
1098AC_MSG_RESULT($ac_cv_sizeof_time_t)
Martin v. Löwisc45929e2002-04-06 10:10:49 +00001099AC_DEFINE_UNQUOTED(SIZEOF_TIME_T, $ac_cv_sizeof_time_t,
1100[The number of bytes in a time_t.])
Fred Drakea3f6e912000-06-29 20:44:47 +00001101
Guido van Rossum00f0f6e1999-01-06 18:52:29 +00001102
Trent Mick635f6fb2000-08-23 21:33:05 +00001103# if have pthread_t then define SIZEOF_PTHREAD_T
Martin v. Löwis123cbd22001-07-19 14:21:10 +00001104ac_save_cc="$CC"
1105if test "$ac_cv_kpthread" = "yes"
1106then CC="$CC -Kpthread"
Martin v. Löwis5f433f02003-05-05 05:05:30 +00001107elif test "$ac_cv_kthread" = "yes"
1108then CC="$CC -Kthread"
Martin v. Löwis4ee6eef2003-05-26 05:37:51 +00001109elif test "$ac_cv_pthread" = "yes"
1110then CC="$CC -pthread"
Martin v. Löwis123cbd22001-07-19 14:21:10 +00001111fi
Trent Mick635f6fb2000-08-23 21:33:05 +00001112AC_MSG_CHECKING(for pthread_t)
1113have_pthread_t=no
Guido van Rossum12580492000-09-24 16:47:19 +00001114AC_TRY_COMPILE([#include <pthread.h>], [pthread_t x; x = *(pthread_t*)0;], have_pthread_t=yes)
Trent Mick635f6fb2000-08-23 21:33:05 +00001115AC_MSG_RESULT($have_pthread_t)
1116if test "$have_pthread_t" = yes ; then
1117 # AC_CHECK_SIZEOF() doesn't include <pthread.h>.
1118 AC_MSG_CHECKING(size of pthread_t)
1119 AC_CACHE_VAL(ac_cv_sizeof_pthread_t,
1120 [AC_TRY_RUN([#include <stdio.h>
Neal Norwitz6eb37f02003-02-23 23:28:15 +00001121#include <pthread.h>
Trent Mick635f6fb2000-08-23 21:33:05 +00001122 main()
1123 {
1124 FILE *f=fopen("conftestval", "w");
1125 if (!f) exit(1);
1126 fprintf(f, "%d\n", sizeof(pthread_t));
1127 exit(0);
Guido van Rossum3065c942001-09-17 04:03:14 +00001128 }],
1129 ac_cv_sizeof_pthread_t=`cat conftestval`,
1130 ac_cv_sizeof_pthread_t=0,
1131 ac_cv_sizeof_pthread_t=4)
Trent Mick635f6fb2000-08-23 21:33:05 +00001132 ])
1133 AC_MSG_RESULT($ac_cv_sizeof_pthread_t)
Martin v. Löwisc45929e2002-04-06 10:10:49 +00001134 AC_DEFINE_UNQUOTED(SIZEOF_PTHREAD_T, $ac_cv_sizeof_pthread_t,
1135 [The number of bytes in a pthread_t.])
Trent Mick635f6fb2000-08-23 21:33:05 +00001136fi
Martin v. Löwis123cbd22001-07-19 14:21:10 +00001137CC="$ac_save_cc"
Trent Mick635f6fb2000-08-23 21:33:05 +00001138
Jack Jansenb6e9cad2001-08-15 01:26:28 +00001139AC_MSG_CHECKING(for --enable-toolbox-glue)
1140AC_ARG_ENABLE(toolbox-glue,
Martin v. Löwis3e2c6322002-10-29 10:07:43 +00001141 AC_HELP_STRING(--enable-toolbox-glue, disable/enable MacOSX glue code for extensions))
Jack Jansenb6e9cad2001-08-15 01:26:28 +00001142
1143if test -z "$enable_toolbox_glue"
1144then
1145 case $ac_sys_system/$ac_sys_release in
1146 Darwin/*)
1147 enable_toolbox_glue="yes";;
1148 *)
1149 enable_toolbox_glue="no";;
1150 esac
1151fi
1152case "$enable_toolbox_glue" in
1153yes)
Jack Jansen666b1e72001-10-31 12:11:48 +00001154 extra_frameworks="-framework CoreServices -framework Foundation"
Jack Jansenb6e9cad2001-08-15 01:26:28 +00001155 extra_machdep_objs="Python/mactoolboxglue.o"
Jack Jansen591cbed2001-08-15 13:55:15 +00001156 extra_undefs="-u __dummy -u _PyMac_Error"
Martin v. Löwisc45929e2002-04-06 10:10:49 +00001157 AC_DEFINE(USE_TOOLBOX_OBJECT_GLUE, 1,
1158 [Define if you want to use MacPython modules on MacOSX in unix-Python.])
Jack Jansenb6e9cad2001-08-15 01:26:28 +00001159 ;;
1160*)
1161 extra_frameworks=""
1162 extra_machdep_objs=""
Jack Jansen591cbed2001-08-15 13:55:15 +00001163 extra_undefs=""
Jack Jansenb6e9cad2001-08-15 01:26:28 +00001164 ;;
1165esac
1166AC_MSG_RESULT($enable_toolbox_glue)
1167
Guido van Rossum54ecc3d1999-01-27 17:53:11 +00001168AC_SUBST(LIBTOOL_CRUFT)
1169case $ac_sys_system/$ac_sys_release in
Jack Jansen418c3b12001-11-14 10:59:57 +00001170 Darwin/1.3*)
Jack Jansenea0c3822002-08-01 21:57:49 +00001171 LIBTOOL_CRUFT="-lcc_dynamic -arch_only ppc"
Jack Jansen418c3b12001-11-14 10:59:57 +00001172 LIBTOOL_CRUFT="$LIBTOOL_CRUFT $extra_frameworks"
Jack Jansen66b84832003-07-04 12:14:39 +00001173 LIBTOOL_CRUFT=$LIBTOOL_CRUFT' -install_name $(PYTHONFRAMEWORKINSTALLDIR)/Versions/$(VERSION)/Python'
Jack Jansena3891ea2001-09-07 14:25:12 +00001174 LIBTOOL_CRUFT=$LIBTOOL_CRUFT' -compatibility_version $(VERSION) -current_version $(VERSION)';;
Guido van Rossum5839e582000-10-09 19:52:35 +00001175 Darwin/*)
Jack Jansenea0c3822002-08-01 21:57:49 +00001176 LIBTOOL_CRUFT="-lcc_dynamic -arch_only ppc"
Jack Jansen418c3b12001-11-14 10:59:57 +00001177 LIBTOOL_CRUFT="$LIBTOOL_CRUFT $extra_frameworks"
Jack Jansen66b84832003-07-04 12:14:39 +00001178 LIBTOOL_CRUFT=$LIBTOOL_CRUFT' -install_name $(PYTHONFRAMEWORKINSTALLDIR)/Versions/$(VERSION)/Python'
Jack Jansenb6e9cad2001-08-15 01:26:28 +00001179 LIBTOOL_CRUFT=$LIBTOOL_CRUFT' -compatibility_version $(VERSION) -current_version $(VERSION)';;
Guido van Rossum54ecc3d1999-01-27 17:53:11 +00001180esac
1181
Jack Jansenb6e9cad2001-08-15 01:26:28 +00001182AC_MSG_CHECKING(for --enable-framework)
1183if test "$enable_framework"
Guido van Rossum54ecc3d1999-01-27 17:53:11 +00001184then
Skip Montanarodecc6a42003-01-01 20:07:49 +00001185 BASECFLAGS="$BASECFLAGS -fno-common -dynamic"
Jack Jansenb6e9cad2001-08-15 01:26:28 +00001186 # -F. is needed to allow linking to the framework while
1187 # in the build location.
Jack Jansenea0c3822002-08-01 21:57:49 +00001188 LDFLAGS="$LDFLAGS -Wl,-F."
Martin v. Löwisc45929e2002-04-06 10:10:49 +00001189 AC_DEFINE(WITH_NEXT_FRAMEWORK, 1,
1190 [Define if you want to produce an OpenStep/Rhapsody framework
1191 (shared library plus accessory files).])
Guido van Rossum54ecc3d1999-01-27 17:53:11 +00001192 AC_MSG_RESULT(yes)
1193else
1194 AC_MSG_RESULT(no)
1195fi
1196
Jack Jansenb6e9cad2001-08-15 01:26:28 +00001197AC_MSG_CHECKING(for dyld)
Jack Jansen9a66b6d2001-08-08 13:56:14 +00001198case $ac_sys_system/$ac_sys_release in
1199 Darwin/*)
Martin v. Löwisc45929e2002-04-06 10:10:49 +00001200 AC_DEFINE(WITH_DYLD, 1,
1201 [Define if you want to use the new-style (Openstep, Rhapsody, MacOS)
1202 dynamic linker (dyld) instead of the old-style (NextStep) dynamic
1203 linker (rld). Dyld is necessary to support frameworks.])
Jack Jansen9a66b6d2001-08-08 13:56:14 +00001204 AC_MSG_RESULT(always on for Darwin)
1205 ;;
1206 *)
Jack Jansenb6e9cad2001-08-15 01:26:28 +00001207 AC_MSG_RESULT(no)
1208 ;;
Jack Jansen9a66b6d2001-08-08 13:56:14 +00001209esac
Guido van Rossum54ecc3d1999-01-27 17:53:11 +00001210
Guido van Rossumac405f61994-09-12 10:56:06 +00001211# Set info about shared libraries.
Guido van Rossumac405f61994-09-12 10:56:06 +00001212AC_SUBST(SO)
1213AC_SUBST(LDSHARED)
Neil Schemenauerb3531b82001-02-16 04:09:05 +00001214AC_SUBST(BLDSHARED)
Guido van Rossumac405f61994-09-12 10:56:06 +00001215AC_SUBST(CCSHARED)
1216AC_SUBST(LINKFORSHARED)
Guido van Rossumac405f61994-09-12 10:56:06 +00001217# SO is the extension of shared libraries `(including the dot!)
Guido van Rossumaef734b2001-01-10 21:09:12 +00001218# -- usually .so, .sl on HP-UX, .dll on Cygwin
Guido van Rossum76be6ed1995-01-02 18:33:54 +00001219AC_MSG_CHECKING(SO)
Guido van Rossumac405f61994-09-12 10:56:06 +00001220if test -z "$SO"
1221then
Guido van Rossum76be6ed1995-01-02 18:33:54 +00001222 case $ac_sys_system in
Guido van Rossum4b6b5791996-09-09 20:09:34 +00001223 hp*|HP*) SO=.sl;;
Guido van Rossumaef734b2001-01-10 21:09:12 +00001224 CYGWIN*) SO=.dll;;
Guido van Rossum4b6b5791996-09-09 20:09:34 +00001225 *) SO=.so;;
Guido van Rossumac405f61994-09-12 10:56:06 +00001226 esac
Martin v. Löwis368de8f2003-06-14 14:46:38 +00001227else
1228 # this might also be a termcap variable, see #610332
1229 echo
1230 echo '====================================================================='
1231 echo '+ +'
1232 echo '+ WARNING: You have set SO in your environment. +'
1233 echo '+ Do you really mean to change the extension for shared libraries? +'
1234 echo '+ Continuing in 10 seconds to let you to ponder. +'
1235 echo '+ +'
1236 echo '====================================================================='
1237 sleep 10
Guido van Rossumac405f61994-09-12 10:56:06 +00001238fi
Guido van Rossum76be6ed1995-01-02 18:33:54 +00001239AC_MSG_RESULT($SO)
Guido van Rossumac405f61994-09-12 10:56:06 +00001240# LDSHARED is the ld *command* used to create shared library
Martin v. Löwis5b718fc2001-09-10 15:34:42 +00001241# -- "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 +00001242# (Shared libraries in this instance are shared modules to be loaded into
1243# Python, as opposed to building Python itself as a shared library.)
Guido van Rossum76be6ed1995-01-02 18:33:54 +00001244AC_MSG_CHECKING(LDSHARED)
Guido van Rossumac405f61994-09-12 10:56:06 +00001245if test -z "$LDSHARED"
1246then
Guido van Rossum76be6ed1995-01-02 18:33:54 +00001247 case $ac_sys_system/$ac_sys_release in
Neil Schemenauerb3531b82001-02-16 04:09:05 +00001248 AIX*)
1249 BLDSHARED="\$(srcdir)/Modules/ld_so_aix \$(CC) -bI:Modules/python.exp"
Guido van Rossumce608b02001-09-28 15:59:38 +00001250 LDSHARED="\$(BINLIBDEST)/config/ld_so_aix \$(CC) -bI:\$(BINLIBDEST)/config/python.exp"
Neil Schemenauerb3531b82001-02-16 04:09:05 +00001251 ;;
1252 BeOS*)
1253 BLDSHARED="\$(srcdir)/Modules/ld_so_beos $LDLIBRARY"
Guido van Rossumce608b02001-09-28 15:59:38 +00001254 LDSHARED="\$(BINLIBDEST)/config/ld_so_beos \$(LIBDIR)/$LDLIBRARY"
Neil Schemenauerb3531b82001-02-16 04:09:05 +00001255 ;;
Guido van Rossum6100aaf1997-04-29 21:48:51 +00001256 IRIX/5*) LDSHARED="ld -shared";;
Guido van Rossum91922671997-10-09 20:24:13 +00001257 IRIX*/6*) LDSHARED="ld ${SGI_ABI} -shared -all";;
Guido van Rossumac405f61994-09-12 10:56:06 +00001258 SunOS/4*) LDSHARED="ld";;
Greg Ward57c9a6632000-05-26 12:22:54 +00001259 SunOS/5*)
1260 if test "$GCC" = "yes"
Neil Schemenauer95052722001-02-19 18:17:33 +00001261 then LDSHARED='$(CC) -shared'
Martin v. Löwisaa5afe12002-10-07 06:21:41 +00001262 else LDSHARED='$(CC) -G';
Greg Ward57c9a6632000-05-26 12:22:54 +00001263 fi ;;
Guido van Rossumac405f61994-09-12 10:56:06 +00001264 hp*|HP*) LDSHARED="ld -b";;
Guido van Rossum71001e41995-01-26 00:44:03 +00001265 OSF*) LDSHARED="ld -shared -expect_unresolved \"*\"";;
Guido van Rossum7d473291995-01-20 14:12:16 +00001266 DYNIX/ptx*) LDSHARED="ld -G";;
Jack Jansen418c3b12001-11-14 10:59:57 +00001267 Darwin/1.3*)
Jack Jansena3891ea2001-09-07 14:25:12 +00001268 LDSHARED='$(CC) $(LDFLAGS) -bundle'
1269 if test "$enable_framework" ; then
1270 # Link against the framework. All externals should be defined.
1271 LDSHARED="$LDSHARED "'-framework $(PYTHONFRAMEWORK)'
1272 else
1273 # No framework. Ignore undefined symbols, assuming they come from Python
Jack Jansen418c3b12001-11-14 10:59:57 +00001274 LDSHARED="$LDSHARED -undefined suppress"
Jack Jansena3891ea2001-09-07 14:25:12 +00001275 fi ;;
Jack Jansenb6e9cad2001-08-15 01:26:28 +00001276 Darwin/*)
1277 LDSHARED='$(CC) $(LDFLAGS) -bundle'
1278 if test "$enable_framework" ; then
1279 # Link against the framework. All externals should be defined.
1280 LDSHARED="$LDSHARED "'-framework $(PYTHONFRAMEWORK)'
1281 else
Michael W. Hudson0c46c0c2002-03-07 09:58:56 +00001282 # No framework, use the Python app as bundle-loader
1283 BLDSHARED="$LDSHARED "'-bundle_loader $(BUILDPYTHON)'
Jack Jansenc28fc372003-02-25 13:14:43 +00001284 LDSHARED="$LDSHARED "'-bundle_loader $(BINDIR)/python$(VERSION)$(EXE)'
Guido van Rossum54ecc3d1999-01-27 17:53:11 +00001285 fi ;;
Martin v. Löwis3cba5c02002-09-16 17:50:59 +00001286 Linux*|GNU*) LDSHARED='$(CC) -shared';;
Guido van Rossum3c4bb801997-12-18 23:55:32 +00001287 dgux*) LDSHARED="ld -G";;
Guido van Rossum458e7fa1999-09-17 15:40:40 +00001288 BSD/OS*/4*) LDSHARED="gcc -shared";;
Martin v. Löwisd61888b2002-09-30 11:17:27 +00001289 OpenBSD*|FreeBSD*)
Jeremy Hylton4bcc7c52000-08-31 17:45:35 +00001290 if [[ "`$CC -dM -E - </dev/null | grep __ELF__`" != "" ]]
Guido van Rossum0286ae82000-08-29 15:06:49 +00001291 then
1292 LDSHARED="cc -shared ${LDFLAGS}"
1293 else
1294 LDSHARED="ld -Bshareable ${LDFLAGS}"
1295 fi;;
Martin v. Löwisd61888b2002-09-30 11:17:27 +00001296 NetBSD*) LDSHARED="cc -shared ${LDFLAGS}";;
Martin v. Löwis25ae43b2001-10-07 08:39:18 +00001297 OpenUNIX*|UnixWare*)
Martin v. Löwisbec19582001-03-21 15:57:54 +00001298 if test "$GCC" = "yes"
Martin v. Löwis79f3c532002-12-11 12:51:58 +00001299 then LDSHARED='$(CC) -shared'
1300 else LDSHARED='$(CC) -G'
Martin v. Löwisbec19582001-03-21 15:57:54 +00001301 fi;;
Martin v. Löwis79f3c532002-12-11 12:51:58 +00001302 SCO_SV*) LDSHARED='$(CC) -Wl,-G,-Bexport';;
Trent Mick635f6fb2000-08-23 21:33:05 +00001303 Monterey*) LDSHARED="cc -G -dy -Bdynamic -Bexport -L/usr/lib/ia64l64";;
Guido van Rossumaef734b2001-01-10 21:09:12 +00001304 CYGWIN*) LDSHARED="gcc -shared -Wl,--enable-auto-image-base";;
Martin v. Löwisf90ae202002-06-11 06:22:31 +00001305 atheos*) LDSHARED="gcc -shared";;
Guido van Rossumac405f61994-09-12 10:56:06 +00001306 *) LDSHARED="ld";;
1307 esac
Guido van Rossumac405f61994-09-12 10:56:06 +00001308fi
Guido van Rossum76be6ed1995-01-02 18:33:54 +00001309AC_MSG_RESULT($LDSHARED)
Neil Schemenauerb3531b82001-02-16 04:09:05 +00001310BLDSHARED=${BLDSHARED-$LDSHARED}
Guido van Rossumac405f61994-09-12 10:56:06 +00001311# CCSHARED are the C *flags* used to create objects to go into a shared
Guido van Rossum54ecc3d1999-01-27 17:53:11 +00001312# library (module) -- this is only needed for a few systems
Guido van Rossum76be6ed1995-01-02 18:33:54 +00001313AC_MSG_CHECKING(CCSHARED)
Guido van Rossumac405f61994-09-12 10:56:06 +00001314if test -z "$CCSHARED"
1315then
Guido van Rossum6100aaf1997-04-29 21:48:51 +00001316 case $ac_sys_system/$ac_sys_release in
Neil Schemenauer66252162001-02-19 04:47:42 +00001317 SunOS*) if test "$GCC" = yes;
1318 then CCSHARED="-fPIC";
1319 fi;;
Guido van Rossumaf07a441995-02-13 19:45:27 +00001320 hp*|HP*) if test "$GCC" = yes;
Martin v. Löwis703ad702001-09-05 08:36:52 +00001321 then CCSHARED="-fPIC";
Guido van Rossumaf07a441995-02-13 19:45:27 +00001322 else CCSHARED="+z";
1323 fi;;
Martin v. Löwisa6e97582002-01-01 18:41:33 +00001324 Linux*|GNU*) CCSHARED="-fPIC";;
Guido van Rossumf5957ea1999-10-05 21:59:33 +00001325 BSD/OS*/4*) CCSHARED="-fpic";;
Martin v. Löwis36546db2001-09-05 14:24:43 +00001326 FreeBSD*|NetBSD*|OpenBSD*) CCSHARED="-fPIC";;
Martin v. Löwis25ae43b2001-10-07 08:39:18 +00001327 OpenUNIX*|UnixWare*)
Martin v. Löwisbec19582001-03-21 15:57:54 +00001328 if test "$GCC" = "yes"
1329 then CCSHARED="-fPIC"
Martin v. Löwis130fb172001-07-19 11:00:41 +00001330 else CCSHARED="-KPIC"
Martin v. Löwisbec19582001-03-21 15:57:54 +00001331 fi;;
Martin v. Löwis21ee4092002-09-30 16:19:48 +00001332 SCO_SV*)
1333 if test "$GCC" = "yes"
1334 then CCSHARED="-fPIC"
1335 else CCSHARED="-Kpic -belf"
1336 fi;;
Trent Mick635f6fb2000-08-23 21:33:05 +00001337 Monterey*) CCSHARED="-G";;
Guido van Rossum2b5ca001998-03-05 15:41:09 +00001338 IRIX*/6*) case $CC in
1339 *gcc*) CCSHARED="-shared";;
Guido van Rossumee21f411998-04-20 18:51:54 +00001340 *) CCSHARED="";;
Guido van Rossum2b5ca001998-03-05 15:41:09 +00001341 esac;;
Martin v. Löwisf90ae202002-06-11 06:22:31 +00001342 atheos*) CCSHARED="-fPIC";;
Guido van Rossumac405f61994-09-12 10:56:06 +00001343 esac
Guido van Rossumac405f61994-09-12 10:56:06 +00001344fi
Guido van Rossum76be6ed1995-01-02 18:33:54 +00001345AC_MSG_RESULT($CCSHARED)
Guido van Rossumac405f61994-09-12 10:56:06 +00001346# LINKFORSHARED are the flags passed to the $(CC) command that links
Guido van Rossumb65a48e1995-06-14 18:21:23 +00001347# the python executable -- this is only needed for a few systems
Guido van Rossum76be6ed1995-01-02 18:33:54 +00001348AC_MSG_CHECKING(LINKFORSHARED)
Guido van Rossumac405f61994-09-12 10:56:06 +00001349if test -z "$LINKFORSHARED"
1350then
Guido van Rossum6100aaf1997-04-29 21:48:51 +00001351 case $ac_sys_system/$ac_sys_release in
Neil Schemenauerb3531b82001-02-16 04:09:05 +00001352 AIX*) LINKFORSHARED='-Wl,-bE:Modules/python.exp -lld';;
Guido van Rossum5dab3d81996-12-06 21:18:18 +00001353 hp*|HP*)
Martin v. Löwis1142de32002-03-29 16:28:31 +00001354 LINKFORSHARED="-Wl,-E -Wl,+s";;
1355# LINKFORSHARED="-Wl,-E -Wl,+s -Wl,+b\$(BINLIBDEST)/lib-dynload";;
Guido van Rossumf5957ea1999-10-05 21:59:33 +00001356 BSD/OS/4*) LINKFORSHARED="-Xlinker -export-dynamic";;
Martin v. Löwisa6e97582002-01-01 18:41:33 +00001357 Linux*|GNU*) LINKFORSHARED="-Xlinker -export-dynamic";;
Guido van Rossum54ecc3d1999-01-27 17:53:11 +00001358 # -u libsys_s pulls in all symbols in libsys
Jack Jansenb6e9cad2001-08-15 01:26:28 +00001359 Darwin/*)
1360 # -u __dummy makes the linker aware of the objc runtime
1361 # in System.framework; otherwise, __objcInit (referenced in
1362 # crt1.o) gets erroneously defined as common, which breaks dynamic
1363 # loading of any modules which reference it in System.framework.
1364 # -u _PyMac_Error is needed to pull in the mac toolbox glue, which is
1365 # not used by the core itself but which needs to be in the core so
1366 # that dynamically loaded extension modules have access to it.
Jack Jansen97e3f002003-02-23 22:59:01 +00001367 # -prebind is no longer used, because it actually seems to give a
1368 # slowdown in stead of a speedup, maybe due to the large number of
1369 # dynamic loads Python does.
1370 LINKFORSHARED="$extra_undefs -framework System"
Jack Jansenb6e9cad2001-08-15 01:26:28 +00001371 if test "$enable_framework"
1372 then
1373 LINKFORSHARED="$LINKFORSHARED -framework Python"
1374 fi
1375 LINKFORSHARED="$LINKFORSHARED $extra_frameworks";;
Martin v. Löwis25ae43b2001-10-07 08:39:18 +00001376 OpenUNIX*|UnixWare*) LINKFORSHARED="-Wl,-Bexport";;
Martin v. Löwis21ee4092002-09-30 16:19:48 +00001377 SCO_SV*) LINKFORSHARED="-Wl,-Bexport";;
Fred Drake02706f52000-09-25 15:08:46 +00001378 ReliantUNIX*) LINKFORSHARED="-W1 -Blargedynsym";;
Martin v. Löwis36546db2001-09-05 14:24:43 +00001379 FreeBSD*|NetBSD*|OpenBSD*)
Guido van Rossumdf693651999-01-07 21:50:41 +00001380 if [[ "`$CC -dM -E - </dev/null | grep __ELF__`" != "" ]]
1381 then
1382 LINKFORSHARED="-Wl,--export-dynamic"
1383 fi;;
Guido van Rossum2b5ca001998-03-05 15:41:09 +00001384 SunOS/5*) case $CC in
1385 *gcc*)
Martin v. Löwisa4548572002-04-18 14:51:36 +00001386 if $CC -Xlinker --help 2>&1 | grep export-dynamic >/dev/null
Guido van Rossum8f4ceb11997-12-18 23:42:19 +00001387 then
1388 LINKFORSHARED="-Xlinker --export-dynamic"
Guido van Rossum2b5ca001998-03-05 15:41:09 +00001389 fi;;
1390 esac;;
Jason Tishler30765592003-09-04 11:04:06 +00001391 CYGWIN*)
1392 if test $enable_shared = "no"
1393 then
1394 LINKFORSHARED='-Wl,--out-implib=$(LDLIBRARY)'
1395 fi;;
Guido van Rossumac405f61994-09-12 10:56:06 +00001396 esac
Guido van Rossumac405f61994-09-12 10:56:06 +00001397fi
Guido van Rossum76be6ed1995-01-02 18:33:54 +00001398AC_MSG_RESULT($LINKFORSHARED)
Guido van Rossumac405f61994-09-12 10:56:06 +00001399
Neil Schemenauer61c51152001-01-26 16:18:16 +00001400AC_SUBST(CFLAGSFORSHARED)
1401AC_MSG_CHECKING(CFLAGSFORSHARED)
1402if test ! "$LIBRARY" = "$LDLIBRARY"
1403then
Neil Schemenauerd9cf41c2001-01-27 21:39:17 +00001404 case $ac_sys_system in
1405 CYGWIN*)
1406 # Cygwin needs CCSHARED when building extension DLLs
1407 # but not when building the interpreter DLL.
1408 CFLAGSFORSHARED='';;
1409 *)
1410 CFLAGSFORSHARED='$(CCSHARED)'
1411 esac
Neil Schemenauer61c51152001-01-26 16:18:16 +00001412fi
1413AC_MSG_RESULT($CFLAGSFORSHARED)
1414
Martin v. Löwisf90ae202002-06-11 06:22:31 +00001415# SHLIBS are libraries (except -lc and -lm) to link to the python shared
1416# library (with --enable-shared).
1417# For platforms on which shared libraries are not allowed to have unresolved
Martin v. Löwisd6359c52002-08-04 12:38:50 +00001418# symbols, this must be set to $(LIBS) (expanded by make). We do this even
1419# if it is not required, since it creates a dependency of the shared library
1420# to LIBS. This, in turn, means that applications linking the shared libpython
1421# don't need to link LIBS explicitly. The default should be only changed
1422# on systems where this approach causes problems.
Martin v. Löwisf90ae202002-06-11 06:22:31 +00001423AC_SUBST(SHLIBS)
1424AC_MSG_CHECKING(SHLIBS)
1425case "$ac_sys_system" in
Martin v. Löwisf90ae202002-06-11 06:22:31 +00001426 *)
Martin v. Löwisd6359c52002-08-04 12:38:50 +00001427 SHLIBS='$(LIBS)';;
Martin v. Löwisf90ae202002-06-11 06:22:31 +00001428esac
1429AC_MSG_RESULT($SHLIBS)
1430
1431
Guido van Rossum627b2d71993-12-24 10:39:16 +00001432# checks for libraries
Guido van Rossum76be6ed1995-01-02 18:33:54 +00001433AC_CHECK_LIB(dl, dlopen) # Dynamic linking for SunOS/Solaris and SYSV
1434AC_CHECK_LIB(dld, shl_load) # Dynamic linking for HP-UX
Martin v. Löwis519adae2003-09-20 10:47:47 +00001435
1436# only check for sem_ini if thread support is requested
1437if test "$with_threads" = "yes" -o -z "$with_threads"; then
1438 AC_SEARCH_LIBS(sem_init, pthread rt posix4) # 'Real Time' functions on Solaris
1439 # posix4 on Solaris 2.6
1440 # pthread (first!) on Linux
1441fi
1442
Martin v. Löwis19d17342003-06-14 21:03:05 +00001443# check if we need libintl for locale functions
1444AC_CHECK_LIB(intl, textdomain,
1445 AC_DEFINE(WITH_LIBINTL, 1,
1446 [Define to 1 if libintl is needed for locale functions.]))
Guido van Rossum0eefa3f1999-11-16 15:57:37 +00001447
1448# checks for system dependent C++ extensions support
1449case "$ac_sys_system" in
1450 AIX*) AC_MSG_CHECKING(for genuine AIX C++ extensions support)
1451 AC_TRY_LINK([#include "/usr/lpp/xlC/include/load.h"],
1452 [loadAndInit("", 0, "")],
Martin v. Löwisc45929e2002-04-06 10:10:49 +00001453 [AC_DEFINE(AIX_GENUINE_CPLUSPLUS, 1,
1454 [Define for AIX if your compiler is a genuine IBM xlC/xlC_r
1455 and you want support for AIX C++ shared extension modules.])
Guido van Rossum0eefa3f1999-11-16 15:57:37 +00001456 AC_MSG_RESULT(yes)],
1457 [AC_MSG_RESULT(no)]);;
1458 *) ;;
1459esac
1460
Guido van Rossum70c7f481998-03-26 18:44:10 +00001461# Most SVR4 platforms (e.g. Solaris) need -lsocket and -lnsl.
Martin v. Löwise1172582002-11-13 08:51:19 +00001462# However on SGI IRIX 4, these exist but are broken.
Guido van Rossumec95c7b1998-08-04 17:59:56 +00001463# BeOS' sockets are stashed in libnet.
1464case "$ac_sys_system" in
1465IRIX*) ;;
Guido van Rossum2cb56601998-05-07 13:25:56 +00001466*)
Guido van Rossumf618d2c1995-01-17 16:36:13 +00001467AC_CHECK_LIB(nsl, t_open, [LIBS="-lnsl $LIBS"]) # SVR4
Guido van Rossumf618d2c1995-01-17 16:36:13 +00001468AC_CHECK_LIB(socket, socket, [LIBS="-lsocket $LIBS"], [], $LIBS) # SVR4 sockets
Jeremy Hyltoncb25d5e2000-07-27 21:23:28 +00001469;;
1470esac
1471case "$ac_sys_system" in
1472BeOS*)
Guido van Rossumec95c7b1998-08-04 17:59:56 +00001473AC_CHECK_LIB(net, socket, [LIBS="-lnet $LIBS"], [], $LIBS) # BeOS
1474;;
1475esac
Guido van Rossum70c7f481998-03-26 18:44:10 +00001476
Guido van Rossumc5a39031996-07-31 17:35:03 +00001477AC_MSG_CHECKING(for --with-libs)
Barry Warsawc0d24d8b2000-06-29 16:12:00 +00001478AC_ARG_WITH(libs,
Martin v. Löwis3e2c6322002-10-29 10:07:43 +00001479 AC_HELP_STRING(--with-libs='lib1 ...', link against additional libs),
1480[
Guido van Rossumc5a39031996-07-31 17:35:03 +00001481AC_MSG_RESULT($withval)
1482LIBS="$withval $LIBS"
Martin v. Löwis3e2c6322002-10-29 10:07:43 +00001483],
1484[AC_MSG_RESULT(no)])
Guido van Rossum627b2d71993-12-24 10:39:16 +00001485
Neil Schemenauer55f0cf32001-01-24 17:24:33 +00001486# Determine if signalmodule should be used.
1487AC_SUBST(USE_SIGNAL_MODULE)
1488AC_SUBST(SIGNAL_OBJS)
1489AC_MSG_CHECKING(for --with-signal-module)
1490AC_ARG_WITH(signal-module,
Martin v. Löwis3e2c6322002-10-29 10:07:43 +00001491 AC_HELP_STRING(--with-signal-module, disable/enable signal module))
Neil Schemenauer55f0cf32001-01-24 17:24:33 +00001492
1493if test -z "$with_signal_module"
1494then with_signal_module="yes"
1495fi
1496AC_MSG_RESULT($with_signal_module)
1497
1498if test "${with_signal_module}" = "yes"; then
1499 USE_SIGNAL_MODULE=""
1500 SIGNAL_OBJS=""
1501else
1502 USE_SIGNAL_MODULE="#"
1503 SIGNAL_OBJS="Parser/intrcheck.o Python/sigcheck.o"
1504fi
1505
Guido van Rossum3d15bd82001-01-10 18:53:48 +00001506# This is used to generate Setup.config
Guido van Rossum009f7871997-12-04 00:51:42 +00001507AC_SUBST(USE_THREAD_MODULE)
Barry Warsawc0d24d8b2000-06-29 16:12:00 +00001508USE_THREAD_MODULE=""
Guido van Rossum009f7871997-12-04 00:51:42 +00001509
Guido van Rossum54d93d41997-01-22 20:51:58 +00001510AC_MSG_CHECKING(for --with-dec-threads)
1511AC_SUBST(LDLAST)
1512AC_ARG_WITH(dec-threads,
Martin v. Löwis3e2c6322002-10-29 10:07:43 +00001513 AC_HELP_STRING(--with-dec-threads, use DEC Alpha/OSF1 thread-safe libraries),
1514[
Barry Warsawc0d24d8b2000-06-29 16:12:00 +00001515AC_MSG_RESULT($withval)
Guido van Rossum54d93d41997-01-22 20:51:58 +00001516LDLAST=-threads
Guido van Rossumf78abae1997-01-21 22:02:36 +00001517if test "${with_thread+set}" != set; then
Guido van Rossum54d93d41997-01-22 20:51:58 +00001518 with_thread="$withval";
1519fi],
Martin v. Löwis3e2c6322002-10-29 10:07:43 +00001520[AC_MSG_RESULT(no)])
Guido van Rossum54d93d41997-01-22 20:51:58 +00001521
Martin v. Löwis11437992002-04-12 09:54:03 +00001522# Templates for things AC_DEFINEd more than once.
1523# For a single AC_DEFINE, no template is needed.
1524AH_TEMPLATE(C_THREADS,[Define if you have the Mach cthreads package])
1525AH_TEMPLATE(_REENTRANT,
1526 [Define to force use of thread-safe errno, h_errno, and other functions])
1527AH_TEMPLATE(WITH_THREAD,
1528 [Define if you want to compile in rudimentary thread support])
1529
Guido van Rossum54d93d41997-01-22 20:51:58 +00001530AC_MSG_CHECKING(for --with-threads)
Martin v. Löwis3e2c6322002-10-29 10:07:43 +00001531dnl quadrigraphs "@<:@" and "@:>@" produce "[" and "]" in the output
Barry Warsawc0d24d8b2000-06-29 16:12:00 +00001532AC_ARG_WITH(threads,
Martin v. Löwis3e2c6322002-10-29 10:07:43 +00001533 AC_HELP_STRING(--with(out)-threads@<:@=DIRECTORY@:>@, disable/enable thread support))
Guido van Rossum54d93d41997-01-22 20:51:58 +00001534
Barry Warsawc0d24d8b2000-06-29 16:12:00 +00001535# --with-thread is deprecated, but check for it anyway
Martin v. Löwis3e2c6322002-10-29 10:07:43 +00001536dnl quadrigraphs "@<:@" and "@:>@" produce "[" and "]" in the output
Barry Warsawa0f3c5c2000-06-30 16:39:35 +00001537AC_ARG_WITH(thread,
Martin v. Löwis3e2c6322002-10-29 10:07:43 +00001538 AC_HELP_STRING(--with(out)-thread@<:@=DIRECTORY@:>@, deprecated; use --with(out)-threads),
1539 [with_threads=$with_thread])
Barry Warsawc0d24d8b2000-06-29 16:12:00 +00001540
1541if test -z "$with_threads"
1542then with_threads="yes"
Guido van Rossum433c8ad1994-08-01 12:07:07 +00001543fi
Barry Warsawc0d24d8b2000-06-29 16:12:00 +00001544AC_MSG_RESULT($with_threads)
Guido van Rossum6400c261997-05-22 20:34:27 +00001545
Martin v. Löwis2d7e2642002-04-05 16:50:53 +00001546AC_SUBST(THREADOBJ)
Barry Warsawc0d24d8b2000-06-29 16:12:00 +00001547if test "$with_threads" = "no"
1548then
1549 USE_THREAD_MODULE="#"
Martin v. Löwisa5f73f92001-10-15 08:06:29 +00001550elif test "$ac_cv_pthread_is_default" = yes
1551then
1552 AC_DEFINE(WITH_THREAD)
Martin v. Löwisa5f73f92001-10-15 08:06:29 +00001553 # Defining _REENTRANT on system with POSIX threads should not hurt.
1554 AC_DEFINE(_REENTRANT)
1555 posix_threads=yes
Martin v. Löwis2d7e2642002-04-05 16:50:53 +00001556 THREADOBJ="Python/thread.o"
Martin v. Löwis130fb172001-07-19 11:00:41 +00001557elif test "$ac_cv_kpthread" = "yes"
1558then
1559 CC="$CC -Kpthread"
Martin v. Löwis519adae2003-09-20 10:47:47 +00001560 if test "$ac_cv_cxx_thread" = "yes"; then
1561 CXX="$CXX -Kpthread"
1562 fi
Martin v. Löwis130fb172001-07-19 11:00:41 +00001563 AC_DEFINE(WITH_THREAD)
Guido van Rossumd0b69ec2001-09-10 14:10:54 +00001564 posix_threads=yes
Martin v. Löwis2d7e2642002-04-05 16:50:53 +00001565 THREADOBJ="Python/thread.o"
Martin v. Löwis5f433f02003-05-05 05:05:30 +00001566elif test "$ac_cv_kthread" = "yes"
1567then
1568 CC="$CC -Kthread"
Martin v. Löwis519adae2003-09-20 10:47:47 +00001569 if test "$ac_cv_cxx_thread" = "yes"; then
1570 CXX="$CXX -Kthread"
1571 fi
Martin v. Löwis5f433f02003-05-05 05:05:30 +00001572 AC_DEFINE(WITH_THREAD)
1573 posix_threads=yes
1574 THREADOBJ="Python/thread.o"
Martin v. Löwis4ee6eef2003-05-26 05:37:51 +00001575elif test "$ac_cv_pthread" = "yes"
1576then
1577 CC="$CC -pthread"
Martin v. Löwis519adae2003-09-20 10:47:47 +00001578 if test "$ac_cv_cxx_thread" = "yes"; then
1579 CXX="$CXX -pthread"
1580 fi
Martin v. Löwis4ee6eef2003-05-26 05:37:51 +00001581 AC_DEFINE(WITH_THREAD)
1582 posix_threads=yes
1583 THREADOBJ="Python/thread.o"
Barry Warsawc0d24d8b2000-06-29 16:12:00 +00001584else
Martin v. Löwis130fb172001-07-19 11:00:41 +00001585 if test ! -z "$with_threads" -a -d "$with_threads"
1586 then LDFLAGS="$LDFLAGS -L$with_threads"
1587 fi
1588 if test ! -z "$withval" -a -d "$withval"
1589 then LDFLAGS="$LDFLAGS -L$withval"
1590 fi
Martin v. Löwis69c0ff32001-10-15 14:34:42 +00001591
1592 # According to the POSIX spec, a pthreads implementation must
1593 # define _POSIX_THREADS in unistd.h. Some apparently don't (which ones?)
1594 AC_MSG_CHECKING(for _POSIX_THREADS in unistd.h)
1595 AC_EGREP_CPP(yes,
Neal Norwitz6eb37f02003-02-23 23:28:15 +00001596 [
1597#include <unistd.h>
1598#ifdef _POSIX_THREADS
1599yes
1600#endif
Martin v. Löwis69c0ff32001-10-15 14:34:42 +00001601 ], unistd_defines_pthreads=yes, unistd_defines_pthreads=no)
1602 AC_MSG_RESULT($unistd_defines_pthreads)
1603
Martin v. Löwis130fb172001-07-19 11:00:41 +00001604 AC_DEFINE(_REENTRANT)
Martin v. Löwisa6e97582002-01-01 18:41:33 +00001605 AC_CHECK_HEADER(cthreads.h, [AC_DEFINE(WITH_THREAD)
1606 AC_DEFINE(C_THREADS)
Martin v. Löwisc45929e2002-04-06 10:10:49 +00001607 AC_DEFINE(HURD_C_THREADS, 1,
1608 [Define if you are using Mach cthreads directly under /include])
Martin v. Löwisa6e97582002-01-01 18:41:33 +00001609 LIBS="$LIBS -lthreads"
Martin v. Löwis2d7e2642002-04-05 16:50:53 +00001610 THREADOBJ="Python/thread.o"],[
Martin v. Löwis130fb172001-07-19 11:00:41 +00001611 AC_CHECK_HEADER(mach/cthreads.h, [AC_DEFINE(WITH_THREAD)
1612 AC_DEFINE(C_THREADS)
Martin v. Löwisc45929e2002-04-06 10:10:49 +00001613 AC_DEFINE(MACH_C_THREADS, 1,
1614 [Define if you are using Mach cthreads under mach /])
Martin v. Löwis2d7e2642002-04-05 16:50:53 +00001615 THREADOBJ="Python/thread.o"],[
Martin v. Löwis130fb172001-07-19 11:00:41 +00001616 AC_MSG_CHECKING(for --with-pth)
Martin v. Löwis3e2c6322002-10-29 10:07:43 +00001617 AC_ARG_WITH([pth],
1618 AC_HELP_STRING(--with-pth, use GNU pth threading libraries),
1619 [AC_MSG_RESULT($withval)
1620 AC_DEFINE([WITH_THREAD])
1621 AC_DEFINE([HAVE_PTH], 1,
1622 [Define if you have GNU PTH threads.])
1623 LIBS="-lpth $LIBS"
1624 THREADOBJ="Python/thread.o"],
1625 [AC_MSG_RESULT(no)
Martin v. Löwis8158b5a2001-10-08 13:17:28 +00001626
1627 # Just looking for pthread_create in libpthread is not enough:
1628 # on HP/UX, pthread.h renames pthread_create to a different symbol name.
1629 # So we really have to include pthread.h, and then link.
1630 _libs=$LIBS
1631 LIBS="$LIBS -lpthread"
1632 AC_MSG_CHECKING([for pthread_create in -lpthread])
1633 AC_TRY_LINK([#include <pthread.h>
1634
1635void * start_routine (void *arg) { exit (0); }], [
1636pthread_create (NULL, NULL, start_routine, NULL)], [
1637 AC_MSG_RESULT(yes)
1638 AC_DEFINE(WITH_THREAD)
Martin v. Löwis69c0ff32001-10-15 14:34:42 +00001639 posix_threads=yes
Martin v. Löwis2d7e2642002-04-05 16:50:53 +00001640 THREADOBJ="Python/thread.o"],[
Martin v. Löwis8158b5a2001-10-08 13:17:28 +00001641 LIBS=$_libs
Martin v. Löwis130fb172001-07-19 11:00:41 +00001642 AC_CHECK_FUNC(pthread_detach, [AC_DEFINE(WITH_THREAD)
Martin v. Löwis69c0ff32001-10-15 14:34:42 +00001643 posix_threads=yes
Martin v. Löwis2d7e2642002-04-05 16:50:53 +00001644 THREADOBJ="Python/thread.o"],[
Martin v. Löwisf90ae202002-06-11 06:22:31 +00001645 AC_CHECK_HEADER(atheos/threads.h, [AC_DEFINE(WITH_THREAD)
1646 AC_DEFINE(ATHEOS_THREADS, 1,
1647 [Define this if you have AtheOS threads.])
1648 THREADOBJ="Python/thread.o"],[
Martin v. Löwis130fb172001-07-19 11:00:41 +00001649 AC_CHECK_HEADER(kernel/OS.h, [AC_DEFINE(WITH_THREAD)
Martin v. Löwisc45929e2002-04-06 10:10:49 +00001650 AC_DEFINE(BEOS_THREADS, 1,
1651 [Define this if you have BeOS threads.])
Martin v. Löwis2d7e2642002-04-05 16:50:53 +00001652 THREADOBJ="Python/thread.o"],[
Martin v. Löwis130fb172001-07-19 11:00:41 +00001653 AC_CHECK_LIB(pthreads, pthread_create, [AC_DEFINE(WITH_THREAD)
Guido van Rossumd0b69ec2001-09-10 14:10:54 +00001654 posix_threads=yes
Martin v. Löwis130fb172001-07-19 11:00:41 +00001655 LIBS="$LIBS -lpthreads"
Martin v. Löwis2d7e2642002-04-05 16:50:53 +00001656 THREADOBJ="Python/thread.o"], [
Martin v. Löwis130fb172001-07-19 11:00:41 +00001657 AC_CHECK_LIB(c_r, pthread_create, [AC_DEFINE(WITH_THREAD)
Guido van Rossumd0b69ec2001-09-10 14:10:54 +00001658 posix_threads=yes
Martin v. Löwis130fb172001-07-19 11:00:41 +00001659 LIBS="$LIBS -lc_r"
Martin v. Löwis2d7e2642002-04-05 16:50:53 +00001660 THREADOBJ="Python/thread.o"], [
Martin v. Löwis130fb172001-07-19 11:00:41 +00001661 AC_CHECK_LIB(thread, __d6_pthread_create, [AC_DEFINE(WITH_THREAD)
Martin v. Löwis779ffc02002-12-02 22:17:01 +00001662 echo Systems with __d6_pthread_create are not supported anymore.
1663 echo See README
1664 exit 1
Guido van Rossumd0b69ec2001-09-10 14:10:54 +00001665 posix_threads=yes
Martin v. Löwis130fb172001-07-19 11:00:41 +00001666 LIBS="$LIBS -lthread"
Martin v. Löwis2d7e2642002-04-05 16:50:53 +00001667 THREADOBJ="Python/thread.o"], [
Martin v. Löwis130fb172001-07-19 11:00:41 +00001668 AC_CHECK_LIB(pthread, __pthread_create_system, [AC_DEFINE(WITH_THREAD)
Guido van Rossumd0b69ec2001-09-10 14:10:54 +00001669 posix_threads=yes
Martin v. Löwis130fb172001-07-19 11:00:41 +00001670 LIBS="$LIBS -lpthread"
Martin v. Löwis2d7e2642002-04-05 16:50:53 +00001671 THREADOBJ="Python/thread.o"], [
Martin v. Löwis130fb172001-07-19 11:00:41 +00001672 AC_CHECK_LIB(cma, pthread_create, [AC_DEFINE(WITH_THREAD)
Guido van Rossumd0b69ec2001-09-10 14:10:54 +00001673 posix_threads=yes
Martin v. Löwis130fb172001-07-19 11:00:41 +00001674 LIBS="$LIBS -lcma"
Martin v. Löwis2d7e2642002-04-05 16:50:53 +00001675 THREADOBJ="Python/thread.o"],[
Martin v. Löwis130fb172001-07-19 11:00:41 +00001676 USE_THREAD_MODULE="#"])
Martin v. Löwisf90ae202002-06-11 06:22:31 +00001677 ])])])])])])])])])])])
Barry Warsawc0d24d8b2000-06-29 16:12:00 +00001678
Martin v. Löwis4ee6eef2003-05-26 05:37:51 +00001679 AC_CHECK_LIB(mpc, usconfig, [AC_DEFINE(WITH_THREAD)
1680 LIBS="$LIBS -lmpc"
1681 THREADOBJ="Python/thread.o"
1682 USE_THREAD_MODULE=""])
1683
1684 if test "$posix_threads" != "yes"; then
1685 AC_CHECK_LIB(thread, thr_create, [AC_DEFINE(WITH_THREAD)
1686 LIBS="$LIBS -lthread"
1687 THREADOBJ="Python/thread.o"
1688 USE_THREAD_MODULE=""])
1689 fi
1690
1691 if test "$USE_THREAD_MODULE" != "#"
1692 then
1693 # If the above checks didn't disable threads, (at least) OSF1
1694 # needs this '-threads' argument during linking.
1695 case $ac_sys_system in
1696 OSF1) LDLAST=-threads;;
1697 esac
1698 fi
1699fi
1700
1701if test "$posix_threads" = "yes"; then
Martin v. Löwis69c0ff32001-10-15 14:34:42 +00001702 if test "$unistd_defines_pthreads" = "no"; then
Martin v. Löwisc45929e2002-04-06 10:10:49 +00001703 AC_DEFINE(_POSIX_THREADS, 1,
1704 [Define if you have POSIX threads,
1705 and your system does not define that.])
Martin v. Löwis69c0ff32001-10-15 14:34:42 +00001706 fi
1707
Martin v. Löwisdfc33fd2003-01-21 10:14:41 +00001708 # Bug 662787: Using semaphores causes unexplicable hangs on Solaris 8.
1709 case $ac_sys_system/$ac_sys_release in
Martin v. Löwis4ee6eef2003-05-26 05:37:51 +00001710 SunOS/5.6) AC_DEFINE(HAVE_PTHREAD_DESTRUCTOR, 1,
1711 Defined for Solaris 2.6 bug in pthread header.)
1712 ;;
Martin v. Löwisdfc33fd2003-01-21 10:14:41 +00001713 SunOS/5.8) AC_DEFINE(HAVE_BROKEN_POSIX_SEMAPHORES, 1,
Martin v. Löwis4ee6eef2003-05-26 05:37:51 +00001714 Define if the Posix semaphores do not work on your system)
1715 ;;
Martin v. Löwisdfc33fd2003-01-21 10:14:41 +00001716 esac
1717
Guido van Rossumd0b69ec2001-09-10 14:10:54 +00001718 AC_MSG_CHECKING(if PTHREAD_SCOPE_SYSTEM is supported)
1719 AC_CACHE_VAL(ac_cv_pthread_system_supported,
1720 [AC_TRY_RUN([#include <pthread.h>
1721 void *foo(void *parm) {
1722 return NULL;
1723 }
1724 main() {
1725 pthread_attr_t attr;
Martin v. Löwisa82d3472002-02-24 16:05:05 +00001726 pthread_t id;
Guido van Rossumd0b69ec2001-09-10 14:10:54 +00001727 if (pthread_attr_init(&attr)) exit(-1);
1728 if (pthread_attr_setscope(&attr, PTHREAD_SCOPE_SYSTEM)) exit(-1);
Martin v. Löwisa82d3472002-02-24 16:05:05 +00001729 if (pthread_create(&id, &attr, foo, NULL)) exit(-1);
Guido van Rossumd0b69ec2001-09-10 14:10:54 +00001730 exit(0);
Guido van Rossum3065c942001-09-17 04:03:14 +00001731 }],
1732 ac_cv_pthread_system_supported=yes,
1733 ac_cv_pthread_system_supported=no,
1734 ac_cv_pthread_system_supported=no)
Guido van Rossumd0b69ec2001-09-10 14:10:54 +00001735 ])
1736 AC_MSG_RESULT($ac_cv_pthread_system_supported)
1737 if test "$ac_cv_pthread_system_supported" = "yes"; then
Martin v. Löwisc45929e2002-04-06 10:10:49 +00001738 AC_DEFINE(PTHREAD_SYSTEM_SCHED_SUPPORTED, 1, [Defined if PTHREAD_SCOPE_SYSTEM supported.])
Guido van Rossumd0b69ec2001-09-10 14:10:54 +00001739 fi
Jason Tishlerfac083d2003-07-22 15:20:49 +00001740 AC_CHECK_FUNCS(pthread_sigmask,
1741 [case $ac_sys_system in
1742 CYGWIN*)
1743 AC_DEFINE(HAVE_BROKEN_PTHREAD_SIGMASK, 1,
1744 [Define if pthread_sigmask() does not work on your system.])
1745 ;;
1746 esac])
Barry Warsawc0d24d8b2000-06-29 16:12:00 +00001747fi
Guido van Rossum433c8ad1994-08-01 12:07:07 +00001748
Martin v. Löwis4ee6eef2003-05-26 05:37:51 +00001749
Martin v. Löwisa2ac6022001-08-09 11:40:14 +00001750# Check for enable-ipv6
Martin v. Löwis11437992002-04-12 09:54:03 +00001751AH_TEMPLATE(ENABLE_IPV6, [Define if --enable-ipv6 is specified])
Martin v. Löwisa5f8bb52001-09-05 08:22:34 +00001752AC_MSG_CHECKING([if --enable-ipv6 is specified])
Martin v. Löwisa2ac6022001-08-09 11:40:14 +00001753AC_ARG_ENABLE(ipv6,
Martin v. Löwis3e2c6322002-10-29 10:07:43 +00001754[ --enable-ipv6 Enable ipv6 (with ipv4) support
1755 --disable-ipv6 Disable ipv6 support],
Martin v. Löwisa2ac6022001-08-09 11:40:14 +00001756[ case "$enableval" in
1757 no)
1758 AC_MSG_RESULT(no)
1759 ipv6=no
1760 ;;
1761 *) AC_MSG_RESULT(yes)
1762 AC_DEFINE(ENABLE_IPV6)
1763 ipv6=yes
1764 ;;
1765 esac ],
1766
Martin v. Löwisa5f8bb52001-09-05 08:22:34 +00001767[
1768dnl the check does not work on cross compilation case...
Martin v. Löwisa2ac6022001-08-09 11:40:14 +00001769 AC_TRY_RUN([ /* AF_INET6 available check */
1770#include <sys/types.h>
1771#include <sys/socket.h>
1772main()
1773{
1774 if (socket(AF_INET6, SOCK_STREAM, 0) < 0)
1775 exit(1);
1776 else
1777 exit(0);
1778}
1779],
1780 AC_MSG_RESULT(yes)
Martin v. Löwisa2ac6022001-08-09 11:40:14 +00001781 ipv6=yes,
1782 AC_MSG_RESULT(no)
1783 ipv6=no,
1784 AC_MSG_RESULT(no)
1785 ipv6=no
Martin v. Löwisa5f8bb52001-09-05 08:22:34 +00001786)
1787
1788if test "$ipv6" = "yes"; then
1789 AC_MSG_CHECKING(if RFC2553 API is available)
1790 AC_TRY_COMPILE([#include <sys/types.h>
1791#include <netinet/in.h>],
1792 [struct sockaddr_in6 x;
1793x.sin6_scope_id;],
1794 AC_MSG_RESULT(yes)
1795 ipv6=yes,
1796 AC_MSG_RESULT(no, IPv6 disabled)
1797 ipv6=no)
1798fi
1799
1800if test "$ipv6" = "yes"; then
1801 AC_DEFINE(ENABLE_IPV6)
1802fi
1803])
Martin v. Löwisa2ac6022001-08-09 11:40:14 +00001804
1805ipv6type=unknown
1806ipv6lib=none
1807ipv6trylibc=no
1808
1809if test "$ipv6" = "yes"; then
1810 AC_MSG_CHECKING([ipv6 stack type])
Guido van Rossumb8552162001-09-05 14:58:11 +00001811 for i in inria kame linux-glibc linux-inet6 solaris toshiba v6d zeta;
1812 do
Martin v. Löwisa2ac6022001-08-09 11:40:14 +00001813 case $i in
1814 inria)
1815 dnl http://www.kame.net/
Martin v. Löwisa5f73f92001-10-15 08:06:29 +00001816 AC_EGREP_CPP(yes, [
Martin v. Löwisa2ac6022001-08-09 11:40:14 +00001817#include <netinet/in.h>
1818#ifdef IPV6_INRIA_VERSION
1819yes
1820#endif],
Martin v. Löwis44ddbde2001-12-02 10:15:37 +00001821 [ipv6type=$i])
Martin v. Löwisa2ac6022001-08-09 11:40:14 +00001822 ;;
1823 kame)
1824 dnl http://www.kame.net/
Martin v. Löwisa5f73f92001-10-15 08:06:29 +00001825 AC_EGREP_CPP(yes, [
Martin v. Löwisa2ac6022001-08-09 11:40:14 +00001826#include <netinet/in.h>
1827#ifdef __KAME__
1828yes
1829#endif],
1830 [ipv6type=$i;
1831 ipv6lib=inet6
1832 ipv6libdir=/usr/local/v6/lib
Martin v. Löwis44ddbde2001-12-02 10:15:37 +00001833 ipv6trylibc=yes])
Martin v. Löwisa2ac6022001-08-09 11:40:14 +00001834 ;;
1835 linux-glibc)
1836 dnl http://www.v6.linux.or.jp/
Martin v. Löwisa5f73f92001-10-15 08:06:29 +00001837 AC_EGREP_CPP(yes, [
Martin v. Löwisa2ac6022001-08-09 11:40:14 +00001838#include <features.h>
1839#if defined(__GLIBC__) && ((__GLIBC__ == 2 && __GLIBC_MINOR__ >= 1) || (__GLIBC__ > 2))
1840yes
1841#endif],
1842 [ipv6type=$i;
Martin v. Löwis44ddbde2001-12-02 10:15:37 +00001843 ipv6trylibc=yes])
Martin v. Löwisa2ac6022001-08-09 11:40:14 +00001844 ;;
1845 linux-inet6)
1846 dnl http://www.v6.linux.or.jp/
1847 if test -d /usr/inet6; then
1848 ipv6type=$i
1849 ipv6lib=inet6
1850 ipv6libdir=/usr/inet6/lib
Skip Montanarodecc6a42003-01-01 20:07:49 +00001851 BASECFLAGS="-I/usr/inet6/include $BASECFLAGS"
Martin v. Löwisa2ac6022001-08-09 11:40:14 +00001852 fi
1853 ;;
1854 solaris)
1855 if test -f /etc/netconfig; then
1856 if /usr/xpg4/bin/grep -q tcp6 /etc/netconfig; then
1857 ipv6type=$i
1858 ipv6trylibc=yes
Martin v. Löwisa2ac6022001-08-09 11:40:14 +00001859 fi
1860 fi
1861 ;;
1862 toshiba)
Martin v. Löwisa5f73f92001-10-15 08:06:29 +00001863 AC_EGREP_CPP(yes, [
Martin v. Löwisa2ac6022001-08-09 11:40:14 +00001864#include <sys/param.h>
1865#ifdef _TOSHIBA_INET6
1866yes
1867#endif],
1868 [ipv6type=$i;
1869 ipv6lib=inet6;
Martin v. Löwis44ddbde2001-12-02 10:15:37 +00001870 ipv6libdir=/usr/local/v6/lib])
Martin v. Löwisa2ac6022001-08-09 11:40:14 +00001871 ;;
1872 v6d)
Martin v. Löwisa5f73f92001-10-15 08:06:29 +00001873 AC_EGREP_CPP(yes, [
Martin v. Löwisa2ac6022001-08-09 11:40:14 +00001874#include </usr/local/v6/include/sys/v6config.h>
1875#ifdef __V6D__
1876yes
1877#endif],
1878 [ipv6type=$i;
1879 ipv6lib=v6;
1880 ipv6libdir=/usr/local/v6/lib;
Skip Montanarodecc6a42003-01-01 20:07:49 +00001881 BASECFLAGS="-I/usr/local/v6/include $BASECFLAGS"])
Martin v. Löwisa2ac6022001-08-09 11:40:14 +00001882 ;;
1883 zeta)
Martin v. Löwisa5f73f92001-10-15 08:06:29 +00001884 AC_EGREP_CPP(yes, [
Martin v. Löwisa2ac6022001-08-09 11:40:14 +00001885#include <sys/param.h>
1886#ifdef _ZETA_MINAMI_INET6
1887yes
1888#endif],
1889 [ipv6type=$i;
1890 ipv6lib=inet6;
Martin v. Löwis44ddbde2001-12-02 10:15:37 +00001891 ipv6libdir=/usr/local/v6/lib])
Martin v. Löwisa2ac6022001-08-09 11:40:14 +00001892 ;;
1893 esac
1894 if test "$ipv6type" != "unknown"; then
1895 break
1896 fi
1897 done
1898 AC_MSG_RESULT($ipv6type)
1899fi
1900
1901if test "$ipv6" = "yes" -a "$ipv6lib" != "none"; then
1902 if test -d $ipv6libdir -a -f $ipv6libdir/lib$ipv6lib.a; then
1903 LIBS="-L$ipv6libdir -l$ipv6lib $LIBS"
1904 echo "using lib$ipv6lib"
1905 else
1906 if test $ipv6trylibc = "yes"; then
1907 echo "using libc"
1908 else
1909 echo 'Fatal: no $ipv6lib library found. cannot continue.'
1910 echo "You need to fetch lib$ipv6lib.a from appropriate"
1911 echo 'ipv6 kit and compile beforehand.'
1912 exit 1
1913 fi
1914 fi
1915fi
1916
Jack Jansen7b8c7542002-04-14 20:12:41 +00001917# Check for universal newline support
Guido van Rossum402905e2002-08-15 13:56:35 +00001918AC_MSG_CHECKING(for --with-universal-newlines)
Jack Jansen7b8c7542002-04-14 20:12:41 +00001919AC_ARG_WITH(universal-newlines,
Martin v. Löwis3e2c6322002-10-29 10:07:43 +00001920 AC_HELP_STRING(--with(out)-universal-newlines, disable/enable foreign newlines))
Jack Jansen7b8c7542002-04-14 20:12:41 +00001921
1922if test -z "$with_universal_newlines"
1923then with_universal_newlines="yes"
1924fi
Martin v. Löwis7e4cfcb2002-12-19 16:21:49 +00001925if test "$with_universal_newlines" = "no"
Martin v. Löwis03d00d52002-12-19 19:03:31 +00001926then
Martin v. Löwis7e4cfcb2002-12-19 16:21:49 +00001927 echo --without-universal-newlines is unsupported, see README
1928 exit 1
Martin v. Löwis03d00d52002-12-19 19:03:31 +00001929else
Martin v. Löwise8aea582002-04-16 05:51:02 +00001930 AC_DEFINE(WITH_UNIVERSAL_NEWLINES, 1,
1931 [Define if you want to read files with foreign newlines.])
Jack Jansen7b8c7542002-04-14 20:12:41 +00001932fi
1933AC_MSG_RESULT($with_universal_newlines)
1934
Martin v. Löwisa3fb4f72002-06-09 13:33:54 +00001935# Check for --with-doc-strings
1936AC_MSG_CHECKING(for --with-doc-strings)
1937AC_ARG_WITH(doc-strings,
Martin v. Löwis3e2c6322002-10-29 10:07:43 +00001938 AC_HELP_STRING(--with(out)-doc-strings, disable/enable documentation strings))
Martin v. Löwisa3fb4f72002-06-09 13:33:54 +00001939
1940if test -z "$with_doc_strings"
1941then with_doc_strings="yes"
1942fi
1943if test "$with_doc_strings" != "no"
1944then
1945 AC_DEFINE(WITH_DOC_STRINGS, 1,
1946 [Define if you want documentation strings in extension modules])
1947fi
1948AC_MSG_RESULT($with_doc_strings)
1949
Neil Schemenauera35c6882001-02-27 04:45:05 +00001950# Check for Python-specific malloc support
1951AC_MSG_CHECKING(for --with-pymalloc)
1952AC_ARG_WITH(pymalloc,
Martin v. Löwis3e2c6322002-10-29 10:07:43 +00001953 AC_HELP_STRING(--with(out)-pymalloc, disable/enable specialized mallocs))
Neil Schemenauer16c22972002-03-22 15:34:49 +00001954
1955if test -z "$with_pymalloc"
1956then with_pymalloc="yes"
1957fi
1958if test "$with_pymalloc" != "no"
1959then
Martin v. Löwisc45929e2002-04-06 10:10:49 +00001960 AC_DEFINE(WITH_PYMALLOC, 1,
1961 [Define if you want to compile in Python-specific mallocs])
Neil Schemenauer16c22972002-03-22 15:34:49 +00001962fi
1963AC_MSG_RESULT($with_pymalloc)
Neil Schemenauera35c6882001-02-27 04:45:05 +00001964
Barry Warsawef82cd72000-06-30 16:21:01 +00001965# Check for --with-wctype-functions
1966AC_MSG_CHECKING(for --with-wctype-functions)
1967AC_ARG_WITH(wctype-functions,
Martin v. Löwis3e2c6322002-10-29 10:07:43 +00001968 AC_HELP_STRING(--with-wctype-functions, use wctype.h functions),
1969[
Barry Warsawef82cd72000-06-30 16:21:01 +00001970if test "$withval" != no
Martin v. Löwisc45929e2002-04-06 10:10:49 +00001971then
1972 AC_DEFINE(WANT_WCTYPE_FUNCTIONS, 1,
1973 [Define if you want wctype.h functions to be used instead of the
1974 one supplied by Python itself. (see Include/unicodectype.h).])
1975 AC_MSG_RESULT(yes)
Barry Warsawef82cd72000-06-30 16:21:01 +00001976else AC_MSG_RESULT(no)
1977fi],
1978[AC_MSG_RESULT(no)])
1979
Guido van Rossum68242b51996-05-28 22:53:03 +00001980# -I${DLINCLDIR} is added to the compile rule for importdl.o
Guido van Rossum433c8ad1994-08-01 12:07:07 +00001981AC_SUBST(DLINCLDIR)
Guido van Rossum98935bf2001-09-05 19:13:16 +00001982DLINCLDIR=.
Guido van Rossum433c8ad1994-08-01 12:07:07 +00001983
Guido van Rossum5739e7e1995-01-20 16:50:53 +00001984AC_MSG_CHECKING(for --with-sgi-dl)
Barry Warsawc0d24d8b2000-06-29 16:12:00 +00001985AC_ARG_WITH(sgi-dl,
Martin v. Löwis3e2c6322002-10-29 10:07:43 +00001986 AC_HELP_STRING(--with-sgi-dl=DIRECTORY, IRIX 4 dynamic linking),
1987[
Guido van Rossum5739e7e1995-01-20 16:50:53 +00001988AC_MSG_RESULT($withval)
Martin v. Löwis9ef33762002-12-02 22:23:56 +00001989echo --with-sgi-dl is unsupported, see README
Martin v. Löwis779ffc02002-12-02 22:17:01 +00001990exit 1
Martin v. Löwisc45929e2002-04-06 10:10:49 +00001991AC_DEFINE(WITH_SGI_DL, 1,
1992 [Define if you want to use SGI (IRIX 4) dynamic linking.
1993 This requires the "dl" library by Jack Jansen,
1994 ftp://ftp.cwi.nl/pub/dynload/dl-1.6.tar.Z.
1995 Do not bother on IRIX 5, it already has dynamic linking using SunOS
1996 style shared libraries])
Guido van Rossume97ee181999-12-20 21:27:22 +00001997DYNLOADFILE="dynload_dl.o"
Guido van Rossum433c8ad1994-08-01 12:07:07 +00001998dldir=$withval
Guido van Rossum40951012000-10-07 16:21:27 +00001999if test ! -z "$dldir" -a -d "$dldir"
Guido van Rossum300fda71996-08-19 21:58:16 +00002000then LDFLAGS="$LDFLAGS -L$dldir"
Martin v. Löwis3e2c6322002-10-29 10:07:43 +00002001else AC_MSG_ERROR([proper usage is --with-sgi-dl=DIRECTORY])
Guido van Rossum433c8ad1994-08-01 12:07:07 +00002002fi
2003DLINCLDIR=${dldir}
Guido van Rossum5739e7e1995-01-20 16:50:53 +00002004LIBS="$LIBS -ldl -lmld"], AC_MSG_RESULT(no))
Guido van Rossum433c8ad1994-08-01 12:07:07 +00002005
Guido van Rossum5739e7e1995-01-20 16:50:53 +00002006AC_MSG_CHECKING(for --with-dl-dld)
Martin v. Löwis3e2c6322002-10-29 10:07:43 +00002007AC_ARG_WITH(dl-dld,
2008 AC_HELP_STRING(--with-dl-dld=DL_DIR, GNU dynamic linking),
2009[
Guido van Rossum5739e7e1995-01-20 16:50:53 +00002010AC_MSG_RESULT($withval)
Martin v. Löwis9ef33762002-12-02 22:23:56 +00002011echo --with-dl-dld is unsupported, see README
Martin v. Löwis779ffc02002-12-02 22:17:01 +00002012exit 1
Martin v. Löwisc45929e2002-04-06 10:10:49 +00002013AC_DEFINE(WITH_DL_DLD, 1,
2014 [Define if you want to emulate SGI (IRIX 4) dynamic linking.
2015 This is rumoured to work on VAX (Ultrix), Sun3 (SunOS 3.4),
2016 Sequent Symmetry (Dynix), and Atari ST.
2017 This requires the 'dl-dld' library,
2018 ftp://ftp.cwi.nl/pub/dynload/dl-dld-1.1.tar.Z,
2019 as well as the 'GNU dld' library,
2020 ftp://ftp.cwi.nl/pub/dynload/dld-3.2.3.tar.Z.
2021 Do not bother on SunOS 4 or 5, they already have dynamic linking using
2022 shared libraries.])
Guido van Rossume97ee181999-12-20 21:27:22 +00002023DYNLOADFILE="dynload_dl.o"
Guido van Rossum433c8ad1994-08-01 12:07:07 +00002024dldir=`echo "$withval" | sed 's/,.*//'`
2025dlddir=`echo "$withval" | sed 's/.*,//'`
Barry Warsaw7d1219d2000-10-05 18:45:53 +00002026if test ! -z "$dldir" -a -d "$dldir" -a ! -z "$dlddir" -a -d "$dlddir"
Guido van Rossum300fda71996-08-19 21:58:16 +00002027then LDFLAGS="$LDFLAGS -L$dldir -L$dlddir"
Martin v. Löwis3e2c6322002-10-29 10:07:43 +00002028else AC_MSG_ERROR([proper usage is --with-dl-dld=DL_DIRECTORY,DLD_DIRECTORY])
Guido van Rossum433c8ad1994-08-01 12:07:07 +00002029fi
2030DLINCLDIR=${dldir}
Guido van Rossum5739e7e1995-01-20 16:50:53 +00002031LIBS="$LIBS -ldl -ldld"], AC_MSG_RESULT(no))
Guido van Rossum627b2d71993-12-24 10:39:16 +00002032
Guido van Rossume97ee181999-12-20 21:27:22 +00002033# the dlopen() function means we might want to use dynload_shlib.o. some
2034# platforms, such as AIX, have dlopen(), but don't want to use it.
Thomas Wouters3a584202000-08-05 23:28:51 +00002035AC_CHECK_FUNCS(dlopen)
Guido van Rossume97ee181999-12-20 21:27:22 +00002036
2037# DYNLOADFILE specifies which dynload_*.o file we will use for dynamic
2038# loading of modules.
2039AC_SUBST(DYNLOADFILE)
2040AC_MSG_CHECKING(DYNLOADFILE)
2041if test -z "$DYNLOADFILE"
2042then
2043 case $ac_sys_system/$ac_sys_release in
Martin v. Löwisc19c5a62003-11-18 20:00:44 +00002044 AIX*) # Use dynload_shlib.c and dlopen() if we have it; otherwise dynload_aix.c
2045 if test "$ac_cv_func_dlopen" = yes
2046 then DYNLOADFILE="dynload_shlib.o"
2047 else DYNLOADFILE="dynload_aix.o"
2048 fi
2049 ;;
Guido van Rossume97ee181999-12-20 21:27:22 +00002050 BeOS*) DYNLOADFILE="dynload_beos.o";;
2051 hp*|HP*) DYNLOADFILE="dynload_hpux.o";;
Jack Jansenb6e9cad2001-08-15 01:26:28 +00002052 Darwin/*) DYNLOADFILE="dynload_next.o";;
Martin v. Löwisf90ae202002-06-11 06:22:31 +00002053 atheos*) DYNLOADFILE="dynload_atheos.o";;
Guido van Rossume97ee181999-12-20 21:27:22 +00002054 *)
2055 # use dynload_shlib.c and dlopen() if we have it; otherwise stub
2056 # out any dynamic loading
2057 if test "$ac_cv_func_dlopen" = yes
2058 then DYNLOADFILE="dynload_shlib.o"
2059 else DYNLOADFILE="dynload_stub.o"
2060 fi
2061 ;;
2062 esac
2063fi
2064AC_MSG_RESULT($DYNLOADFILE)
2065if test "$DYNLOADFILE" != "dynload_stub.o"
2066then
Martin v. Löwisc45929e2002-04-06 10:10:49 +00002067 AC_DEFINE(HAVE_DYNAMIC_LOADING, 1,
2068 [Defined when any dynamic module loading is enabled.])
Guido van Rossume97ee181999-12-20 21:27:22 +00002069fi
2070
Jack Jansenc49e5b72001-06-19 15:00:23 +00002071# MACHDEP_OBJS can be set to platform-specific object files needed by Python
2072
2073AC_SUBST(MACHDEP_OBJS)
2074AC_MSG_CHECKING(MACHDEP_OBJS)
2075if test -z "$MACHDEP_OBJS"
2076then
Jack Jansenb6e9cad2001-08-15 01:26:28 +00002077 MACHDEP_OBJS=$extra_machdep_objs
2078else
2079 MACHDEP_OBJS="$MACHDEP_OBJS $extra_machdep_objs"
Jack Jansenc49e5b72001-06-19 15:00:23 +00002080fi
Jack Jansenb6e9cad2001-08-15 01:26:28 +00002081AC_MSG_RESULT(MACHDEP_OBJS)
Jack Jansenc49e5b72001-06-19 15:00:23 +00002082
Guido van Rossum627b2d71993-12-24 10:39:16 +00002083# checks for library functions
Martin v. Löwisd5843682002-11-21 20:41:28 +00002084AC_CHECK_FUNCS(alarm chown clock confstr ctermid execv \
Martin v. Löwisa64988c2003-09-20 15:30:20 +00002085 fork fpathconf ftime ftruncate \
Martin v. Löwis438b5342002-12-27 10:16:42 +00002086 gai_strerror getgroups getlogin getloadavg getpeername getpgid getpid \
Martin v. Löwis49ee14d2003-11-10 06:35:36 +00002087 getpriority getpwent getsid getwd \
Martin v. Löwise9416172003-05-03 10:12:45 +00002088 kill killpg lchown lstat mkfifo mknod mktime \
Martin v. Löwisa5f09072002-10-11 05:37:59 +00002089 mremap nice pathconf pause plock poll pthread_init \
Guido van Rossum162e38c2003-02-19 15:25:10 +00002090 putenv readlink realpath \
Martin v. Löwisd5843682002-11-21 20:41:28 +00002091 select setegid seteuid setgid \
Martin v. Löwis4daacb12003-03-28 18:37:01 +00002092 setlocale setregid setreuid setsid setpgid setpgrp setuid setvbuf snprintf \
Martin v. Löwisc8ad7cc2002-11-11 13:23:45 +00002093 sigaction siginterrupt sigrelse strftime strptime \
Michael W. Hudson34f20ea2002-05-27 15:08:24 +00002094 sysconf tcgetpgrp tcsetpgrp tempnam timegm times tmpfile tmpnam tmpnam_r \
Martin v. Löwis438b5342002-12-27 10:16:42 +00002095 truncate uname unsetenv utimes waitpid wcscoll _getpty)
Guido van Rossum00f0f6e1999-01-06 18:52:29 +00002096
Martin v. Löwisc8ad7cc2002-11-11 13:23:45 +00002097# For some functions, having a definition is not sufficient, since
2098# we want to take their address.
2099AC_MSG_CHECKING(for chroot)
2100AC_TRY_COMPILE([#include <unistd.h>], void *x=chroot,
2101 AC_DEFINE(HAVE_CHROOT, 1, Define if you have the 'chroot' function.)
2102 AC_MSG_RESULT(yes),
2103 AC_MSG_RESULT(no)
2104)
2105AC_MSG_CHECKING(for link)
2106AC_TRY_COMPILE([#include <unistd.h>], void *x=link,
2107 AC_DEFINE(HAVE_LINK, 1, Define if you have the 'link' function.)
2108 AC_MSG_RESULT(yes),
2109 AC_MSG_RESULT(no)
2110)
2111AC_MSG_CHECKING(for symlink)
2112AC_TRY_COMPILE([#include <unistd.h>], void *x=symlink,
2113 AC_DEFINE(HAVE_SYMLINK, 1, Define if you have the 'symlink' function.)
2114 AC_MSG_RESULT(yes),
2115 AC_MSG_RESULT(no)
2116)
Martin v. Löwisa64988c2003-09-20 15:30:20 +00002117AC_MSG_CHECKING(for fchdir)
2118AC_TRY_COMPILE([#include <unistd.h>], void *x=fchdir,
2119 AC_DEFINE(HAVE_FCHDIR, 1, Define if you have the 'fchdir' function.)
2120 AC_MSG_RESULT(yes),
2121 AC_MSG_RESULT(no)
2122)
2123AC_MSG_CHECKING(for fsync)
2124AC_TRY_COMPILE([#include <unistd.h>], void *x=fsync,
Skip Montanarod4fa8072003-09-25 14:49:15 +00002125 AC_DEFINE(HAVE_FSYNC, 1, Define if you have the 'fsync' function.)
Martin v. Löwisa64988c2003-09-20 15:30:20 +00002126 AC_MSG_RESULT(yes),
2127 AC_MSG_RESULT(no)
2128)
2129AC_MSG_CHECKING(for fdatasync)
2130AC_TRY_COMPILE([#include <unistd.h>], void *x=fdatasync,
2131 AC_DEFINE(HAVE_FDATASYNC, 1, Define if you have the 'fdatasync' function.)
2132 AC_MSG_RESULT(yes),
2133 AC_MSG_RESULT(no)
2134)
Martin v. Löwisc8ad7cc2002-11-11 13:23:45 +00002135
Martin v. Löwisd5843682002-11-21 20:41:28 +00002136# On some systems (eg. FreeBSD 5), we would find a definition of the
2137# functions ctermid_r, setgroups in the library, but no prototype
2138# (e.g. because we use _XOPEN_SOURCE). See whether we can take their
2139# address to avoid compiler warnings and potential miscompilations
2140# because of the missing prototypes.
2141
2142AC_MSG_CHECKING(for ctermid_r)
2143AC_TRY_COMPILE([
2144#include "confdefs.h"
2145#include <stdio.h>
2146], void* p = ctermid_r,
2147 AC_DEFINE(HAVE_CTERMID_R, 1, Define if you have the 'ctermid_r' function.)
2148 AC_MSG_RESULT(yes),
2149 AC_MSG_RESULT(no)
2150)
2151
Martin v. Löwisf26d63b2003-03-30 17:23:49 +00002152AC_MSG_CHECKING(for flock)
2153AC_TRY_COMPILE([
2154#include "confdefs.h"
2155#include <sys/file.h>
2156], void* p = flock,
2157 AC_DEFINE(HAVE_FLOCK, 1, Define if you have the 'flock' function.)
2158 AC_MSG_RESULT(yes),
2159 AC_MSG_RESULT(no)
2160)
2161
2162AC_MSG_CHECKING(for getpagesize)
2163AC_TRY_COMPILE([
2164#include "confdefs.h"
2165#include <unistd.h>
2166], void* p = getpagesize,
2167 AC_DEFINE(HAVE_GETPAGESIZE, 1, Define if you have the 'getpagesize' function.)
2168 AC_MSG_RESULT(yes),
2169 AC_MSG_RESULT(no)
2170)
2171
Martin v. Löwis4ee6eef2003-05-26 05:37:51 +00002172dnl check for true
2173AC_CHECK_PROGS(TRUE, true, /bin/true)
2174
Martin v. Löwis95c419b2003-05-03 12:10:48 +00002175dnl On some systems (e.g. Solaris 9), hstrerror and inet_aton are in -lresolv
2176dnl On others, they are in the C library, so we to take no action
Martin v. Löwis4ee6eef2003-05-26 05:37:51 +00002177AC_CHECK_LIB(c, inet_aton, [$ac_cv_prog_TRUE],
Martin v. Löwis95c419b2003-05-03 12:10:48 +00002178 AC_CHECK_LIB(resolv, inet_aton)
2179)
2180
Martin v. Löwise9416172003-05-03 10:12:45 +00002181AC_MSG_CHECKING(for hstrerror)
Martin v. Löwis95c419b2003-05-03 12:10:48 +00002182AC_TRY_LINK([
Martin v. Löwise9416172003-05-03 10:12:45 +00002183#include "confdefs.h"
2184#include <netdb.h>
Martin v. Löwis95c419b2003-05-03 12:10:48 +00002185], void* p = hstrerror; hstrerror(0),
Martin v. Löwise9416172003-05-03 10:12:45 +00002186 AC_DEFINE(HAVE_HSTRERROR, 1, Define if you have the 'hstrerror' function.)
2187 AC_MSG_RESULT(yes),
2188 AC_MSG_RESULT(no)
2189)
2190
2191AC_MSG_CHECKING(for inet_aton)
Martin v. Löwis95c419b2003-05-03 12:10:48 +00002192AC_TRY_LINK([
Martin v. Löwise9416172003-05-03 10:12:45 +00002193#include "confdefs.h"
2194#include <sys/socket.h>
2195#include <netinet/in.h>
2196#include <arpa/inet.h>
Martin v. Löwis95c419b2003-05-03 12:10:48 +00002197], void* p = inet_aton;inet_aton(0,0),
Martin v. Löwise9416172003-05-03 10:12:45 +00002198 AC_DEFINE(HAVE_INET_ATON, 1, Define if you have the 'inet_aton' function.)
2199 AC_MSG_RESULT(yes),
2200 AC_MSG_RESULT(no)
2201)
2202
2203AC_MSG_CHECKING(for inet_pton)
2204AC_TRY_COMPILE([
2205#include "confdefs.h"
Martin v. Löwisf2e488d2003-05-05 22:00:11 +00002206#include <sys/types.h>
Martin v. Löwise9416172003-05-03 10:12:45 +00002207#include <sys/socket.h>
2208#include <netinet/in.h>
2209#include <arpa/inet.h>
2210], void* p = inet_pton,
2211 AC_DEFINE(HAVE_INET_PTON, 1, Define if you have the 'inet_pton' function.)
2212 AC_MSG_RESULT(yes),
2213 AC_MSG_RESULT(no)
2214)
2215
Martin v. Löwisd6640d42003-07-06 09:29:52 +00002216# On some systems, setgroups is in unistd.h, on others, in grp.h
Martin v. Löwisd5843682002-11-21 20:41:28 +00002217AC_MSG_CHECKING(for setgroups)
2218AC_TRY_COMPILE([
2219#include "confdefs.h"
Martin v. Löwisf2e488d2003-05-05 22:00:11 +00002220#include <unistd.h>
Martin v. Löwisd6640d42003-07-06 09:29:52 +00002221#ifdef HAVE_GRP_H
2222#include <grp.h>
2223#endif
Martin v. Löwisd5843682002-11-21 20:41:28 +00002224],
2225void* p = setgroups,
2226 AC_DEFINE(HAVE_SETGROUPS, 1, Define if you have the 'setgroups' function.)
2227 AC_MSG_RESULT(yes),
2228 AC_MSG_RESULT(no)
2229)
2230
Fred Drake8cef4cf2000-06-28 16:40:38 +00002231# check for openpty and forkpty
2232
Martin v. Löwisc45929e2002-04-06 10:10:49 +00002233AC_CHECK_FUNCS(openpty,, AC_CHECK_LIB(util,openpty, [AC_DEFINE(HAVE_OPENPTY) LIBS="$LIBS -lutil"]))
2234AC_CHECK_FUNCS(forkpty,, AC_CHECK_LIB(util,forkpty, [AC_DEFINE(HAVE_FORKPTY) LIBS="$LIBS -lutil"]))
Fred Drake8cef4cf2000-06-28 16:40:38 +00002235
Guido van Rossum00f0f6e1999-01-06 18:52:29 +00002236# check for long file support functions
2237AC_CHECK_FUNCS(fseek64 fseeko fstatvfs ftell64 ftello statvfs)
2238
Guido van Rossumf2f7eb31996-08-30 15:18:00 +00002239AC_REPLACE_FUNCS(dup2 getcwd strdup strerror memmove)
Martin v. Löwisc45929e2002-04-06 10:10:49 +00002240AC_CHECK_FUNCS(getpgrp,
2241 AC_TRY_COMPILE([#include <unistd.h>],
2242 [getpgrp(0);],
2243 AC_DEFINE(GETPGRP_HAVE_ARG, 1,
2244 [Define if getpgrp() must be called as getpgrp(0).])
2245 )
2246)
Jack Jansen150753c2003-03-29 22:07:47 +00002247AC_CHECK_FUNCS(setpgrp,
2248 AC_TRY_COMPILE([#include <unistd.h>],
2249 [setpgrp(0,0);],
2250 AC_DEFINE(SETPGRP_HAVE_ARG, 1,
2251 [Define if setpgrp() must be called as setpgrp(0, 0).])
2252 )
Martin v. Löwisc45929e2002-04-06 10:10:49 +00002253)
2254AC_CHECK_FUNCS(gettimeofday,
2255 AC_TRY_COMPILE([#include <sys/time.h>],
2256 [gettimeofday((struct timeval*)0,(struct timezone*)0);], ,
2257 AC_DEFINE(GETTIMEOFDAY_NO_TZ, 1,
2258 [Define if gettimeofday() does not have second (timezone) argument
2259 This is the case on Motorola V4 (R40V4.2)])
2260 )
2261)
Guido van Rossum627b2d71993-12-24 10:39:16 +00002262
Martin v. Löwisdbe3f762002-10-10 14:27:30 +00002263AC_MSG_CHECKING(for major, minor, and makedev)
Martin v. Löwise3271202002-11-07 07:42:30 +00002264AC_TRY_LINK([
Neal Norwitz6eb37f02003-02-23 23:28:15 +00002265#if defined(MAJOR_IN_MKDEV)
2266#include <sys/mkdev.h>
2267#elif defined(MAJOR_IN_SYSMACROS)
2268#include <sys/sysmacros.h>
2269#else
2270#include <sys/types.h>
2271#endif
Martin v. Löwisdbe3f762002-10-10 14:27:30 +00002272],[
2273 makedev(major(0),minor(0));
2274],[
2275 AC_DEFINE(HAVE_DEVICE_MACROS, 1,
2276 [Define to 1 if you have the device macros.])
2277 AC_MSG_RESULT(yes)
2278],[
2279 AC_MSG_RESULT(no)
2280])
Martin v. Löwis861a65b2001-10-24 14:36:00 +00002281
2282# On OSF/1 V5.1, getaddrinfo is available, but a define
2283# for [no]getaddrinfo in netdb.h.
2284AC_MSG_CHECKING(for getaddrinfo)
2285AC_TRY_LINK([
Martin v. Löwisc010b6d2001-11-09 17:50:52 +00002286#include <sys/types.h>
Martin v. Löwis861a65b2001-10-24 14:36:00 +00002287#include <sys/socket.h>
2288#include <netdb.h>
Martin v. Löwisc010b6d2001-11-09 17:50:52 +00002289#include <stdio.h>
Martin v. Löwis861a65b2001-10-24 14:36:00 +00002290],[
2291getaddrinfo(NULL, NULL, NULL, NULL);
2292], [
2293AC_MSG_RESULT(yes)
Martin v. Löwis01dfdb32001-06-23 16:30:13 +00002294AC_MSG_CHECKING(getaddrinfo bug)
2295AC_TRY_RUN([
2296#include <sys/types.h>
2297#include <netdb.h>
2298#include <string.h>
2299#include <sys/socket.h>
2300#include <netinet/in.h>
2301
2302main()
2303{
2304 int passive, gaierr, inet4 = 0, inet6 = 0;
2305 struct addrinfo hints, *ai, *aitop;
2306 char straddr[INET6_ADDRSTRLEN], strport[16];
2307
2308 for (passive = 0; passive <= 1; passive++) {
2309 memset(&hints, 0, sizeof(hints));
2310 hints.ai_family = AF_UNSPEC;
2311 hints.ai_flags = passive ? AI_PASSIVE : 0;
2312 hints.ai_socktype = SOCK_STREAM;
2313 if ((gaierr = getaddrinfo(NULL, "54321", &hints, &aitop)) != 0) {
2314 (void)gai_strerror(gaierr);
2315 goto bad;
2316 }
2317 for (ai = aitop; ai; ai = ai->ai_next) {
2318 if (ai->ai_addr == NULL ||
2319 ai->ai_addrlen == 0 ||
2320 getnameinfo(ai->ai_addr, ai->ai_addrlen,
2321 straddr, sizeof(straddr), strport, sizeof(strport),
2322 NI_NUMERICHOST|NI_NUMERICSERV) != 0) {
2323 goto bad;
2324 }
2325 switch (ai->ai_family) {
2326 case AF_INET:
2327 if (strcmp(strport, "54321") != 0) {
2328 goto bad;
2329 }
2330 if (passive) {
2331 if (strcmp(straddr, "0.0.0.0") != 0) {
2332 goto bad;
2333 }
2334 } else {
2335 if (strcmp(straddr, "127.0.0.1") != 0) {
2336 goto bad;
2337 }
2338 }
2339 inet4++;
2340 break;
2341 case AF_INET6:
2342 if (strcmp(strport, "54321") != 0) {
2343 goto bad;
2344 }
2345 if (passive) {
2346 if (strcmp(straddr, "::") != 0) {
2347 goto bad;
2348 }
2349 } else {
2350 if (strcmp(straddr, "::1") != 0) {
2351 goto bad;
2352 }
2353 }
2354 inet6++;
2355 break;
2356 case AF_UNSPEC:
2357 goto bad;
2358 break;
2359 default:
2360 /* another family support? */
2361 break;
2362 }
2363 }
2364 }
2365
2366 if (!(inet4 == 0 || inet4 == 2))
2367 goto bad;
2368 if (!(inet6 == 0 || inet6 == 2))
2369 goto bad;
2370
2371 if (aitop)
2372 freeaddrinfo(aitop);
2373 exit(0);
2374
2375 bad:
2376 if (aitop)
2377 freeaddrinfo(aitop);
2378 exit(1);
2379}
2380],
2381AC_MSG_RESULT(good)
2382buggygetaddrinfo=no,
2383AC_MSG_RESULT(buggy)
2384buggygetaddrinfo=yes,
2385AC_MSG_RESULT(buggy)
Martin v. Löwis861a65b2001-10-24 14:36:00 +00002386buggygetaddrinfo=yes)], [
2387AC_MSG_RESULT(no)
2388buggygetaddrinfo=yes
2389])
Martin v. Löwis01dfdb32001-06-23 16:30:13 +00002390
2391if test "$buggygetaddrinfo" = "yes"; then
2392 if test "$ipv6" = "yes"; then
2393 echo 'Fatal: You must get working getaddrinfo() function.'
2394 echo ' or you can specify "--disable-ipv6"'.
2395 exit 1
2396 fi
Martin v. Löwis861a65b2001-10-24 14:36:00 +00002397else
Martin v. Löwisc45929e2002-04-06 10:10:49 +00002398 AC_DEFINE(HAVE_GETADDRINFO, 1, [Define if you have the getaddrinfo function.])
Martin v. Löwis01dfdb32001-06-23 16:30:13 +00002399fi
Thomas Woutersb0db85a2001-08-08 10:39:03 +00002400AC_CHECK_FUNCS(getnameinfo)
Martin v. Löwis01dfdb32001-06-23 16:30:13 +00002401
Guido van Rossum627b2d71993-12-24 10:39:16 +00002402# checks for structures
Guido van Rossum76be6ed1995-01-02 18:33:54 +00002403AC_HEADER_TIME
Guido van Rossum627b2d71993-12-24 10:39:16 +00002404AC_STRUCT_TM
Guido van Rossum76be6ed1995-01-02 18:33:54 +00002405AC_STRUCT_TIMEZONE
Martin v. Löwis60a5d722002-10-16 20:28:25 +00002406AC_CHECK_MEMBERS([struct stat.st_rdev])
2407AC_CHECK_MEMBERS([struct stat.st_blksize])
Guido van Rossum98bf58f2001-10-18 20:34:25 +00002408AC_STRUCT_ST_BLOCKS
Guido van Rossum76be6ed1995-01-02 18:33:54 +00002409
2410AC_MSG_CHECKING(for time.h that defines altzone)
2411AC_CACHE_VAL(ac_cv_header_time_altzone,
2412[AC_TRY_COMPILE([#include <time.h>], [return altzone;],
2413 ac_cv_header_time_altzone=yes,
2414 ac_cv_header_time_altzone=no)])
2415AC_MSG_RESULT($ac_cv_header_time_altzone)
2416if test $ac_cv_header_time_altzone = yes; then
Martin v. Löwisc45929e2002-04-06 10:10:49 +00002417 AC_DEFINE(HAVE_ALTZONE, 1, [Define this if your time.h defines altzone.])
Guido van Rossum76be6ed1995-01-02 18:33:54 +00002418fi
2419
Guido van Rossum5739e7e1995-01-20 16:50:53 +00002420was_it_defined=no
2421AC_MSG_CHECKING(whether sys/select.h and sys/time.h may both be included)
Guido van Rossum76be6ed1995-01-02 18:33:54 +00002422AC_TRY_COMPILE([
Guido van Rossum433c8ad1994-08-01 12:07:07 +00002423#include <sys/types.h>
2424#include <sys/select.h>
2425#include <sys/time.h>
Martin v. Löwisc45929e2002-04-06 10:10:49 +00002426], [;], [
2427 AC_DEFINE(SYS_SELECT_WITH_SYS_TIME, 1,
2428 [Define if you can safely include both <sys/select.h> and <sys/time.h>
2429 (which you can't on SCO ODT 3.0).])
2430 was_it_defined=yes
2431])
Guido van Rossum5739e7e1995-01-20 16:50:53 +00002432AC_MSG_RESULT($was_it_defined)
Guido van Rossum627b2d71993-12-24 10:39:16 +00002433
Martin v. Löwis01dfdb32001-06-23 16:30:13 +00002434AC_MSG_CHECKING(for addrinfo)
2435AC_CACHE_VAL(ac_cv_struct_addrinfo,
2436AC_TRY_COMPILE([
2437# include <netdb.h>],
2438 [struct addrinfo a],
2439 ac_cv_struct_addrinfo=yes,
2440 ac_cv_struct_addrinfo=no))
2441AC_MSG_RESULT($ac_cv_struct_addrinfo)
2442if test $ac_cv_struct_addrinfo = yes; then
Martin v. Löwisc45929e2002-04-06 10:10:49 +00002443 AC_DEFINE(HAVE_ADDRINFO, 1, [struct addrinfo (netdb.h)])
Martin v. Löwis01dfdb32001-06-23 16:30:13 +00002444fi
2445
2446AC_MSG_CHECKING(for sockaddr_storage)
2447AC_CACHE_VAL(ac_cv_struct_sockaddr_storage,
2448AC_TRY_COMPILE([
2449# include <sys/types.h>
2450# include <sys/socket.h>],
2451 [struct sockaddr_storage s],
2452 ac_cv_struct_sockaddr_storage=yes,
2453 ac_cv_struct_sockaddr_storage=no))
2454AC_MSG_RESULT($ac_cv_struct_sockaddr_storage)
2455if test $ac_cv_struct_sockaddr_storage = yes; then
Martin v. Löwisc45929e2002-04-06 10:10:49 +00002456 AC_DEFINE(HAVE_SOCKADDR_STORAGE, 1, [struct sockaddr_storage (sys/socket.h)])
Martin v. Löwis01dfdb32001-06-23 16:30:13 +00002457fi
2458
Guido van Rossum627b2d71993-12-24 10:39:16 +00002459# checks for compiler characteristics
Guido van Rossum433c8ad1994-08-01 12:07:07 +00002460
Guido van Rossum76be6ed1995-01-02 18:33:54 +00002461AC_C_CHAR_UNSIGNED
Guido van Rossum76be6ed1995-01-02 18:33:54 +00002462AC_C_CONST
Guido van Rossum433c8ad1994-08-01 12:07:07 +00002463
Guido van Rossum5739e7e1995-01-20 16:50:53 +00002464works=no
2465AC_MSG_CHECKING(for working volatile)
Martin v. Löwisc45929e2002-04-06 10:10:49 +00002466AC_TRY_COMPILE([],[volatile int x; x = 0;], works=yes,
2467 AC_DEFINE(volatile, [], [Define to empty if the keyword does not work.])
2468)
Guido van Rossum5739e7e1995-01-20 16:50:53 +00002469AC_MSG_RESULT($works)
Guido van Rossumdabb11b1994-10-11 15:04:27 +00002470
Guido van Rossum5739e7e1995-01-20 16:50:53 +00002471works=no
2472AC_MSG_CHECKING(for working signed char)
Martin v. Löwisc45929e2002-04-06 10:10:49 +00002473AC_TRY_COMPILE([], [signed char c;], works=yes,
2474 AC_DEFINE(signed, [], [Define to empty if the keyword does not work.])
2475)
Guido van Rossum5739e7e1995-01-20 16:50:53 +00002476AC_MSG_RESULT($works)
Guido van Rossum433c8ad1994-08-01 12:07:07 +00002477
Guido van Rossum5739e7e1995-01-20 16:50:53 +00002478have_prototypes=no
2479AC_MSG_CHECKING(for prototypes)
Martin v. Löwisc45929e2002-04-06 10:10:49 +00002480AC_TRY_COMPILE([int foo(int x) { return 0; }], [return foo(10);],[
2481 AC_DEFINE(HAVE_PROTOTYPES, 1,
2482 [Define if your compiler supports function prototype])
2483 have_prototypes=yes
2484])
Guido van Rossum5739e7e1995-01-20 16:50:53 +00002485AC_MSG_RESULT($have_prototypes)
Guido van Rossum433c8ad1994-08-01 12:07:07 +00002486
Guido van Rossum5739e7e1995-01-20 16:50:53 +00002487works=no
2488AC_MSG_CHECKING(for variable length prototypes and stdarg.h)
Guido van Rossum76be6ed1995-01-02 18:33:54 +00002489AC_TRY_COMPILE([
Guido van Rossum433c8ad1994-08-01 12:07:07 +00002490#include <stdarg.h>
Guido van Rossum3f13e481996-08-30 20:58:11 +00002491int foo(int x, ...) {
2492 va_list va;
2493 va_start(va, x);
2494 va_arg(va, int);
2495 va_arg(va, char *);
2496 va_arg(va, double);
2497 return 0;
2498}
Martin v. Löwisc45929e2002-04-06 10:10:49 +00002499], [return foo(10, "", 3.14);], [
2500 AC_DEFINE(HAVE_STDARG_PROTOTYPES, 1,
2501 [Define if your compiler supports variable length function prototypes
2502 (e.g. void fprintf(FILE *, char *, ...);) *and* <stdarg.h>])
2503 works=yes
2504])
Guido van Rossum5739e7e1995-01-20 16:50:53 +00002505AC_MSG_RESULT($works)
Guido van Rossum76be6ed1995-01-02 18:33:54 +00002506
Guido van Rossum5739e7e1995-01-20 16:50:53 +00002507if test "$have_prototypes" = yes; then
2508bad_prototypes=no
2509AC_MSG_CHECKING(for bad exec* prototypes)
2510AC_TRY_COMPILE([#include <unistd.h>], [char **t;execve("@",t,t);], ,
Martin v. Löwisc45929e2002-04-06 10:10:49 +00002511 AC_DEFINE(BAD_EXEC_PROTOTYPES, 1,
2512 [Define if your <unistd.h> contains bad prototypes for exec*()
2513 (as it does on SGI IRIX 4.x)])
2514 bad_prototypes=yes
2515)
Guido van Rossum5739e7e1995-01-20 16:50:53 +00002516AC_MSG_RESULT($bad_prototypes)
Guido van Rossum627b2d71993-12-24 10:39:16 +00002517fi
2518
Martin v. Löwis01dfdb32001-06-23 16:30:13 +00002519# check if sockaddr has sa_len member
2520AC_MSG_CHECKING(if sockaddr has sa_len member)
2521AC_TRY_COMPILE([#include <sys/types.h>
2522#include <sys/socket.h>],
2523[struct sockaddr x;
2524x.sa_len = 0;],
2525 AC_MSG_RESULT(yes)
Martin v. Löwisc45929e2002-04-06 10:10:49 +00002526 AC_DEFINE(HAVE_SOCKADDR_SA_LEN, 1, [Define if sockaddr has sa_len member]),
Martin v. Löwis01dfdb32001-06-23 16:30:13 +00002527 AC_MSG_RESULT(no))
2528
Guido van Rossum5739e7e1995-01-20 16:50:53 +00002529va_list_is_array=no
2530AC_MSG_CHECKING(whether va_list is an array)
Guido van Rossum76be6ed1995-01-02 18:33:54 +00002531AC_TRY_COMPILE([
2532#ifdef HAVE_STDARG_PROTOTYPES
2533#include <stdarg.h>
2534#else
2535#include <varargs.h>
2536#endif
Martin v. Löwisc45929e2002-04-06 10:10:49 +00002537], [va_list list1, list2; list1 = list2;], , [
2538 AC_DEFINE(VA_LIST_IS_ARRAY, 1, [Define if a va_list is an array of some kind])
2539 va_list_is_array=yes
2540])
Guido van Rossum5739e7e1995-01-20 16:50:53 +00002541AC_MSG_RESULT($va_list_is_array)
Guido van Rossum76be6ed1995-01-02 18:33:54 +00002542
Guido van Rossuma96f0ba1999-03-22 21:49:51 +00002543# sigh -- gethostbyname_r is a mess; it can have 3, 5 or 6 arguments :-(
Martin v. Löwis11437992002-04-12 09:54:03 +00002544AH_TEMPLATE(HAVE_GETHOSTBYNAME_R,
2545 [Define this if you have some version of gethostbyname_r()])
2546
Guido van Rossuma96f0ba1999-03-22 21:49:51 +00002547AC_CHECK_FUNC(gethostbyname_r, [
2548 AC_DEFINE(HAVE_GETHOSTBYNAME_R)
2549 AC_MSG_CHECKING([gethostbyname_r with 6 args])
2550 OLD_CFLAGS=$CFLAGS
2551 CFLAGS="$CFLAGS $MY_CPPFLAGS $MY_THREAD_CPPFLAGS $MY_CFLAGS"
2552 AC_TRY_COMPILE([
2553# include <netdb.h>
2554 ], [
2555 char *name;
2556 struct hostent *he, *res;
2557 char buffer[2048];
2558 int buflen = 2048;
2559 int h_errnop;
2560
2561 (void) gethostbyname_r(name, he, buffer, buflen, &res, &h_errnop)
2562 ], [
Guido van Rossum8db7d8b1999-03-23 16:40:33 +00002563 AC_DEFINE(HAVE_GETHOSTBYNAME_R)
Martin v. Löwisc45929e2002-04-06 10:10:49 +00002564 AC_DEFINE(HAVE_GETHOSTBYNAME_R_6_ARG, 1,
2565 [Define this if you have the 6-arg version of gethostbyname_r().])
Guido van Rossuma96f0ba1999-03-22 21:49:51 +00002566 AC_MSG_RESULT(yes)
2567 ], [
2568 AC_MSG_RESULT(no)
2569 AC_MSG_CHECKING([gethostbyname_r with 5 args])
2570 AC_TRY_COMPILE([
2571# include <netdb.h>
2572 ], [
2573 char *name;
2574 struct hostent *he;
2575 char buffer[2048];
2576 int buflen = 2048;
2577 int h_errnop;
2578
2579 (void) gethostbyname_r(name, he, buffer, buflen, &h_errnop)
2580 ], [
Guido van Rossum8db7d8b1999-03-23 16:40:33 +00002581 AC_DEFINE(HAVE_GETHOSTBYNAME_R)
Martin v. Löwisc45929e2002-04-06 10:10:49 +00002582 AC_DEFINE(HAVE_GETHOSTBYNAME_R_5_ARG, 1,
2583 [Define this if you have the 5-arg version of gethostbyname_r().])
Guido van Rossuma96f0ba1999-03-22 21:49:51 +00002584 AC_MSG_RESULT(yes)
2585 ], [
2586 AC_MSG_RESULT(no)
2587 AC_MSG_CHECKING([gethostbyname_r with 3 args])
2588 AC_TRY_COMPILE([
2589# include <netdb.h>
2590 ], [
2591 char *name;
2592 struct hostent *he;
2593 struct hostent_data data;
2594
2595 (void) gethostbyname_r(name, he, &data);
2596 ], [
Guido van Rossum8db7d8b1999-03-23 16:40:33 +00002597 AC_DEFINE(HAVE_GETHOSTBYNAME_R)
Martin v. Löwisc45929e2002-04-06 10:10:49 +00002598 AC_DEFINE(HAVE_GETHOSTBYNAME_R_3_ARG, 1,
2599 [Define this if you have the 3-arg version of gethostbyname_r().])
Guido van Rossuma96f0ba1999-03-22 21:49:51 +00002600 AC_MSG_RESULT(yes)
2601 ], [
2602 AC_MSG_RESULT(no)
2603 ])
2604 ])
2605 ])
2606 CFLAGS=$OLD_CFLAGS
2607], [
Thomas Wouters3a584202000-08-05 23:28:51 +00002608 AC_CHECK_FUNCS(gethostbyname)
Guido van Rossuma96f0ba1999-03-22 21:49:51 +00002609])
2610AC_SUBST(HAVE_GETHOSTBYNAME_R_6_ARG)
2611AC_SUBST(HAVE_GETHOSTBYNAME_R_5_ARG)
2612AC_SUBST(HAVE_GETHOSTBYNAME_R_3_ARG)
Guido van Rossum8db7d8b1999-03-23 16:40:33 +00002613AC_SUBST(HAVE_GETHOSTBYNAME_R)
Guido van Rossuma96f0ba1999-03-22 21:49:51 +00002614AC_SUBST(HAVE_GETHOSTBYNAME)
2615
Guido van Rossum627b2d71993-12-24 10:39:16 +00002616# checks for system services
2617# (none yet)
2618
Guido van Rossum76be6ed1995-01-02 18:33:54 +00002619# Linux requires this for correct f.p. operations
Jeremy Hyltonbe28f5b2000-07-27 21:03:04 +00002620AC_CHECK_FUNC(__fpu_control,
2621 [],
2622 [AC_CHECK_LIB(ieee, __fpu_control)
2623])
Guido van Rossum627b2d71993-12-24 10:39:16 +00002624
Guido van Rossum93274221997-05-09 02:42:00 +00002625# Check for --with-fpectl
Guido van Rossum93274221997-05-09 02:42:00 +00002626AC_MSG_CHECKING(for --with-fpectl)
Barry Warsawc0d24d8b2000-06-29 16:12:00 +00002627AC_ARG_WITH(fpectl,
Martin v. Löwis3e2c6322002-10-29 10:07:43 +00002628 AC_HELP_STRING(--with-fpectl, enable SIGFPE catching),
2629[
Guido van Rossum93274221997-05-09 02:42:00 +00002630if test "$withval" != no
Martin v. Löwisc45929e2002-04-06 10:10:49 +00002631then
2632 AC_DEFINE(WANT_SIGFPE_HANDLER, 1,
2633 [Define if you want SIGFPE handled (see Include/pyfpe.h).])
2634 AC_MSG_RESULT(yes)
Guido van Rossum93274221997-05-09 02:42:00 +00002635else AC_MSG_RESULT(no)
Guido van Rossumef2255b2000-03-10 22:30:29 +00002636fi],
2637[AC_MSG_RESULT(no)])
Guido van Rossum93274221997-05-09 02:42:00 +00002638
Guido van Rossum433c8ad1994-08-01 12:07:07 +00002639# check for --with-libm=...
2640AC_SUBST(LIBM)
Guido van Rossum4b6b5791996-09-09 20:09:34 +00002641case $ac_sys_system in
Guido van Rossum3dc0a512000-10-05 18:00:06 +00002642Darwin) ;;
Guido van Rossumec95c7b1998-08-04 17:59:56 +00002643BeOS) ;;
Guido van Rossum4b6b5791996-09-09 20:09:34 +00002644*) LIBM=-lm
2645esac
Guido van Rossum93274221997-05-09 02:42:00 +00002646AC_MSG_CHECKING(for --with-libm=STRING)
Martin v. Löwis3e2c6322002-10-29 10:07:43 +00002647AC_ARG_WITH(libm,
2648 AC_HELP_STRING(--with-libm=STRING, math library),
2649[
Guido van Rossum93274221997-05-09 02:42:00 +00002650if test "$withval" = no
2651then LIBM=
2652 AC_MSG_RESULT(force LIBM empty)
2653elif test "$withval" != yes
Guido van Rossum433c8ad1994-08-01 12:07:07 +00002654then LIBM=$withval
Martin v. Löwis3e2c6322002-10-29 10:07:43 +00002655 AC_MSG_RESULT(set LIBM="$withval")
2656else AC_MSG_ERROR([proper usage is --with-libm=STRING])
Guido van Rossum93274221997-05-09 02:42:00 +00002657fi],
Martin v. Löwis3e2c6322002-10-29 10:07:43 +00002658[AC_MSG_RESULT(default LIBM="$LIBM")])
Guido van Rossum433c8ad1994-08-01 12:07:07 +00002659
2660# check for --with-libc=...
2661AC_SUBST(LIBC)
Guido van Rossum93274221997-05-09 02:42:00 +00002662AC_MSG_CHECKING(for --with-libc=STRING)
Martin v. Löwis3e2c6322002-10-29 10:07:43 +00002663AC_ARG_WITH(libc,
2664 AC_HELP_STRING(--with-libc=STRING, C library),
2665[
Guido van Rossum93274221997-05-09 02:42:00 +00002666if test "$withval" = no
2667then LIBC=
2668 AC_MSG_RESULT(force LIBC empty)
2669elif test "$withval" != yes
Guido van Rossum433c8ad1994-08-01 12:07:07 +00002670then LIBC=$withval
Martin v. Löwis3e2c6322002-10-29 10:07:43 +00002671 AC_MSG_RESULT(set LIBC="$withval")
2672else AC_MSG_ERROR([proper usage is --with-libc=STRING])
Guido van Rossum93274221997-05-09 02:42:00 +00002673fi],
Martin v. Löwis3e2c6322002-10-29 10:07:43 +00002674[AC_MSG_RESULT(default LIBC="$LIBC")])
Guido van Rossum433c8ad1994-08-01 12:07:07 +00002675
Guido van Rossumaf5b83e1995-01-04 19:02:35 +00002676# check for hypot() in math library
2677LIBS_SAVE=$LIBS
2678LIBS="$LIBS $LIBM"
Guido van Rossumf2f7eb31996-08-30 15:18:00 +00002679AC_REPLACE_FUNCS(hypot)
Guido van Rossumaf5b83e1995-01-04 19:02:35 +00002680LIBS=$LIBS_SAVE
2681
Guido van Rossumef2255b2000-03-10 22:30:29 +00002682# check for wchar.h
Martin v. Löwisc45929e2002-04-06 10:10:49 +00002683AC_CHECK_HEADER(wchar.h, [
2684 AC_DEFINE(HAVE_WCHAR_H, 1,
2685 [Define if the compiler provides a wchar.h header file.])
2686 wchar_h="yes"
2687],
Guido van Rossumef2255b2000-03-10 22:30:29 +00002688wchar_h="no"
2689)
2690
Martin v. Löwis0ba70cc2001-06-26 22:22:37 +00002691# determine wchar_t size
2692if test "$wchar_h" = yes
2693then
Guido van Rossum67b26592001-10-20 14:21:45 +00002694 AC_CHECK_SIZEOF(wchar_t, 4, [#include <wchar.h>])
Martin v. Löwis0ba70cc2001-06-26 22:22:37 +00002695fi
2696
Martin v. Löwisfa3bdea2003-09-04 18:50:54 +00002697AC_MSG_CHECKING(for UCS-4 tcl)
2698have_ucs4_tcl=no
2699AC_TRY_COMPILE([
2700#include <tcl.h>
2701#if TCL_UTF_MAX != 6
2702# error "NOT UCS4_TCL"
2703#endif], [], [
2704 AC_DEFINE(HAVE_UCS4_TCL, 1, [Define this if you have tcl and TCL_UTF_MAX==6])
2705 have_ucs4_tcl=yes
2706])
2707AC_MSG_RESULT($have_ucs4_tcl)
2708
Marc-André Lemburgd7160f82003-09-22 11:14:40 +00002709# check whether wchar_t is signed or not
2710if test "$wchar_h" = yes
2711then
2712 # check whether wchar_t is signed or not
2713 AC_MSG_CHECKING(whether wchar_t is signed)
2714 AC_CACHE_VAL(ac_cv_wchar_t_signed, [
2715 AC_TRY_RUN([
2716 #include <wchar.h>
2717 int main()
2718 {
2719 exit((((wchar_t) -1) < ((wchar_t) 0)) ? 1 : 0);
2720 }
2721 ],
2722 ac_cv_wchar_t_signed=yes,
2723 ac_cv_wchar_t_signed=no,
2724 ac_cv_wchar_t_signed=yes)])
2725 AC_MSG_RESULT($ac_cv_wchar_t_signed)
2726fi
2727
Martin v. Löwis0ba70cc2001-06-26 22:22:37 +00002728AC_MSG_CHECKING(what type to use for unicode)
Martin v. Löwis3e2c6322002-10-29 10:07:43 +00002729dnl quadrigraphs "@<:@" and "@:>@" produce "[" and "]" in the output
Martin v. Löwis0ba70cc2001-06-26 22:22:37 +00002730AC_ARG_ENABLE(unicode,
Martin v. Löwis3e2c6322002-10-29 10:07:43 +00002731 AC_HELP_STRING(--enable-unicode@<:@=ucs@<:@24@:>@@:>@, Enable Unicode strings (default is yes)),
2732 [],
2733 [enable_unicode=yes])
Martin v. Löwis0ba70cc2001-06-26 22:22:37 +00002734
2735if test $enable_unicode = yes
2736then
Martin v. Löwisfd917792001-06-27 20:22:04 +00002737 # Without any arguments, Py_UNICODE defaults to two-byte mode
Martin v. Löwisfa3bdea2003-09-04 18:50:54 +00002738 case "$have_ucs4_tcl" in
2739 yes) enable_unicode="ucs4"
2740 ;;
2741 *) enable_unicode="ucs2"
2742 ;;
2743 esac
Martin v. Löwis0ba70cc2001-06-26 22:22:37 +00002744fi
2745
Martin v. Löwis0036cba2002-04-12 09:58:45 +00002746AH_TEMPLATE(Py_UNICODE_SIZE,
2747 [Define as the size of the unicode type.])
Martin v. Löwis0ba70cc2001-06-26 22:22:37 +00002748case "$enable_unicode" in
2749ucs2) unicode_size="2"
2750 AC_DEFINE(Py_UNICODE_SIZE,2)
2751 ;;
2752ucs4) unicode_size="4"
2753 AC_DEFINE(Py_UNICODE_SIZE,4)
2754 ;;
2755esac
2756
Martin v. Löwis11437992002-04-12 09:54:03 +00002757AH_TEMPLATE(PY_UNICODE_TYPE,
2758 [Define as the integral type used for Unicode representation.])
Martin v. Löwis0036cba2002-04-12 09:58:45 +00002759
Martin v. Löwis339d0f72001-08-17 18:39:25 +00002760AC_SUBST(UNICODE_OBJS)
Martin v. Löwis0ba70cc2001-06-26 22:22:37 +00002761if test "$enable_unicode" = "no"
2762then
Martin v. Löwis339d0f72001-08-17 18:39:25 +00002763 UNICODE_OBJS=""
Martin v. Löwis0ba70cc2001-06-26 22:22:37 +00002764 AC_MSG_RESULT(not used)
2765else
Martin v. Löwis339d0f72001-08-17 18:39:25 +00002766 UNICODE_OBJS="Objects/unicodeobject.o Objects/unicodectype.o"
Martin v. Löwisc45929e2002-04-06 10:10:49 +00002767 AC_DEFINE(Py_USING_UNICODE, 1,
2768 [Define if you want to have a Unicode type.])
Marc-André Lemburgd7160f82003-09-22 11:14:40 +00002769
2770 # wchar_t is only usable if it maps to an unsigned type
2771 if test "$unicode_size" = "$ac_cv_sizeof_wchar_t" \
2772 -a "$ac_cv_wchar_t_signed" == "no"
Martin v. Löwis0ba70cc2001-06-26 22:22:37 +00002773 then
2774 PY_UNICODE_TYPE="wchar_t"
Martin v. Löwisc45929e2002-04-06 10:10:49 +00002775 AC_DEFINE(HAVE_USABLE_WCHAR_T, 1,
2776 [Define if you have a useable wchar_t type defined in wchar.h; useable
Marc-André Lemburgd7160f82003-09-22 11:14:40 +00002777 means wchar_t must be an unsigned type with at least 16 bits. (see
Martin v. Löwisc45929e2002-04-06 10:10:49 +00002778 Include/unicodeobject.h).])
Martin v. Löwis0ba70cc2001-06-26 22:22:37 +00002779 AC_DEFINE(PY_UNICODE_TYPE,wchar_t)
2780 elif test "$ac_cv_sizeof_short" = "$unicode_size"
2781 then
2782 PY_UNICODE_TYPE="unsigned short"
2783 AC_DEFINE(PY_UNICODE_TYPE,unsigned short)
2784 elif test "$ac_cv_sizeof_long" = "$unicode_size"
2785 then
2786 PY_UNICODE_TYPE="unsigned long"
2787 AC_DEFINE(PY_UNICODE_TYPE,unsigned long)
2788 else
2789 PY_UNICODE_TYPE="no type found"
2790 fi
2791 AC_MSG_RESULT($PY_UNICODE_TYPE)
2792fi
Guido van Rossumef2255b2000-03-10 22:30:29 +00002793
2794# check for endianness
2795AC_C_BIGENDIAN
2796
Vladimir Marangozov9a5a5d12000-07-12 03:02:16 +00002797# Check whether right shifting a negative integer extends the sign bit
2798# or fills with zeros (like the Cray J90, according to Tim Peters).
2799AC_MSG_CHECKING(whether right shift extends the sign bit)
Vladimir Marangozova6180282000-07-12 05:05:06 +00002800AC_CACHE_VAL(ac_cv_rshift_extends_sign, [
Vladimir Marangozov9a5a5d12000-07-12 03:02:16 +00002801AC_TRY_RUN([
2802int main()
2803{
Vladimir Marangozova6180282000-07-12 05:05:06 +00002804 exit(((-1)>>3 == -1) ? 0 : 1);
Vladimir Marangozov9a5a5d12000-07-12 03:02:16 +00002805}
Guido van Rossum3065c942001-09-17 04:03:14 +00002806],
2807ac_cv_rshift_extends_sign=yes,
2808ac_cv_rshift_extends_sign=no,
2809ac_cv_rshift_extends_sign=yes)])
Vladimir Marangozova6180282000-07-12 05:05:06 +00002810AC_MSG_RESULT($ac_cv_rshift_extends_sign)
2811if test "$ac_cv_rshift_extends_sign" = no
2812then
Martin v. Löwisc45929e2002-04-06 10:10:49 +00002813 AC_DEFINE(SIGNED_RIGHT_SHIFT_ZERO_FILLS, 1,
2814 [Define if i>>j for signed int i does not extend the sign bit
2815 when i < 0])
Vladimir Marangozova6180282000-07-12 05:05:06 +00002816fi
2817
Guido van Rossumcadfaec2001-01-05 14:45:49 +00002818# check for getc_unlocked and related locking functions
2819AC_MSG_CHECKING(for getc_unlocked() and friends)
2820AC_CACHE_VAL(ac_cv_have_getc_unlocked, [
2821AC_TRY_LINK([#include <stdio.h>],[
2822 FILE *f = fopen("/dev/null", "r");
2823 flockfile(f);
2824 getc_unlocked(f);
2825 funlockfile(f);
2826], ac_cv_have_getc_unlocked=yes, ac_cv_have_getc_unlocked=no)])
2827AC_MSG_RESULT($ac_cv_have_getc_unlocked)
2828if test "$ac_cv_have_getc_unlocked" = yes
2829then
Martin v. Löwisc45929e2002-04-06 10:10:49 +00002830 AC_DEFINE(HAVE_GETC_UNLOCKED, 1,
2831 [Define this if you have flockfile(), getc_unlocked(), and funlockfile()])
Guido van Rossumcadfaec2001-01-05 14:45:49 +00002832fi
Vladimir Marangozov9a5a5d12000-07-12 03:02:16 +00002833
Guido van Rossumfaf5e4d2002-12-30 16:25:41 +00002834# check for readline 2.2
2835AC_TRY_CPP([#include <readline/readline.h>],
2836have_readline=yes, have_readline=no)
2837if test $have_readline = yes
2838then
2839 AC_EGREP_HEADER([extern int rl_completion_append_character;],
2840 [readline/readline.h],
2841 AC_DEFINE(HAVE_RL_COMPLETION_APPEND_CHARACTER, 1,
2842 [Define if you have readline 2.2]), )
2843fi
2844
Martin v. Löwis0daad592001-09-30 21:09:59 +00002845# check for readline 4.0
2846AC_CHECK_LIB(readline, rl_pre_input_hook,
Martin v. Löwisc45929e2002-04-06 10:10:49 +00002847 AC_DEFINE(HAVE_RL_PRE_INPUT_HOOK, 1,
2848 [Define if you have readline 4.0]), , -ltermcap)
Martin v. Löwis0daad592001-09-30 21:09:59 +00002849
Guido van Rossum353ae582001-07-10 16:45:32 +00002850# check for readline 4.2
2851AC_CHECK_LIB(readline, rl_completion_matches,
Martin v. Löwisc45929e2002-04-06 10:10:49 +00002852 AC_DEFINE(HAVE_RL_COMPLETION_MATCHES, 1,
2853 [Define if you have readline 4.2]), , -ltermcap)
Guido van Rossum353ae582001-07-10 16:45:32 +00002854
Thomas Wouterse38b2f12001-07-11 22:35:31 +00002855AC_MSG_CHECKING(for broken nice())
2856AC_CACHE_VAL(ac_cv_broken_nice, [
2857AC_TRY_RUN([
2858int main()
2859{
2860 int val1 = nice(1);
2861 if (val1 != -1 && val1 == nice(2))
2862 exit(0);
2863 exit(1);
2864}
Guido van Rossum3065c942001-09-17 04:03:14 +00002865],
2866ac_cv_broken_nice=yes,
2867ac_cv_broken_nice=no,
2868ac_cv_broken_nice=no)])
Thomas Wouterse38b2f12001-07-11 22:35:31 +00002869AC_MSG_RESULT($ac_cv_broken_nice)
2870if test "$ac_cv_broken_nice" = yes
2871then
Martin v. Löwisc45929e2002-04-06 10:10:49 +00002872 AC_DEFINE(HAVE_BROKEN_NICE, 1,
2873 [Define if nice() returns success/failure instead of the new priority.])
Thomas Wouterse38b2f12001-07-11 22:35:31 +00002874fi
2875
Guido van Rossumd11b62e2003-03-14 21:51:36 +00002876# tzset(3) exists and works like we expect it to
2877AC_MSG_CHECKING(for working tzset())
2878AC_CACHE_VAL(ac_cv_working_tzset, [
2879AC_TRY_RUN([
2880#include <stdlib.h>
2881#include <time.h>
Brett Cannon18367812003-09-19 00:59:16 +00002882#include <string.h>
Guido van Rossumd11b62e2003-03-14 21:51:36 +00002883int main()
2884{
Brett Cannon18367812003-09-19 00:59:16 +00002885 /* Note that we need to ensure that not only does tzset(3)
2886 do 'something' with localtime, but it works as documented
2887 in the library reference and as expected by the test suite.
2888
2889 Red Hat 6.2 doesn't understand the southern hemisphere
2890 after New Year's Day; it thinks swaps on that day.
2891 */
2892
2893 time_t groundhogday = 1044144000; /* GMT-based; well, it's a colony */
2894 time_t midyear = groundhogday + (365 * 24 * 3600 / 2);
2895
Neal Norwitz7f2588c2003-04-11 15:35:53 +00002896 putenv("TZ=UTC+0");
Guido van Rossumd11b62e2003-03-14 21:51:36 +00002897 tzset();
Brett Cannon18367812003-09-19 00:59:16 +00002898 if (localtime(&groundhogday)->tm_hour != 0)
2899 exit(1);
2900
Neal Norwitz7f2588c2003-04-11 15:35:53 +00002901 putenv("TZ=EST+5EDT,M4.1.0,M10.5.0");
Guido van Rossumd11b62e2003-03-14 21:51:36 +00002902 tzset();
Brett Cannon18367812003-09-19 00:59:16 +00002903 if (localtime(&groundhogday)->tm_hour != 19)
Guido van Rossumd11b62e2003-03-14 21:51:36 +00002904 exit(1);
Brett Cannon18367812003-09-19 00:59:16 +00002905
2906 putenv("TZ=AEST-10AEDT-11,M10.5.0,M3.5.0");
2907 tzset();
2908 if (localtime(&groundhogday)->tm_hour != 11)
2909 exit(1);
2910 if (strcmp(localtime(&groundhogday)->tm_zone, "AEDT"))
2911 exit(1);
2912 if (strcmp(localtime(&midyear)->tm_zone, "AEST"))
2913 exit(1);
2914
Guido van Rossumd11b62e2003-03-14 21:51:36 +00002915 exit(0);
2916}
2917],
2918ac_cv_working_tzset=yes,
2919ac_cv_working_tzset=no,
2920ac_cv_working_tzset=no)])
2921AC_MSG_RESULT($ac_cv_working_tzset)
2922if test "$ac_cv_working_tzset" = yes
2923then
2924 AC_DEFINE(HAVE_WORKING_TZSET, 1,
2925 [Define if tzset() actually switches the local timezone in a meaningful way.])
2926fi
2927
Martin v. Löwis94717ed2002-09-09 14:24:16 +00002928# Look for subsecond timestamps in struct stat
2929AC_MSG_CHECKING(for tv_nsec in struct stat)
2930AC_CACHE_VAL(ac_cv_stat_tv_nsec,
2931AC_TRY_COMPILE([#include <sys/stat.h>], [
2932struct stat st;
2933st.st_mtim.tv_nsec = 1;
2934],
Martin v. Löwisa32c9942002-09-09 16:17:47 +00002935ac_cv_stat_tv_nsec=yes,
Martin v. Löwis94717ed2002-09-09 14:24:16 +00002936ac_cv_stat_tv_nsec=no,
2937ac_cv_stat_tv_nsec=no))
2938AC_MSG_RESULT($ac_cv_stat_tv_nsec)
2939if test "$ac_cv_stat_tv_nsec" = yes
2940then
2941 AC_DEFINE(HAVE_STAT_TV_NSEC, 1,
2942 [Define if you have struct stat.st_mtim.tv_nsec])
2943fi
2944
Martin v. Löwiseb9b1032001-10-24 17:10:49 +00002945# On HP/UX 11.0, mvwdelch is a block with a return statement
2946AC_MSG_CHECKING(whether mvwdelch is an expression)
2947AC_CACHE_VAL(ac_cv_mvwdelch_is_expression,
2948AC_TRY_COMPILE([#include <curses.h>], [
2949 int rtn;
2950 rtn = mvwdelch(0,0,0);
2951], ac_cv_mvwdelch_is_expression=yes,
2952 ac_cv_mvwdelch_is_expression=no,
2953 ac_cv_mvwdelch_is_expression=yes))
2954AC_MSG_RESULT($ac_cv_mvwdelch_is_expression)
2955
2956if test "$ac_cv_mvwdelch_is_expression" = yes
2957then
Martin v. Löwisc45929e2002-04-06 10:10:49 +00002958 AC_DEFINE(MVWDELCH_IS_EXPRESSION, 1,
2959 [Define if mvwdelch in curses.h is an expression.])
Martin v. Löwiseb9b1032001-10-24 17:10:49 +00002960fi
2961
2962AC_MSG_CHECKING(whether WINDOW has _flags)
2963AC_CACHE_VAL(ac_cv_window_has_flags,
2964AC_TRY_COMPILE([#include <curses.h>], [
2965 WINDOW *w;
2966 w->_flags = 0;
2967], ac_cv_window_has_flags=yes,
2968 ac_cv_window_has_flags=no,
2969 ac_cv_window_has_flags=no))
2970AC_MSG_RESULT($ac_cv_window_has_flags)
2971
2972
2973if test "$ac_cv_window_has_flags" = yes
2974then
Martin v. Löwisc45929e2002-04-06 10:10:49 +00002975 AC_DEFINE(WINDOW_HAS_FLAGS, 1,
2976 [Define if WINDOW in curses.h offers a field _flags.])
Martin v. Löwiseb9b1032001-10-24 17:10:49 +00002977fi
2978
Martin v. Löwis24a880b2002-12-31 12:55:15 +00002979AC_MSG_CHECKING(for /dev/ptmx)
2980
2981if test -e /dev/ptmx
2982then
2983 AC_MSG_RESULT(yes)
2984 AC_DEFINE(HAVE_DEV_PTMX, 1,
2985 [Define if we have /dev/ptmx.])
2986else
2987 AC_MSG_RESULT(no)
2988fi
2989
Neal Norwitz865400f2003-03-21 01:42:58 +00002990AC_MSG_CHECKING(for /dev/ptc)
2991
2992if test -e /dev/ptc
2993then
2994 AC_MSG_RESULT(yes)
2995 AC_DEFINE(HAVE_DEV_PTC, 1,
2996 [Define if we have /dev/ptc.])
2997else
2998 AC_MSG_RESULT(no)
2999fi
3000
Martin v. Löwis01c04012002-11-11 14:58:44 +00003001AC_CHECK_TYPE(socklen_t,,
3002 AC_DEFINE(socklen_t,int,
3003 Define to `int' if <sys/socket.h> does not define.),[
3004#ifdef HAVE_SYS_TYPES_H
3005#include <sys/types.h>
3006#endif
Guido van Rossum95713eb2000-05-18 20:53:31 +00003007#ifdef HAVE_SYS_SOCKET_H
3008#include <sys/socket.h>
3009#endif
Martin v. Löwis01c04012002-11-11 14:58:44 +00003010])
Neil Schemenauer55f0cf32001-01-24 17:24:33 +00003011
Martin v. Löwis06f15bb2001-12-02 13:02:32 +00003012AC_SUBST(THREADHEADERS)
3013
3014for h in `(cd $srcdir;echo Python/thread_*.h)`
3015do
3016 THREADHEADERS="$THREADHEADERS \$(srcdir)/$h"
3017done
3018
Neil Schemenauer55f0cf32001-01-24 17:24:33 +00003019AC_SUBST(SRCDIRS)
Jack Jansen0b06be72002-06-21 14:48:38 +00003020SRCDIRS="Parser Grammar Objects Python Modules Mac Mac/Python"
Andrew M. Kuchling8abedde2001-01-26 22:55:24 +00003021AC_MSG_CHECKING(for build directories)
Neil Schemenauer55f0cf32001-01-24 17:24:33 +00003022for dir in $SRCDIRS; do
3023 if test ! -d $dir; then
3024 mkdir $dir
Fred Drake884d3ba2000-11-02 17:52:56 +00003025 fi
Neil Schemenauer55f0cf32001-01-24 17:24:33 +00003026done
3027AC_MSG_RESULT(done)
Fred Drake036144d2000-10-26 17:09:35 +00003028
Guido van Rossum627b2d71993-12-24 10:39:16 +00003029# generate output files
Martin v. Löwis88afe662002-10-26 13:47:44 +00003030AC_CONFIG_FILES(Makefile.pre Modules/Setup.config)
3031AC_OUTPUT
Neil Schemenauer61c51152001-01-26 16:18:16 +00003032
3033echo "creating Setup"
3034if test ! -f Modules/Setup
3035then
3036 cp $srcdir/Modules/Setup.dist Modules/Setup
3037fi
3038
3039echo "creating Setup.local"
3040if test ! -f Modules/Setup.local
3041then
3042 echo "# Edit this file for local setup changes" >Modules/Setup.local
3043fi
3044
3045echo "creating Makefile"
3046$SHELL $srcdir/Modules/makesetup -c $srcdir/Modules/config.c.in \
3047 -s Modules Modules/Setup.config \
Neil Schemenauerf8b71c52001-04-21 17:41:16 +00003048 Modules/Setup.local Modules/Setup
Neil Schemenauer66252162001-02-19 04:47:42 +00003049mv config.c Modules