More configure fixes: avoid sh 'integer argument expected' error when 'long long...
[python.git] / configure.in
blob637490b9e2f3822cb1876d1658b3d6b9ef227e44
1 dnl ***********************************************
2 dnl * Please run autoreconf to test your changes! *
3 dnl ***********************************************
4 dnl NOTE: autoconf 2.64 doesn't seem to work (use 2.61).
6 # Set VERSION so we only need to edit in one place (i.e., here)
7 m4_define(PYTHON_VERSION, 2.7)
9 dnl Some m4 magic to ensure that the configure script is generated
10 dnl by the correct autoconf version.
11 m4_define([version_required],
12 [m4_if(m4_version_compare(m4_defn([m4_PACKAGE_VERSION]), [$1]), 0,
13        [],
14        [m4_fatal([Autoconf version $1 is required for Python], 63)])
16 version_required(2.61)
18 AC_REVISION($Revision$)
19 AC_INIT(python, PYTHON_VERSION, http://bugs.python.org/)
20 AC_CONFIG_SRCDIR([Include/object.h])
21 AC_CONFIG_HEADER(pyconfig.h)
23 dnl Ensure that if prefix is specified, it does not end in a slash. If
24 dnl it does, we get path names containing '//' which is both ugly and
25 dnl can cause trouble.
27 dnl Last slash shouldn't be stripped if prefix=/
28 if test "$prefix" != "/"; then
29     prefix=`echo "$prefix" | sed -e 's/\/$//g'`
30 fi    
32 dnl This is for stuff that absolutely must end up in pyconfig.h.
33 dnl Please use pyport.h instead, if possible.
34 AH_TOP([
35 #ifndef Py_PYCONFIG_H
36 #define Py_PYCONFIG_H
38 AH_BOTTOM([
39 /* Define the macros needed if on a UnixWare 7.x system. */
40 #if defined(__USLC__) && defined(__SCO_VERSION__)
41 #define STRICT_SYSV_CURSES /* Don't use ncurses extensions */
42 #endif
44 #endif /*Py_PYCONFIG_H*/
47 # We don't use PACKAGE_ variables, and they cause conflicts
48 # with other autoconf-based packages that include Python.h
49 grep -v 'define PACKAGE_' <confdefs.h >confdefs.h.new
50 rm confdefs.h
51 mv confdefs.h.new confdefs.h
53 AC_SUBST(VERSION)
54 VERSION=PYTHON_VERSION
56 AC_SUBST(SOVERSION)
57 SOVERSION=1.0
59 # The later defininition of _XOPEN_SOURCE disables certain features
60 # on Linux, so we need _GNU_SOURCE to re-enable them (makedev, tm_zone).
61 AC_DEFINE(_GNU_SOURCE, 1, [Define on Linux to activate all library features])
63 # The later defininition of _XOPEN_SOURCE and _POSIX_C_SOURCE disables
64 # certain features on NetBSD, so we need _NETBSD_SOURCE to re-enable
65 # them.
66 AC_DEFINE(_NETBSD_SOURCE, 1, [Define on NetBSD to activate all library features])
68 # The later defininition of _XOPEN_SOURCE and _POSIX_C_SOURCE disables
69 # certain features on FreeBSD, so we need __BSD_VISIBLE to re-enable
70 # them.
71 AC_DEFINE(__BSD_VISIBLE, 1, [Define on FreeBSD to activate all library features])
73 # The later defininition of _XOPEN_SOURCE and _POSIX_C_SOURCE disables
74 # u_int on Irix 5.3. Defining _BSD_TYPES brings it back.
75 AC_DEFINE(_BSD_TYPES, 1, [Define on Irix to enable u_int])
77 # The later defininition of _XOPEN_SOURCE and _POSIX_C_SOURCE disables
78 # certain features on Mac OS X, so we need _DARWIN_C_SOURCE to re-enable
79 # them.
80 AC_DEFINE(_DARWIN_C_SOURCE, 1, [Define on Darwin to activate all library features])
83 define_xopen_source=yes
85 # Arguments passed to configure.
86 AC_SUBST(CONFIG_ARGS)
87 CONFIG_ARGS="$ac_configure_args"
89 AC_ARG_ENABLE(universalsdk,
90         AC_HELP_STRING(--enable-universalsdk@<:@=SDKDIR@:>@, Build against Mac OS X 10.4u SDK (ppc/i386)),
92         case $enableval in
93         yes)
94                 enableval=/Developer/SDKs/MacOSX10.4u.sdk
95                 ;;
96         esac
97         case $enableval in
98         no)
99                 UNIVERSALSDK=
100                 enable_universalsdk=
101                 ;;
102         *)
103                 UNIVERSALSDK=$enableval
104                 ;;
105         esac
107         UNIVERSALSDK=
108         enable_universalsdk=
110 AC_SUBST(UNIVERSALSDK)
112 AC_SUBST(ARCH_RUN_32BIT)
114 UNIVERSAL_ARCHS="32-bit"
115 AC_SUBST(LIPO_32BIT_FLAGS)
116 AC_MSG_CHECKING(for --with-universal-archs)
117 AC_ARG_WITH(universal-archs,
118     AC_HELP_STRING(--with-universal-archs=ARCH, select architectures for universal build ("32-bit", "64-bit", "3-way", "intel" or "all")),
120         AC_MSG_RESULT($withval)
121         UNIVERSAL_ARCHS="$withval"
122         if test "${enable_universalsdk}" ; then
123                 :
124         else
125                 AC_MSG_ERROR([--with-universal-archs without --enable-universalsdk. See Mac/README])
126         fi
129         AC_MSG_RESULT(32-bit)
134 AC_ARG_WITH(framework-name,
135               AC_HELP_STRING(--with-framework-name=FRAMEWORK, 
136                              specify an alternate name of the framework built with --enable-framework),
138     if test "${enable_framework}"; then
139             :
140     else
141         AC_MSG_ERROR([--with-framework-name without --enable-framework. See Mac/README])
142     fi
143     PYTHONFRAMEWORK=${withval}
144     PYTHONFRAMEWORKDIR=${withval}.framework
145     PYTHONFRAMEWORKIDENTIFIER=org.python.`echo $withval | tr '[A-Z]' '[a-z]'`
146     ],[
147     PYTHONFRAMEWORK=Python
148     PYTHONFRAMEWORKDIR=Python.framework
149     PYTHONFRAMEWORKIDENTIFIER=org.python.python
151 dnl quadrigraphs "@<:@" and "@:>@" produce "[" and "]" in the output
152 AC_ARG_ENABLE(framework,
153               AC_HELP_STRING(--enable-framework@<:@=INSTALLDIR@:>@, Build (MacOSX|Darwin) framework),
155         case $enableval in
156         yes) 
157                 enableval=/Library/Frameworks
158         esac
159         case $enableval in
160         no)
161                 PYTHONFRAMEWORK=
162                 PYTHONFRAMEWORKDIR=no-framework
163                 PYTHONFRAMEWORKPREFIX=
164                 PYTHONFRAMEWORKINSTALLDIR=
165                 FRAMEWORKINSTALLFIRST=
166                 FRAMEWORKINSTALLLAST=
167                 FRAMEWORKALTINSTALLFIRST=
168                 FRAMEWORKALTINSTALLLAST=
169                 if test "x${prefix}" = "xNONE"; then
170                         FRAMEWORKUNIXTOOLSPREFIX="${ac_default_prefix}"
171                 else
172                         FRAMEWORKUNIXTOOLSPREFIX="${prefix}"
173                 fi
174                 enable_framework=
175                 ;;
176         *)
177                 PYTHONFRAMEWORKPREFIX=$enableval
178                 PYTHONFRAMEWORKINSTALLDIR=$PYTHONFRAMEWORKPREFIX/$PYTHONFRAMEWORKDIR
179                 FRAMEWORKINSTALLFIRST="frameworkinstallstructure"
180                 FRAMEWORKALTINSTALLFIRST="frameworkinstallstructure bininstall maninstall"
181                 FRAMEWORKINSTALLLAST="frameworkinstallmaclib frameworkinstallapps frameworkinstallunixtools"
182                 FRAMEWORKALTINSTALLLAST="frameworkinstallmaclib frameworkinstallapps frameworkaltinstallunixtools"
184                 if test "x${prefix}" = "xNONE" ; then
185                         FRAMEWORKUNIXTOOLSPREFIX="${ac_default_prefix}"
186                 else
187                         FRAMEWORKUNIXTOOLSPREFIX="${prefix}"
188                 fi
189                 prefix=$PYTHONFRAMEWORKINSTALLDIR/Versions/$VERSION
191                 # Add files for Mac specific code to the list of output
192                 # files:
193                 AC_CONFIG_FILES(Mac/Makefile)
194                 AC_CONFIG_FILES(Mac/PythonLauncher/Makefile)
195                 AC_CONFIG_FILES(Mac/IDLE/Makefile)
196                 AC_CONFIG_FILES(Mac/Resources/framework/Info.plist)
197                 AC_CONFIG_FILES(Mac/Resources/app/Info.plist)
198         esac
199         ],[
200         PYTHONFRAMEWORK=
201         PYTHONFRAMEWORKDIR=no-framework
202         PYTHONFRAMEWORKPREFIX=
203         PYTHONFRAMEWORKINSTALLDIR=
204         FRAMEWORKINSTALLFIRST=
205         FRAMEWORKINSTALLLAST=
206         FRAMEWORKALTINSTALLFIRST=
207         FRAMEWORKALTINSTALLLAST=
208         if test "x${prefix}" = "xNONE" ; then
209                 FRAMEWORKUNIXTOOLSPREFIX="${ac_default_prefix}"
210         else
211                 FRAMEWORKUNIXTOOLSPREFIX="${prefix}"
212         fi
213         enable_framework=
216 AC_SUBST(PYTHONFRAMEWORK)
217 AC_SUBST(PYTHONFRAMEWORKIDENTIFIER)
218 AC_SUBST(PYTHONFRAMEWORKDIR)
219 AC_SUBST(PYTHONFRAMEWORKPREFIX)
220 AC_SUBST(PYTHONFRAMEWORKINSTALLDIR)
221 AC_SUBST(FRAMEWORKINSTALLFIRST)
222 AC_SUBST(FRAMEWORKINSTALLLAST)
223 AC_SUBST(FRAMEWORKALTINSTALLFIRST)
224 AC_SUBST(FRAMEWORKALTINSTALLLAST)
225 AC_SUBST(FRAMEWORKUNIXTOOLSPREFIX)
227 ##AC_ARG_WITH(dyld,
228 ##            AC_HELP_STRING(--with-dyld,
229 ##                           Use (OpenStep|Rhapsody) dynamic linker))
231 # Set name for machine-dependent library files
232 AC_SUBST(MACHDEP)
233 AC_MSG_CHECKING(MACHDEP)
234 if test -z "$MACHDEP"
235 then
236         ac_sys_system=`uname -s`
237         if test "$ac_sys_system" = "AIX" \
238         -o "$ac_sys_system" = "UnixWare" -o "$ac_sys_system" = "OpenUNIX"; then
239                 ac_sys_release=`uname -v`
240         else
241                 ac_sys_release=`uname -r`
242         fi
243         ac_md_system=`echo $ac_sys_system |
244                            tr -d '[/ ]' | tr '[[A-Z]]' '[[a-z]]'`
245         ac_md_release=`echo $ac_sys_release |
246                            tr -d '[/ ]' | sed 's/^[[A-Z]]\.//' | sed 's/\..*//'`
247         MACHDEP="$ac_md_system$ac_md_release"
249         case $MACHDEP in
250         cygwin*) MACHDEP="cygwin";;
251         darwin*) MACHDEP="darwin";;
252         atheos*) MACHDEP="atheos";;
253         irix646) MACHDEP="irix6";;
254         '')     MACHDEP="unknown";;
255         esac
257         
258 # Some systems cannot stand _XOPEN_SOURCE being defined at all; they
259 # disable features if it is defined, without any means to access these
260 # features as extensions. For these systems, we skip the definition of
261 # _XOPEN_SOURCE. Before adding a system to the list to gain access to
262 # some feature, make sure there is no alternative way to access this
263 # feature. Also, when using wildcards, make sure you have verified the
264 # need for not defining _XOPEN_SOURCE on all systems matching the
265 # wildcard, and that the wildcard does not include future systems
266 # (which may remove their limitations).
267 dnl quadrigraphs "@<:@" and "@:>@" produce "[" and "]" in the output
268 case $ac_sys_system/$ac_sys_release in
269   # On OpenBSD, select(2) is not available if _XOPEN_SOURCE is defined,
270   # even though select is a POSIX function. Reported by J. Ribbens.
271   # Reconfirmed for OpenBSD 3.3 by Zachary Hamm, for 3.4 by Jason Ish.
272   OpenBSD/2.* | OpenBSD/3.@<:@0123456789@:>@ | OpenBSD/4.@<:@0123@:>@) 
273     define_xopen_source=no
274     # OpenBSD undoes our definition of __BSD_VISIBLE if _XOPEN_SOURCE is
275     # also defined. This can be overridden by defining _BSD_SOURCE
276     # As this has a different meaning on Linux, only define it on OpenBSD
277     AC_DEFINE(_BSD_SOURCE, 1, [Define on OpenBSD to activate all library features])
278     ;;
279   # Defining _XOPEN_SOURCE on NetBSD version prior to the introduction of
280   # _NETBSD_SOURCE disables certain features (eg. setgroups). Reported by
281   # Marc Recht
282   NetBSD/1.5 | NetBSD/1.5.* | NetBSD/1.6 | NetBSD/1.6.* | NetBSD/1.6@<:@A-S@:>@)
283     define_xopen_source=no;;
284   # On Solaris 2.6, sys/wait.h is inconsistent in the usage
285   # of union __?sigval. Reported by Stuart Bishop.
286   SunOS/5.6)
287     define_xopen_source=no;;
288   # On UnixWare 7, u_long is never defined with _XOPEN_SOURCE,
289   # but used in /usr/include/netinet/tcp.h. Reported by Tim Rice.
290   # Reconfirmed for 7.1.4 by Martin v. Loewis.
291   OpenUNIX/8.0.0| UnixWare/7.1.@<:@0-4@:>@)
292     define_xopen_source=no;;
293   # On OpenServer 5, u_short is never defined with _XOPEN_SOURCE,
294   # but used in struct sockaddr.sa_family. Reported by Tim Rice.
295   SCO_SV/3.2)
296     define_xopen_source=no;;
297   # On FreeBSD 4, the math functions C89 does not cover are never defined
298   # with _XOPEN_SOURCE and __BSD_VISIBLE does not re-enable them.
299   FreeBSD/4.*)
300     define_xopen_source=no;;
301   # On MacOS X 10.2, a bug in ncurses.h means that it craps out if 
302   # _XOPEN_EXTENDED_SOURCE is defined. Apparently, this is fixed in 10.3, which
303   # identifies itself as Darwin/7.*
304   # On Mac OS X 10.4, defining _POSIX_C_SOURCE or _XOPEN_SOURCE
305   # disables platform specific features beyond repair.
306   # On Mac OS X 10.3, defining _POSIX_C_SOURCE or _XOPEN_SOURCE 
307   # has no effect, don't bother defining them
308   Darwin/@<:@6789@:>@.*)
309     define_xopen_source=no;;
310   # On AIX 4 and 5.1, mbstate_t is defined only when _XOPEN_SOURCE == 500 but
311   # used in wcsnrtombs() and mbsnrtowcs() even if _XOPEN_SOURCE is not defined
312   # or has another value. By not (re)defining it, the defaults come in place.
313   AIX/4)
314     define_xopen_source=no;;
315   AIX/5)
316     if test `uname -r` -eq 1; then
317       define_xopen_source=no
318     fi
319     ;;
320   # On QNX 6.3.2, defining _XOPEN_SOURCE prevents netdb.h from
321   # defining NI_NUMERICHOST.
322   QNX/6.3.2)
323     define_xopen_source=no
324     ;;
326 esac
328 if test $define_xopen_source = yes
329 then
330   # On Solaris w/ g++ it appears that _XOPEN_SOURCE has to be
331   # defined precisely as g++ defines it
332   # Furthermore, on Solaris 10, XPG6 requires the use of a C99
333   # compiler
334   case $ac_sys_system/$ac_sys_release in
335     SunOS/5.8|SunOS/5.9|SunOS/5.10)
336       AC_DEFINE(_XOPEN_SOURCE, 500, 
337                 Define to the level of X/Open that your system supports)
338       ;;
339     *)
340       AC_DEFINE(_XOPEN_SOURCE, 600, 
341                 Define to the level of X/Open that your system supports)
342       ;;
343   esac
345   # On Tru64 Unix 4.0F, defining _XOPEN_SOURCE also requires
346   # definition of _XOPEN_SOURCE_EXTENDED and _POSIX_C_SOURCE, or else
347   # several APIs are not declared. Since this is also needed in some
348   # cases for HP-UX, we define it globally.
349   # except for Solaris 10, where it must not be defined, 
350   # as it implies XPG4.2
351   case $ac_sys_system/$ac_sys_release in
352     SunOS/5.10)
353       ;;
354     *)
355       AC_DEFINE(_XOPEN_SOURCE_EXTENDED, 1,
356                 Define to activate Unix95-and-earlier features)
357       ;;
358   esac
360   AC_DEFINE(_POSIX_C_SOURCE, 200112L, Define to activate features from IEEE Stds 1003.1-2001)
361   
365 # SGI compilers allow the specification of the both the ABI and the
366 # ISA on the command line.  Depending on the values of these switches,
367 # different and often incompatable code will be generated.
369 # The SGI_ABI variable can be used to modify the CC and LDFLAGS and
370 # thus supply support for various ABI/ISA combinations.  The MACHDEP
371 # variable is also adjusted.
373 AC_SUBST(SGI_ABI)
374 if test ! -z "$SGI_ABI"
375 then
376         CC="cc $SGI_ABI"
377         LDFLAGS="$SGI_ABI $LDFLAGS"
378         MACHDEP=`echo "${MACHDEP}${SGI_ABI}" | sed 's/ *//g'`
380 AC_MSG_RESULT($MACHDEP)
382 # And add extra plat-mac for darwin
383 AC_SUBST(EXTRAPLATDIR)
384 AC_SUBST(EXTRAMACHDEPPATH)
385 AC_MSG_CHECKING(EXTRAPLATDIR)
386 if test -z "$EXTRAPLATDIR"
387 then
388         case $MACHDEP in
389         darwin) 
390                 EXTRAPLATDIR="\$(PLATMACDIRS)"
391                 EXTRAMACHDEPPATH="\$(PLATMACPATH)"
392                 ;;
393         *) 
394                 EXTRAPLATDIR=""
395                 EXTRAMACHDEPPATH=""
396                 ;;
397         esac
399 AC_MSG_RESULT($EXTRAPLATDIR)
401 # Record the configure-time value of MACOSX_DEPLOYMENT_TARGET,
402 # it may influence the way we can build extensions, so distutils
403 # needs to check it
404 AC_SUBST(CONFIGURE_MACOSX_DEPLOYMENT_TARGET)
405 AC_SUBST(EXPORT_MACOSX_DEPLOYMENT_TARGET)
406 CONFIGURE_MACOSX_DEPLOYMENT_TARGET=
407 EXPORT_MACOSX_DEPLOYMENT_TARGET='#'
409 AC_MSG_CHECKING(machine type as reported by uname -m)
410 ac_sys_machine=`uname -m`
411 AC_MSG_RESULT($ac_sys_machine)
413 # checks for alternative programs
415 # compiler flags are generated in two sets, BASECFLAGS and OPT.  OPT is just
416 # for debug/optimization stuff.  BASECFLAGS is for flags that are required
417 # just to get things to compile and link.  Users are free to override OPT
418 # when running configure or make.  The build should not break if they do.
419 # BASECFLAGS should generally not be messed with, however.
421 # XXX shouldn't some/most/all of this code be merged with the stuff later
422 # on that fiddles with OPT and BASECFLAGS?
423 AC_MSG_CHECKING(for --without-gcc)
424 AC_ARG_WITH(gcc,
425             AC_HELP_STRING(--without-gcc,never use gcc),
427         case $withval in
428         no)     CC=${CC:-cc}
429                 without_gcc=yes;;
430         yes)    CC=gcc
431                 without_gcc=no;;
432         *)      CC=$withval
433                 without_gcc=$withval;;
434         esac], [
435         case $ac_sys_system in
436         AIX*)   CC=cc_r
437                 without_gcc=;;
438         BeOS*)
439                 case $BE_HOST_CPU in
440                 ppc)
441                         CC=mwcc
442                         without_gcc=yes
443                         BASECFLAGS="$BASECFLAGS -export pragma"
444                         OPT="$OPT -O"
445                         LDFLAGS="$LDFLAGS -nodup"
446                         ;;
447                 x86)
448                         CC=gcc
449                         without_gcc=no
450                         OPT="$OPT -O"
451                         ;;
452                 *)
453                         AC_MSG_ERROR([Unknown BeOS platform "$BE_HOST_CPU"])
454                         ;;
455                 esac
456                 AR="\$(srcdir)/Modules/ar_beos"
457                 RANLIB=:
458                 ;;
459         *)      without_gcc=no;;
460         esac])
461 AC_MSG_RESULT($without_gcc)
463 # If the user switches compilers, we can't believe the cache
464 if test ! -z "$ac_cv_prog_CC" -a ! -z "$CC" -a "$CC" != "$ac_cv_prog_CC"
465 then
466   AC_MSG_ERROR([cached CC is different -- throw away $cache_file
467 (it is also a good idea to do 'make clean' before compiling)])
470 AC_PROG_CC
472 AC_SUBST(CXX)
473 AC_SUBST(MAINCC)
474 AC_MSG_CHECKING(for --with-cxx-main=<compiler>)
475 AC_ARG_WITH(cxx_main,
476             AC_HELP_STRING([--with-cxx-main=<compiler>],
477                            [compile main() and link python executable with C++ compiler]),
479         
480         case $withval in
481         no)     with_cxx_main=no
482                 MAINCC='$(CC)';;
483         yes)    with_cxx_main=yes
484                 MAINCC='$(CXX)';;
485         *)      with_cxx_main=yes
486                 MAINCC=$withval
487                 if test -z "$CXX"
488                 then
489                         CXX=$withval
490                 fi;;
491         esac], [
492         with_cxx_main=no
493         MAINCC='$(CC)'
495 AC_MSG_RESULT($with_cxx_main)
497 preset_cxx="$CXX"
498 if test -z "$CXX"
499 then
500         case "$CC" in
501         gcc)    AC_PATH_PROG(CXX, [g++], [g++], [notfound]) ;;
502         cc)     AC_PATH_PROG(CXX, [c++], [c++], [notfound]) ;;
503         esac
504         if test "$CXX" = "notfound"
505         then
506                 CXX=""
507         fi
509 if test -z "$CXX"
510 then
511         AC_CHECK_PROGS(CXX, $CCC c++ g++ gcc CC cxx cc++ cl, notfound)
512         if test "$CXX" = "notfound"
513         then
514                 CXX=""
515         fi
517 if test "$preset_cxx" != "$CXX"
518 then
519         AC_MSG_WARN([
521   By default, distutils will build C++ extension modules with "$CXX".
522   If this is not intended, then set CXX on the configure command line.
523   ])
527 # checks for UNIX variants that set C preprocessor variables
528 AC_AIX
530 # Check for unsupported systems
531 case $ac_sys_system/$ac_sys_release in
532 atheos*|Linux*/1*)
533    echo This system \($ac_sys_system/$ac_sys_release\) is no longer supported.
534    echo See README for details.
535    exit 1;;
536 esac
538 AC_EXEEXT
539 AC_MSG_CHECKING(for --with-suffix)
540 AC_ARG_WITH(suffix,
541             AC_HELP_STRING(--with-suffix=.exe, set executable suffix),
543         case $withval in
544         no)     EXEEXT=;;
545         yes)    EXEEXT=.exe;;
546         *)      EXEEXT=$withval;;
547         esac])
548 AC_MSG_RESULT($EXEEXT)
550 # Test whether we're running on a non-case-sensitive system, in which
551 # case we give a warning if no ext is given
552 AC_SUBST(BUILDEXEEXT)
553 AC_MSG_CHECKING(for case-insensitive build directory)
554 if test ! -d CaseSensitiveTestDir; then
555 mkdir CaseSensitiveTestDir
558 if test -d casesensitivetestdir
559 then
560     AC_MSG_RESULT(yes)
561     BUILDEXEEXT=.exe
562 else
563         AC_MSG_RESULT(no)
564         BUILDEXEEXT=$EXEEXT
566 rmdir CaseSensitiveTestDir
568 case $MACHDEP in
569 bsdos*)
570     case $CC in
571     gcc) CC="$CC -D_HAVE_BSDI";;
572     esac;;
573 esac
575 case $ac_sys_system in
576 hp*|HP*)
577     case $CC in
578     cc|*/cc) CC="$CC -Ae";;
579     esac;;
580 SunOS*)
581     # Some functions have a prototype only with that define, e.g. confstr
582     AC_DEFINE(__EXTENSIONS__, 1, [Defined on Solaris to see additional function prototypes.])
583     ;;
584 esac
587 AC_SUBST(LIBRARY)
588 AC_MSG_CHECKING(LIBRARY)
589 if test -z "$LIBRARY"
590 then
591         LIBRARY='libpython$(VERSION).a'
593 AC_MSG_RESULT($LIBRARY)
595 # LDLIBRARY is the name of the library to link against (as opposed to the
596 # name of the library into which to insert object files). BLDLIBRARY is also
597 # the library to link against, usually. On Mac OS X frameworks, BLDLIBRARY
598 # is blank as the main program is not linked directly against LDLIBRARY.
599 # LDLIBRARYDIR is the path to LDLIBRARY, which is made in a subdirectory. On
600 # systems without shared libraries, LDLIBRARY is the same as LIBRARY
601 # (defined in the Makefiles). On Cygwin LDLIBRARY is the import library,
602 # DLLLIBRARY is the shared (i.e., DLL) library.
604 # RUNSHARED is used to run shared python without installed libraries
606 # INSTSONAME is the name of the shared library that will be use to install
607 # on the system - some systems like version suffix, others don't
608 AC_SUBST(LDLIBRARY)
609 AC_SUBST(DLLLIBRARY)
610 AC_SUBST(BLDLIBRARY)
611 AC_SUBST(LDLIBRARYDIR)
612 AC_SUBST(INSTSONAME)
613 AC_SUBST(RUNSHARED)
614 LDLIBRARY="$LIBRARY"
615 BLDLIBRARY='$(LDLIBRARY)'
616 INSTSONAME='$(LDLIBRARY)'
617 DLLLIBRARY=''
618 LDLIBRARYDIR=''
619 RUNSHARED=''
621 # LINKCC is the command that links the python executable -- default is $(CC).
622 # If CXX is set, and if it is needed to link a main function that was
623 # compiled with CXX, LINKCC is CXX instead. Always using CXX is undesirable:
624 # python might then depend on the C++ runtime
625 # This is altered for AIX in order to build the export list before 
626 # linking.
627 AC_SUBST(LINKCC)
628 AC_MSG_CHECKING(LINKCC)
629 if test -z "$LINKCC"
630 then
631         LINKCC='$(PURIFY) $(MAINCC)'
632         case $ac_sys_system in
633         AIX*)
634            exp_extra="\"\""
635            if test $ac_sys_release -ge 5 -o \
636                    $ac_sys_release -eq 4 -a `uname -r` -ge 2 ; then
637                exp_extra="."
638            fi
639            LINKCC="\$(srcdir)/Modules/makexp_aix Modules/python.exp $exp_extra \$(LIBRARY); $LINKCC";;
640         QNX*)
641            # qcc must be used because the other compilers do not
642            # support -N.
643            LINKCC=qcc;;
644         esac
646 AC_MSG_RESULT($LINKCC)
648 # GNULD is set to "yes" if the GNU linker is used.  If this goes wrong
649 # make sure we default having it set to "no": this is used by
650 # distutils.unixccompiler to know if it should add --enable-new-dtags
651 # to linker command lines, and failing to detect GNU ld simply results
652 # in the same bahaviour as before.
653 AC_SUBST(GNULD)
654 AC_MSG_CHECKING(for GNU ld)
655 ac_prog=ld
656 if test "$GCC" = yes; then
657        ac_prog=`$CC -print-prog-name=ld`
659 case `"$ac_prog" -V 2>&1 < /dev/null` in
660       *GNU*)
661           GNULD=yes;;
662       *)
663           GNULD=no;;
664 esac
665 AC_MSG_RESULT($GNULD)
667 AC_MSG_CHECKING(for --enable-shared)
668 AC_ARG_ENABLE(shared,
669               AC_HELP_STRING(--enable-shared, disable/enable building shared python library))
671 if test -z "$enable_shared"
672 then 
673   case $ac_sys_system in
674   CYGWIN* | atheos*)
675     enable_shared="yes";;
676   *)
677     enable_shared="no";;
678   esac
680 AC_MSG_RESULT($enable_shared)
682 AC_MSG_CHECKING(for --enable-profiling)
683 AC_ARG_ENABLE(profiling,
684               AC_HELP_STRING(--enable-profiling, enable C-level code profiling),
685 [ac_save_cc="$CC"
686  CC="$CC -pg"
687  AC_TRY_RUN([int main() { return 0; }],
688    ac_enable_profiling="yes",
689    ac_enable_profiling="no",
690    ac_enable_profiling="no")
691  CC="$ac_save_cc"])
692 AC_MSG_RESULT($ac_enable_profiling)
694 case "$ac_enable_profiling" in
695     "yes")
696         BASECFLAGS="-pg $BASECFLAGS"
697         LDFLAGS="-pg $LDFLAGS"
698     ;;
699 esac
701 AC_MSG_CHECKING(LDLIBRARY)
703 # MacOSX framework builds need more magic. LDLIBRARY is the dynamic
704 # library that we build, but we do not want to link against it (we
705 # will find it with a -framework option). For this reason there is an
706 # extra variable BLDLIBRARY against which Python and the extension
707 # modules are linked, BLDLIBRARY. This is normally the same as
708 # LDLIBRARY, but empty for MacOSX framework builds.
709 if test "$enable_framework"
710 then
711   LDLIBRARY='$(PYTHONFRAMEWORKDIR)/Versions/$(VERSION)/$(PYTHONFRAMEWORK)'
712   RUNSHARED=DYLD_FRAMEWORK_PATH="`pwd`:$DYLD_FRAMEWORK_PATH"
713   BLDLIBRARY=''
714 else
715   BLDLIBRARY='$(LDLIBRARY)'
716 fi  
718 # Other platforms follow
719 if test $enable_shared = "yes"; then
720   AC_DEFINE(Py_ENABLE_SHARED, 1, [Defined if Python is built as a shared library.])
721   case $ac_sys_system in
722     BeOS*)
723           LDLIBRARY='libpython$(VERSION).so'
724           ;;
725     CYGWIN*)
726           LDLIBRARY='libpython$(VERSION).dll.a'
727           DLLLIBRARY='libpython$(VERSION).dll'
728           ;;
729     SunOS*)
730           LDLIBRARY='libpython$(VERSION).so'
731           BLDLIBRARY='-Wl,-R,$(LIBDIR) -L. -lpython$(VERSION)'
732           RUNSHARED=LD_LIBRARY_PATH=`pwd`:${LD_LIBRARY_PATH}
733           INSTSONAME="$LDLIBRARY".$SOVERSION
734           ;;
735     Linux*|GNU*|NetBSD*|FreeBSD*|DragonFly*)
736           LDLIBRARY='libpython$(VERSION).so'
737           BLDLIBRARY='-L. -lpython$(VERSION)'
738           RUNSHARED=LD_LIBRARY_PATH=`pwd`:${LD_LIBRARY_PATH}
739           case $ac_sys_system in
740               FreeBSD*)
741                 SOVERSION=`echo $SOVERSION|cut -d "." -f 1`
742                 ;;
743           esac
744           INSTSONAME="$LDLIBRARY".$SOVERSION
745           ;;
746     hp*|HP*)
747           case `uname -m` in
748                 ia64)
749                         LDLIBRARY='libpython$(VERSION).so'
750                         ;;
751                 *)
752                         LDLIBRARY='libpython$(VERSION).sl'
753                         ;;
754           esac
755           BLDLIBRARY='-Wl,+b,$(LIBDIR) -L. -lpython$(VERSION)'
756           RUNSHARED=SHLIB_PATH=`pwd`:${SHLIB_PATH}
757           ;;
758     OSF*)
759           LDLIBRARY='libpython$(VERSION).so'
760           BLDLIBRARY='-rpath $(LIBDIR) -L. -lpython$(VERSION)'
761           RUNSHARED=LD_LIBRARY_PATH=`pwd`:${LD_LIBRARY_PATH}
762           ;;
763     atheos*)
764           LDLIBRARY='libpython$(VERSION).so'
765           BLDLIBRARY='-L. -lpython$(VERSION)'
766           RUNSHARED=DLL_PATH=`pwd`:${DLL_PATH:-/atheos/sys/libs:/atheos/autolnk/lib}
767           ;;
768     Darwin*)
769         LDLIBRARY='libpython$(VERSION).dylib'
770         BLDLIBRARY='-L. -lpython$(VERSION)'
771         RUNSHARED='DYLD_LIBRARY_PATH=`pwd`:${DYLD_LIBRARY_PATH}'
772         ;;
774   esac
775 else # shared is disabled
776   case $ac_sys_system in
777     CYGWIN*)
778           BLDLIBRARY='$(LIBRARY)'
779           LDLIBRARY='libpython$(VERSION).dll.a'
780           ;;
781   esac
784 AC_MSG_RESULT($LDLIBRARY)
786 AC_PROG_RANLIB
787 AC_SUBST(AR)
788 AC_CHECK_PROGS(AR, ar aal, ar)
790 # tweak ARFLAGS only if the user didn't set it on the command line
791 AC_SUBST(ARFLAGS)
792 if test -z "$ARFLAGS"
793 then
794         ARFLAGS="rc"
797 AC_SUBST(SVNVERSION)
798 AC_CHECK_PROG(SVNVERSION, svnversion, found, not-found)
799 if test $SVNVERSION = found
800 then
801         SVNVERSION="svnversion \$(srcdir)"
802 else
803         SVNVERSION="echo Unversioned directory"
806 case $MACHDEP in
807 bsdos*|hp*|HP*)
808         # install -d does not work on BSDI or HP-UX
809         if test -z "$INSTALL"
810         then
811                 INSTALL="${srcdir}/install-sh -c"
812         fi
813 esac
814 AC_PROG_INSTALL
816 # Not every filesystem supports hard links
817 AC_SUBST(LN)
818 if test -z "$LN" ; then
819         case $ac_sys_system in
820                 BeOS*) LN="ln -s";;
821                 CYGWIN*) LN="ln -s";;
822                 atheos*) LN="ln -s";;
823                 *) LN=ln;;
824         esac
827 # Check for --with-pydebug
828 AC_MSG_CHECKING(for --with-pydebug)
829 AC_ARG_WITH(pydebug, 
830             AC_HELP_STRING(--with-pydebug, build with Py_DEBUG defined),
832 if test "$withval" != no
833 then 
834   AC_DEFINE(Py_DEBUG, 1, 
835   [Define if you want to build an interpreter with many run-time checks.]) 
836   AC_MSG_RESULT(yes); 
837   Py_DEBUG='true'
838 else AC_MSG_RESULT(no); Py_DEBUG='false'
839 fi],
840 [AC_MSG_RESULT(no)])
842 # XXX Shouldn't the code above that fiddles with BASECFLAGS and OPT be
843 # merged with this chunk of code?
845 # Optimizer/debugger flags
846 # ------------------------
847 # (The following bit of code is complicated enough - please keep things
848 # indented properly.  Just pretend you're editing Python code. ;-)
850 # There are two parallel sets of case statements below, one that checks to
851 # see if OPT was set and one that does BASECFLAGS setting based upon
852 # compiler and platform.  BASECFLAGS tweaks need to be made even if the
853 # user set OPT.
855 # tweak OPT based on compiler and platform, only if the user didn't set
856 # it on the command line
857 AC_SUBST(OPT)
858 if test -z "$OPT"
859 then
860     case $GCC in
861     yes)
862         if test "$CC" != 'g++' ; then
863             STRICT_PROTO="-Wstrict-prototypes"
864         fi
865         # For gcc 4.x we need to use -fwrapv so lets check if its supported
866         if "$CC" -v --help 2>/dev/null |grep -- -fwrapv > /dev/null; then
867            WRAP="-fwrapv"
868         fi
869         case $ac_cv_prog_cc_g in
870         yes)
871             if test "$Py_DEBUG" = 'true' ; then
872                 # Optimization messes up debuggers, so turn it off for
873                 # debug builds.
874                 OPT="-g -Wall $STRICT_PROTO"
875             else
876                 OPT="-g $WRAP -O3 -Wall $STRICT_PROTO"
877             fi
878             ;;
879         *)
880             OPT="-O3 -Wall $STRICT_PROTO"
881             ;;
882         esac
883         case $ac_sys_system in
884             SCO_SV*) OPT="$OPT -m486 -DSCO5"
885             ;;
886         esac
887         ;;
889     *)
890         OPT="-O"
891         ;;
892     esac
895 AC_SUBST(BASECFLAGS)
897 # The -arch flags for universal builds on OSX
898 UNIVERSAL_ARCH_FLAGS=
899 AC_SUBST(UNIVERSAL_ARCH_FLAGS)
901 # tweak BASECFLAGS based on compiler and platform
902 case $GCC in
903 yes)
904     # Python violates C99 rules, by casting between incompatible
905     # pointer types. GCC may generate bad code as a result of that,
906     # so use -fno-strict-aliasing if supported.
907     AC_MSG_CHECKING(whether $CC accepts -fno-strict-aliasing)
908      ac_save_cc="$CC"
909      CC="$CC -fno-strict-aliasing"
910      AC_CACHE_VAL(ac_cv_no_strict_aliasing_ok,
911      AC_TRY_COMPILE([],[int main() { return 0; }],
912      ac_cv_no_strict_aliasing_ok=yes,
913      ac_cv_no_strict_aliasing_ok=no))
914      CC="$ac_save_cc"
915     AC_MSG_RESULT($ac_cv_no_strict_aliasing_ok)
916     if test $ac_cv_no_strict_aliasing_ok = yes
917     then
918       BASECFLAGS="$BASECFLAGS -fno-strict-aliasing"
919     fi
921     # if using gcc on alpha, use -mieee to get (near) full IEEE 754
922     # support.  Without this, treatment of subnormals doesn't follow
923     # the standard.
924     case $ac_sys_machine in
925          alpha*)
926                 BASECFLAGS="$BASECFLAGS -mieee"
927                 ;;
928     esac
930     case $ac_sys_system in
931         SCO_SV*)
932             BASECFLAGS="$BASECFLAGS -m486 -DSCO5"
933             ;;
934         # is there any other compiler on Darwin besides gcc?
935         Darwin*)
936             # -Wno-long-double, -no-cpp-precomp, and -mno-fused-madd
937             # used to be here, but non-Apple gcc doesn't accept them.
940             if test "${enable_universalsdk}"; then
941                 UNIVERSAL_ARCH_FLAGS=""
942                 if test "$UNIVERSAL_ARCHS" = "32-bit" ; then
943                    UNIVERSAL_ARCH_FLAGS="-arch ppc -arch i386"
944                    ARCH_RUN_32BIT=""
945                    LIPO_32BIT_FLAGS="-extract ppc7400 -extract i386"
947                  elif test "$UNIVERSAL_ARCHS" = "64-bit" ; then
948                    UNIVERSAL_ARCH_FLAGS="-arch ppc64 -arch x86_64"
949                    LIPO_32BIT_FLAGS=""
950                    ARCH_RUN_32BIT="true"
952                  elif test "$UNIVERSAL_ARCHS" = "all" ; then
953                    UNIVERSAL_ARCH_FLAGS="-arch i386 -arch ppc -arch ppc64 -arch x86_64"
954                    LIPO_32BIT_FLAGS="-extract ppc7400 -extract i386"
955                    ARCH_RUN_32BIT="arch -i386 -ppc"
957                  elif test "$UNIVERSAL_ARCHS" = "intel" ; then
958                    UNIVERSAL_ARCH_FLAGS="-arch i386 -arch x86_64"
959                    LIPO_32BIT_FLAGS="-extract i386"
960                    ARCH_RUN_32BIT="arch -i386"
962                  elif test "$UNIVERSAL_ARCHS" = "3-way" ; then
963                    UNIVERSAL_ARCH_FLAGS="-arch i386 -arch ppc -arch x86_64"
964                    LIPO_32BIT_FLAGS="-extract ppc7400 -extract i386"
965                    ARCH_RUN_32BIT="arch -i386 -ppc7400"
967                  else
968                    AC_MSG_ERROR([proper usage is --with-universal-arch=32-bit|64-bit|all|intel|3-way])
970                  fi
973                 BASECFLAGS="${UNIVERSAL_ARCH_FLAGS} -isysroot ${UNIVERSALSDK} ${BASECFLAGS}"
974                 tgt=`sw_vers -productVersion | sed 's/\(10\.[[0-9]]*\).*/\1/'`
975                 if test "${UNIVERSALSDK}" != "/" -a "${tgt}" '>' '10.4' ; then
976                         CFLAGS="${UNIVERSAL_ARCH_FLAGS} -isysroot ${UNIVERSALSDK} ${CFLAGS}"
977                 fi
978             fi
980             # Calculate the right deployment target for this build.
981             #
982             cur_target=`sw_vers -productVersion | sed 's/\(10\.[[0-9]]*\).*/\1/'`
983             if test ${cur_target} '>' 10.2; then
984                     cur_target=10.3
985                     if test ${enable_universalsdk}; then
986                             if test "${UNIVERSAL_ARCHS}" = "all"; then
987                                     # Ensure that the default platform for a 
988                                     # 4-way universal build is OSX 10.5, 
989                                     # that's the first OS release where 
990                                     # 4-way builds make sense.
991                                     cur_target='10.5'
993                             elif test "${UNIVERSAL_ARCHS}" = "3-way"; then
994                                     cur_target='10.5'
996                             elif test "${UNIVERSAL_ARCHS}" = "intel"; then
997                                     cur_target='10.5'
999                             elif test "${UNIVERSAL_ARCHS}" = "64-bit"; then
1000                                     cur_target='10.5'
1001                             fi
1002                     else
1003                             if test `arch` = "i386"; then
1004                                     # On Intel macs default to a deployment
1005                                     # target of 10.4, that's the first OSX
1006                                     # release with Intel support.
1007                                     cur_target="10.4"
1008                             fi
1009                     fi
1010             fi
1011             CONFIGURE_MACOSX_DEPLOYMENT_TARGET=${MACOSX_DEPLOYMENT_TARGET-${cur_target}}
1012             
1013             # Make sure that MACOSX_DEPLOYMENT_TARGET is set in the 
1014             # environment with a value that is the same as what we'll use
1015             # in the Makefile to ensure that we'll get the same compiler
1016             # environment during configure and build time.
1017             MACOSX_DEPLOYMENT_TARGET="$CONFIGURE_MACOSX_DEPLOYMENT_TARGET"
1018             export MACOSX_DEPLOYMENT_TARGET
1019             EXPORT_MACOSX_DEPLOYMENT_TARGET=''
1021             ;;
1022         OSF*)
1023             BASECFLAGS="$BASECFLAGS -mieee"
1024             ;;
1025     esac
1026     ;;
1029     case $ac_sys_system in
1030     OpenUNIX*|UnixWare*)
1031         BASECFLAGS="$BASECFLAGS -K pentium,host,inline,loop_unroll,alloca "
1032         ;;
1033     OSF*)
1034         BASECFLAGS="$BASECFLAGS -ieee -std"
1035         ;;
1036     SCO_SV*)
1037         BASECFLAGS="$BASECFLAGS -belf -Ki486 -DSCO5"
1038         ;;
1039     esac
1040     ;;
1041 esac
1043 if test "$Py_DEBUG" = 'true'; then
1044   :
1045 else
1046   OPT="-DNDEBUG $OPT"
1049 if test "$ac_arch_flags"
1050 then
1051         BASECFLAGS="$BASECFLAGS $ac_arch_flags"
1054 # disable check for icc since it seems to pass, but generates a warning
1055 if test "$CC" = icc
1056 then
1057   ac_cv_opt_olimit_ok=no
1060 AC_MSG_CHECKING(whether $CC accepts -OPT:Olimit=0)
1061 AC_CACHE_VAL(ac_cv_opt_olimit_ok,
1062 [ac_save_cc="$CC"
1063 CC="$CC -OPT:Olimit=0"
1064 AC_TRY_COMPILE([],[int main() { return 0; }],
1065   ac_cv_opt_olimit_ok=yes,
1066   ac_cv_opt_olimit_ok=no,
1067   )
1068 CC="$ac_save_cc"])
1069 AC_MSG_RESULT($ac_cv_opt_olimit_ok)
1070 if test $ac_cv_opt_olimit_ok = yes; then
1071     case $ac_sys_system in
1072         # XXX is this branch needed? On MacOSX 10.2.2 the result of the
1073         # olimit_ok test is "no".  Is it "yes" in some other Darwin-esque
1074         # environment?
1075         Darwin*)
1076             ;;
1077         *)
1078             BASECFLAGS="$BASECFLAGS -OPT:Olimit=0"
1079             ;;
1080     esac
1081 else
1082   AC_MSG_CHECKING(whether $CC accepts -Olimit 1500)
1083   AC_CACHE_VAL(ac_cv_olimit_ok,
1084   [ac_save_cc="$CC"
1085   CC="$CC -Olimit 1500"
1086   AC_TRY_COMPILE([],[int main() { return 0; }],
1087     ac_cv_olimit_ok=yes,
1088     ac_cv_olimit_ok=no,
1089     )
1090   CC="$ac_save_cc"])
1091   AC_MSG_RESULT($ac_cv_olimit_ok)
1092   if test $ac_cv_olimit_ok = yes; then
1093     BASECFLAGS="$BASECFLAGS -Olimit 1500"
1094   fi
1097 # Check whether GCC supports PyArg_ParseTuple format
1098 if test "$GCC" = "yes"
1099 then
1100   AC_MSG_CHECKING(whether gcc supports ParseTuple __format__)
1101   save_CFLAGS=$CFLAGS
1102   CFLAGS="$CFLAGS -Werror"
1103   AC_TRY_COMPILE([
1104     void f(char*,...)__attribute((format(PyArg_ParseTuple, 1, 2)));
1105   ],,
1106   AC_DEFINE(HAVE_ATTRIBUTE_FORMAT_PARSETUPLE, 1, [Define if GCC supports __attribute__((format(PyArg_ParseTuple, 2, 3)))])
1107   AC_MSG_RESULT(yes),
1108   AC_MSG_RESULT(no)
1109   )
1110   CFLAGS=$save_CFLAGS
1113 # On some compilers, pthreads are available without further options
1114 # (e.g. MacOS X). On some of these systems, the compiler will not
1115 # complain if unaccepted options are passed (e.g. gcc on Mac OS X).
1116 # So we have to see first whether pthreads are available without
1117 # options before we can check whether -Kpthread improves anything.
1118 AC_MSG_CHECKING(whether pthreads are available without options)
1119 AC_CACHE_VAL(ac_cv_pthread_is_default,
1120 [AC_TRY_RUN([
1121 #include <pthread.h>
1123 void* routine(void* p){return NULL;}
1125 int main(){
1126   pthread_t p;
1127   if(pthread_create(&p,NULL,routine,NULL)!=0)
1128     return 1;
1129   (void)pthread_detach(p);
1130   return 0;
1134   ac_cv_pthread_is_default=yes
1135   ac_cv_kthread=no
1136   ac_cv_pthread=no
1138   ac_cv_pthread_is_default=no,
1139   ac_cv_pthread_is_default=no)
1141 AC_MSG_RESULT($ac_cv_pthread_is_default)
1144 if test $ac_cv_pthread_is_default = yes 
1145 then
1146   ac_cv_kpthread=no
1147 else
1148 # -Kpthread, if available, provides the right #defines
1149 # and linker options to make pthread_create available
1150 # Some compilers won't report that they do not support -Kpthread,
1151 # so we need to run a program to see whether it really made the
1152 # function available.
1153 AC_MSG_CHECKING(whether $CC accepts -Kpthread)
1154 AC_CACHE_VAL(ac_cv_kpthread,
1155 [ac_save_cc="$CC"
1156 CC="$CC -Kpthread"
1157 AC_TRY_RUN([
1158 #include <pthread.h>
1160 void* routine(void* p){return NULL;}
1162 int main(){
1163   pthread_t p;
1164   if(pthread_create(&p,NULL,routine,NULL)!=0)
1165     return 1;
1166   (void)pthread_detach(p);
1167   return 0;
1170   ac_cv_kpthread=yes,
1171   ac_cv_kpthread=no,
1172   ac_cv_kpthread=no)
1173 CC="$ac_save_cc"])
1174 AC_MSG_RESULT($ac_cv_kpthread)
1177 if test $ac_cv_kpthread = no -a $ac_cv_pthread_is_default = no
1178 then
1179 # -Kthread, if available, provides the right #defines
1180 # and linker options to make pthread_create available
1181 # Some compilers won't report that they do not support -Kthread,
1182 # so we need to run a program to see whether it really made the
1183 # function available.
1184 AC_MSG_CHECKING(whether $CC accepts -Kthread)
1185 AC_CACHE_VAL(ac_cv_kthread,
1186 [ac_save_cc="$CC"
1187 CC="$CC -Kthread"
1188 AC_TRY_RUN([
1189 #include <pthread.h>
1191 void* routine(void* p){return NULL;}
1193 int main(){
1194   pthread_t p;
1195   if(pthread_create(&p,NULL,routine,NULL)!=0)
1196     return 1;
1197   (void)pthread_detach(p);
1198   return 0;
1201   ac_cv_kthread=yes,
1202   ac_cv_kthread=no,
1203   ac_cv_kthread=no)
1204 CC="$ac_save_cc"])
1205 AC_MSG_RESULT($ac_cv_kthread)
1208 if test $ac_cv_kthread = no -a $ac_cv_pthread_is_default = no
1209 then
1210 # -pthread, if available, provides the right #defines
1211 # and linker options to make pthread_create available
1212 # Some compilers won't report that they do not support -pthread,
1213 # so we need to run a program to see whether it really made the
1214 # function available.
1215 AC_MSG_CHECKING(whether $CC accepts -pthread)
1216 AC_CACHE_VAL(ac_cv_thread,
1217 [ac_save_cc="$CC"
1218 CC="$CC -pthread"
1219 AC_TRY_RUN([
1220 #include <pthread.h>
1222 void* routine(void* p){return NULL;}
1224 int main(){
1225   pthread_t p;
1226   if(pthread_create(&p,NULL,routine,NULL)!=0)
1227     return 1;
1228   (void)pthread_detach(p);
1229   return 0;
1232   ac_cv_pthread=yes,
1233   ac_cv_pthread=no,
1234   ac_cv_pthread=no)
1235 CC="$ac_save_cc"])
1236 AC_MSG_RESULT($ac_cv_pthread)
1239 # If we have set a CC compiler flag for thread support then
1240 # check if it works for CXX, too.
1241 ac_cv_cxx_thread=no
1242 if test ! -z "$CXX"
1243 then
1244 AC_MSG_CHECKING(whether $CXX also accepts flags for thread support)
1245 ac_save_cxx="$CXX"
1247 if test "$ac_cv_kpthread" = "yes"
1248 then
1249   CXX="$CXX -Kpthread"  
1250   ac_cv_cxx_thread=yes
1251 elif test "$ac_cv_kthread" = "yes"
1252 then
1253   CXX="$CXX -Kthread"
1254   ac_cv_cxx_thread=yes
1255 elif test "$ac_cv_pthread" = "yes"
1256 then 
1257   CXX="$CXX -pthread"
1258   ac_cv_cxx_thread=yes
1261 if test $ac_cv_cxx_thread = yes
1262 then
1263   echo 'void foo();int main(){foo();}void foo(){}' > conftest.$ac_ext
1264   $CXX -c conftest.$ac_ext 2>&5
1265   if $CXX -o conftest$ac_exeext conftest.$ac_objext 2>&5 \
1266      && test -s conftest$ac_exeext && ./conftest$ac_exeext
1267   then
1268     ac_cv_cxx_thread=yes
1269   else
1270     ac_cv_cxx_thread=no
1271   fi
1272   rm -fr conftest*
1274 AC_MSG_RESULT($ac_cv_cxx_thread)
1276 CXX="$ac_save_cxx"
1278 dnl # check for ANSI or K&R ("traditional") preprocessor
1279 dnl AC_MSG_CHECKING(for C preprocessor type)
1280 dnl AC_TRY_COMPILE([
1281 dnl #define spam(name, doc) {#name, &name, #name "() -- " doc}
1282 dnl int foo;
1283 dnl struct {char *name; int *addr; char *doc;} desc = spam(foo, "something");
1284 dnl ], [;], cpp_type=ansi, AC_DEFINE(HAVE_OLD_CPP) cpp_type=traditional)
1285 dnl AC_MSG_RESULT($cpp_type)
1287 # checks for header files
1288 AC_HEADER_STDC
1289 AC_CHECK_HEADERS(asm/types.h conio.h curses.h direct.h dlfcn.h errno.h \
1290 fcntl.h grp.h \
1291 ieeefp.h io.h langinfo.h libintl.h ncurses.h poll.h process.h pthread.h \
1292 shadow.h signal.h stdint.h stropts.h termios.h thread.h \
1293 unistd.h utime.h \
1294 sys/audioio.h sys/bsdtty.h sys/epoll.h sys/event.h sys/file.h sys/loadavg.h \
1295 sys/lock.h sys/mkdev.h sys/modem.h \
1296 sys/param.h sys/poll.h sys/select.h sys/socket.h sys/statvfs.h sys/stat.h \
1297 sys/termio.h sys/time.h \
1298 sys/times.h sys/types.h sys/un.h sys/utsname.h sys/wait.h pty.h libutil.h \
1299 sys/resource.h netpacket/packet.h sysexits.h bluetooth.h \
1300 bluetooth/bluetooth.h linux/tipc.h)
1301 AC_HEADER_DIRENT
1302 AC_HEADER_MAJOR
1304 # On Solaris, term.h requires curses.h
1305 AC_CHECK_HEADERS(term.h,,,[
1306 #ifdef HAVE_CURSES_H
1307 #include <curses.h>
1308 #endif
1311 # On Linux, netlink.h requires asm/types.h
1312 AC_CHECK_HEADERS(linux/netlink.h,,,[
1313 #ifdef HAVE_ASM_TYPES_H
1314 #include <asm/types.h>
1315 #endif
1316 #ifdef HAVE_SYS_SOCKET_H
1317 #include <sys/socket.h>
1318 #endif
1321 # checks for typedefs
1322 was_it_defined=no
1323 AC_MSG_CHECKING(for clock_t in time.h)
1324 AC_EGREP_HEADER(clock_t, time.h, was_it_defined=yes, [
1325     AC_DEFINE(clock_t, long, [Define to 'long' if <time.h> doesn't define.])
1327 AC_MSG_RESULT($was_it_defined)
1329 # Check whether using makedev requires defining _OSF_SOURCE
1330 AC_MSG_CHECKING(for makedev)
1331 AC_TRY_LINK([#include <sys/types.h> ],
1332             [ makedev(0, 0) ],
1333             ac_cv_has_makedev=yes,
1334             ac_cv_has_makedev=no)
1335 if test "$ac_cv_has_makedev" = "no"; then
1336     # we didn't link, try if _OSF_SOURCE will allow us to link
1337     AC_TRY_LINK([
1338 #define _OSF_SOURCE 1
1339 #include <sys/types.h>
1340     ],
1341     [ makedev(0, 0) ],
1342     ac_cv_has_makedev=yes,
1343     ac_cv_has_makedev=no)
1344     if test "$ac_cv_has_makedev" = "yes"; then
1345         AC_DEFINE(_OSF_SOURCE, 1, [Define _OSF_SOURCE to get the makedev macro.])
1346     fi
1348 AC_MSG_RESULT($ac_cv_has_makedev)
1349 if test "$ac_cv_has_makedev" = "yes"; then
1350     AC_DEFINE(HAVE_MAKEDEV, 1, [Define this if you have the makedev macro.])
1353 # Enabling LFS on Solaris (2.6 to 9) with gcc 2.95 triggers a bug in
1354 # the system headers: If _XOPEN_SOURCE and _LARGEFILE_SOURCE are
1355 # defined, but the compiler does not support pragma redefine_extname,
1356 # and _LARGEFILE64_SOURCE is not defined, the headers refer to 64-bit
1357 # structures (such as rlimit64) without declaring them. As a
1358 # work-around, disable LFS on such configurations
1360 use_lfs=yes
1361 AC_MSG_CHECKING(Solaris LFS bug)
1362 AC_TRY_COMPILE([
1363 #define _LARGEFILE_SOURCE 1
1364 #define _FILE_OFFSET_BITS 64
1365 #include <sys/resource.h>
1366 ],struct rlimit foo;,sol_lfs_bug=no,sol_lfs_bug=yes)
1367 AC_MSG_RESULT($sol_lfs_bug)
1368 if test "$sol_lfs_bug" = "yes"; then
1369   use_lfs=no
1372 if test "$use_lfs" = "yes"; then
1373 # Two defines needed to enable largefile support on various platforms
1374 # These may affect some typedefs
1375 AC_DEFINE(_LARGEFILE_SOURCE, 1, 
1376 [This must be defined on some systems to enable large file support.])
1377 AC_DEFINE(_FILE_OFFSET_BITS, 64,
1378 [This must be set to 64 on some systems to enable large file support.])
1381 # Add some code to confdefs.h so that the test for off_t works on SCO
1382 cat >> confdefs.h <<\EOF
1383 #if defined(SCO_DS)
1384 #undef _OFF_T
1385 #endif
1388 # Type availability checks
1389 AC_TYPE_MODE_T
1390 AC_TYPE_OFF_T
1391 AC_TYPE_PID_T
1392 AC_TYPE_SIGNAL
1393 AC_TYPE_SIZE_T
1394 AC_TYPE_UID_T
1395 AC_TYPE_UINT32_T
1396 AC_TYPE_UINT64_T
1397 AC_TYPE_INT32_T
1398 AC_TYPE_INT64_T
1399 AC_CHECK_TYPE(ssize_t,
1400   AC_DEFINE(HAVE_SSIZE_T, 1, Define if your compiler provides ssize_t),,)
1402 # Sizes of various common basic types
1403 # ANSI C requires sizeof(char) == 1, so no need to check it
1404 AC_CHECK_SIZEOF(int, 4)
1405 AC_CHECK_SIZEOF(long, 4)
1406 AC_CHECK_SIZEOF(void *, 4)
1407 AC_CHECK_SIZEOF(short, 2)
1408 AC_CHECK_SIZEOF(float, 4)
1409 AC_CHECK_SIZEOF(double, 8)
1410 AC_CHECK_SIZEOF(fpos_t, 4)
1411 AC_CHECK_SIZEOF(size_t, 4)
1412 AC_CHECK_SIZEOF(pid_t, 4)
1414 AC_MSG_CHECKING(for long long support)
1415 have_long_long=no
1416 AC_TRY_COMPILE([], [long long x; x = (long long)0;], [
1417   AC_DEFINE(HAVE_LONG_LONG, 1, [Define this if you have the type long long.]) 
1418   have_long_long=yes
1420 AC_MSG_RESULT($have_long_long)
1421 if test "$have_long_long" = yes ; then
1422 AC_CHECK_SIZEOF(long long, 8)
1425 AC_MSG_CHECKING(for long double support)
1426 have_long_double=no
1427 AC_TRY_COMPILE([], [long double x; x = (long double)0.;], [
1428   AC_DEFINE(HAVE_LONG_DOUBLE, 1, [Define this if you have the type long double.])
1429   have_long_double=yes
1431 AC_MSG_RESULT($have_long_double)
1432 if test "$have_long_double" = yes ; then
1433 AC_CHECK_SIZEOF(long double, 12)
1436 AC_MSG_CHECKING(for _Bool support)
1437 have_c99_bool=no
1438 AC_TRY_COMPILE([], [_Bool x; x = (_Bool)0;], [
1439   AC_DEFINE(HAVE_C99_BOOL, 1, [Define this if you have the type _Bool.]) 
1440   have_c99_bool=yes
1442 AC_MSG_RESULT($have_c99_bool)
1443 if test "$have_c99_bool" = yes ; then
1444 AC_CHECK_SIZEOF(_Bool, 1)
1447 AC_CHECK_TYPES(uintptr_t, 
1448    [AC_CHECK_SIZEOF(uintptr_t, 4)], 
1449    [], [#ifdef HAVE_STDINT_H
1450         #include <stdint.h>
1451         #endif])
1453 AC_CHECK_SIZEOF(off_t, [], [
1454 #ifdef HAVE_SYS_TYPES_H
1455 #include <sys/types.h>
1456 #endif
1459 AC_MSG_CHECKING(whether to enable large file support)
1460 if test "$have_long_long" = yes
1461 then
1462 if test "$ac_cv_sizeof_off_t" -gt "$ac_cv_sizeof_long" -a \
1463         "$ac_cv_sizeof_long_long" -ge "$ac_cv_sizeof_off_t"; then
1464   AC_DEFINE(HAVE_LARGEFILE_SUPPORT, 1, 
1465   [Defined to enable large file support when an off_t is bigger than a long
1466    and long long is available and at least as big as an off_t. You may need
1467    to add some flags for configuration and compilation to enable this mode.
1468    (For Solaris and Linux, the necessary defines are already defined.)])
1469   AC_MSG_RESULT(yes)
1470 else
1471   AC_MSG_RESULT(no)
1473 else
1474   AC_MSG_RESULT(no)
1477 AC_CHECK_SIZEOF(time_t, [], [
1478 #ifdef HAVE_SYS_TYPES_H
1479 #include <sys/types.h>
1480 #endif
1481 #ifdef HAVE_TIME_H
1482 #include <time.h>
1483 #endif
1486 # if have pthread_t then define SIZEOF_PTHREAD_T
1487 ac_save_cc="$CC"
1488 if test "$ac_cv_kpthread" = "yes"
1489 then CC="$CC -Kpthread"
1490 elif test "$ac_cv_kthread" = "yes"
1491 then CC="$CC -Kthread"
1492 elif test "$ac_cv_pthread" = "yes"
1493 then CC="$CC -pthread"
1495 AC_MSG_CHECKING(for pthread_t)
1496 have_pthread_t=no
1497 AC_TRY_COMPILE([#include <pthread.h>], [pthread_t x; x = *(pthread_t*)0;], have_pthread_t=yes)
1498 AC_MSG_RESULT($have_pthread_t)
1499 if test "$have_pthread_t" = yes ; then
1500   AC_CHECK_SIZEOF(pthread_t, [], [
1501 #ifdef HAVE_PTHREAD_H
1502 #include <pthread.h>
1503 #endif
1504   ])
1506 CC="$ac_save_cc"
1508 AC_MSG_CHECKING(for --enable-toolbox-glue)
1509 AC_ARG_ENABLE(toolbox-glue,
1510               AC_HELP_STRING(--enable-toolbox-glue, disable/enable MacOSX glue code for extensions))
1512 if test -z "$enable_toolbox_glue"
1513 then 
1514         case $ac_sys_system/$ac_sys_release in
1515         Darwin/*)
1516                 enable_toolbox_glue="yes";;
1517         *)
1518                 enable_toolbox_glue="no";;
1519         esac
1521 case "$enable_toolbox_glue" in
1522 yes)
1523         extra_machdep_objs="Python/mactoolboxglue.o"
1524         extra_undefs="-u _PyMac_Error"
1525         AC_DEFINE(USE_TOOLBOX_OBJECT_GLUE, 1,
1526          [Define if you want to use MacPython modules on MacOSX in unix-Python.])
1527         ;;
1529         extra_machdep_objs=""
1530         extra_undefs=""
1531         ;;
1532 esac
1533 AC_MSG_RESULT($enable_toolbox_glue)
1536 AC_SUBST(OTHER_LIBTOOL_OPT)
1537 case $ac_sys_system/$ac_sys_release in
1538   Darwin/@<:@01567@:>@\..*) 
1539     OTHER_LIBTOOL_OPT="-prebind -seg1addr 0x10000000"
1540     ;;
1541   Darwin/*)
1542     OTHER_LIBTOOL_OPT=""
1543     ;;
1544 esac
1547 ARCH_RUN_32BIT=""
1548 AC_SUBST(LIBTOOL_CRUFT)
1549 case $ac_sys_system/$ac_sys_release in
1550   Darwin/@<:@01567@:>@\..*) 
1551     LIBTOOL_CRUFT="-framework System -lcc_dynamic"
1552     if test "${enable_universalsdk}"; then
1553             :
1554     else
1555         LIBTOOL_CRUFT="${LIBTOOL_CRUFT} -arch_only `arch`"
1556     fi
1557     LIBTOOL_CRUFT=$LIBTOOL_CRUFT' -install_name $(PYTHONFRAMEWORKINSTALLDIR)/Versions/$(VERSION)/$(PYTHONFRAMEWORK)'
1558     LIBTOOL_CRUFT=$LIBTOOL_CRUFT' -compatibility_version $(VERSION) -current_version $(VERSION)';;
1559   Darwin/*)
1560     gcc_version=`gcc -v 2>&1 |  grep version | cut -d\  -f3`
1561     if test ${gcc_version} '<' 4.0
1562         then
1563             LIBTOOL_CRUFT="-lcc_dynamic"
1564         else 
1565             LIBTOOL_CRUFT=""
1566     fi
1567     AC_TRY_RUN([
1568     #include <unistd.h>
1569     int main(int argc, char*argv[])
1570     {
1571       if (sizeof(long) == 4) {
1572           return 0;
1573       } else {
1574           return 1;
1575       }
1576     }
1577     ], ac_osx_32bit=yes,
1578        ac_osx_32bit=no,
1579        ac_osx_32bit=yes)
1580     
1581     if test "${ac_osx_32bit}" = "yes"; then
1582         case `arch` in
1583         i386) 
1584                 MACOSX_DEFAULT_ARCH="i386" 
1585                 ;;
1586         ppc) 
1587                 MACOSX_DEFAULT_ARCH="ppc" 
1588                 ;;
1589         *)
1590                 AC_MSG_ERROR([Unexpected output of 'arch' on OSX])
1591                 ;;
1592         esac
1593     else
1594         case `arch` in
1595         i386) 
1596                 MACOSX_DEFAULT_ARCH="x86_64" 
1597                 ;;
1598         ppc) 
1599                 MACOSX_DEFAULT_ARCH="ppc64" 
1600                 ;;
1601         *)
1602                 AC_MSG_ERROR([Unexpected output of 'arch' on OSX])
1603                 ;;
1604         esac
1606         #ARCH_RUN_32BIT="true"
1607     fi
1609     LIBTOOL_CRUFT=$LIBTOOL_CRUFT" -lSystem -lSystemStubs -arch_only ${MACOSX_DEFAULT_ARCH}"
1610     LIBTOOL_CRUFT=$LIBTOOL_CRUFT' -install_name $(PYTHONFRAMEWORKINSTALLDIR)/Versions/$(VERSION)/$(PYTHONFRAMEWORK)'
1611     LIBTOOL_CRUFT=$LIBTOOL_CRUFT' -compatibility_version $(VERSION) -current_version $(VERSION)';;
1612 esac
1614 AC_MSG_CHECKING(for --enable-framework)
1615 if test "$enable_framework"
1616 then
1617         BASECFLAGS="$BASECFLAGS -fno-common -dynamic"
1618         # -F. is needed to allow linking to the framework while 
1619         # in the build location.
1620         AC_DEFINE(WITH_NEXT_FRAMEWORK, 1, 
1621          [Define if you want to produce an OpenStep/Rhapsody framework
1622          (shared library plus accessory files).])
1623         AC_MSG_RESULT(yes)
1624         if test $enable_shared = "yes"
1625         then
1626                 AC_MSG_ERROR([Specifying both --enable-shared and --enable-framework is not supported, use only --enable-framework instead. See Mac/README.])
1627         fi
1628 else
1629         AC_MSG_RESULT(no)
1632 AC_MSG_CHECKING(for dyld)
1633 case $ac_sys_system/$ac_sys_release in
1634   Darwin/*)
1635         AC_DEFINE(WITH_DYLD, 1, 
1636         [Define if you want to use the new-style (Openstep, Rhapsody, MacOS)
1637          dynamic linker (dyld) instead of the old-style (NextStep) dynamic
1638          linker (rld). Dyld is necessary to support frameworks.])
1639         AC_MSG_RESULT(always on for Darwin)
1640         ;;
1641   *)
1642         AC_MSG_RESULT(no)
1643         ;;
1644 esac
1646 # Set info about shared libraries.
1647 AC_SUBST(SO)
1648 AC_SUBST(LDSHARED)
1649 AC_SUBST(BLDSHARED)
1650 AC_SUBST(CCSHARED)
1651 AC_SUBST(LINKFORSHARED)
1652 # SO is the extension of shared libraries `(including the dot!)
1653 # -- usually .so, .sl on HP-UX, .dll on Cygwin
1654 AC_MSG_CHECKING(SO)
1655 if test -z "$SO"
1656 then
1657         case $ac_sys_system in
1658         hp*|HP*)
1659                 case `uname -m` in
1660                         ia64) SO=.so;;
1661                         *)    SO=.sl;;
1662                 esac
1663                 ;;
1664         CYGWIN*)   SO=.dll;;
1665         *)         SO=.so;;
1666         esac
1667 else
1668         # this might also be a termcap variable, see #610332
1669         echo
1670         echo '====================================================================='
1671         echo '+                                                                   +'
1672         echo '+ WARNING: You have set SO in your environment.                     +'
1673         echo '+ Do you really mean to change the extension for shared libraries?  +'
1674         echo '+ Continuing in 10 seconds to let you to ponder.                    +'
1675         echo '+                                                                   +'
1676         echo '====================================================================='
1677         sleep 10
1679 AC_MSG_RESULT($SO)
1681 AC_DEFINE_UNQUOTED(SHLIB_EXT, "$SO", [Define this to be extension of shared libraries (including the dot!).])
1682 # LDSHARED is the ld *command* used to create shared library
1683 # -- "cc -G" on SunOS 5.x, "ld -shared" on IRIX 5
1684 # (Shared libraries in this instance are shared modules to be loaded into
1685 # Python, as opposed to building Python itself as a shared library.)
1686 AC_MSG_CHECKING(LDSHARED)
1687 if test -z "$LDSHARED"
1688 then
1689         case $ac_sys_system/$ac_sys_release in
1690         AIX*)
1691                 BLDSHARED="\$(srcdir)/Modules/ld_so_aix \$(CC) -bI:Modules/python.exp"
1692                 LDSHARED="\$(BINLIBDEST)/config/ld_so_aix \$(CC) -bI:\$(BINLIBDEST)/config/python.exp"
1693                 ;;
1694         BeOS*)
1695                 BLDSHARED="\$(srcdir)/Modules/ld_so_beos $LDLIBRARY"
1696                 LDSHARED="\$(BINLIBDEST)/config/ld_so_beos \$(LIBDIR)/$LDLIBRARY"
1697                 ;;
1698         IRIX/5*) LDSHARED="ld -shared";;
1699         IRIX*/6*) LDSHARED="ld ${SGI_ABI} -shared -all";;
1700         SunOS/5*) 
1701                 if test "$GCC" = "yes"
1702                 then LDSHARED='$(CC) -shared'
1703                 else LDSHARED='$(CC) -G';
1704                 fi ;;
1705         hp*|HP*)
1706                 if test "$GCC" = "yes"
1707                 then LDSHARED='$(CC) -shared'
1708                 else LDSHARED='ld -b';
1709                 fi ;;
1710         OSF*) LDSHARED="ld -shared -expect_unresolved \"*\"";;
1711         Darwin/1.3*)
1712                 LDSHARED='$(CC) $(LDFLAGS) -bundle'
1713                 if test "$enable_framework" ; then
1714                         # Link against the framework. All externals should be defined.
1715                         BLDSHARED="$LDSHARED "'$(PYTHONFRAMEWORKDIR)/Versions/$(VERSION)/$(PYTHONFRAMEWORK)'
1716                         LDSHARED="$LDSHARED "'$(PYTHONFRAMEWORKPREFIX)/$(PYTHONFRAMEWORKDIR)/Versions/$(VERSION)/$(PYTHONFRAMEWORK)'
1717                 else
1718                         # No framework. Ignore undefined symbols, assuming they come from Python
1719                         LDSHARED="$LDSHARED -undefined suppress"
1720                 fi ;;
1721         Darwin/1.4*|Darwin/5.*|Darwin/6.*)
1722                 LDSHARED='$(CC) $(LDFLAGS) -bundle'
1723                 if test "$enable_framework" ; then
1724                         # Link against the framework. All externals should be defined.
1725                         BLDSHARED="$LDSHARED "'$(PYTHONFRAMEWORKDIR)/Versions/$(VERSION)/$(PYTHONFRAMEWORK)'
1726                         LDSHARED="$LDSHARED "'$(PYTHONFRAMEWORKPREFIX)/$(PYTHONFRAMEWORKDIR)/Versions/$(VERSION)/$(PYTHONFRAMEWORK)'
1727                 else
1728                         # No framework, use the Python app as bundle-loader
1729                         BLDSHARED="$LDSHARED "'-bundle_loader $(BUILDPYTHON)'
1730                         LDSHARED="$LDSHARED "'-bundle_loader $(BINDIR)/python$(VERSION)$(EXE)'
1731                 fi ;;
1732         Darwin/*)
1733                 # Use -undefined dynamic_lookup whenever possible (10.3 and later).
1734                 # This allows an extension to be used in any Python
1736                 if test ${MACOSX_DEPLOYMENT_TARGET} '>' 10.2
1737                 then
1738                         if test "${enable_universalsdk}"; then
1739                                 LDFLAGS="${UNIVERSAL_ARCH_FLAGS} -isysroot ${UNIVERSALSDK} ${LDFLAGS}"
1740                         fi
1741                         LDSHARED='$(CC) $(LDFLAGS) -bundle -undefined dynamic_lookup'
1742                         BLDSHARED="$LDSHARED"
1743                 else
1744                         LDSHARED='$(CC) $(LDFLAGS) -bundle'
1745                         if test "$enable_framework" ; then
1746                                 # Link against the framework. All externals should be defined.
1747                                 BLDSHARED="$LDSHARED "'$(PYTHONFRAMEWORKDIR)/Versions/$(VERSION)/$(PYTHONFRAMEWORK)'
1748                                 LDSHARED="$LDSHARED "'$(PYTHONFRAMEWORKPREFIX)/$(PYTHONFRAMEWORKDIR)/Versions/$(VERSION)/$(PYTHONFRAMEWORK)'
1749                         else
1750                                 # No framework, use the Python app as bundle-loader
1751                                 BLDSHARED="$LDSHARED "'-bundle_loader $(BUILDPYTHON)'
1752                                 LDSHARED="$LDSHARED "'-bundle_loader $(BINDIR)/python$(VERSION)$(EXE)'
1753                         fi
1754                 fi
1755                 ;;
1756         Linux*|GNU*|QNX*) LDSHARED='$(CC) -shared';;
1757         BSD/OS*/4*) LDSHARED="gcc -shared";;
1758         FreeBSD*)
1759                 if [[ "`$CC -dM -E - </dev/null | grep __ELF__`" != "" ]]
1760                 then
1761                         LDSHARED="$CC -shared ${LDFLAGS}"
1762                 else
1763                         LDSHARED="ld -Bshareable ${LDFLAGS}"
1764                 fi;;
1765         OpenBSD*)
1766                 if [[ "`$CC -dM -E - </dev/null | grep __ELF__`" != "" ]]
1767                 then
1768                                 LDSHARED='$(CC) -shared $(CCSHARED) ${LDFLAGS}'
1769                 else
1770                                 case `uname -r` in
1771                                 [[01]].* | 2.[[0-7]] | 2.[[0-7]].*)
1772                                    LDSHARED="ld -Bshareable ${LDFLAGS}"
1773                                    ;;
1774                                 *)
1775                                    LDSHARED='$(CC) -shared $(CCSHARED) ${LDFLAGS}'
1776                                    ;;
1777                                 esac
1778                 fi;;
1779         NetBSD*|DragonFly*) LDSHARED="cc -shared ${LDFLAGS}";;
1780         OpenUNIX*|UnixWare*)
1781                 if test "$GCC" = "yes"
1782                 then LDSHARED='$(CC) -shared'
1783                 else LDSHARED='$(CC) -G'
1784                 fi;;
1785         SCO_SV*) LDSHARED='$(CC) -Wl,-G,-Bexport';;
1786         CYGWIN*) LDSHARED="gcc -shared -Wl,--enable-auto-image-base";;
1787         atheos*) LDSHARED="gcc -shared";;
1788         *)      LDSHARED="ld";;
1789         esac
1791 AC_MSG_RESULT($LDSHARED)
1792 BLDSHARED=${BLDSHARED-$LDSHARED}
1793 # CCSHARED are the C *flags* used to create objects to go into a shared
1794 # library (module) -- this is only needed for a few systems
1795 AC_MSG_CHECKING(CCSHARED)
1796 if test -z "$CCSHARED"
1797 then
1798         case $ac_sys_system/$ac_sys_release in
1799         SunOS*) if test "$GCC" = yes;
1800                 then CCSHARED="-fPIC";
1801                 elif test `uname -p` = sparc;
1802                 then CCSHARED="-xcode=pic32";
1803                 else CCSHARED="-Kpic";
1804                 fi;;
1805         hp*|HP*) if test "$GCC" = yes;
1806                  then CCSHARED="-fPIC";
1807                  else CCSHARED="+z";
1808                  fi;;
1809         Linux*|GNU*) CCSHARED="-fPIC";;
1810         BSD/OS*/4*) CCSHARED="-fpic";;
1811         FreeBSD*|NetBSD*|OpenBSD*|DragonFly*) CCSHARED="-fPIC";;
1812         OpenUNIX*|UnixWare*)
1813                 if test "$GCC" = "yes"
1814                 then CCSHARED="-fPIC"
1815                 else CCSHARED="-KPIC"
1816                 fi;;
1817         SCO_SV*)
1818                 if test "$GCC" = "yes"
1819                 then CCSHARED="-fPIC"
1820                 else CCSHARED="-Kpic -belf"
1821                 fi;;
1822         IRIX*/6*)  case $CC in
1823                    *gcc*) CCSHARED="-shared";;
1824                    *) CCSHARED="";;
1825                    esac;;
1826         atheos*) CCSHARED="-fPIC";;
1827         esac
1829 AC_MSG_RESULT($CCSHARED)
1830 # LINKFORSHARED are the flags passed to the $(CC) command that links
1831 # the python executable -- this is only needed for a few systems
1832 AC_MSG_CHECKING(LINKFORSHARED)
1833 if test -z "$LINKFORSHARED"
1834 then
1835         case $ac_sys_system/$ac_sys_release in
1836         AIX*)   LINKFORSHARED='-Wl,-bE:Modules/python.exp -lld';;
1837         hp*|HP*)
1838             LINKFORSHARED="-Wl,-E -Wl,+s";;
1839 #           LINKFORSHARED="-Wl,-E -Wl,+s -Wl,+b\$(BINLIBDEST)/lib-dynload";;
1840         BSD/OS/4*) LINKFORSHARED="-Xlinker -export-dynamic";;
1841         Linux*|GNU*) LINKFORSHARED="-Xlinker -export-dynamic";;
1842         # -u libsys_s pulls in all symbols in libsys
1843         Darwin/*) 
1844                 # -u _PyMac_Error is needed to pull in the mac toolbox glue,
1845                 # which is
1846                 # not used by the core itself but which needs to be in the core so
1847                 # that dynamically loaded extension modules have access to it.
1848                 # -prebind is no longer used, because it actually seems to give a
1849                 # slowdown in stead of a speedup, maybe due to the large number of
1850                 # dynamic loads Python does.
1852                 LINKFORSHARED="$extra_undefs"
1853                 if test "$enable_framework"
1854                 then
1855                         LINKFORSHARED="$LINKFORSHARED "'$(PYTHONFRAMEWORKDIR)/Versions/$(VERSION)/$(PYTHONFRAMEWORK)'
1856                 fi
1857                 LINKFORSHARED="$LINKFORSHARED";;
1858         OpenUNIX*|UnixWare*) LINKFORSHARED="-Wl,-Bexport";;
1859         SCO_SV*) LINKFORSHARED="-Wl,-Bexport";;
1860         ReliantUNIX*) LINKFORSHARED="-W1 -Blargedynsym";;
1861         FreeBSD*|NetBSD*|OpenBSD*|DragonFly*) 
1862                 if [[ "`$CC -dM -E - </dev/null | grep __ELF__`" != "" ]]
1863                 then
1864                         LINKFORSHARED="-Wl,--export-dynamic"
1865                 fi;;
1866         SunOS/5*) case $CC in
1867                   *gcc*)
1868                     if $CC -Xlinker --help 2>&1 | grep export-dynamic >/dev/null
1869                     then
1870                         LINKFORSHARED="-Xlinker --export-dynamic"
1871                     fi;;
1872                   esac;;
1873         CYGWIN*)
1874                 if test $enable_shared = "no"
1875                 then
1876                         LINKFORSHARED='-Wl,--out-implib=$(LDLIBRARY)'
1877                 fi;;
1878         QNX*)
1879                 # -Wl,-E causes the symbols to be added to the dynamic
1880                 # symbol table so that they can be found when a module
1881                 # is loaded.  -N 2048K causes the stack size to be set
1882                 # to 2048 kilobytes so that the stack doesn't overflow
1883                 # when running test_compile.py.
1884                 LINKFORSHARED='-Wl,-E -N 2048K';;
1885         esac
1887 AC_MSG_RESULT($LINKFORSHARED)
1890 AC_SUBST(CFLAGSFORSHARED)
1891 AC_MSG_CHECKING(CFLAGSFORSHARED)
1892 if test ! "$LIBRARY" = "$LDLIBRARY"
1893 then
1894         case $ac_sys_system in
1895         CYGWIN*)
1896                 # Cygwin needs CCSHARED when building extension DLLs
1897                 # but not when building the interpreter DLL.
1898                 CFLAGSFORSHARED='';;
1899         *)
1900                 CFLAGSFORSHARED='$(CCSHARED)'
1901         esac
1903 AC_MSG_RESULT($CFLAGSFORSHARED)
1905 # SHLIBS are libraries (except -lc and -lm) to link to the python shared
1906 # library (with --enable-shared).
1907 # For platforms on which shared libraries are not allowed to have unresolved
1908 # symbols, this must be set to $(LIBS) (expanded by make). We do this even
1909 # if it is not required, since it creates a dependency of the shared library
1910 # to LIBS. This, in turn, means that applications linking the shared libpython
1911 # don't need to link LIBS explicitly. The default should be only changed
1912 # on systems where this approach causes problems.
1913 AC_SUBST(SHLIBS)
1914 AC_MSG_CHECKING(SHLIBS)
1915 case "$ac_sys_system" in
1916         *)
1917                 SHLIBS='$(LIBS)';;
1918 esac
1919 AC_MSG_RESULT($SHLIBS)
1922 # checks for libraries
1923 AC_CHECK_LIB(dl, dlopen)        # Dynamic linking for SunOS/Solaris and SYSV
1924 AC_CHECK_LIB(dld, shl_load)     # Dynamic linking for HP-UX
1926 # only check for sem_init if thread support is requested
1927 if test "$with_threads" = "yes" -o -z "$with_threads"; then
1928     AC_SEARCH_LIBS(sem_init, pthread rt posix4) # 'Real Time' functions on Solaris
1929                                                 # posix4 on Solaris 2.6
1930                                                 # pthread (first!) on Linux
1933 # check if we need libintl for locale functions
1934 AC_CHECK_LIB(intl, textdomain,
1935         AC_DEFINE(WITH_LIBINTL, 1,
1936         [Define to 1 if libintl is needed for locale functions.]))
1938 # checks for system dependent C++ extensions support
1939 case "$ac_sys_system" in
1940         AIX*)   AC_MSG_CHECKING(for genuine AIX C++ extensions support)
1941                 AC_TRY_LINK([#include "/usr/lpp/xlC/include/load.h"],
1942                             [loadAndInit("", 0, "")],
1943                             [AC_DEFINE(AIX_GENUINE_CPLUSPLUS, 1,
1944                       [Define for AIX if your compiler is a genuine IBM xlC/xlC_r
1945                        and you want support for AIX C++ shared extension modules.])
1946                              AC_MSG_RESULT(yes)],
1947                             [AC_MSG_RESULT(no)]);;
1948         *) ;;
1949 esac
1951 # Most SVR4 platforms (e.g. Solaris) need -lsocket and -lnsl.
1952 # BeOS' sockets are stashed in libnet.
1953 AC_CHECK_LIB(nsl, t_open, [LIBS="-lnsl $LIBS"]) # SVR4
1954 AC_CHECK_LIB(socket, socket, [LIBS="-lsocket $LIBS"], [], $LIBS) # SVR4 sockets
1956 case "$ac_sys_system" in
1957 BeOS*)
1958 AC_CHECK_LIB(net, socket, [LIBS="-lnet $LIBS"], [], $LIBS) # BeOS
1960 esac
1962 AC_MSG_CHECKING(for --with-libs)
1963 AC_ARG_WITH(libs,
1964             AC_HELP_STRING(--with-libs='lib1 ...', link against additional libs),
1966 AC_MSG_RESULT($withval)
1967 LIBS="$withval $LIBS"
1969 [AC_MSG_RESULT(no)])
1971 # Check for use of the system expat library
1972 AC_MSG_CHECKING(for --with-system-expat)
1973 AC_ARG_WITH(system_expat,
1974             AC_HELP_STRING(--with-system-expat, build pyexpat module using an installed expat library))
1976 AC_MSG_RESULT($with_system_expat)
1978 # Check for use of the system libffi library
1979 AC_MSG_CHECKING(for --with-system-ffi)
1980 AC_ARG_WITH(system_ffi,
1981             AC_HELP_STRING(--with-system-ffi, build _ctypes module using an installed ffi library))
1983 AC_MSG_RESULT($with_system_ffi)
1985 # Check for --with-dbmliborder
1986 AC_MSG_CHECKING(for --with-dbmliborder)
1987 AC_ARG_WITH(dbmliborder,
1988             AC_HELP_STRING([--with-dbmliborder=db1:db2:...], [order to check db backends for dbm. Valid value is a colon separated string with the backend names `ndbm', `gdbm' and `bdb'.]),
1990 if test x$with_dbmliborder = xyes
1991 then
1992 AC_MSG_ERROR([proper usage is --with-dbmliborder=db1:db2:...])
1993 else
1994   for db in `echo $with_dbmliborder | sed 's/:/ /g'`; do
1995     if test x$db != xndbm && test x$db != xgdbm && test x$db != xbdb
1996     then
1997       AC_MSG_ERROR([proper usage is --with-dbmliborder=db1:db2:...])
1998     fi
1999   done
2000 fi])
2001 AC_MSG_RESULT($with_dbmliborder)
2003 # Determine if signalmodule should be used.
2004 AC_SUBST(USE_SIGNAL_MODULE)
2005 AC_SUBST(SIGNAL_OBJS)
2006 AC_MSG_CHECKING(for --with-signal-module)
2007 AC_ARG_WITH(signal-module,
2008             AC_HELP_STRING(--with-signal-module, disable/enable signal module))
2010 if test -z "$with_signal_module"
2011 then with_signal_module="yes"
2013 AC_MSG_RESULT($with_signal_module)
2015 if test "${with_signal_module}" = "yes"; then
2016         USE_SIGNAL_MODULE=""
2017         SIGNAL_OBJS=""
2018 else
2019         USE_SIGNAL_MODULE="#"
2020         SIGNAL_OBJS="Parser/intrcheck.o Python/sigcheck.o"
2023 # This is used to generate Setup.config
2024 AC_SUBST(USE_THREAD_MODULE)
2025 USE_THREAD_MODULE=""
2027 AC_MSG_CHECKING(for --with-dec-threads)
2028 AC_SUBST(LDLAST)
2029 AC_ARG_WITH(dec-threads,
2030             AC_HELP_STRING(--with-dec-threads, use DEC Alpha/OSF1 thread-safe libraries),
2032 AC_MSG_RESULT($withval)
2033 LDLAST=-threads
2034 if test "${with_thread+set}" != set; then
2035    with_thread="$withval";
2036 fi],
2037 [AC_MSG_RESULT(no)])
2039 # Templates for things AC_DEFINEd more than once.
2040 # For a single AC_DEFINE, no template is needed.
2041 AH_TEMPLATE(C_THREADS,[Define if you have the Mach cthreads package])
2042 AH_TEMPLATE(_REENTRANT,
2043   [Define to force use of thread-safe errno, h_errno, and other functions])
2044 AH_TEMPLATE(WITH_THREAD,
2045   [Define if you want to compile in rudimentary thread support])
2047 AC_MSG_CHECKING(for --with-threads)
2048 dnl quadrigraphs "@<:@" and "@:>@" produce "[" and "]" in the output
2049 AC_ARG_WITH(threads,
2050             AC_HELP_STRING(--with(out)-threads@<:@=DIRECTORY@:>@, disable/enable thread support))
2052 # --with-thread is deprecated, but check for it anyway
2053 dnl quadrigraphs "@<:@" and "@:>@" produce "[" and "]" in the output
2054 AC_ARG_WITH(thread,
2055             AC_HELP_STRING(--with(out)-thread@<:@=DIRECTORY@:>@, deprecated; use --with(out)-threads),
2056             [with_threads=$with_thread])
2058 if test -z "$with_threads"
2059 then with_threads="yes"
2061 AC_MSG_RESULT($with_threads)
2063 AC_SUBST(THREADOBJ)
2064 if test "$with_threads" = "no"
2065 then
2066     USE_THREAD_MODULE="#"
2067 elif test "$ac_cv_pthread_is_default" = yes
2068 then
2069     AC_DEFINE(WITH_THREAD)
2070     # Defining _REENTRANT on system with POSIX threads should not hurt.
2071     AC_DEFINE(_REENTRANT)
2072     posix_threads=yes
2073     THREADOBJ="Python/thread.o"    
2074 elif test "$ac_cv_kpthread" = "yes"
2075 then
2076     CC="$CC -Kpthread"
2077     if test "$ac_cv_cxx_thread" = "yes"; then
2078         CXX="$CXX -Kpthread"
2079     fi
2080     AC_DEFINE(WITH_THREAD)
2081     posix_threads=yes
2082     THREADOBJ="Python/thread.o"
2083 elif test "$ac_cv_kthread" = "yes"
2084 then
2085     CC="$CC -Kthread"
2086     if test "$ac_cv_cxx_thread" = "yes"; then
2087         CXX="$CXX -Kthread"
2088     fi
2089     AC_DEFINE(WITH_THREAD)
2090     posix_threads=yes
2091     THREADOBJ="Python/thread.o"
2092 elif test "$ac_cv_pthread" = "yes"
2093 then
2094     CC="$CC -pthread"
2095     if test "$ac_cv_cxx_thread" = "yes"; then
2096         CXX="$CXX -pthread"
2097     fi
2098     AC_DEFINE(WITH_THREAD)
2099     posix_threads=yes
2100     THREADOBJ="Python/thread.o"
2101 else
2102     if test ! -z "$with_threads" -a -d "$with_threads"
2103     then LDFLAGS="$LDFLAGS -L$with_threads"
2104     fi
2105     if test ! -z "$withval" -a -d "$withval"
2106     then LDFLAGS="$LDFLAGS -L$withval"
2107     fi
2109     # According to the POSIX spec, a pthreads implementation must
2110     # define _POSIX_THREADS in unistd.h. Some apparently don't
2111     # (e.g. gnu pth with pthread emulation)
2112     AC_MSG_CHECKING(for _POSIX_THREADS in unistd.h)
2113     AC_EGREP_CPP(yes,
2114     [
2115 #include <unistd.h>
2116 #ifdef _POSIX_THREADS
2118 #endif
2119     ], unistd_defines_pthreads=yes, unistd_defines_pthreads=no)
2120     AC_MSG_RESULT($unistd_defines_pthreads)
2122     AC_DEFINE(_REENTRANT)
2123     AC_CHECK_HEADER(cthreads.h, [AC_DEFINE(WITH_THREAD)
2124     AC_DEFINE(C_THREADS)
2125     AC_DEFINE(HURD_C_THREADS, 1,
2126     [Define if you are using Mach cthreads directly under /include])
2127     LIBS="$LIBS -lthreads"
2128     THREADOBJ="Python/thread.o"],[
2129     AC_CHECK_HEADER(mach/cthreads.h, [AC_DEFINE(WITH_THREAD)
2130     AC_DEFINE(C_THREADS)
2131     AC_DEFINE(MACH_C_THREADS, 1,
2132     [Define if you are using Mach cthreads under mach /])
2133     THREADOBJ="Python/thread.o"],[
2134     AC_MSG_CHECKING(for --with-pth)
2135     AC_ARG_WITH([pth],
2136                 AC_HELP_STRING(--with-pth, use GNU pth threading libraries),
2137                 [AC_MSG_RESULT($withval)
2138                   AC_DEFINE([WITH_THREAD])
2139                   AC_DEFINE([HAVE_PTH], 1,
2140                             [Define if you have GNU PTH threads.])
2141                   LIBS="-lpth $LIBS"
2142                   THREADOBJ="Python/thread.o"],
2143                 [AC_MSG_RESULT(no)
2145     # Just looking for pthread_create in libpthread is not enough:
2146     # on HP/UX, pthread.h renames pthread_create to a different symbol name.
2147     # So we really have to include pthread.h, and then link.
2148     _libs=$LIBS
2149     LIBS="$LIBS -lpthread"
2150     AC_MSG_CHECKING([for pthread_create in -lpthread])
2151     AC_TRY_LINK([#include <pthread.h>
2153 void * start_routine (void *arg) { exit (0); }], [
2154 pthread_create (NULL, NULL, start_routine, NULL)], [
2155     AC_MSG_RESULT(yes)
2156     AC_DEFINE(WITH_THREAD)
2157     posix_threads=yes
2158     THREADOBJ="Python/thread.o"],[
2159     LIBS=$_libs
2160     AC_CHECK_FUNC(pthread_detach, [AC_DEFINE(WITH_THREAD)
2161     posix_threads=yes
2162     THREADOBJ="Python/thread.o"],[
2163     AC_CHECK_HEADER(atheos/threads.h, [AC_DEFINE(WITH_THREAD)
2164     AC_DEFINE(ATHEOS_THREADS, 1,
2165     [Define this if you have AtheOS threads.])
2166     THREADOBJ="Python/thread.o"],[
2167     AC_CHECK_HEADER(kernel/OS.h, [AC_DEFINE(WITH_THREAD)
2168     AC_DEFINE(BEOS_THREADS, 1,
2169     [Define this if you have BeOS threads.])
2170     THREADOBJ="Python/thread.o"],[
2171     AC_CHECK_LIB(pthreads, pthread_create, [AC_DEFINE(WITH_THREAD)
2172     posix_threads=yes
2173     LIBS="$LIBS -lpthreads"
2174     THREADOBJ="Python/thread.o"], [
2175     AC_CHECK_LIB(c_r, pthread_create, [AC_DEFINE(WITH_THREAD)
2176     posix_threads=yes
2177     LIBS="$LIBS -lc_r"
2178     THREADOBJ="Python/thread.o"], [
2179     AC_CHECK_LIB(pthread, __pthread_create_system, [AC_DEFINE(WITH_THREAD)
2180     posix_threads=yes
2181     LIBS="$LIBS -lpthread"
2182     THREADOBJ="Python/thread.o"], [
2183     AC_CHECK_LIB(cma, pthread_create, [AC_DEFINE(WITH_THREAD)
2184     posix_threads=yes
2185     LIBS="$LIBS -lcma"
2186     THREADOBJ="Python/thread.o"],[
2187     USE_THREAD_MODULE="#"])
2188     ])])])])])])])])])])
2190     AC_CHECK_LIB(mpc, usconfig, [AC_DEFINE(WITH_THREAD)
2191     LIBS="$LIBS -lmpc"
2192     THREADOBJ="Python/thread.o"
2193     USE_THREAD_MODULE=""])
2195     if test "$posix_threads" != "yes"; then     
2196       AC_CHECK_LIB(thread, thr_create, [AC_DEFINE(WITH_THREAD)
2197       LIBS="$LIBS -lthread"
2198       THREADOBJ="Python/thread.o"
2199       USE_THREAD_MODULE=""])
2200     fi
2202     if test "$USE_THREAD_MODULE" != "#"
2203     then
2204         # If the above checks didn't disable threads, (at least) OSF1
2205         # needs this '-threads' argument during linking.
2206         case $ac_sys_system in
2207         OSF1) LDLAST=-threads;;
2208         esac
2209     fi
2212 if test "$posix_threads" = "yes"; then
2213       if test "$unistd_defines_pthreads" = "no"; then
2214          AC_DEFINE(_POSIX_THREADS, 1,
2215          [Define if you have POSIX threads, 
2216           and your system does not define that.])
2217       fi
2219       # Bug 662787: Using semaphores causes unexplicable hangs on Solaris 8.
2220       case  $ac_sys_system/$ac_sys_release in
2221   SunOS/5.6) AC_DEFINE(HAVE_PTHREAD_DESTRUCTOR, 1,
2222                        Defined for Solaris 2.6 bug in pthread header.)
2223                        ;;
2224       SunOS/5.8) AC_DEFINE(HAVE_BROKEN_POSIX_SEMAPHORES, 1,
2225                        Define if the Posix semaphores do not work on your system)
2226                        ;;
2227       AIX/5) AC_DEFINE(HAVE_BROKEN_POSIX_SEMAPHORES, 1,
2228                        Define if the Posix semaphores do not work on your system)
2229                        ;;
2230       esac
2232       AC_MSG_CHECKING(if PTHREAD_SCOPE_SYSTEM is supported)
2233       AC_CACHE_VAL(ac_cv_pthread_system_supported,
2234       [AC_TRY_RUN([#include <pthread.h>
2235       void *foo(void *parm) {
2236         return NULL;
2237       }
2238       main() {
2239         pthread_attr_t attr;
2240         pthread_t id;
2241         if (pthread_attr_init(&attr)) exit(-1);
2242         if (pthread_attr_setscope(&attr, PTHREAD_SCOPE_SYSTEM)) exit(-1);
2243         if (pthread_create(&id, &attr, foo, NULL)) exit(-1);
2244         exit(0);
2245       }],
2246       ac_cv_pthread_system_supported=yes,
2247       ac_cv_pthread_system_supported=no,
2248       ac_cv_pthread_system_supported=no)
2249       ])
2250       AC_MSG_RESULT($ac_cv_pthread_system_supported)
2251       if test "$ac_cv_pthread_system_supported" = "yes"; then
2252         AC_DEFINE(PTHREAD_SYSTEM_SCHED_SUPPORTED, 1, [Defined if PTHREAD_SCOPE_SYSTEM supported.])
2253       fi
2254       AC_CHECK_FUNCS(pthread_sigmask,
2255         [case $ac_sys_system in
2256         CYGWIN*)
2257           AC_DEFINE(HAVE_BROKEN_PTHREAD_SIGMASK, 1,
2258             [Define if pthread_sigmask() does not work on your system.])
2259             ;;
2260         esac])
2264 # Check for enable-ipv6
2265 AH_TEMPLATE(ENABLE_IPV6, [Define if --enable-ipv6 is specified])
2266 AC_MSG_CHECKING([if --enable-ipv6 is specified])
2267 AC_ARG_ENABLE(ipv6,
2268 [  --enable-ipv6           Enable ipv6 (with ipv4) support
2269   --disable-ipv6          Disable ipv6 support],
2270 [ case "$enableval" in
2271   no)
2272        AC_MSG_RESULT(no)
2273        ipv6=no
2274        ;;
2275   *)   AC_MSG_RESULT(yes)
2276        AC_DEFINE(ENABLE_IPV6)
2277        ipv6=yes
2278        ;;
2279   esac ],
2282 dnl the check does not work on cross compilation case...
2283   AC_TRY_RUN([ /* AF_INET6 available check */
2284 #include <sys/types.h>
2285 #include <sys/socket.h>
2286 main()
2288  if (socket(AF_INET6, SOCK_STREAM, 0) < 0)
2289    exit(1);
2290  else
2291    exit(0);
2294   AC_MSG_RESULT(yes)
2295   ipv6=yes,
2296   AC_MSG_RESULT(no)
2297   ipv6=no,
2298   AC_MSG_RESULT(no)
2299   ipv6=no
2302 if test "$ipv6" = "yes"; then
2303         AC_MSG_CHECKING(if RFC2553 API is available)
2304         AC_TRY_COMPILE([#include <sys/types.h>
2305 #include <netinet/in.h>],
2306         [struct sockaddr_in6 x;
2307 x.sin6_scope_id;],
2308                 AC_MSG_RESULT(yes)
2309                 ipv6=yes,
2310                 AC_MSG_RESULT(no, IPv6 disabled)
2311                 ipv6=no)
2314 if test "$ipv6" = "yes"; then
2315         AC_DEFINE(ENABLE_IPV6)
2319 ipv6type=unknown
2320 ipv6lib=none
2321 ipv6trylibc=no
2323 if test "$ipv6" = "yes"; then
2324         AC_MSG_CHECKING([ipv6 stack type])
2325         for i in inria kame linux-glibc linux-inet6 solaris toshiba v6d zeta;
2326         do
2327                 case $i in
2328                 inria)
2329                         dnl http://www.kame.net/
2330                         AC_EGREP_CPP(yes, [
2331 #include <netinet/in.h>
2332 #ifdef IPV6_INRIA_VERSION
2334 #endif],
2335                                 [ipv6type=$i])
2336                         ;;
2337                 kame)
2338                         dnl http://www.kame.net/
2339                         AC_EGREP_CPP(yes, [
2340 #include <netinet/in.h>
2341 #ifdef __KAME__
2343 #endif],
2344                                 [ipv6type=$i;
2345                                 ipv6lib=inet6
2346                                 ipv6libdir=/usr/local/v6/lib
2347                                 ipv6trylibc=yes])
2348                         ;;
2349                 linux-glibc)
2350                         dnl http://www.v6.linux.or.jp/
2351                         AC_EGREP_CPP(yes, [
2352 #include <features.h>
2353 #if defined(__GLIBC__) && ((__GLIBC__ == 2 && __GLIBC_MINOR__ >= 1) || (__GLIBC__ > 2))
2355 #endif],
2356                                 [ipv6type=$i;
2357                                 ipv6trylibc=yes])
2358                         ;;
2359                 linux-inet6)
2360                         dnl http://www.v6.linux.or.jp/
2361                         if test -d /usr/inet6; then
2362                                 ipv6type=$i
2363                                 ipv6lib=inet6
2364                                 ipv6libdir=/usr/inet6/lib
2365                                 BASECFLAGS="-I/usr/inet6/include $BASECFLAGS"
2366                         fi
2367                         ;;
2368                 solaris)
2369                         if test -f /etc/netconfig; then
2370                           if /usr/xpg4/bin/grep -q tcp6 /etc/netconfig; then
2371                                 ipv6type=$i
2372                                 ipv6trylibc=yes
2373                           fi
2374                         fi
2375                         ;;
2376                 toshiba)
2377                         AC_EGREP_CPP(yes, [
2378 #include <sys/param.h>
2379 #ifdef _TOSHIBA_INET6
2381 #endif],
2382                                 [ipv6type=$i;
2383                                 ipv6lib=inet6;
2384                                 ipv6libdir=/usr/local/v6/lib])
2385                         ;;
2386                 v6d)
2387                         AC_EGREP_CPP(yes, [
2388 #include </usr/local/v6/include/sys/v6config.h>
2389 #ifdef __V6D__
2391 #endif],
2392                                 [ipv6type=$i;
2393                                 ipv6lib=v6;
2394                                 ipv6libdir=/usr/local/v6/lib;
2395                                 BASECFLAGS="-I/usr/local/v6/include $BASECFLAGS"])
2396                         ;;
2397                 zeta)
2398                         AC_EGREP_CPP(yes, [
2399 #include <sys/param.h>
2400 #ifdef _ZETA_MINAMI_INET6
2402 #endif],
2403                                 [ipv6type=$i;
2404                                 ipv6lib=inet6;
2405                                 ipv6libdir=/usr/local/v6/lib])
2406                         ;;
2407                 esac
2408                 if test "$ipv6type" != "unknown"; then
2409                         break
2410                 fi
2411         done
2412         AC_MSG_RESULT($ipv6type)
2415 if test "$ipv6" = "yes" -a "$ipv6lib" != "none"; then
2416         if test -d $ipv6libdir -a -f $ipv6libdir/lib$ipv6lib.a; then
2417                 LIBS="-L$ipv6libdir -l$ipv6lib $LIBS"
2418                 echo "using lib$ipv6lib"
2419         else
2420                 if test $ipv6trylibc = "yes"; then
2421                         echo "using libc"
2422                 else
2423                         echo 'Fatal: no $ipv6lib library found.  cannot continue.'
2424                         echo "You need to fetch lib$ipv6lib.a from appropriate"
2425                         echo 'ipv6 kit and compile beforehand.'
2426                         exit 1
2427                 fi
2428         fi
2431 AC_MSG_CHECKING(for OSX 10.5 SDK or later)
2432 AC_TRY_COMPILE([#include <Carbon/Carbon.h>], FSIORefNum fRef = 0,
2433   AC_DEFINE(HAVE_OSX105_SDK, 1, Define if compiling using MacOS X 10.5 SDK or later.)
2434   AC_MSG_RESULT(yes),
2435   AC_MSG_RESULT(no)
2438 # Check for --with-doc-strings
2439 AC_MSG_CHECKING(for --with-doc-strings)
2440 AC_ARG_WITH(doc-strings,
2441             AC_HELP_STRING(--with(out)-doc-strings, disable/enable documentation strings))
2443 if test -z "$with_doc_strings"
2444 then with_doc_strings="yes"
2446 if test "$with_doc_strings" != "no"
2447 then
2448     AC_DEFINE(WITH_DOC_STRINGS, 1,
2449       [Define if you want documentation strings in extension modules])
2451 AC_MSG_RESULT($with_doc_strings)
2453 # Check for Python-specific malloc support
2454 AC_MSG_CHECKING(for --with-tsc)
2455 AC_ARG_WITH(tsc,
2456 [  --with(out)-tsc         enable/disable timestamp counter profile], [
2457 if test "$withval" != no
2458 then 
2459   AC_DEFINE(WITH_TSC, 1, 
2460     [Define to profile with the Pentium timestamp counter]) 
2461     AC_MSG_RESULT(yes)
2462 else AC_MSG_RESULT(no)
2463 fi],
2464 [AC_MSG_RESULT(no)])
2466 # Check for Python-specific malloc support
2467 AC_MSG_CHECKING(for --with-pymalloc)
2468 AC_ARG_WITH(pymalloc,
2469             AC_HELP_STRING(--with(out)-pymalloc, disable/enable specialized mallocs))
2471 if test -z "$with_pymalloc"
2472 then with_pymalloc="yes"
2474 if test "$with_pymalloc" != "no"
2475 then
2476     AC_DEFINE(WITH_PYMALLOC, 1, 
2477      [Define if you want to compile in Python-specific mallocs])
2479 AC_MSG_RESULT($with_pymalloc)
2481 # Check for Valgrind support
2482 AC_MSG_CHECKING([for --with-valgrind])
2483 AC_ARG_WITH([valgrind],
2484   AC_HELP_STRING([--with-valgrind], [Enable Valgrind support]),,
2485   with_valgrind=no)
2486 AC_MSG_RESULT([$with_valgrind])
2487 if test "$with_valgrind" != no; then
2488     AC_CHECK_HEADER([valgrind/valgrind.h],
2489       [AC_DEFINE([WITH_VALGRIND], 1, [Define if you want pymalloc to be disabled when running under valgrind])],
2490       [AC_MSG_ERROR([Valgrind support requested but headers not available])]
2491     )
2494 # Check for --with-wctype-functions
2495 AC_MSG_CHECKING(for --with-wctype-functions)
2496 AC_ARG_WITH(wctype-functions, 
2497             AC_HELP_STRING(--with-wctype-functions, use wctype.h functions),
2499 if test "$withval" != no
2500 then 
2501   AC_DEFINE(WANT_WCTYPE_FUNCTIONS, 1,
2502   [Define if you want wctype.h functions to be used instead of the
2503    one supplied by Python itself. (see Include/unicodectype.h).]) 
2504   AC_MSG_RESULT(yes)
2505 else AC_MSG_RESULT(no)
2506 fi],
2507 [AC_MSG_RESULT(no)])
2509 # -I${DLINCLDIR} is added to the compile rule for importdl.o
2510 AC_SUBST(DLINCLDIR)
2511 DLINCLDIR=.
2513 # the dlopen() function means we might want to use dynload_shlib.o. some
2514 # platforms, such as AIX, have dlopen(), but don't want to use it.
2515 AC_CHECK_FUNCS(dlopen)
2517 # DYNLOADFILE specifies which dynload_*.o file we will use for dynamic
2518 # loading of modules.
2519 AC_SUBST(DYNLOADFILE)
2520 AC_MSG_CHECKING(DYNLOADFILE)
2521 if test -z "$DYNLOADFILE"
2522 then
2523         case $ac_sys_system/$ac_sys_release in
2524         AIX*) # Use dynload_shlib.c and dlopen() if we have it; otherwise dynload_aix.c
2525         if test "$ac_cv_func_dlopen" = yes
2526         then DYNLOADFILE="dynload_shlib.o"
2527         else DYNLOADFILE="dynload_aix.o"
2528         fi
2529         ;;
2530         BeOS*) DYNLOADFILE="dynload_beos.o";;
2531         hp*|HP*) DYNLOADFILE="dynload_hpux.o";;
2532         # Use dynload_next.c only on 10.2 and below, which don't have native dlopen()
2533         Darwin/@<:@0156@:>@\..*) DYNLOADFILE="dynload_next.o";;
2534         atheos*) DYNLOADFILE="dynload_atheos.o";;
2535         *)
2536         # use dynload_shlib.c and dlopen() if we have it; otherwise stub
2537         # out any dynamic loading
2538         if test "$ac_cv_func_dlopen" = yes
2539         then DYNLOADFILE="dynload_shlib.o"
2540         else DYNLOADFILE="dynload_stub.o"
2541         fi
2542         ;;
2543         esac
2545 AC_MSG_RESULT($DYNLOADFILE)
2546 if test "$DYNLOADFILE" != "dynload_stub.o"
2547 then
2548         AC_DEFINE(HAVE_DYNAMIC_LOADING, 1,
2549         [Defined when any dynamic module loading is enabled.])
2552 # MACHDEP_OBJS can be set to platform-specific object files needed by Python
2554 AC_SUBST(MACHDEP_OBJS)
2555 AC_MSG_CHECKING(MACHDEP_OBJS)
2556 if test -z "$MACHDEP_OBJS"
2557 then
2558         MACHDEP_OBJS=$extra_machdep_objs
2559 else
2560         MACHDEP_OBJS="$MACHDEP_OBJS $extra_machdep_objs"
2562 AC_MSG_RESULT(MACHDEP_OBJS)
2564 # checks for library functions
2565 AC_CHECK_FUNCS(alarm setitimer getitimer bind_textdomain_codeset chown \
2566  clock confstr ctermid execv fchmod fchown fork fpathconf ftime ftruncate \
2567  gai_strerror getgroups getlogin getloadavg getpeername getpgid getpid \
2568  getpriority getresuid getresgid getpwent getspnam getspent getsid getwd \
2569  initgroups kill killpg lchmod lchown lstat mkfifo mknod mktime \
2570  mremap nice pathconf pause plock poll pthread_init \
2571  putenv readlink realpath \
2572  select sem_open sem_timedwait sem_getvalue sem_unlink setegid seteuid \
2573  setgid \
2574  setlocale setregid setreuid setsid setpgid setpgrp setuid setvbuf snprintf \
2575  setlocale setregid setreuid setresuid setresgid \
2576  setsid setpgid setpgrp setuid setvbuf snprintf \
2577  sigaction siginterrupt sigrelse strftime \
2578  sysconf tcgetpgrp tcsetpgrp tempnam timegm times tmpfile tmpnam tmpnam_r \
2579  truncate uname unsetenv utimes waitpid wait3 wait4 wcscoll _getpty)
2581 # For some functions, having a definition is not sufficient, since
2582 # we want to take their address.
2583 AC_MSG_CHECKING(for chroot)
2584 AC_TRY_COMPILE([#include <unistd.h>], void *x=chroot,
2585   AC_DEFINE(HAVE_CHROOT, 1, Define if you have the 'chroot' function.)
2586   AC_MSG_RESULT(yes),
2587   AC_MSG_RESULT(no)
2589 AC_MSG_CHECKING(for link)
2590 AC_TRY_COMPILE([#include <unistd.h>], void *x=link,
2591   AC_DEFINE(HAVE_LINK, 1, Define if you have the 'link' function.)
2592   AC_MSG_RESULT(yes),
2593   AC_MSG_RESULT(no)
2595 AC_MSG_CHECKING(for symlink)
2596 AC_TRY_COMPILE([#include <unistd.h>], void *x=symlink,
2597   AC_DEFINE(HAVE_SYMLINK, 1, Define if you have the 'symlink' function.)
2598   AC_MSG_RESULT(yes),
2599   AC_MSG_RESULT(no)
2601 AC_MSG_CHECKING(for fchdir)
2602 AC_TRY_COMPILE([#include <unistd.h>], void *x=fchdir,
2603   AC_DEFINE(HAVE_FCHDIR, 1, Define if you have the 'fchdir' function.)
2604   AC_MSG_RESULT(yes),
2605   AC_MSG_RESULT(no)
2607 AC_MSG_CHECKING(for fsync)
2608 AC_TRY_COMPILE([#include <unistd.h>], void *x=fsync,
2609   AC_DEFINE(HAVE_FSYNC, 1, Define if you have the 'fsync' function.)
2610   AC_MSG_RESULT(yes),
2611   AC_MSG_RESULT(no)
2613 AC_MSG_CHECKING(for fdatasync)
2614 AC_TRY_COMPILE([#include <unistd.h>], void *x=fdatasync,
2615   AC_DEFINE(HAVE_FDATASYNC, 1, Define if you have the 'fdatasync' function.)
2616   AC_MSG_RESULT(yes),
2617   AC_MSG_RESULT(no)
2619 AC_MSG_CHECKING(for epoll)
2620 AC_TRY_COMPILE([#include <sys/epoll.h>], void *x=epoll_create,
2621   AC_DEFINE(HAVE_EPOLL, 1, Define if you have the 'epoll' functions.)
2622   AC_MSG_RESULT(yes),
2623   AC_MSG_RESULT(no)
2625 AC_MSG_CHECKING(for kqueue)
2626 AC_TRY_COMPILE([
2627 #include <sys/types.h>
2628 #include <sys/event.h>
2629     ], int x=kqueue(),
2630   AC_DEFINE(HAVE_KQUEUE, 1, Define if you have the 'kqueue' functions.)
2631   AC_MSG_RESULT(yes),
2632   AC_MSG_RESULT(no)
2634 # On some systems (eg. FreeBSD 5), we would find a definition of the
2635 # functions ctermid_r, setgroups in the library, but no prototype
2636 # (e.g. because we use _XOPEN_SOURCE). See whether we can take their
2637 # address to avoid compiler warnings and potential miscompilations
2638 # because of the missing prototypes.
2640 AC_MSG_CHECKING(for ctermid_r)
2641 AC_TRY_COMPILE([
2642 #include "confdefs.h" 
2643 #include <stdio.h>
2644 ], void* p = ctermid_r,
2645   AC_DEFINE(HAVE_CTERMID_R, 1, Define if you have the 'ctermid_r' function.)
2646   AC_MSG_RESULT(yes),
2647   AC_MSG_RESULT(no)
2650 AC_MSG_CHECKING(for flock)
2651 AC_TRY_COMPILE([
2652 #include "confdefs.h" 
2653 #include <sys/file.h>
2654 ], void* p = flock,
2655   AC_DEFINE(HAVE_FLOCK, 1, Define if you have the 'flock' function.)
2656   AC_MSG_RESULT(yes),
2657   AC_MSG_RESULT(no)
2660 AC_MSG_CHECKING(for getpagesize)
2661 AC_TRY_COMPILE([
2662 #include "confdefs.h" 
2663 #include <unistd.h>
2664 ], void* p = getpagesize,
2665   AC_DEFINE(HAVE_GETPAGESIZE, 1, Define if you have the 'getpagesize' function.)
2666   AC_MSG_RESULT(yes),
2667   AC_MSG_RESULT(no)
2670 dnl check for true
2671 AC_CHECK_PROGS(TRUE, true, /bin/true)
2673 dnl On some systems (e.g. Solaris 9), hstrerror and inet_aton are in -lresolv
2674 dnl On others, they are in the C library, so we to take no action
2675 AC_CHECK_LIB(c, inet_aton, [$ac_cv_prog_TRUE],
2676   AC_CHECK_LIB(resolv, inet_aton)
2679 # On Tru64, chflags seems to be present, but calling it will
2680 # exit Python
2681 AC_CACHE_CHECK([for chflags], [ac_cv_have_chflags], [dnl
2682 AC_TRY_RUN([[
2683 #include <sys/stat.h>
2684 #include <unistd.h>
2685 int main(int argc, char*argv[])
2687   if(chflags(argv[0], 0) != 0)
2688     return 1;
2689   return 0;
2691 ]], ac_cv_have_chflags=yes,
2692    ac_cv_have_chflags=no,
2693    ac_cv_have_chflags=cross)
2695 if test "$ac_cv_have_chflags" = cross ; then
2696   AC_CHECK_FUNC([chflags], [ac_cv_have_chflags="yes"], [ac_cv_have_chflags="no"])
2698 if test "$ac_cv_have_chflags" = yes ; then
2699   AC_DEFINE(HAVE_CHFLAGS, 1, Define to 1 if you have the `chflags' function.)
2702 AC_CACHE_CHECK([for lchflags], [ac_cv_have_lchflags], [dnl
2703 AC_TRY_RUN([[
2704 #include <sys/stat.h>
2705 #include <unistd.h>
2706 int main(int argc, char*argv[])
2708   if(lchflags(argv[0], 0) != 0)
2709     return 1;
2710   return 0;
2712 ]], ac_cv_have_lchflags=yes,
2713    ac_cv_have_lchflags=no,
2714    ac_cv_have_lchflags=cross)
2716 if test "$ac_cv_have_lchflags" = cross ; then
2717   AC_CHECK_FUNC([lchflags], [ac_cv_have_lchflags="yes"], [ac_cv_have_lchflags="no"])
2719 if test "$ac_cv_have_lchflags" = yes ; then
2720   AC_DEFINE(HAVE_LCHFLAGS, 1, Define to 1 if you have the `lchflags' function.)
2723 dnl Check if system zlib has *Copy() functions
2725 dnl On MacOSX the linker will search for dylibs on the entire linker path
2726 dnl before searching for static libraries. setup.py adds -Wl,-search_paths_first
2727 dnl to revert to a more traditional unix behaviour and make it possible to
2728 dnl override the system libz with a local static library of libz. Temporarily
2729 dnl add that flag to our CFLAGS as well to ensure that we check the version
2730 dnl of libz that will be used by setup.py. 
2731 dnl The -L/usr/local/lib is needed as wel to get the same compilation 
2732 dnl environment as setup.py (and leaving it out can cause configure to use the
2733 dnl wrong version of the library)
2734 case $ac_sys_system/$ac_sys_release in
2735 Darwin/*) 
2736         _CUR_CFLAGS="${CFLAGS}"
2737         _CUR_LDFLAGS="${LDFLAGS}"
2738         CFLAGS="${CFLAGS} -Wl,-search_paths_first"
2739         LDFLAGS="${LDFLAGS} -Wl,-search_paths_first -L/usr/local/lib"
2740         ;;
2741 esac
2743 AC_CHECK_LIB(z, inflateCopy, AC_DEFINE(HAVE_ZLIB_COPY, 1, Define if the zlib library has inflateCopy))
2745 case $ac_sys_system/$ac_sys_release in
2746 Darwin/*) 
2747         CFLAGS="${_CUR_CFLAGS}"
2748         LDFLAGS="${_CUR_LDFLAGS}"
2749         ;;
2750 esac
2752 AC_MSG_CHECKING(for hstrerror)
2753 AC_TRY_LINK([
2754 #include "confdefs.h" 
2755 #include <netdb.h>
2756 ], void* p = hstrerror; hstrerror(0),
2757   AC_DEFINE(HAVE_HSTRERROR, 1, Define if you have the 'hstrerror' function.)
2758   AC_MSG_RESULT(yes),
2759   AC_MSG_RESULT(no)
2762 AC_MSG_CHECKING(for inet_aton)
2763 AC_TRY_LINK([
2764 #include "confdefs.h" 
2765 #include <sys/types.h>
2766 #include <sys/socket.h>
2767 #include <netinet/in.h>
2768 #include <arpa/inet.h>
2769 ], void* p = inet_aton;inet_aton(0,0),
2770   AC_DEFINE(HAVE_INET_ATON, 1, Define if you have the 'inet_aton' function.)
2771   AC_MSG_RESULT(yes),
2772   AC_MSG_RESULT(no)
2775 AC_MSG_CHECKING(for inet_pton)
2776 AC_TRY_COMPILE([
2777 #include "confdefs.h" 
2778 #include <sys/types.h>
2779 #include <sys/socket.h>
2780 #include <netinet/in.h>
2781 #include <arpa/inet.h>
2782 ], void* p = inet_pton,
2783   AC_DEFINE(HAVE_INET_PTON, 1, Define if you have the 'inet_pton' function.)
2784   AC_MSG_RESULT(yes),
2785   AC_MSG_RESULT(no)
2788 # On some systems, setgroups is in unistd.h, on others, in grp.h
2789 AC_MSG_CHECKING(for setgroups)
2790 AC_TRY_COMPILE([
2791 #include "confdefs.h" 
2792 #include <unistd.h>
2793 #ifdef HAVE_GRP_H
2794 #include <grp.h>
2795 #endif
2796 ], 
2797 void* p = setgroups,
2798   AC_DEFINE(HAVE_SETGROUPS, 1, Define if you have the 'setgroups' function.)
2799   AC_MSG_RESULT(yes),
2800   AC_MSG_RESULT(no)
2803 # check for openpty and forkpty
2805 AC_CHECK_FUNCS(openpty,, 
2806    AC_CHECK_LIB(util,openpty,
2807      [AC_DEFINE(HAVE_OPENPTY) LIBS="$LIBS -lutil"],
2808      AC_CHECK_LIB(bsd,openpty, [AC_DEFINE(HAVE_OPENPTY) LIBS="$LIBS -lbsd"])
2809    )
2811 AC_CHECK_FUNCS(forkpty,, 
2812    AC_CHECK_LIB(util,forkpty, 
2813      [AC_DEFINE(HAVE_FORKPTY) LIBS="$LIBS -lutil"],
2814      AC_CHECK_LIB(bsd,forkpty, [AC_DEFINE(HAVE_FORKPTY) LIBS="$LIBS -lbsd"])
2815    )
2818 # Stuff for expat.
2819 AC_CHECK_FUNCS(memmove)
2821 # check for long file support functions
2822 AC_CHECK_FUNCS(fseek64 fseeko fstatvfs ftell64 ftello statvfs)
2824 AC_REPLACE_FUNCS(dup2 getcwd strdup)
2825 AC_CHECK_FUNCS(getpgrp, 
2826   AC_TRY_COMPILE([#include <unistd.h>], 
2827    [getpgrp(0);], 
2828    AC_DEFINE(GETPGRP_HAVE_ARG, 1,
2829    [Define if getpgrp() must be called as getpgrp(0).])
2832 AC_CHECK_FUNCS(setpgrp,
2833   AC_TRY_COMPILE([#include <unistd.h>],
2834     [setpgrp(0,0);],
2835     AC_DEFINE(SETPGRP_HAVE_ARG, 1,
2836     [Define if setpgrp() must be called as setpgrp(0, 0).])
2837   )
2839 AC_CHECK_FUNCS(gettimeofday, 
2840   AC_TRY_COMPILE([#include <sys/time.h>], 
2841     [gettimeofday((struct timeval*)0,(struct timezone*)0);], ,
2842     AC_DEFINE(GETTIMEOFDAY_NO_TZ, 1,
2843     [Define if gettimeofday() does not have second (timezone) argument
2844      This is the case on Motorola V4 (R40V4.2)])
2845   )
2848 AC_MSG_CHECKING(for major, minor, and makedev)
2849 AC_TRY_LINK([
2850 #if defined(MAJOR_IN_MKDEV)
2851 #include <sys/mkdev.h>
2852 #elif defined(MAJOR_IN_SYSMACROS)
2853 #include <sys/sysmacros.h>
2854 #else
2855 #include <sys/types.h>
2856 #endif
2858   makedev(major(0),minor(0));
2860   AC_DEFINE(HAVE_DEVICE_MACROS, 1,
2861             [Define to 1 if you have the device macros.])
2862   AC_MSG_RESULT(yes)
2864   AC_MSG_RESULT(no)
2867 # On OSF/1 V5.1, getaddrinfo is available, but a define
2868 # for [no]getaddrinfo in netdb.h. 
2869 AC_MSG_CHECKING(for getaddrinfo)
2870 AC_TRY_LINK([
2871 #include <sys/types.h>
2872 #include <sys/socket.h>
2873 #include <netdb.h>
2874 #include <stdio.h>
2875 ], [getaddrinfo(NULL, NULL, NULL, NULL);],
2876 have_getaddrinfo=yes,
2877 have_getaddrinfo=no)
2878 AC_MSG_RESULT($have_getaddrinfo)
2879 if test $have_getaddrinfo = yes
2880 then
2881   AC_MSG_CHECKING(getaddrinfo bug)
2882   AC_CACHE_VAL(ac_cv_buggy_getaddrinfo,
2883   AC_TRY_RUN([[
2884 #include <sys/types.h>
2885 #include <netdb.h>
2886 #include <string.h>
2887 #include <sys/socket.h>
2888 #include <netinet/in.h>
2890 int main()
2892   int passive, gaierr, inet4 = 0, inet6 = 0;
2893   struct addrinfo hints, *ai, *aitop;
2894   char straddr[INET6_ADDRSTRLEN], strport[16];
2896   for (passive = 0; passive <= 1; passive++) {
2897     memset(&hints, 0, sizeof(hints));
2898     hints.ai_family = AF_UNSPEC;
2899     hints.ai_flags = passive ? AI_PASSIVE : 0;
2900     hints.ai_socktype = SOCK_STREAM;
2901     hints.ai_protocol = IPPROTO_TCP;
2902     if ((gaierr = getaddrinfo(NULL, "54321", &hints, &aitop)) != 0) {
2903       (void)gai_strerror(gaierr);
2904       goto bad;
2905     }
2906     for (ai = aitop; ai; ai = ai->ai_next) {
2907       if (ai->ai_addr == NULL ||
2908           ai->ai_addrlen == 0 ||
2909           getnameinfo(ai->ai_addr, ai->ai_addrlen,
2910                       straddr, sizeof(straddr), strport, sizeof(strport),
2911                       NI_NUMERICHOST|NI_NUMERICSERV) != 0) {
2912         goto bad;
2913       }
2914       switch (ai->ai_family) {
2915       case AF_INET:
2916         if (strcmp(strport, "54321") != 0) {
2917           goto bad;
2918         }
2919         if (passive) {
2920           if (strcmp(straddr, "0.0.0.0") != 0) {
2921             goto bad;
2922           }
2923         } else {
2924           if (strcmp(straddr, "127.0.0.1") != 0) {
2925             goto bad;
2926           }
2927         }
2928         inet4++;
2929         break;
2930       case AF_INET6:
2931         if (strcmp(strport, "54321") != 0) {
2932           goto bad;
2933         }
2934         if (passive) {
2935           if (strcmp(straddr, "::") != 0) {
2936             goto bad;
2937           }
2938         } else {
2939           if (strcmp(straddr, "::1") != 0) {
2940             goto bad;
2941           }
2942         }
2943         inet6++;
2944         break;
2945       case AF_UNSPEC:
2946         goto bad;
2947         break;
2948       default:
2949         /* another family support? */
2950         break;
2951       }
2952     }
2953   }
2955   if (!(inet4 == 0 || inet4 == 2))
2956     goto bad;
2957   if (!(inet6 == 0 || inet6 == 2))
2958     goto bad;
2960   if (aitop)
2961     freeaddrinfo(aitop);
2962   return 0;
2964  bad:
2965   if (aitop)
2966     freeaddrinfo(aitop);
2967   return 1;
2969 ]], ac_cv_buggy_getaddrinfo=no,
2970     ac_cv_buggy_getaddrinfo=yes,
2971     ac_cv_buggy_getaddrinfo=yes))
2974 if test $have_getaddrinfo = no -o "$ac_cv_buggy_getaddrinfo" = yes
2975 then
2976         if test $ipv6 = yes
2977         then
2978                 echo 'Fatal: You must get working getaddrinfo() function.'
2979                 echo '       or you can specify "--disable-ipv6"'.
2980                 exit 1
2981         fi
2982 else
2983         AC_DEFINE(HAVE_GETADDRINFO, 1, [Define if you have the getaddrinfo function.])
2985 AC_CHECK_FUNCS(getnameinfo)
2987 # checks for structures
2988 AC_HEADER_TIME
2989 AC_STRUCT_TM
2990 AC_STRUCT_TIMEZONE
2991 AC_CHECK_MEMBERS([struct stat.st_rdev])
2992 AC_CHECK_MEMBERS([struct stat.st_blksize])
2993 AC_CHECK_MEMBERS([struct stat.st_flags])
2994 AC_CHECK_MEMBERS([struct stat.st_gen])
2995 AC_CHECK_MEMBERS([struct stat.st_birthtime])
2996 AC_STRUCT_ST_BLOCKS
2998 AC_MSG_CHECKING(for time.h that defines altzone)
2999 AC_CACHE_VAL(ac_cv_header_time_altzone,
3000 [AC_TRY_COMPILE([#include <time.h>], [return altzone;],
3001   ac_cv_header_time_altzone=yes,
3002   ac_cv_header_time_altzone=no)])
3003 AC_MSG_RESULT($ac_cv_header_time_altzone)
3004 if test $ac_cv_header_time_altzone = yes; then
3005   AC_DEFINE(HAVE_ALTZONE, 1, [Define this if your time.h defines altzone.])
3008 was_it_defined=no
3009 AC_MSG_CHECKING(whether sys/select.h and sys/time.h may both be included)
3010 AC_TRY_COMPILE([
3011 #include <sys/types.h>
3012 #include <sys/select.h>
3013 #include <sys/time.h>
3014 ], [;], [
3015   AC_DEFINE(SYS_SELECT_WITH_SYS_TIME, 1,
3016   [Define if  you can safely include both <sys/select.h> and <sys/time.h>
3017    (which you can't on SCO ODT 3.0).]) 
3018   was_it_defined=yes
3020 AC_MSG_RESULT($was_it_defined)
3022 AC_MSG_CHECKING(for addrinfo)
3023 AC_CACHE_VAL(ac_cv_struct_addrinfo,
3024 AC_TRY_COMPILE([
3025 #               include <netdb.h>],
3026         [struct addrinfo a],
3027         ac_cv_struct_addrinfo=yes,
3028         ac_cv_struct_addrinfo=no))
3029 AC_MSG_RESULT($ac_cv_struct_addrinfo)
3030 if test $ac_cv_struct_addrinfo = yes; then
3031         AC_DEFINE(HAVE_ADDRINFO, 1, [struct addrinfo (netdb.h)])
3034 AC_MSG_CHECKING(for sockaddr_storage)
3035 AC_CACHE_VAL(ac_cv_struct_sockaddr_storage,
3036 AC_TRY_COMPILE([
3037 #               include <sys/types.h>
3038 #               include <sys/socket.h>],
3039         [struct sockaddr_storage s],
3040         ac_cv_struct_sockaddr_storage=yes,
3041         ac_cv_struct_sockaddr_storage=no))
3042 AC_MSG_RESULT($ac_cv_struct_sockaddr_storage)
3043 if test $ac_cv_struct_sockaddr_storage = yes; then
3044         AC_DEFINE(HAVE_SOCKADDR_STORAGE, 1, [struct sockaddr_storage (sys/socket.h)])
3047 # checks for compiler characteristics
3049 AC_C_CHAR_UNSIGNED
3050 AC_C_CONST
3052 works=no
3053 AC_MSG_CHECKING(for working volatile)
3054 AC_TRY_COMPILE([],[volatile int x; x = 0;], works=yes, 
3055   AC_DEFINE(volatile, [], [Define to empty if the keyword does not work.])
3057 AC_MSG_RESULT($works)
3059 works=no
3060 AC_MSG_CHECKING(for working signed char)
3061 AC_TRY_COMPILE([], [signed char c;], works=yes, 
3062   AC_DEFINE(signed, [], [Define to empty if the keyword does not work.])
3064 AC_MSG_RESULT($works)
3066 have_prototypes=no
3067 AC_MSG_CHECKING(for prototypes)
3068 AC_TRY_COMPILE([int foo(int x) { return 0; }], [return foo(10);],[
3069   AC_DEFINE(HAVE_PROTOTYPES, 1, 
3070    [Define if your compiler supports function prototype]) 
3071   have_prototypes=yes
3073 AC_MSG_RESULT($have_prototypes)
3075 works=no
3076 AC_MSG_CHECKING(for variable length prototypes and stdarg.h)
3077 AC_TRY_COMPILE([
3078 #include <stdarg.h>
3079 int foo(int x, ...) {
3080         va_list va;
3081         va_start(va, x);
3082         va_arg(va, int);
3083         va_arg(va, char *);
3084         va_arg(va, double);
3085         return 0;
3087 ], [return foo(10, "", 3.14);], [
3088   AC_DEFINE(HAVE_STDARG_PROTOTYPES, 1,
3089    [Define if your compiler supports variable length function prototypes
3090    (e.g. void fprintf(FILE *, char *, ...);) *and* <stdarg.h>]) 
3091   works=yes
3093 AC_MSG_RESULT($works)
3095 # check for socketpair
3096 AC_MSG_CHECKING(for socketpair)
3097 AC_TRY_COMPILE([
3098 #include <sys/types.h>
3099 #include <sys/socket.h>
3100 ], void *x=socketpair,
3101   AC_DEFINE(HAVE_SOCKETPAIR, 1, Define if you have the 'socketpair' function.)
3102   AC_MSG_RESULT(yes),
3103   AC_MSG_RESULT(no)
3106 # check if sockaddr has sa_len member
3107 AC_MSG_CHECKING(if sockaddr has sa_len member)
3108 AC_TRY_COMPILE([#include <sys/types.h>
3109 #include <sys/socket.h>],
3110 [struct sockaddr x;
3111 x.sa_len = 0;],
3112         AC_MSG_RESULT(yes)
3113         AC_DEFINE(HAVE_SOCKADDR_SA_LEN, 1, [Define if sockaddr has sa_len member]),
3114         AC_MSG_RESULT(no))
3116 va_list_is_array=no
3117 AC_MSG_CHECKING(whether va_list is an array)
3118 AC_TRY_COMPILE([
3119 #ifdef HAVE_STDARG_PROTOTYPES
3120 #include <stdarg.h>
3121 #else
3122 #include <varargs.h>
3123 #endif
3124 ], [va_list list1, list2; list1 = list2;], , [
3125  AC_DEFINE(VA_LIST_IS_ARRAY, 1, [Define if a va_list is an array of some kind]) 
3126  va_list_is_array=yes
3128 AC_MSG_RESULT($va_list_is_array)
3130 # sigh -- gethostbyname_r is a mess; it can have 3, 5 or 6 arguments :-(
3131 AH_TEMPLATE(HAVE_GETHOSTBYNAME_R,
3132   [Define this if you have some version of gethostbyname_r()])
3134 AC_CHECK_FUNC(gethostbyname_r, [
3135   AC_DEFINE(HAVE_GETHOSTBYNAME_R)
3136   AC_MSG_CHECKING([gethostbyname_r with 6 args])
3137   OLD_CFLAGS=$CFLAGS
3138   CFLAGS="$CFLAGS $MY_CPPFLAGS $MY_THREAD_CPPFLAGS $MY_CFLAGS"
3139   AC_TRY_COMPILE([
3140 #   include <netdb.h>
3141   ], [
3142     char *name;
3143     struct hostent *he, *res;
3144     char buffer[2048];
3145     int buflen = 2048;
3146     int h_errnop;
3148     (void) gethostbyname_r(name, he, buffer, buflen, &res, &h_errnop)
3149   ], [
3150     AC_DEFINE(HAVE_GETHOSTBYNAME_R)
3151     AC_DEFINE(HAVE_GETHOSTBYNAME_R_6_ARG, 1,
3152     [Define this if you have the 6-arg version of gethostbyname_r().])
3153     AC_MSG_RESULT(yes)
3154   ], [
3155     AC_MSG_RESULT(no)
3156     AC_MSG_CHECKING([gethostbyname_r with 5 args])
3157     AC_TRY_COMPILE([
3158 #     include <netdb.h>
3159     ], [
3160       char *name;
3161       struct hostent *he;
3162       char buffer[2048];
3163       int buflen = 2048;
3164       int h_errnop;
3166       (void) gethostbyname_r(name, he, buffer, buflen, &h_errnop)
3167     ], [
3168       AC_DEFINE(HAVE_GETHOSTBYNAME_R)
3169       AC_DEFINE(HAVE_GETHOSTBYNAME_R_5_ARG, 1,
3170       [Define this if you have the 5-arg version of gethostbyname_r().])
3171       AC_MSG_RESULT(yes)
3172     ], [
3173       AC_MSG_RESULT(no)
3174       AC_MSG_CHECKING([gethostbyname_r with 3 args])
3175       AC_TRY_COMPILE([
3176 #       include <netdb.h>
3177       ], [
3178         char *name;
3179         struct hostent *he;
3180         struct hostent_data data;
3182         (void) gethostbyname_r(name, he, &data);
3183       ], [
3184         AC_DEFINE(HAVE_GETHOSTBYNAME_R)
3185         AC_DEFINE(HAVE_GETHOSTBYNAME_R_3_ARG, 1,
3186         [Define this if you have the 3-arg version of gethostbyname_r().])
3187         AC_MSG_RESULT(yes)
3188       ], [
3189         AC_MSG_RESULT(no)
3190       ])
3191     ])
3192   ])
3193   CFLAGS=$OLD_CFLAGS
3194 ], [
3195   AC_CHECK_FUNCS(gethostbyname)
3197 AC_SUBST(HAVE_GETHOSTBYNAME_R_6_ARG)
3198 AC_SUBST(HAVE_GETHOSTBYNAME_R_5_ARG)
3199 AC_SUBST(HAVE_GETHOSTBYNAME_R_3_ARG)
3200 AC_SUBST(HAVE_GETHOSTBYNAME_R)
3201 AC_SUBST(HAVE_GETHOSTBYNAME)
3203 # checks for system services
3204 # (none yet)
3206 # Linux requires this for correct f.p. operations
3207 AC_CHECK_FUNC(__fpu_control,
3208   [],
3209   [AC_CHECK_LIB(ieee, __fpu_control)
3212 # Check for --with-fpectl
3213 AC_MSG_CHECKING(for --with-fpectl)
3214 AC_ARG_WITH(fpectl,
3215             AC_HELP_STRING(--with-fpectl, enable SIGFPE catching),
3217 if test "$withval" != no
3218 then 
3219   AC_DEFINE(WANT_SIGFPE_HANDLER, 1,
3220   [Define if you want SIGFPE handled (see Include/pyfpe.h).]) 
3221   AC_MSG_RESULT(yes)
3222 else AC_MSG_RESULT(no)
3223 fi],
3224 [AC_MSG_RESULT(no)])
3226 # check for --with-libm=...
3227 AC_SUBST(LIBM)
3228 case $ac_sys_system in
3229 Darwin) ;;
3230 BeOS) ;;
3231 *) LIBM=-lm
3232 esac
3233 AC_MSG_CHECKING(for --with-libm=STRING)
3234 AC_ARG_WITH(libm,
3235             AC_HELP_STRING(--with-libm=STRING, math library),
3237 if test "$withval" = no
3238 then LIBM=
3239      AC_MSG_RESULT(force LIBM empty)
3240 elif test "$withval" != yes
3241 then LIBM=$withval
3242      AC_MSG_RESULT(set LIBM="$withval")
3243 else AC_MSG_ERROR([proper usage is --with-libm=STRING])
3244 fi],
3245 [AC_MSG_RESULT(default LIBM="$LIBM")])
3247 # check for --with-libc=...
3248 AC_SUBST(LIBC)
3249 AC_MSG_CHECKING(for --with-libc=STRING)
3250 AC_ARG_WITH(libc,
3251             AC_HELP_STRING(--with-libc=STRING, C library),
3253 if test "$withval" = no
3254 then LIBC=
3255      AC_MSG_RESULT(force LIBC empty)
3256 elif test "$withval" != yes
3257 then LIBC=$withval
3258      AC_MSG_RESULT(set LIBC="$withval")
3259 else AC_MSG_ERROR([proper usage is --with-libc=STRING])
3260 fi],
3261 [AC_MSG_RESULT(default LIBC="$LIBC")])
3263 # **************************************************
3264 # * Check for various properties of floating point *
3265 # **************************************************
3267 AC_MSG_CHECKING(whether C doubles are little-endian IEEE 754 binary64)
3268 AC_CACHE_VAL(ac_cv_little_endian_double, [
3269 AC_TRY_RUN([
3270 #include <string.h>
3271 int main() {
3272     double x = 9006104071832581.0;
3273     if (memcmp(&x, "\x05\x04\x03\x02\x01\xff\x3f\x43", 8) == 0)
3274         return 0;
3275     else
3276         return 1;
3279 ac_cv_little_endian_double=yes,
3280 ac_cv_little_endian_double=no,
3281 ac_cv_little_endian_double=no)])
3282 AC_MSG_RESULT($ac_cv_little_endian_double)
3283 if test "$ac_cv_little_endian_double" = yes
3284 then
3285   AC_DEFINE(DOUBLE_IS_LITTLE_ENDIAN_IEEE754, 1,
3286   [Define if C doubles are 64-bit IEEE 754 binary format, stored
3287    with the least significant byte first])
3290 AC_MSG_CHECKING(whether C doubles are big-endian IEEE 754 binary64)
3291 AC_CACHE_VAL(ac_cv_big_endian_double, [
3292 AC_TRY_RUN([
3293 #include <string.h>
3294 int main() {
3295     double x = 9006104071832581.0;
3296     if (memcmp(&x, "\x43\x3f\xff\x01\x02\x03\x04\x05", 8) == 0)
3297         return 0;
3298     else
3299         return 1;
3302 ac_cv_big_endian_double=yes,
3303 ac_cv_big_endian_double=no,
3304 ac_cv_big_endian_double=no)])
3305 AC_MSG_RESULT($ac_cv_big_endian_double)
3306 if test "$ac_cv_big_endian_double" = yes
3307 then
3308   AC_DEFINE(DOUBLE_IS_BIG_ENDIAN_IEEE754, 1,
3309   [Define if C doubles are 64-bit IEEE 754 binary format, stored
3310    with the most significant byte first])
3313 # Some ARM platforms use a mixed-endian representation for doubles.
3314 # While Python doesn't currently have full support for these platforms
3315 # (see e.g., issue 1762561), we can at least make sure that float <-> string
3316 # conversions work.
3317 AC_MSG_CHECKING(whether C doubles are ARM mixed-endian IEEE 754 binary64)
3318 AC_CACHE_VAL(ac_cv_mixed_endian_double, [
3319 AC_TRY_RUN([
3320 #include <string.h>
3321 int main() {
3322     double x = 9006104071832581.0;
3323     if (memcmp(&x, "\x01\xff\x3f\x43\x05\x04\x03\x02", 8) == 0)
3324         return 0;
3325     else
3326         return 1;
3329 ac_cv_mixed_endian_double=yes,
3330 ac_cv_mixed_endian_double=no,
3331 ac_cv_mixed_endian_double=no)])
3332 AC_MSG_RESULT($ac_cv_mixed_endian_double)
3333 if test "$ac_cv_mixed_endian_double" = yes
3334 then
3335   AC_DEFINE(DOUBLE_IS_ARM_MIXED_ENDIAN_IEEE754, 1,
3336   [Define if C doubles are 64-bit IEEE 754 binary format, stored
3337    in ARM mixed-endian order (byte order 45670123)])
3340 # The short float repr introduced in Python 3.1 requires the
3341 # correctly-rounded string <-> double conversion functions from
3342 # Python/dtoa.c, which in turn require that the FPU uses 53-bit
3343 # rounding; this is a problem on x86, where the x87 FPU has a default
3344 # rounding precision of 64 bits.  For gcc/x86, we can fix this by
3345 # using inline assembler to get and set the x87 FPU control word.
3347 # This inline assembler syntax may also work for suncc and icc,
3348 # so we try it on all platforms.
3350 AC_MSG_CHECKING(whether we can use gcc inline assembler to get and set x87 control word)
3351 AC_TRY_COMPILE([], [
3352   unsigned short cw;
3353   __asm__ __volatile__ ("fnstcw %0" : "=m" (cw));
3354   __asm__ __volatile__ ("fldcw %0" : : "m" (cw));
3356 [have_gcc_asm_for_x87=yes], [have_gcc_asm_for_x87=no])
3357 AC_MSG_RESULT($have_gcc_asm_for_x87)
3358 if test "$have_gcc_asm_for_x87" = yes
3359 then
3360     AC_DEFINE(HAVE_GCC_ASM_FOR_X87, 1,
3361     [Define if we can use gcc inline assembler to get and set x87 control word])
3364 # Detect whether system arithmetic is subject to x87-style double
3365 # rounding issues.  The result of this test has little meaning on non
3366 # IEEE 754 platforms.  On IEEE 754, test should return 1 if rounding
3367 # mode is round-to-nearest and double rounding issues are present, and
3368 # 0 otherwise.  See http://bugs.python.org/issue2937 for more info.
3369 AC_MSG_CHECKING(for x87-style double rounding)
3370 # $BASECFLAGS may affect the result
3371 ac_save_cc="$CC"
3372 CC="$CC $BASECFLAGS"
3373 AC_TRY_RUN([
3374 #include <stdlib.h>
3375 #include <math.h>
3376 int main() {
3377     volatile double x, y, z;
3378     /* 1./(1-2**-53) -> 1+2**-52 (correct), 1.0 (double rounding) */
3379     x = 0.99999999999999989; /* 1-2**-53 */
3380     y = 1./x;
3381     if (y != 1.)
3382         exit(0);
3383     /* 1e16+2.99999 -> 1e16+2. (correct), 1e16+4. (double rounding) */
3384     x = 1e16;
3385     y = 2.99999;
3386     z = x + y;
3387     if (z != 1e16+4.)
3388         exit(0);
3389     /* both tests show evidence of double rounding */
3390     exit(1);
3393 ac_cv_x87_double_rounding=no,
3394 ac_cv_x87_double_rounding=yes,
3395 ac_cv_x87_double_rounding=no)
3396 CC="$ac_save_cc"
3397 AC_MSG_RESULT($ac_cv_x87_double_rounding)
3398 if test "$ac_cv_x87_double_rounding" = yes
3399 then
3400   AC_DEFINE(X87_DOUBLE_ROUNDING, 1,
3401   [Define if arithmetic is subject to x87-style double rounding issue])
3404 # ************************************
3405 # * Check for mathematical functions *
3406 # ************************************
3408 LIBS_SAVE=$LIBS
3409 LIBS="$LIBS $LIBM"
3411 # On FreeBSD 6.2, it appears that tanh(-0.) returns 0. instead of
3412 # -0. on some architectures.
3413 AC_MSG_CHECKING(whether tanh preserves the sign of zero)
3414 AC_CACHE_VAL(ac_cv_tanh_preserves_zero_sign, [
3415 AC_TRY_RUN([
3416 #include <math.h>
3417 #include <stdlib.h>
3418 int main() {
3419     /* return 0 if either negative zeros don't exist
3420        on this platform or if negative zeros exist
3421        and tanh(-0.) == -0. */
3422   if (atan2(0., -1.) == atan2(-0., -1.) ||
3423       atan2(tanh(-0.), -1.) == atan2(-0., -1.)) exit(0);
3424   else exit(1);
3427 ac_cv_tanh_preserves_zero_sign=yes,
3428 ac_cv_tanh_preserves_zero_sign=no,
3429 ac_cv_tanh_preserves_zero_sign=no)])
3430 AC_MSG_RESULT($ac_cv_tanh_preserves_zero_sign)
3431 if test "$ac_cv_tanh_preserves_zero_sign" = yes
3432 then
3433   AC_DEFINE(TANH_PRESERVES_ZERO_SIGN, 1,
3434   [Define if tanh(-0.) is -0., or if platform doesn't have signed zeros])
3437 AC_CHECK_FUNCS([acosh asinh atanh copysign erf erfc expm1 finite gamma])
3438 AC_CHECK_FUNCS([hypot lgamma log1p round tgamma])
3439 AC_CHECK_DECLS([isinf, isnan, isfinite], [], [], [[#include <math.h>]])
3441 LIBS=$LIBS_SAVE
3443 # For multiprocessing module, check that sem_open
3444 # actually works.  For FreeBSD versions <= 7.2,
3445 # the kernel module that provides POSIX semaphores
3446 # isn't loaded by default, so an attempt to call
3447 # sem_open results in a 'Signal 12' error.
3448 AC_MSG_CHECKING(whether POSIX semaphores are enabled)
3449 AC_CACHE_VAL(ac_cv_posix_semaphores_enabled,
3450 AC_TRY_RUN([
3451 #include <unistd.h>
3452 #include <fcntl.h>
3453 #include <stdio.h>
3454 #include <semaphore.h>
3455 #include <sys/stat.h>
3457 int main(void) {
3458   sem_t *a = sem_open("/autoconf", O_CREAT, S_IRUSR|S_IWUSR, 0);
3459   if (a == SEM_FAILED) {
3460     perror("sem_open");
3461     return 1;
3462   }
3463   sem_close(a);
3464   sem_unlink("/autoconf");
3465   return 0;
3467 ], ac_cv_posix_semaphores_enabled=yes,
3468    ac_cv_posix_semaphores_enabled=no,
3469    ac_cv_posix_semaphores_enabled=yes)
3471 AC_MSG_RESULT($ac_cv_posix_semaphores_enabled)
3472 if test $ac_cv_posix_semaphores_enabled = no
3473 then
3474   AC_DEFINE(POSIX_SEMAPHORES_NOT_ENABLED, 1,
3475             [Define if POSIX semaphores aren't enabled on your system])
3478 # Multiprocessing check for broken sem_getvalue
3479 AC_MSG_CHECKING(for broken sem_getvalue)
3480 AC_CACHE_VAL(ac_cv_broken_sem_getvalue,
3481 AC_TRY_RUN([
3482 #include <unistd.h>
3483 #include <fcntl.h>
3484 #include <stdio.h>
3485 #include <semaphore.h>
3486 #include <sys/stat.h>
3488 int main(void){
3489   sem_t *a = sem_open("/autocftw", O_CREAT, S_IRUSR|S_IWUSR, 0);
3490   int count;
3491   int res;
3492   if(a==SEM_FAILED){
3493     perror("sem_open");
3494     return 1;
3496   }
3497   res = sem_getvalue(a, &count);
3498   sem_close(a);
3499   sem_unlink("/autocftw");
3500   return res==-1 ? 1 : 0;
3502 ], ac_cv_broken_sem_getvalue=no,
3503    ac_cv_broken_sem_getvalue=yes,
3504    ac_cv_broken_sem_getvalue=yes)
3506 AC_MSG_RESULT($ac_cv_broken_sem_getvalue)
3507 if test $ac_cv_broken_sem_getvalue = yes
3508 then
3509   AC_DEFINE(HAVE_BROKEN_SEM_GETVALUE, 1,
3510   [define to 1 if your sem_getvalue is broken.])
3513 # determine what size digit to use for Python's longs
3514 AC_MSG_CHECKING([digit size for Python's longs])
3515 AC_ARG_ENABLE(big-digits,
3516 AC_HELP_STRING([--enable-big-digits@<:@=BITS@:>@],[use big digits for Python longs [[BITS=30]]]),
3517 [case $enable_big_digits in
3518 yes)
3519   enable_big_digits=30 ;;
3521   enable_big_digits=15 ;;
3522 [15|30])
3523   ;;
3525   AC_MSG_ERROR([bad value $enable_big_digits for --enable-big-digits; value should be 15 or 30]) ;;
3526 esac
3527 AC_MSG_RESULT($enable_big_digits)
3528 AC_DEFINE_UNQUOTED(PYLONG_BITS_IN_DIGIT, $enable_big_digits, [Define as the preferred size in bits of long digits])
3530 [AC_MSG_RESULT(no value specified)])
3532 # check for wchar.h
3533 AC_CHECK_HEADER(wchar.h, [
3534   AC_DEFINE(HAVE_WCHAR_H, 1, 
3535   [Define if the compiler provides a wchar.h header file.]) 
3536   wchar_h="yes"
3538 wchar_h="no"
3541 # determine wchar_t size
3542 if test "$wchar_h" = yes
3543 then
3544   AC_CHECK_SIZEOF(wchar_t, 4, [#include <wchar.h>])
3547 AC_MSG_CHECKING(for UCS-4 tcl)
3548 have_ucs4_tcl=no
3549 AC_TRY_COMPILE([
3550 #include <tcl.h>
3551 #if TCL_UTF_MAX != 6
3552 # error "NOT UCS4_TCL"
3553 #endif], [], [
3554   AC_DEFINE(HAVE_UCS4_TCL, 1, [Define this if you have tcl and TCL_UTF_MAX==6])
3555   have_ucs4_tcl=yes
3557 AC_MSG_RESULT($have_ucs4_tcl)
3559 # check whether wchar_t is signed or not
3560 if test "$wchar_h" = yes
3561 then
3562   # check whether wchar_t is signed or not
3563   AC_MSG_CHECKING(whether wchar_t is signed)
3564   AC_CACHE_VAL(ac_cv_wchar_t_signed, [
3565   AC_TRY_RUN([
3566   #include <wchar.h>
3567   int main()
3568   {
3569         /* Success: exit code 0 */
3570         exit((((wchar_t) -1) < ((wchar_t) 0)) ? 0 : 1);
3571   }
3572   ],
3573   ac_cv_wchar_t_signed=yes,
3574   ac_cv_wchar_t_signed=no,
3575   ac_cv_wchar_t_signed=yes)])
3576   AC_MSG_RESULT($ac_cv_wchar_t_signed)
3578   
3579 AC_MSG_CHECKING(what type to use for unicode)
3580 dnl quadrigraphs "@<:@" and "@:>@" produce "[" and "]" in the output
3581 AC_ARG_ENABLE(unicode, 
3582               AC_HELP_STRING(--enable-unicode@<:@=ucs@<:@24@:>@@:>@, Enable Unicode strings (default is yes)),
3583               [],
3584               [enable_unicode=yes])
3586 if test $enable_unicode = yes
3587 then
3588   # Without any arguments, Py_UNICODE defaults to two-byte mode
3589   case "$have_ucs4_tcl" in
3590   yes) enable_unicode="ucs4"
3591        ;;
3592   *)   enable_unicode="ucs2"
3593        ;;
3594   esac
3597 AH_TEMPLATE(Py_UNICODE_SIZE,
3598   [Define as the size of the unicode type.])
3599 case "$enable_unicode" in
3600 ucs2) unicode_size="2"
3601       AC_DEFINE(Py_UNICODE_SIZE,2)
3602       ;;
3603 ucs4) unicode_size="4"
3604       AC_DEFINE(Py_UNICODE_SIZE,4)
3605       ;;
3606 esac
3608 AH_TEMPLATE(PY_UNICODE_TYPE,
3609   [Define as the integral type used for Unicode representation.])
3611 AC_SUBST(UNICODE_OBJS)
3612 if test "$enable_unicode" = "no"
3613 then
3614   UNICODE_OBJS=""
3615   AC_MSG_RESULT(not used)
3616 else
3617   UNICODE_OBJS="Objects/unicodeobject.o Objects/unicodectype.o"
3618   AC_DEFINE(Py_USING_UNICODE, 1,
3619   [Define if you want to have a Unicode type.])
3621   # wchar_t is only usable if it maps to an unsigned type
3622   if test "$unicode_size" = "$ac_cv_sizeof_wchar_t" \
3623           -a "$ac_cv_wchar_t_signed" = "no"
3624   then
3625     PY_UNICODE_TYPE="wchar_t"
3626     AC_DEFINE(HAVE_USABLE_WCHAR_T, 1,
3627     [Define if you have a useable wchar_t type defined in wchar.h; useable
3628      means wchar_t must be an unsigned type with at least 16 bits. (see
3629      Include/unicodeobject.h).])
3630     AC_DEFINE(PY_UNICODE_TYPE,wchar_t)
3631   elif test "$ac_cv_sizeof_short" = "$unicode_size"
3632   then
3633        PY_UNICODE_TYPE="unsigned short"
3634        AC_DEFINE(PY_UNICODE_TYPE,unsigned short)
3635   elif test "$ac_cv_sizeof_long" = "$unicode_size"
3636   then
3637        PY_UNICODE_TYPE="unsigned long"
3638        AC_DEFINE(PY_UNICODE_TYPE,unsigned long)
3639   else
3640        PY_UNICODE_TYPE="no type found"
3641   fi
3642   AC_MSG_RESULT($PY_UNICODE_TYPE)
3645 # check for endianness
3646 AC_C_BIGENDIAN
3648 # Check whether right shifting a negative integer extends the sign bit
3649 # or fills with zeros (like the Cray J90, according to Tim Peters).
3650 AC_MSG_CHECKING(whether right shift extends the sign bit)
3651 AC_CACHE_VAL(ac_cv_rshift_extends_sign, [
3652 AC_TRY_RUN([
3653 int main()
3655         exit(((-1)>>3 == -1) ? 0 : 1);
3658 ac_cv_rshift_extends_sign=yes,
3659 ac_cv_rshift_extends_sign=no,
3660 ac_cv_rshift_extends_sign=yes)])
3661 AC_MSG_RESULT($ac_cv_rshift_extends_sign)
3662 if test "$ac_cv_rshift_extends_sign" = no
3663 then
3664   AC_DEFINE(SIGNED_RIGHT_SHIFT_ZERO_FILLS, 1,
3665   [Define if i>>j for signed int i does not extend the sign bit
3666    when i < 0])
3669 # check for getc_unlocked and related locking functions
3670 AC_MSG_CHECKING(for getc_unlocked() and friends)
3671 AC_CACHE_VAL(ac_cv_have_getc_unlocked, [
3672 AC_TRY_LINK([#include <stdio.h>],[
3673         FILE *f = fopen("/dev/null", "r");
3674         flockfile(f);
3675         getc_unlocked(f);
3676         funlockfile(f);
3677 ], ac_cv_have_getc_unlocked=yes, ac_cv_have_getc_unlocked=no)])
3678 AC_MSG_RESULT($ac_cv_have_getc_unlocked)
3679 if test "$ac_cv_have_getc_unlocked" = yes
3680 then
3681   AC_DEFINE(HAVE_GETC_UNLOCKED, 1,
3682   [Define this if you have flockfile(), getc_unlocked(), and funlockfile()])
3685 # check where readline lives
3686 # save the value of LIBS so we don't actually link Python with readline
3687 LIBS_no_readline=$LIBS
3689 # On some systems we need to link readline to a termcap compatible
3690 # library.  NOTE: Keep the precedence of listed libraries synchronised
3691 # with setup.py.
3692 py_cv_lib_readline=no
3693 AC_MSG_CHECKING([how to link readline libs])
3694 for py_libtermcap in "" ncursesw ncurses curses termcap; do
3695   if test -z "$py_libtermcap"; then
3696     READLINE_LIBS="-lreadline"
3697   else
3698     READLINE_LIBS="-lreadline -l$py_libtermcap"
3699   fi
3700   LIBS="$READLINE_LIBS $LIBS_no_readline"
3701   AC_LINK_IFELSE(
3702     [AC_LANG_CALL([],[readline])],
3703     [py_cv_lib_readline=yes])
3704   if test $py_cv_lib_readline = yes; then
3705     break
3706   fi
3707 done
3708 # Uncomment this line if you want to use READINE_LIBS in Makefile or scripts
3709 #AC_SUBST([READLINE_LIBS])
3710 if test $py_cv_lib_readline = no; then
3711   AC_MSG_RESULT([none])
3712 else
3713   AC_MSG_RESULT([$READLINE_LIBS])
3714   AC_DEFINE(HAVE_LIBREADLINE, 1,
3715     [Define if you have the readline library (-lreadline).])
3718 # check for readline 2.1
3719 AC_CHECK_LIB(readline, rl_callback_handler_install,
3720         AC_DEFINE(HAVE_RL_CALLBACK, 1,
3721         [Define if you have readline 2.1]), ,$READLINE_LIBS)
3723 # check for readline 2.2
3724 AC_TRY_CPP([#include <readline/readline.h>],
3725 have_readline=yes, have_readline=no)
3726 if test $have_readline = yes
3727 then
3728   AC_EGREP_HEADER([extern int rl_completion_append_character;],
3729   [readline/readline.h],
3730   AC_DEFINE(HAVE_RL_COMPLETION_APPEND_CHARACTER, 1,
3731   [Define if you have readline 2.2]), )
3732   AC_EGREP_HEADER([extern int rl_completion_suppress_append;],
3733   [readline/readline.h],
3734   AC_DEFINE(HAVE_RL_COMPLETION_SUPPRESS_APPEND, 1,
3735   [Define if you have rl_completion_suppress_append]), )
3738 # check for readline 4.0
3739 AC_CHECK_LIB(readline, rl_pre_input_hook,
3740         AC_DEFINE(HAVE_RL_PRE_INPUT_HOOK, 1,
3741         [Define if you have readline 4.0]), ,$READLINE_LIBS)
3743 # also in 4.0
3744 AC_CHECK_LIB(readline, rl_completion_display_matches_hook,
3745         AC_DEFINE(HAVE_RL_COMPLETION_DISPLAY_MATCHES_HOOK, 1,
3746         [Define if you have readline 4.0]), ,$READLINE_LIBS)
3748 # check for readline 4.2
3749 AC_CHECK_LIB(readline, rl_completion_matches,
3750         AC_DEFINE(HAVE_RL_COMPLETION_MATCHES, 1,
3751         [Define if you have readline 4.2]), ,$READLINE_LIBS)
3753 # also in readline 4.2
3754 AC_TRY_CPP([#include <readline/readline.h>],
3755 have_readline=yes, have_readline=no)
3756 if test $have_readline = yes
3757 then
3758   AC_EGREP_HEADER([extern int rl_catch_signals;],
3759   [readline/readline.h],
3760   AC_DEFINE(HAVE_RL_CATCH_SIGNAL, 1,
3761   [Define if you can turn off readline's signal handling.]), )
3764 # End of readline checks: restore LIBS
3765 LIBS=$LIBS_no_readline
3767 AC_MSG_CHECKING(for broken nice())
3768 AC_CACHE_VAL(ac_cv_broken_nice, [
3769 AC_TRY_RUN([
3770 int main()
3772         int val1 = nice(1);
3773         if (val1 != -1 && val1 == nice(2))
3774                 exit(0);
3775         exit(1);
3778 ac_cv_broken_nice=yes,
3779 ac_cv_broken_nice=no,
3780 ac_cv_broken_nice=no)])
3781 AC_MSG_RESULT($ac_cv_broken_nice)
3782 if test "$ac_cv_broken_nice" = yes
3783 then
3784   AC_DEFINE(HAVE_BROKEN_NICE, 1,
3785   [Define if nice() returns success/failure instead of the new priority.])
3788 AC_MSG_CHECKING(for broken poll())
3789 AC_CACHE_VAL(ac_cv_broken_poll,
3790 AC_TRY_RUN([
3791 #include <poll.h>
3793 int main()
3795     struct pollfd poll_struct = { 42, POLLIN|POLLPRI|POLLOUT, 0 };
3796     int poll_test;
3798     close (42);
3800     poll_test = poll(&poll_struct, 1, 0);
3801     if (poll_test < 0)
3802         return 0;
3803     else if (poll_test == 0 && poll_struct.revents != POLLNVAL)
3804         return 0;
3805     else
3806         return 1;
3809 ac_cv_broken_poll=yes,
3810 ac_cv_broken_poll=no,
3811 ac_cv_broken_poll=no))
3812 AC_MSG_RESULT($ac_cv_broken_poll)
3813 if test "$ac_cv_broken_poll" = yes
3814 then
3815   AC_DEFINE(HAVE_BROKEN_POLL, 1,
3816       [Define if poll() sets errno on invalid file descriptors.])
3819 # Before we can test tzset, we need to check if struct tm has a tm_zone 
3820 # (which is not required by ISO C or UNIX spec) and/or if we support
3821 # tzname[]
3822 AC_STRUCT_TIMEZONE
3824 # check tzset(3) exists and works like we expect it to
3825 AC_MSG_CHECKING(for working tzset())
3826 AC_CACHE_VAL(ac_cv_working_tzset, [
3827 AC_TRY_RUN([
3828 #include <stdlib.h>
3829 #include <time.h>
3830 #include <string.h>
3832 #if HAVE_TZNAME
3833 extern char *tzname[];
3834 #endif
3836 int main()
3838         /* Note that we need to ensure that not only does tzset(3)
3839            do 'something' with localtime, but it works as documented
3840            in the library reference and as expected by the test suite.
3841            This includes making sure that tzname is set properly if
3842            tm->tm_zone does not exist since it is the alternative way
3843            of getting timezone info.
3845            Red Hat 6.2 doesn't understand the southern hemisphere 
3846            after New Year's Day.
3847         */
3849         time_t groundhogday = 1044144000; /* GMT-based */
3850         time_t midyear = groundhogday + (365 * 24 * 3600 / 2);
3852         putenv("TZ=UTC+0");
3853         tzset();
3854         if (localtime(&groundhogday)->tm_hour != 0)
3855             exit(1);
3856 #if HAVE_TZNAME
3857         /* For UTC, tzname[1] is sometimes "", sometimes "   " */
3858         if (strcmp(tzname[0], "UTC") || 
3859                 (tzname[1][0] != 0 && tzname[1][0] != ' '))
3860             exit(1);
3861 #endif
3863         putenv("TZ=EST+5EDT,M4.1.0,M10.5.0");
3864         tzset();
3865         if (localtime(&groundhogday)->tm_hour != 19)
3866             exit(1);
3867 #if HAVE_TZNAME
3868         if (strcmp(tzname[0], "EST") || strcmp(tzname[1], "EDT"))
3869             exit(1);
3870 #endif
3872         putenv("TZ=AEST-10AEDT-11,M10.5.0,M3.5.0");
3873         tzset();
3874         if (localtime(&groundhogday)->tm_hour != 11)
3875             exit(1);
3876 #if HAVE_TZNAME
3877         if (strcmp(tzname[0], "AEST") || strcmp(tzname[1], "AEDT"))
3878             exit(1);
3879 #endif
3881 #if HAVE_STRUCT_TM_TM_ZONE
3882         if (strcmp(localtime(&groundhogday)->tm_zone, "AEDT"))
3883             exit(1);
3884         if (strcmp(localtime(&midyear)->tm_zone, "AEST"))
3885             exit(1);
3886 #endif
3888         exit(0);
3891 ac_cv_working_tzset=yes,
3892 ac_cv_working_tzset=no,
3893 ac_cv_working_tzset=no)])
3894 AC_MSG_RESULT($ac_cv_working_tzset)
3895 if test "$ac_cv_working_tzset" = yes
3896 then
3897   AC_DEFINE(HAVE_WORKING_TZSET, 1,
3898   [Define if tzset() actually switches the local timezone in a meaningful way.])
3901 # Look for subsecond timestamps in struct stat
3902 AC_MSG_CHECKING(for tv_nsec in struct stat)
3903 AC_CACHE_VAL(ac_cv_stat_tv_nsec,
3904 AC_TRY_COMPILE([#include <sys/stat.h>], [
3905 struct stat st;
3906 st.st_mtim.tv_nsec = 1;
3908 ac_cv_stat_tv_nsec=yes,
3909 ac_cv_stat_tv_nsec=no,
3910 ac_cv_stat_tv_nsec=no))
3911 AC_MSG_RESULT($ac_cv_stat_tv_nsec)
3912 if test "$ac_cv_stat_tv_nsec" = yes
3913 then
3914   AC_DEFINE(HAVE_STAT_TV_NSEC, 1,
3915   [Define if you have struct stat.st_mtim.tv_nsec])
3918 # Look for BSD style subsecond timestamps in struct stat
3919 AC_MSG_CHECKING(for tv_nsec2 in struct stat)
3920 AC_CACHE_VAL(ac_cv_stat_tv_nsec2,
3921 AC_TRY_COMPILE([#include <sys/stat.h>], [
3922 struct stat st;
3923 st.st_mtimespec.tv_nsec = 1;
3925 ac_cv_stat_tv_nsec2=yes,
3926 ac_cv_stat_tv_nsec2=no,
3927 ac_cv_stat_tv_nsec2=no))
3928 AC_MSG_RESULT($ac_cv_stat_tv_nsec2)
3929 if test "$ac_cv_stat_tv_nsec2" = yes
3930 then
3931   AC_DEFINE(HAVE_STAT_TV_NSEC2, 1,
3932   [Define if you have struct stat.st_mtimensec])
3935 # On HP/UX 11.0, mvwdelch is a block with a return statement
3936 AC_MSG_CHECKING(whether mvwdelch is an expression)
3937 AC_CACHE_VAL(ac_cv_mvwdelch_is_expression,
3938 AC_TRY_COMPILE([#include <curses.h>], [
3939   int rtn;
3940   rtn = mvwdelch(0,0,0);
3941 ], ac_cv_mvwdelch_is_expression=yes,
3942    ac_cv_mvwdelch_is_expression=no,
3943    ac_cv_mvwdelch_is_expression=yes))
3944 AC_MSG_RESULT($ac_cv_mvwdelch_is_expression)
3946 if test "$ac_cv_mvwdelch_is_expression" = yes
3947 then
3948   AC_DEFINE(MVWDELCH_IS_EXPRESSION, 1,
3949   [Define if mvwdelch in curses.h is an expression.])
3952 AC_MSG_CHECKING(whether WINDOW has _flags)
3953 AC_CACHE_VAL(ac_cv_window_has_flags,
3954 AC_TRY_COMPILE([#include <curses.h>], [
3955   WINDOW *w;
3956   w->_flags = 0;
3957 ], ac_cv_window_has_flags=yes,
3958    ac_cv_window_has_flags=no,
3959    ac_cv_window_has_flags=no))
3960 AC_MSG_RESULT($ac_cv_window_has_flags)
3963 if test "$ac_cv_window_has_flags" = yes
3964 then
3965   AC_DEFINE(WINDOW_HAS_FLAGS, 1, 
3966   [Define if WINDOW in curses.h offers a field _flags.])
3969 AC_MSG_CHECKING(for is_term_resized)
3970 AC_TRY_COMPILE([#include <curses.h>], void *x=is_term_resized,
3971   AC_DEFINE(HAVE_CURSES_IS_TERM_RESIZED, 1, Define if you have the 'is_term_resized' function.)
3972   AC_MSG_RESULT(yes),
3973   AC_MSG_RESULT(no)
3976 AC_MSG_CHECKING(for resize_term)
3977 AC_TRY_COMPILE([#include <curses.h>], void *x=resize_term,
3978   AC_DEFINE(HAVE_CURSES_RESIZE_TERM, 1, Define if you have the 'resize_term' function.)
3979   AC_MSG_RESULT(yes),
3980   AC_MSG_RESULT(no)
3983 AC_MSG_CHECKING(for resizeterm)
3984 AC_TRY_COMPILE([#include <curses.h>], void *x=resizeterm,
3985   AC_DEFINE(HAVE_CURSES_RESIZETERM, 1, Define if you have the 'resizeterm' function.)
3986   AC_MSG_RESULT(yes),
3987   AC_MSG_RESULT(no)
3990 AC_MSG_CHECKING(for /dev/ptmx)
3992 if test -r /dev/ptmx
3993 then
3994   AC_MSG_RESULT(yes)
3995   AC_DEFINE(HAVE_DEV_PTMX, 1,
3996   [Define if we have /dev/ptmx.])
3997 else
3998   AC_MSG_RESULT(no)
4001 AC_MSG_CHECKING(for /dev/ptc)
4003 if test -r /dev/ptc
4004 then
4005   AC_MSG_RESULT(yes)
4006   AC_DEFINE(HAVE_DEV_PTC, 1,
4007   [Define if we have /dev/ptc.])
4008 else
4009   AC_MSG_RESULT(no)
4012 if test "$have_long_long" = yes
4013 then
4014   AC_MSG_CHECKING(for %lld and %llu printf() format support)
4015   AC_CACHE_VAL(ac_cv_have_long_long_format,
4016   AC_TRY_RUN([[
4017   #include <stdio.h>
4018   #include <stddef.h>
4019   #include <string.h>
4021   #ifdef HAVE_SYS_TYPES_H
4022   #include <sys/types.h>
4023   #endif
4025   int main()
4026   {
4027       char buffer[256];
4029       if (sprintf(buffer, "%lld", (long long)123) < 0)
4030           return 1;
4031       if (strcmp(buffer, "123"))
4032           return 1;
4034       if (sprintf(buffer, "%lld", (long long)-123) < 0)
4035           return 1;
4036       if (strcmp(buffer, "-123"))
4037           return 1;
4039       if (sprintf(buffer, "%llu", (unsigned long long)123) < 0)
4040           return 1;
4041       if (strcmp(buffer, "123"))
4042           return 1;
4044       return 0;
4045   }
4046   ]], ac_cv_have_long_long_format=yes,
4047       ac_cv_have_long_long_format=no,
4048       ac_cv_have_long_long_format=no)
4049   )
4050   AC_MSG_RESULT($ac_cv_have_long_long_format)
4053 if test "$ac_cv_have_long_long_format" = yes
4054 then
4055   AC_DEFINE(PY_FORMAT_LONG_LONG, "ll",
4056   [Define to printf format modifier for long long type])
4059 if test $ac_sys_system = Darwin
4060 then
4061         LIBS="$LIBS -framework CoreFoundation"
4065 AC_CACHE_CHECK([for %zd printf() format support], ac_cv_have_size_t_format, [dnl
4066 AC_TRY_RUN([
4067 #include <stdio.h>
4068 #include <stddef.h>
4069 #include <string.h>
4071 #ifdef HAVE_SYS_TYPES_H
4072 #include <sys/types.h>
4073 #endif
4075 #ifdef HAVE_SSIZE_T
4076 typedef ssize_t Py_ssize_t;
4077 #elif SIZEOF_VOID_P == SIZEOF_LONG
4078 typedef long Py_ssize_t;
4079 #else
4080 typedef int Py_ssize_t;
4081 #endif
4083 int main()
4085     char buffer[256];
4087     if(sprintf(buffer, "%zd", (size_t)123) < 0)
4088         return 1;
4090     if (strcmp(buffer, "123"))
4091         return 1;
4093     if (sprintf(buffer, "%zd", (Py_ssize_t)-123) < 0)
4094         return 1;
4096     if (strcmp(buffer, "-123"))
4097         return 1;
4099     return 0;
4101 ], ac_cv_have_size_t_format=yes,
4102     ac_cv_have_size_t_format=no,
4103     [ac_cv_have_size_t_format="cross -- assuming yes"]
4105 if test "$ac_cv_have_size_t_format" != no ; then
4106   AC_DEFINE(PY_FORMAT_SIZE_T, "z",
4107   [Define to printf format modifier for Py_ssize_t])
4110 AC_CHECK_TYPE(socklen_t,,
4111   AC_DEFINE(socklen_t,int,
4112             Define to `int' if <sys/socket.h> does not define.),[
4113 #ifdef HAVE_SYS_TYPES_H
4114 #include <sys/types.h>
4115 #endif
4116 #ifdef HAVE_SYS_SOCKET_H
4117 #include <sys/socket.h>
4118 #endif
4121 AC_SUBST(THREADHEADERS)
4123 for h in `(cd $srcdir;echo Python/thread_*.h)`
4125   THREADHEADERS="$THREADHEADERS \$(srcdir)/$h"
4126 done
4128 AC_SUBST(SRCDIRS)
4129 SRCDIRS="Parser Grammar Objects Python Modules Mac"
4130 AC_MSG_CHECKING(for build directories)
4131 for dir in $SRCDIRS; do
4132     if test ! -d $dir; then
4133         mkdir $dir
4134     fi
4135 done
4136 AC_MSG_RESULT(done)
4138 # generate output files
4139 AC_CONFIG_FILES(Makefile.pre Modules/Setup.config Misc/python.pc)
4140 AC_OUTPUT
4142 echo "creating Modules/Setup"
4143 if test ! -f Modules/Setup
4144 then
4145         cp $srcdir/Modules/Setup.dist Modules/Setup
4148 echo "creating Modules/Setup.local"
4149 if test ! -f Modules/Setup.local
4150 then
4151         echo "# Edit this file for local setup changes" >Modules/Setup.local
4154 echo "creating Makefile"
4155 $SHELL $srcdir/Modules/makesetup -c $srcdir/Modules/config.c.in \
4156                         -s Modules Modules/Setup.config \
4157                         Modules/Setup.local Modules/Setup
4159 case $ac_sys_system in
4160 BeOS)
4161         AC_MSG_WARN([
4163   Support for BeOS is deprecated as of Python 2.6.
4164   See PEP 11 for the gory details.
4165   ])
4166   ;;
4167 *) ;;
4168 esac
4170 mv config.c Modules