indentation and further alignment with py3k
[python.git] / configure.in
blob6f05f7578d79e74b722d1fced6b25b05ebfaf57f
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 -a \
1461         "$ac_cv_sizeof_off_t" -gt "$ac_cv_sizeof_long" -a \
1462         "$ac_cv_sizeof_long_long" -ge "$ac_cv_sizeof_off_t"; then
1463   AC_DEFINE(HAVE_LARGEFILE_SUPPORT, 1, 
1464   [Defined to enable large file support when an off_t is bigger than a long
1465    and long long is available and at least as big as an off_t. You may need
1466    to add some flags for configuration and compilation to enable this mode.
1467    (For Solaris and Linux, the necessary defines are already defined.)])
1468   AC_MSG_RESULT(yes)
1469 else
1470   AC_MSG_RESULT(no)
1473 AC_CHECK_SIZEOF(time_t, [], [
1474 #ifdef HAVE_SYS_TYPES_H
1475 #include <sys/types.h>
1476 #endif
1477 #ifdef HAVE_TIME_H
1478 #include <time.h>
1479 #endif
1482 # if have pthread_t then define SIZEOF_PTHREAD_T
1483 ac_save_cc="$CC"
1484 if test "$ac_cv_kpthread" = "yes"
1485 then CC="$CC -Kpthread"
1486 elif test "$ac_cv_kthread" = "yes"
1487 then CC="$CC -Kthread"
1488 elif test "$ac_cv_pthread" = "yes"
1489 then CC="$CC -pthread"
1491 AC_MSG_CHECKING(for pthread_t)
1492 have_pthread_t=no
1493 AC_TRY_COMPILE([#include <pthread.h>], [pthread_t x; x = *(pthread_t*)0;], have_pthread_t=yes)
1494 AC_MSG_RESULT($have_pthread_t)
1495 if test "$have_pthread_t" = yes ; then
1496   AC_CHECK_SIZEOF(pthread_t, [], [
1497 #ifdef HAVE_PTHREAD_H
1498 #include <pthread.h>
1499 #endif
1500   ])
1502 CC="$ac_save_cc"
1504 AC_MSG_CHECKING(for --enable-toolbox-glue)
1505 AC_ARG_ENABLE(toolbox-glue,
1506               AC_HELP_STRING(--enable-toolbox-glue, disable/enable MacOSX glue code for extensions))
1508 if test -z "$enable_toolbox_glue"
1509 then 
1510         case $ac_sys_system/$ac_sys_release in
1511         Darwin/*)
1512                 enable_toolbox_glue="yes";;
1513         *)
1514                 enable_toolbox_glue="no";;
1515         esac
1517 case "$enable_toolbox_glue" in
1518 yes)
1519         extra_machdep_objs="Python/mactoolboxglue.o"
1520         extra_undefs="-u _PyMac_Error"
1521         AC_DEFINE(USE_TOOLBOX_OBJECT_GLUE, 1,
1522          [Define if you want to use MacPython modules on MacOSX in unix-Python.])
1523         ;;
1525         extra_machdep_objs=""
1526         extra_undefs=""
1527         ;;
1528 esac
1529 AC_MSG_RESULT($enable_toolbox_glue)
1532 AC_SUBST(OTHER_LIBTOOL_OPT)
1533 case $ac_sys_system/$ac_sys_release in
1534   Darwin/@<:@01567@:>@\..*) 
1535     OTHER_LIBTOOL_OPT="-prebind -seg1addr 0x10000000"
1536     ;;
1537   Darwin/*)
1538     OTHER_LIBTOOL_OPT=""
1539     ;;
1540 esac
1543 ARCH_RUN_32BIT=""
1544 AC_SUBST(LIBTOOL_CRUFT)
1545 case $ac_sys_system/$ac_sys_release in
1546   Darwin/@<:@01567@:>@\..*) 
1547     LIBTOOL_CRUFT="-framework System -lcc_dynamic"
1548     if test "${enable_universalsdk}"; then
1549             :
1550     else
1551         LIBTOOL_CRUFT="${LIBTOOL_CRUFT} -arch_only `arch`"
1552     fi
1553     LIBTOOL_CRUFT=$LIBTOOL_CRUFT' -install_name $(PYTHONFRAMEWORKINSTALLDIR)/Versions/$(VERSION)/$(PYTHONFRAMEWORK)'
1554     LIBTOOL_CRUFT=$LIBTOOL_CRUFT' -compatibility_version $(VERSION) -current_version $(VERSION)';;
1555   Darwin/*)
1556     gcc_version=`gcc -v 2>&1 |  grep version | cut -d\  -f3`
1557     if test ${gcc_version} '<' 4.0
1558         then
1559             LIBTOOL_CRUFT="-lcc_dynamic"
1560         else 
1561             LIBTOOL_CRUFT=""
1562     fi
1563     AC_TRY_RUN([
1564     #include <unistd.h>
1565     int main(int argc, char*argv[])
1566     {
1567       if (sizeof(long) == 4) {
1568           return 0;
1569       } else {
1570           return 1;
1571       }
1572     }
1573     ], ac_osx_32bit=yes,
1574        ac_osx_32bit=no,
1575        ac_osx_32bit=yes)
1576     
1577     if test "${ac_osx_32bit}" = "yes"; then
1578         case `arch` in
1579         i386) 
1580                 MACOSX_DEFAULT_ARCH="i386" 
1581                 ;;
1582         ppc) 
1583                 MACOSX_DEFAULT_ARCH="ppc" 
1584                 ;;
1585         *)
1586                 AC_MSG_ERROR([Unexpected output of 'arch' on OSX])
1587                 ;;
1588         esac
1589     else
1590         case `arch` in
1591         i386) 
1592                 MACOSX_DEFAULT_ARCH="x86_64" 
1593                 ;;
1594         ppc) 
1595                 MACOSX_DEFAULT_ARCH="ppc64" 
1596                 ;;
1597         *)
1598                 AC_MSG_ERROR([Unexpected output of 'arch' on OSX])
1599                 ;;
1600         esac
1602         #ARCH_RUN_32BIT="true"
1603     fi
1605     LIBTOOL_CRUFT=$LIBTOOL_CRUFT" -lSystem -lSystemStubs -arch_only ${MACOSX_DEFAULT_ARCH}"
1606     LIBTOOL_CRUFT=$LIBTOOL_CRUFT' -install_name $(PYTHONFRAMEWORKINSTALLDIR)/Versions/$(VERSION)/$(PYTHONFRAMEWORK)'
1607     LIBTOOL_CRUFT=$LIBTOOL_CRUFT' -compatibility_version $(VERSION) -current_version $(VERSION)';;
1608 esac
1610 AC_MSG_CHECKING(for --enable-framework)
1611 if test "$enable_framework"
1612 then
1613         BASECFLAGS="$BASECFLAGS -fno-common -dynamic"
1614         # -F. is needed to allow linking to the framework while 
1615         # in the build location.
1616         AC_DEFINE(WITH_NEXT_FRAMEWORK, 1, 
1617          [Define if you want to produce an OpenStep/Rhapsody framework
1618          (shared library plus accessory files).])
1619         AC_MSG_RESULT(yes)
1620         if test $enable_shared = "yes"
1621         then
1622                 AC_MSG_ERROR([Specifying both --enable-shared and --enable-framework is not supported, use only --enable-framework instead. See Mac/README.])
1623         fi
1624 else
1625         AC_MSG_RESULT(no)
1628 AC_MSG_CHECKING(for dyld)
1629 case $ac_sys_system/$ac_sys_release in
1630   Darwin/*)
1631         AC_DEFINE(WITH_DYLD, 1, 
1632         [Define if you want to use the new-style (Openstep, Rhapsody, MacOS)
1633          dynamic linker (dyld) instead of the old-style (NextStep) dynamic
1634          linker (rld). Dyld is necessary to support frameworks.])
1635         AC_MSG_RESULT(always on for Darwin)
1636         ;;
1637   *)
1638         AC_MSG_RESULT(no)
1639         ;;
1640 esac
1642 # Set info about shared libraries.
1643 AC_SUBST(SO)
1644 AC_SUBST(LDSHARED)
1645 AC_SUBST(BLDSHARED)
1646 AC_SUBST(CCSHARED)
1647 AC_SUBST(LINKFORSHARED)
1648 # SO is the extension of shared libraries `(including the dot!)
1649 # -- usually .so, .sl on HP-UX, .dll on Cygwin
1650 AC_MSG_CHECKING(SO)
1651 if test -z "$SO"
1652 then
1653         case $ac_sys_system in
1654         hp*|HP*)
1655                 case `uname -m` in
1656                         ia64) SO=.so;;
1657                         *)    SO=.sl;;
1658                 esac
1659                 ;;
1660         CYGWIN*)   SO=.dll;;
1661         *)         SO=.so;;
1662         esac
1663 else
1664         # this might also be a termcap variable, see #610332
1665         echo
1666         echo '====================================================================='
1667         echo '+                                                                   +'
1668         echo '+ WARNING: You have set SO in your environment.                     +'
1669         echo '+ Do you really mean to change the extension for shared libraries?  +'
1670         echo '+ Continuing in 10 seconds to let you to ponder.                    +'
1671         echo '+                                                                   +'
1672         echo '====================================================================='
1673         sleep 10
1675 AC_MSG_RESULT($SO)
1677 AC_DEFINE_UNQUOTED(SHLIB_EXT, "$SO", [Define this to be extension of shared libraries (including the dot!).])
1678 # LDSHARED is the ld *command* used to create shared library
1679 # -- "cc -G" on SunOS 5.x, "ld -shared" on IRIX 5
1680 # (Shared libraries in this instance are shared modules to be loaded into
1681 # Python, as opposed to building Python itself as a shared library.)
1682 AC_MSG_CHECKING(LDSHARED)
1683 if test -z "$LDSHARED"
1684 then
1685         case $ac_sys_system/$ac_sys_release in
1686         AIX*)
1687                 BLDSHARED="\$(srcdir)/Modules/ld_so_aix \$(CC) -bI:Modules/python.exp"
1688                 LDSHARED="\$(BINLIBDEST)/config/ld_so_aix \$(CC) -bI:\$(BINLIBDEST)/config/python.exp"
1689                 ;;
1690         BeOS*)
1691                 BLDSHARED="\$(srcdir)/Modules/ld_so_beos $LDLIBRARY"
1692                 LDSHARED="\$(BINLIBDEST)/config/ld_so_beos \$(LIBDIR)/$LDLIBRARY"
1693                 ;;
1694         IRIX/5*) LDSHARED="ld -shared";;
1695         IRIX*/6*) LDSHARED="ld ${SGI_ABI} -shared -all";;
1696         SunOS/5*) 
1697                 if test "$GCC" = "yes"
1698                 then LDSHARED='$(CC) -shared'
1699                 else LDSHARED='$(CC) -G';
1700                 fi ;;
1701         hp*|HP*)
1702                 if test "$GCC" = "yes"
1703                 then LDSHARED='$(CC) -shared'
1704                 else LDSHARED='ld -b';
1705                 fi ;;
1706         OSF*) LDSHARED="ld -shared -expect_unresolved \"*\"";;
1707         Darwin/1.3*)
1708                 LDSHARED='$(CC) $(LDFLAGS) -bundle'
1709                 if test "$enable_framework" ; then
1710                         # Link against the framework. All externals should be defined.
1711                         BLDSHARED="$LDSHARED "'$(PYTHONFRAMEWORKDIR)/Versions/$(VERSION)/$(PYTHONFRAMEWORK)'
1712                         LDSHARED="$LDSHARED "'$(PYTHONFRAMEWORKPREFIX)/$(PYTHONFRAMEWORKDIR)/Versions/$(VERSION)/$(PYTHONFRAMEWORK)'
1713                 else
1714                         # No framework. Ignore undefined symbols, assuming they come from Python
1715                         LDSHARED="$LDSHARED -undefined suppress"
1716                 fi ;;
1717         Darwin/1.4*|Darwin/5.*|Darwin/6.*)
1718                 LDSHARED='$(CC) $(LDFLAGS) -bundle'
1719                 if test "$enable_framework" ; then
1720                         # Link against the framework. All externals should be defined.
1721                         BLDSHARED="$LDSHARED "'$(PYTHONFRAMEWORKDIR)/Versions/$(VERSION)/$(PYTHONFRAMEWORK)'
1722                         LDSHARED="$LDSHARED "'$(PYTHONFRAMEWORKPREFIX)/$(PYTHONFRAMEWORKDIR)/Versions/$(VERSION)/$(PYTHONFRAMEWORK)'
1723                 else
1724                         # No framework, use the Python app as bundle-loader
1725                         BLDSHARED="$LDSHARED "'-bundle_loader $(BUILDPYTHON)'
1726                         LDSHARED="$LDSHARED "'-bundle_loader $(BINDIR)/python$(VERSION)$(EXE)'
1727                 fi ;;
1728         Darwin/*)
1729                 # Use -undefined dynamic_lookup whenever possible (10.3 and later).
1730                 # This allows an extension to be used in any Python
1732                 if test ${MACOSX_DEPLOYMENT_TARGET} '>' 10.2
1733                 then
1734                         if test "${enable_universalsdk}"; then
1735                                 LDFLAGS="${UNIVERSAL_ARCH_FLAGS} -isysroot ${UNIVERSALSDK} ${LDFLAGS}"
1736                         fi
1737                         LDSHARED='$(CC) $(LDFLAGS) -bundle -undefined dynamic_lookup'
1738                         BLDSHARED="$LDSHARED"
1739                 else
1740                         LDSHARED='$(CC) $(LDFLAGS) -bundle'
1741                         if test "$enable_framework" ; then
1742                                 # Link against the framework. All externals should be defined.
1743                                 BLDSHARED="$LDSHARED "'$(PYTHONFRAMEWORKDIR)/Versions/$(VERSION)/$(PYTHONFRAMEWORK)'
1744                                 LDSHARED="$LDSHARED "'$(PYTHONFRAMEWORKPREFIX)/$(PYTHONFRAMEWORKDIR)/Versions/$(VERSION)/$(PYTHONFRAMEWORK)'
1745                         else
1746                                 # No framework, use the Python app as bundle-loader
1747                                 BLDSHARED="$LDSHARED "'-bundle_loader $(BUILDPYTHON)'
1748                                 LDSHARED="$LDSHARED "'-bundle_loader $(BINDIR)/python$(VERSION)$(EXE)'
1749                         fi
1750                 fi
1751                 ;;
1752         Linux*|GNU*|QNX*) LDSHARED='$(CC) -shared';;
1753         BSD/OS*/4*) LDSHARED="gcc -shared";;
1754         FreeBSD*)
1755                 if [[ "`$CC -dM -E - </dev/null | grep __ELF__`" != "" ]]
1756                 then
1757                         LDSHARED="$CC -shared ${LDFLAGS}"
1758                 else
1759                         LDSHARED="ld -Bshareable ${LDFLAGS}"
1760                 fi;;
1761         OpenBSD*)
1762                 if [[ "`$CC -dM -E - </dev/null | grep __ELF__`" != "" ]]
1763                 then
1764                                 LDSHARED='$(CC) -shared $(CCSHARED) ${LDFLAGS}'
1765                 else
1766                                 case `uname -r` in
1767                                 [[01]].* | 2.[[0-7]] | 2.[[0-7]].*)
1768                                    LDSHARED="ld -Bshareable ${LDFLAGS}"
1769                                    ;;
1770                                 *)
1771                                    LDSHARED='$(CC) -shared $(CCSHARED) ${LDFLAGS}'
1772                                    ;;
1773                                 esac
1774                 fi;;
1775         NetBSD*|DragonFly*) LDSHARED="cc -shared ${LDFLAGS}";;
1776         OpenUNIX*|UnixWare*)
1777                 if test "$GCC" = "yes"
1778                 then LDSHARED='$(CC) -shared'
1779                 else LDSHARED='$(CC) -G'
1780                 fi;;
1781         SCO_SV*) LDSHARED='$(CC) -Wl,-G,-Bexport';;
1782         CYGWIN*) LDSHARED="gcc -shared -Wl,--enable-auto-image-base";;
1783         atheos*) LDSHARED="gcc -shared";;
1784         *)      LDSHARED="ld";;
1785         esac
1787 AC_MSG_RESULT($LDSHARED)
1788 BLDSHARED=${BLDSHARED-$LDSHARED}
1789 # CCSHARED are the C *flags* used to create objects to go into a shared
1790 # library (module) -- this is only needed for a few systems
1791 AC_MSG_CHECKING(CCSHARED)
1792 if test -z "$CCSHARED"
1793 then
1794         case $ac_sys_system/$ac_sys_release in
1795         SunOS*) if test "$GCC" = yes;
1796                 then CCSHARED="-fPIC";
1797                 elif test `uname -p` = sparc;
1798                 then CCSHARED="-xcode=pic32";
1799                 else CCSHARED="-Kpic";
1800                 fi;;
1801         hp*|HP*) if test "$GCC" = yes;
1802                  then CCSHARED="-fPIC";
1803                  else CCSHARED="+z";
1804                  fi;;
1805         Linux*|GNU*) CCSHARED="-fPIC";;
1806         BSD/OS*/4*) CCSHARED="-fpic";;
1807         FreeBSD*|NetBSD*|OpenBSD*|DragonFly*) CCSHARED="-fPIC";;
1808         OpenUNIX*|UnixWare*)
1809                 if test "$GCC" = "yes"
1810                 then CCSHARED="-fPIC"
1811                 else CCSHARED="-KPIC"
1812                 fi;;
1813         SCO_SV*)
1814                 if test "$GCC" = "yes"
1815                 then CCSHARED="-fPIC"
1816                 else CCSHARED="-Kpic -belf"
1817                 fi;;
1818         IRIX*/6*)  case $CC in
1819                    *gcc*) CCSHARED="-shared";;
1820                    *) CCSHARED="";;
1821                    esac;;
1822         atheos*) CCSHARED="-fPIC";;
1823         esac
1825 AC_MSG_RESULT($CCSHARED)
1826 # LINKFORSHARED are the flags passed to the $(CC) command that links
1827 # the python executable -- this is only needed for a few systems
1828 AC_MSG_CHECKING(LINKFORSHARED)
1829 if test -z "$LINKFORSHARED"
1830 then
1831         case $ac_sys_system/$ac_sys_release in
1832         AIX*)   LINKFORSHARED='-Wl,-bE:Modules/python.exp -lld';;
1833         hp*|HP*)
1834             LINKFORSHARED="-Wl,-E -Wl,+s";;
1835 #           LINKFORSHARED="-Wl,-E -Wl,+s -Wl,+b\$(BINLIBDEST)/lib-dynload";;
1836         BSD/OS/4*) LINKFORSHARED="-Xlinker -export-dynamic";;
1837         Linux*|GNU*) LINKFORSHARED="-Xlinker -export-dynamic";;
1838         # -u libsys_s pulls in all symbols in libsys
1839         Darwin/*) 
1840                 # -u _PyMac_Error is needed to pull in the mac toolbox glue,
1841                 # which is
1842                 # not used by the core itself but which needs to be in the core so
1843                 # that dynamically loaded extension modules have access to it.
1844                 # -prebind is no longer used, because it actually seems to give a
1845                 # slowdown in stead of a speedup, maybe due to the large number of
1846                 # dynamic loads Python does.
1848                 LINKFORSHARED="$extra_undefs"
1849                 if test "$enable_framework"
1850                 then
1851                         LINKFORSHARED="$LINKFORSHARED "'$(PYTHONFRAMEWORKDIR)/Versions/$(VERSION)/$(PYTHONFRAMEWORK)'
1852                 fi
1853                 LINKFORSHARED="$LINKFORSHARED";;
1854         OpenUNIX*|UnixWare*) LINKFORSHARED="-Wl,-Bexport";;
1855         SCO_SV*) LINKFORSHARED="-Wl,-Bexport";;
1856         ReliantUNIX*) LINKFORSHARED="-W1 -Blargedynsym";;
1857         FreeBSD*|NetBSD*|OpenBSD*|DragonFly*) 
1858                 if [[ "`$CC -dM -E - </dev/null | grep __ELF__`" != "" ]]
1859                 then
1860                         LINKFORSHARED="-Wl,--export-dynamic"
1861                 fi;;
1862         SunOS/5*) case $CC in
1863                   *gcc*)
1864                     if $CC -Xlinker --help 2>&1 | grep export-dynamic >/dev/null
1865                     then
1866                         LINKFORSHARED="-Xlinker --export-dynamic"
1867                     fi;;
1868                   esac;;
1869         CYGWIN*)
1870                 if test $enable_shared = "no"
1871                 then
1872                         LINKFORSHARED='-Wl,--out-implib=$(LDLIBRARY)'
1873                 fi;;
1874         QNX*)
1875                 # -Wl,-E causes the symbols to be added to the dynamic
1876                 # symbol table so that they can be found when a module
1877                 # is loaded.  -N 2048K causes the stack size to be set
1878                 # to 2048 kilobytes so that the stack doesn't overflow
1879                 # when running test_compile.py.
1880                 LINKFORSHARED='-Wl,-E -N 2048K';;
1881         esac
1883 AC_MSG_RESULT($LINKFORSHARED)
1886 AC_SUBST(CFLAGSFORSHARED)
1887 AC_MSG_CHECKING(CFLAGSFORSHARED)
1888 if test ! "$LIBRARY" = "$LDLIBRARY"
1889 then
1890         case $ac_sys_system in
1891         CYGWIN*)
1892                 # Cygwin needs CCSHARED when building extension DLLs
1893                 # but not when building the interpreter DLL.
1894                 CFLAGSFORSHARED='';;
1895         *)
1896                 CFLAGSFORSHARED='$(CCSHARED)'
1897         esac
1899 AC_MSG_RESULT($CFLAGSFORSHARED)
1901 # SHLIBS are libraries (except -lc and -lm) to link to the python shared
1902 # library (with --enable-shared).
1903 # For platforms on which shared libraries are not allowed to have unresolved
1904 # symbols, this must be set to $(LIBS) (expanded by make). We do this even
1905 # if it is not required, since it creates a dependency of the shared library
1906 # to LIBS. This, in turn, means that applications linking the shared libpython
1907 # don't need to link LIBS explicitly. The default should be only changed
1908 # on systems where this approach causes problems.
1909 AC_SUBST(SHLIBS)
1910 AC_MSG_CHECKING(SHLIBS)
1911 case "$ac_sys_system" in
1912         *)
1913                 SHLIBS='$(LIBS)';;
1914 esac
1915 AC_MSG_RESULT($SHLIBS)
1918 # checks for libraries
1919 AC_CHECK_LIB(dl, dlopen)        # Dynamic linking for SunOS/Solaris and SYSV
1920 AC_CHECK_LIB(dld, shl_load)     # Dynamic linking for HP-UX
1922 # only check for sem_init if thread support is requested
1923 if test "$with_threads" = "yes" -o -z "$with_threads"; then
1924     AC_SEARCH_LIBS(sem_init, pthread rt posix4) # 'Real Time' functions on Solaris
1925                                                 # posix4 on Solaris 2.6
1926                                                 # pthread (first!) on Linux
1929 # check if we need libintl for locale functions
1930 AC_CHECK_LIB(intl, textdomain,
1931         AC_DEFINE(WITH_LIBINTL, 1,
1932         [Define to 1 if libintl is needed for locale functions.]))
1934 # checks for system dependent C++ extensions support
1935 case "$ac_sys_system" in
1936         AIX*)   AC_MSG_CHECKING(for genuine AIX C++ extensions support)
1937                 AC_TRY_LINK([#include "/usr/lpp/xlC/include/load.h"],
1938                             [loadAndInit("", 0, "")],
1939                             [AC_DEFINE(AIX_GENUINE_CPLUSPLUS, 1,
1940                       [Define for AIX if your compiler is a genuine IBM xlC/xlC_r
1941                        and you want support for AIX C++ shared extension modules.])
1942                              AC_MSG_RESULT(yes)],
1943                             [AC_MSG_RESULT(no)]);;
1944         *) ;;
1945 esac
1947 # Most SVR4 platforms (e.g. Solaris) need -lsocket and -lnsl.
1948 # BeOS' sockets are stashed in libnet.
1949 AC_CHECK_LIB(nsl, t_open, [LIBS="-lnsl $LIBS"]) # SVR4
1950 AC_CHECK_LIB(socket, socket, [LIBS="-lsocket $LIBS"], [], $LIBS) # SVR4 sockets
1952 case "$ac_sys_system" in
1953 BeOS*)
1954 AC_CHECK_LIB(net, socket, [LIBS="-lnet $LIBS"], [], $LIBS) # BeOS
1956 esac
1958 AC_MSG_CHECKING(for --with-libs)
1959 AC_ARG_WITH(libs,
1960             AC_HELP_STRING(--with-libs='lib1 ...', link against additional libs),
1962 AC_MSG_RESULT($withval)
1963 LIBS="$withval $LIBS"
1965 [AC_MSG_RESULT(no)])
1967 # Check for use of the system expat library
1968 AC_MSG_CHECKING(for --with-system-expat)
1969 AC_ARG_WITH(system_expat,
1970             AC_HELP_STRING(--with-system-expat, build pyexpat module using an installed expat library))
1972 AC_MSG_RESULT($with_system_expat)
1974 # Check for use of the system libffi library
1975 AC_MSG_CHECKING(for --with-system-ffi)
1976 AC_ARG_WITH(system_ffi,
1977             AC_HELP_STRING(--with-system-ffi, build _ctypes module using an installed ffi library))
1979 AC_MSG_RESULT($with_system_ffi)
1981 # Check for --with-dbmliborder
1982 AC_MSG_CHECKING(for --with-dbmliborder)
1983 AC_ARG_WITH(dbmliborder,
1984             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'.]),
1986 if test x$with_dbmliborder = xyes
1987 then
1988 AC_MSG_ERROR([proper usage is --with-dbmliborder=db1:db2:...])
1989 else
1990   for db in `echo $with_dbmliborder | sed 's/:/ /g'`; do
1991     if test x$db != xndbm && test x$db != xgdbm && test x$db != xbdb
1992     then
1993       AC_MSG_ERROR([proper usage is --with-dbmliborder=db1:db2:...])
1994     fi
1995   done
1996 fi])
1997 AC_MSG_RESULT($with_dbmliborder)
1999 # Determine if signalmodule should be used.
2000 AC_SUBST(USE_SIGNAL_MODULE)
2001 AC_SUBST(SIGNAL_OBJS)
2002 AC_MSG_CHECKING(for --with-signal-module)
2003 AC_ARG_WITH(signal-module,
2004             AC_HELP_STRING(--with-signal-module, disable/enable signal module))
2006 if test -z "$with_signal_module"
2007 then with_signal_module="yes"
2009 AC_MSG_RESULT($with_signal_module)
2011 if test "${with_signal_module}" = "yes"; then
2012         USE_SIGNAL_MODULE=""
2013         SIGNAL_OBJS=""
2014 else
2015         USE_SIGNAL_MODULE="#"
2016         SIGNAL_OBJS="Parser/intrcheck.o Python/sigcheck.o"
2019 # This is used to generate Setup.config
2020 AC_SUBST(USE_THREAD_MODULE)
2021 USE_THREAD_MODULE=""
2023 AC_MSG_CHECKING(for --with-dec-threads)
2024 AC_SUBST(LDLAST)
2025 AC_ARG_WITH(dec-threads,
2026             AC_HELP_STRING(--with-dec-threads, use DEC Alpha/OSF1 thread-safe libraries),
2028 AC_MSG_RESULT($withval)
2029 LDLAST=-threads
2030 if test "${with_thread+set}" != set; then
2031    with_thread="$withval";
2032 fi],
2033 [AC_MSG_RESULT(no)])
2035 # Templates for things AC_DEFINEd more than once.
2036 # For a single AC_DEFINE, no template is needed.
2037 AH_TEMPLATE(C_THREADS,[Define if you have the Mach cthreads package])
2038 AH_TEMPLATE(_REENTRANT,
2039   [Define to force use of thread-safe errno, h_errno, and other functions])
2040 AH_TEMPLATE(WITH_THREAD,
2041   [Define if you want to compile in rudimentary thread support])
2043 AC_MSG_CHECKING(for --with-threads)
2044 dnl quadrigraphs "@<:@" and "@:>@" produce "[" and "]" in the output
2045 AC_ARG_WITH(threads,
2046             AC_HELP_STRING(--with(out)-threads@<:@=DIRECTORY@:>@, disable/enable thread support))
2048 # --with-thread is deprecated, but check for it anyway
2049 dnl quadrigraphs "@<:@" and "@:>@" produce "[" and "]" in the output
2050 AC_ARG_WITH(thread,
2051             AC_HELP_STRING(--with(out)-thread@<:@=DIRECTORY@:>@, deprecated; use --with(out)-threads),
2052             [with_threads=$with_thread])
2054 if test -z "$with_threads"
2055 then with_threads="yes"
2057 AC_MSG_RESULT($with_threads)
2059 AC_SUBST(THREADOBJ)
2060 if test "$with_threads" = "no"
2061 then
2062     USE_THREAD_MODULE="#"
2063 elif test "$ac_cv_pthread_is_default" = yes
2064 then
2065     AC_DEFINE(WITH_THREAD)
2066     # Defining _REENTRANT on system with POSIX threads should not hurt.
2067     AC_DEFINE(_REENTRANT)
2068     posix_threads=yes
2069     THREADOBJ="Python/thread.o"    
2070 elif test "$ac_cv_kpthread" = "yes"
2071 then
2072     CC="$CC -Kpthread"
2073     if test "$ac_cv_cxx_thread" = "yes"; then
2074         CXX="$CXX -Kpthread"
2075     fi
2076     AC_DEFINE(WITH_THREAD)
2077     posix_threads=yes
2078     THREADOBJ="Python/thread.o"
2079 elif test "$ac_cv_kthread" = "yes"
2080 then
2081     CC="$CC -Kthread"
2082     if test "$ac_cv_cxx_thread" = "yes"; then
2083         CXX="$CXX -Kthread"
2084     fi
2085     AC_DEFINE(WITH_THREAD)
2086     posix_threads=yes
2087     THREADOBJ="Python/thread.o"
2088 elif test "$ac_cv_pthread" = "yes"
2089 then
2090     CC="$CC -pthread"
2091     if test "$ac_cv_cxx_thread" = "yes"; then
2092         CXX="$CXX -pthread"
2093     fi
2094     AC_DEFINE(WITH_THREAD)
2095     posix_threads=yes
2096     THREADOBJ="Python/thread.o"
2097 else
2098     if test ! -z "$with_threads" -a -d "$with_threads"
2099     then LDFLAGS="$LDFLAGS -L$with_threads"
2100     fi
2101     if test ! -z "$withval" -a -d "$withval"
2102     then LDFLAGS="$LDFLAGS -L$withval"
2103     fi
2105     # According to the POSIX spec, a pthreads implementation must
2106     # define _POSIX_THREADS in unistd.h. Some apparently don't
2107     # (e.g. gnu pth with pthread emulation)
2108     AC_MSG_CHECKING(for _POSIX_THREADS in unistd.h)
2109     AC_EGREP_CPP(yes,
2110     [
2111 #include <unistd.h>
2112 #ifdef _POSIX_THREADS
2114 #endif
2115     ], unistd_defines_pthreads=yes, unistd_defines_pthreads=no)
2116     AC_MSG_RESULT($unistd_defines_pthreads)
2118     AC_DEFINE(_REENTRANT)
2119     AC_CHECK_HEADER(cthreads.h, [AC_DEFINE(WITH_THREAD)
2120     AC_DEFINE(C_THREADS)
2121     AC_DEFINE(HURD_C_THREADS, 1,
2122     [Define if you are using Mach cthreads directly under /include])
2123     LIBS="$LIBS -lthreads"
2124     THREADOBJ="Python/thread.o"],[
2125     AC_CHECK_HEADER(mach/cthreads.h, [AC_DEFINE(WITH_THREAD)
2126     AC_DEFINE(C_THREADS)
2127     AC_DEFINE(MACH_C_THREADS, 1,
2128     [Define if you are using Mach cthreads under mach /])
2129     THREADOBJ="Python/thread.o"],[
2130     AC_MSG_CHECKING(for --with-pth)
2131     AC_ARG_WITH([pth],
2132                 AC_HELP_STRING(--with-pth, use GNU pth threading libraries),
2133                 [AC_MSG_RESULT($withval)
2134                   AC_DEFINE([WITH_THREAD])
2135                   AC_DEFINE([HAVE_PTH], 1,
2136                             [Define if you have GNU PTH threads.])
2137                   LIBS="-lpth $LIBS"
2138                   THREADOBJ="Python/thread.o"],
2139                 [AC_MSG_RESULT(no)
2141     # Just looking for pthread_create in libpthread is not enough:
2142     # on HP/UX, pthread.h renames pthread_create to a different symbol name.
2143     # So we really have to include pthread.h, and then link.
2144     _libs=$LIBS
2145     LIBS="$LIBS -lpthread"
2146     AC_MSG_CHECKING([for pthread_create in -lpthread])
2147     AC_TRY_LINK([#include <pthread.h>
2149 void * start_routine (void *arg) { exit (0); }], [
2150 pthread_create (NULL, NULL, start_routine, NULL)], [
2151     AC_MSG_RESULT(yes)
2152     AC_DEFINE(WITH_THREAD)
2153     posix_threads=yes
2154     THREADOBJ="Python/thread.o"],[
2155     LIBS=$_libs
2156     AC_CHECK_FUNC(pthread_detach, [AC_DEFINE(WITH_THREAD)
2157     posix_threads=yes
2158     THREADOBJ="Python/thread.o"],[
2159     AC_CHECK_HEADER(atheos/threads.h, [AC_DEFINE(WITH_THREAD)
2160     AC_DEFINE(ATHEOS_THREADS, 1,
2161     [Define this if you have AtheOS threads.])
2162     THREADOBJ="Python/thread.o"],[
2163     AC_CHECK_HEADER(kernel/OS.h, [AC_DEFINE(WITH_THREAD)
2164     AC_DEFINE(BEOS_THREADS, 1,
2165     [Define this if you have BeOS threads.])
2166     THREADOBJ="Python/thread.o"],[
2167     AC_CHECK_LIB(pthreads, pthread_create, [AC_DEFINE(WITH_THREAD)
2168     posix_threads=yes
2169     LIBS="$LIBS -lpthreads"
2170     THREADOBJ="Python/thread.o"], [
2171     AC_CHECK_LIB(c_r, pthread_create, [AC_DEFINE(WITH_THREAD)
2172     posix_threads=yes
2173     LIBS="$LIBS -lc_r"
2174     THREADOBJ="Python/thread.o"], [
2175     AC_CHECK_LIB(pthread, __pthread_create_system, [AC_DEFINE(WITH_THREAD)
2176     posix_threads=yes
2177     LIBS="$LIBS -lpthread"
2178     THREADOBJ="Python/thread.o"], [
2179     AC_CHECK_LIB(cma, pthread_create, [AC_DEFINE(WITH_THREAD)
2180     posix_threads=yes
2181     LIBS="$LIBS -lcma"
2182     THREADOBJ="Python/thread.o"],[
2183     USE_THREAD_MODULE="#"])
2184     ])])])])])])])])])])
2186     AC_CHECK_LIB(mpc, usconfig, [AC_DEFINE(WITH_THREAD)
2187     LIBS="$LIBS -lmpc"
2188     THREADOBJ="Python/thread.o"
2189     USE_THREAD_MODULE=""])
2191     if test "$posix_threads" != "yes"; then     
2192       AC_CHECK_LIB(thread, thr_create, [AC_DEFINE(WITH_THREAD)
2193       LIBS="$LIBS -lthread"
2194       THREADOBJ="Python/thread.o"
2195       USE_THREAD_MODULE=""])
2196     fi
2198     if test "$USE_THREAD_MODULE" != "#"
2199     then
2200         # If the above checks didn't disable threads, (at least) OSF1
2201         # needs this '-threads' argument during linking.
2202         case $ac_sys_system in
2203         OSF1) LDLAST=-threads;;
2204         esac
2205     fi
2208 if test "$posix_threads" = "yes"; then
2209       if test "$unistd_defines_pthreads" = "no"; then
2210          AC_DEFINE(_POSIX_THREADS, 1,
2211          [Define if you have POSIX threads, 
2212           and your system does not define that.])
2213       fi
2215       # Bug 662787: Using semaphores causes unexplicable hangs on Solaris 8.
2216       case  $ac_sys_system/$ac_sys_release in
2217   SunOS/5.6) AC_DEFINE(HAVE_PTHREAD_DESTRUCTOR, 1,
2218                        Defined for Solaris 2.6 bug in pthread header.)
2219                        ;;
2220       SunOS/5.8) AC_DEFINE(HAVE_BROKEN_POSIX_SEMAPHORES, 1,
2221                        Define if the Posix semaphores do not work on your system)
2222                        ;;
2223       AIX/5) AC_DEFINE(HAVE_BROKEN_POSIX_SEMAPHORES, 1,
2224                        Define if the Posix semaphores do not work on your system)
2225                        ;;
2226       esac
2228       AC_MSG_CHECKING(if PTHREAD_SCOPE_SYSTEM is supported)
2229       AC_CACHE_VAL(ac_cv_pthread_system_supported,
2230       [AC_TRY_RUN([#include <pthread.h>
2231       void *foo(void *parm) {
2232         return NULL;
2233       }
2234       main() {
2235         pthread_attr_t attr;
2236         pthread_t id;
2237         if (pthread_attr_init(&attr)) exit(-1);
2238         if (pthread_attr_setscope(&attr, PTHREAD_SCOPE_SYSTEM)) exit(-1);
2239         if (pthread_create(&id, &attr, foo, NULL)) exit(-1);
2240         exit(0);
2241       }],
2242       ac_cv_pthread_system_supported=yes,
2243       ac_cv_pthread_system_supported=no,
2244       ac_cv_pthread_system_supported=no)
2245       ])
2246       AC_MSG_RESULT($ac_cv_pthread_system_supported)
2247       if test "$ac_cv_pthread_system_supported" = "yes"; then
2248         AC_DEFINE(PTHREAD_SYSTEM_SCHED_SUPPORTED, 1, [Defined if PTHREAD_SCOPE_SYSTEM supported.])
2249       fi
2250       AC_CHECK_FUNCS(pthread_sigmask,
2251         [case $ac_sys_system in
2252         CYGWIN*)
2253           AC_DEFINE(HAVE_BROKEN_PTHREAD_SIGMASK, 1,
2254             [Define if pthread_sigmask() does not work on your system.])
2255             ;;
2256         esac])
2260 # Check for enable-ipv6
2261 AH_TEMPLATE(ENABLE_IPV6, [Define if --enable-ipv6 is specified])
2262 AC_MSG_CHECKING([if --enable-ipv6 is specified])
2263 AC_ARG_ENABLE(ipv6,
2264 [  --enable-ipv6           Enable ipv6 (with ipv4) support
2265   --disable-ipv6          Disable ipv6 support],
2266 [ case "$enableval" in
2267   no)
2268        AC_MSG_RESULT(no)
2269        ipv6=no
2270        ;;
2271   *)   AC_MSG_RESULT(yes)
2272        AC_DEFINE(ENABLE_IPV6)
2273        ipv6=yes
2274        ;;
2275   esac ],
2278 dnl the check does not work on cross compilation case...
2279   AC_TRY_RUN([ /* AF_INET6 available check */
2280 #include <sys/types.h>
2281 #include <sys/socket.h>
2282 main()
2284  if (socket(AF_INET6, SOCK_STREAM, 0) < 0)
2285    exit(1);
2286  else
2287    exit(0);
2290   AC_MSG_RESULT(yes)
2291   ipv6=yes,
2292   AC_MSG_RESULT(no)
2293   ipv6=no,
2294   AC_MSG_RESULT(no)
2295   ipv6=no
2298 if test "$ipv6" = "yes"; then
2299         AC_MSG_CHECKING(if RFC2553 API is available)
2300         AC_TRY_COMPILE([#include <sys/types.h>
2301 #include <netinet/in.h>],
2302         [struct sockaddr_in6 x;
2303 x.sin6_scope_id;],
2304                 AC_MSG_RESULT(yes)
2305                 ipv6=yes,
2306                 AC_MSG_RESULT(no, IPv6 disabled)
2307                 ipv6=no)
2310 if test "$ipv6" = "yes"; then
2311         AC_DEFINE(ENABLE_IPV6)
2315 ipv6type=unknown
2316 ipv6lib=none
2317 ipv6trylibc=no
2319 if test "$ipv6" = "yes"; then
2320         AC_MSG_CHECKING([ipv6 stack type])
2321         for i in inria kame linux-glibc linux-inet6 solaris toshiba v6d zeta;
2322         do
2323                 case $i in
2324                 inria)
2325                         dnl http://www.kame.net/
2326                         AC_EGREP_CPP(yes, [
2327 #include <netinet/in.h>
2328 #ifdef IPV6_INRIA_VERSION
2330 #endif],
2331                                 [ipv6type=$i])
2332                         ;;
2333                 kame)
2334                         dnl http://www.kame.net/
2335                         AC_EGREP_CPP(yes, [
2336 #include <netinet/in.h>
2337 #ifdef __KAME__
2339 #endif],
2340                                 [ipv6type=$i;
2341                                 ipv6lib=inet6
2342                                 ipv6libdir=/usr/local/v6/lib
2343                                 ipv6trylibc=yes])
2344                         ;;
2345                 linux-glibc)
2346                         dnl http://www.v6.linux.or.jp/
2347                         AC_EGREP_CPP(yes, [
2348 #include <features.h>
2349 #if defined(__GLIBC__) && ((__GLIBC__ == 2 && __GLIBC_MINOR__ >= 1) || (__GLIBC__ > 2))
2351 #endif],
2352                                 [ipv6type=$i;
2353                                 ipv6trylibc=yes])
2354                         ;;
2355                 linux-inet6)
2356                         dnl http://www.v6.linux.or.jp/
2357                         if test -d /usr/inet6; then
2358                                 ipv6type=$i
2359                                 ipv6lib=inet6
2360                                 ipv6libdir=/usr/inet6/lib
2361                                 BASECFLAGS="-I/usr/inet6/include $BASECFLAGS"
2362                         fi
2363                         ;;
2364                 solaris)
2365                         if test -f /etc/netconfig; then
2366                           if /usr/xpg4/bin/grep -q tcp6 /etc/netconfig; then
2367                                 ipv6type=$i
2368                                 ipv6trylibc=yes
2369                           fi
2370                         fi
2371                         ;;
2372                 toshiba)
2373                         AC_EGREP_CPP(yes, [
2374 #include <sys/param.h>
2375 #ifdef _TOSHIBA_INET6
2377 #endif],
2378                                 [ipv6type=$i;
2379                                 ipv6lib=inet6;
2380                                 ipv6libdir=/usr/local/v6/lib])
2381                         ;;
2382                 v6d)
2383                         AC_EGREP_CPP(yes, [
2384 #include </usr/local/v6/include/sys/v6config.h>
2385 #ifdef __V6D__
2387 #endif],
2388                                 [ipv6type=$i;
2389                                 ipv6lib=v6;
2390                                 ipv6libdir=/usr/local/v6/lib;
2391                                 BASECFLAGS="-I/usr/local/v6/include $BASECFLAGS"])
2392                         ;;
2393                 zeta)
2394                         AC_EGREP_CPP(yes, [
2395 #include <sys/param.h>
2396 #ifdef _ZETA_MINAMI_INET6
2398 #endif],
2399                                 [ipv6type=$i;
2400                                 ipv6lib=inet6;
2401                                 ipv6libdir=/usr/local/v6/lib])
2402                         ;;
2403                 esac
2404                 if test "$ipv6type" != "unknown"; then
2405                         break
2406                 fi
2407         done
2408         AC_MSG_RESULT($ipv6type)
2411 if test "$ipv6" = "yes" -a "$ipv6lib" != "none"; then
2412         if test -d $ipv6libdir -a -f $ipv6libdir/lib$ipv6lib.a; then
2413                 LIBS="-L$ipv6libdir -l$ipv6lib $LIBS"
2414                 echo "using lib$ipv6lib"
2415         else
2416                 if test $ipv6trylibc = "yes"; then
2417                         echo "using libc"
2418                 else
2419                         echo 'Fatal: no $ipv6lib library found.  cannot continue.'
2420                         echo "You need to fetch lib$ipv6lib.a from appropriate"
2421                         echo 'ipv6 kit and compile beforehand.'
2422                         exit 1
2423                 fi
2424         fi
2427 AC_MSG_CHECKING(for OSX 10.5 SDK or later)
2428 AC_TRY_COMPILE([#include <Carbon/Carbon.h>], FSIORefNum fRef = 0,
2429   AC_DEFINE(HAVE_OSX105_SDK, 1, Define if compiling using MacOS X 10.5 SDK or later.)
2430   AC_MSG_RESULT(yes),
2431   AC_MSG_RESULT(no)
2434 # Check for --with-doc-strings
2435 AC_MSG_CHECKING(for --with-doc-strings)
2436 AC_ARG_WITH(doc-strings,
2437             AC_HELP_STRING(--with(out)-doc-strings, disable/enable documentation strings))
2439 if test -z "$with_doc_strings"
2440 then with_doc_strings="yes"
2442 if test "$with_doc_strings" != "no"
2443 then
2444     AC_DEFINE(WITH_DOC_STRINGS, 1,
2445       [Define if you want documentation strings in extension modules])
2447 AC_MSG_RESULT($with_doc_strings)
2449 # Check for Python-specific malloc support
2450 AC_MSG_CHECKING(for --with-tsc)
2451 AC_ARG_WITH(tsc,
2452 [  --with(out)-tsc         enable/disable timestamp counter profile], [
2453 if test "$withval" != no
2454 then 
2455   AC_DEFINE(WITH_TSC, 1, 
2456     [Define to profile with the Pentium timestamp counter]) 
2457     AC_MSG_RESULT(yes)
2458 else AC_MSG_RESULT(no)
2459 fi],
2460 [AC_MSG_RESULT(no)])
2462 # Check for Python-specific malloc support
2463 AC_MSG_CHECKING(for --with-pymalloc)
2464 AC_ARG_WITH(pymalloc,
2465             AC_HELP_STRING(--with(out)-pymalloc, disable/enable specialized mallocs))
2467 if test -z "$with_pymalloc"
2468 then with_pymalloc="yes"
2470 if test "$with_pymalloc" != "no"
2471 then
2472     AC_DEFINE(WITH_PYMALLOC, 1, 
2473      [Define if you want to compile in Python-specific mallocs])
2475 AC_MSG_RESULT($with_pymalloc)
2477 # Check for Valgrind support
2478 AC_MSG_CHECKING([for --with-valgrind])
2479 AC_ARG_WITH([valgrind],
2480   AC_HELP_STRING([--with-valgrind], [Enable Valgrind support]),,
2481   with_valgrind=no)
2482 AC_MSG_RESULT([$with_valgrind])
2483 if test "$with_valgrind" != no; then
2484     AC_CHECK_HEADER([valgrind/valgrind.h],
2485       [AC_DEFINE([WITH_VALGRIND], 1, [Define if you want pymalloc to be disabled when running under valgrind])],
2486       [AC_MSG_ERROR([Valgrind support requested but headers not available])]
2487     )
2490 # Check for --with-wctype-functions
2491 AC_MSG_CHECKING(for --with-wctype-functions)
2492 AC_ARG_WITH(wctype-functions, 
2493             AC_HELP_STRING(--with-wctype-functions, use wctype.h functions),
2495 if test "$withval" != no
2496 then 
2497   AC_DEFINE(WANT_WCTYPE_FUNCTIONS, 1,
2498   [Define if you want wctype.h functions to be used instead of the
2499    one supplied by Python itself. (see Include/unicodectype.h).]) 
2500   AC_MSG_RESULT(yes)
2501 else AC_MSG_RESULT(no)
2502 fi],
2503 [AC_MSG_RESULT(no)])
2505 # -I${DLINCLDIR} is added to the compile rule for importdl.o
2506 AC_SUBST(DLINCLDIR)
2507 DLINCLDIR=.
2509 # the dlopen() function means we might want to use dynload_shlib.o. some
2510 # platforms, such as AIX, have dlopen(), but don't want to use it.
2511 AC_CHECK_FUNCS(dlopen)
2513 # DYNLOADFILE specifies which dynload_*.o file we will use for dynamic
2514 # loading of modules.
2515 AC_SUBST(DYNLOADFILE)
2516 AC_MSG_CHECKING(DYNLOADFILE)
2517 if test -z "$DYNLOADFILE"
2518 then
2519         case $ac_sys_system/$ac_sys_release in
2520         AIX*) # Use dynload_shlib.c and dlopen() if we have it; otherwise dynload_aix.c
2521         if test "$ac_cv_func_dlopen" = yes
2522         then DYNLOADFILE="dynload_shlib.o"
2523         else DYNLOADFILE="dynload_aix.o"
2524         fi
2525         ;;
2526         BeOS*) DYNLOADFILE="dynload_beos.o";;
2527         hp*|HP*) DYNLOADFILE="dynload_hpux.o";;
2528         # Use dynload_next.c only on 10.2 and below, which don't have native dlopen()
2529         Darwin/@<:@0156@:>@\..*) DYNLOADFILE="dynload_next.o";;
2530         atheos*) DYNLOADFILE="dynload_atheos.o";;
2531         *)
2532         # use dynload_shlib.c and dlopen() if we have it; otherwise stub
2533         # out any dynamic loading
2534         if test "$ac_cv_func_dlopen" = yes
2535         then DYNLOADFILE="dynload_shlib.o"
2536         else DYNLOADFILE="dynload_stub.o"
2537         fi
2538         ;;
2539         esac
2541 AC_MSG_RESULT($DYNLOADFILE)
2542 if test "$DYNLOADFILE" != "dynload_stub.o"
2543 then
2544         AC_DEFINE(HAVE_DYNAMIC_LOADING, 1,
2545         [Defined when any dynamic module loading is enabled.])
2548 # MACHDEP_OBJS can be set to platform-specific object files needed by Python
2550 AC_SUBST(MACHDEP_OBJS)
2551 AC_MSG_CHECKING(MACHDEP_OBJS)
2552 if test -z "$MACHDEP_OBJS"
2553 then
2554         MACHDEP_OBJS=$extra_machdep_objs
2555 else
2556         MACHDEP_OBJS="$MACHDEP_OBJS $extra_machdep_objs"
2558 AC_MSG_RESULT(MACHDEP_OBJS)
2560 # checks for library functions
2561 AC_CHECK_FUNCS(alarm setitimer getitimer bind_textdomain_codeset chown \
2562  clock confstr ctermid execv fchmod fchown fork fpathconf ftime ftruncate \
2563  gai_strerror getgroups getlogin getloadavg getpeername getpgid getpid \
2564  getpriority getresuid getresgid getpwent getspnam getspent getsid getwd \
2565  initgroups kill killpg lchmod lchown lstat mkfifo mknod mktime \
2566  mremap nice pathconf pause plock poll pthread_init \
2567  putenv readlink realpath \
2568  select sem_open sem_timedwait sem_getvalue sem_unlink setegid seteuid \
2569  setgid \
2570  setlocale setregid setreuid setsid setpgid setpgrp setuid setvbuf snprintf \
2571  setlocale setregid setreuid setresuid setresgid \
2572  setsid setpgid setpgrp setuid setvbuf snprintf \
2573  sigaction siginterrupt sigrelse strftime \
2574  sysconf tcgetpgrp tcsetpgrp tempnam timegm times tmpfile tmpnam tmpnam_r \
2575  truncate uname unsetenv utimes waitpid wait3 wait4 wcscoll _getpty)
2577 # For some functions, having a definition is not sufficient, since
2578 # we want to take their address.
2579 AC_MSG_CHECKING(for chroot)
2580 AC_TRY_COMPILE([#include <unistd.h>], void *x=chroot,
2581   AC_DEFINE(HAVE_CHROOT, 1, Define if you have the 'chroot' function.)
2582   AC_MSG_RESULT(yes),
2583   AC_MSG_RESULT(no)
2585 AC_MSG_CHECKING(for link)
2586 AC_TRY_COMPILE([#include <unistd.h>], void *x=link,
2587   AC_DEFINE(HAVE_LINK, 1, Define if you have the 'link' function.)
2588   AC_MSG_RESULT(yes),
2589   AC_MSG_RESULT(no)
2591 AC_MSG_CHECKING(for symlink)
2592 AC_TRY_COMPILE([#include <unistd.h>], void *x=symlink,
2593   AC_DEFINE(HAVE_SYMLINK, 1, Define if you have the 'symlink' function.)
2594   AC_MSG_RESULT(yes),
2595   AC_MSG_RESULT(no)
2597 AC_MSG_CHECKING(for fchdir)
2598 AC_TRY_COMPILE([#include <unistd.h>], void *x=fchdir,
2599   AC_DEFINE(HAVE_FCHDIR, 1, Define if you have the 'fchdir' function.)
2600   AC_MSG_RESULT(yes),
2601   AC_MSG_RESULT(no)
2603 AC_MSG_CHECKING(for fsync)
2604 AC_TRY_COMPILE([#include <unistd.h>], void *x=fsync,
2605   AC_DEFINE(HAVE_FSYNC, 1, Define if you have the 'fsync' function.)
2606   AC_MSG_RESULT(yes),
2607   AC_MSG_RESULT(no)
2609 AC_MSG_CHECKING(for fdatasync)
2610 AC_TRY_COMPILE([#include <unistd.h>], void *x=fdatasync,
2611   AC_DEFINE(HAVE_FDATASYNC, 1, Define if you have the 'fdatasync' function.)
2612   AC_MSG_RESULT(yes),
2613   AC_MSG_RESULT(no)
2615 AC_MSG_CHECKING(for epoll)
2616 AC_TRY_COMPILE([#include <sys/epoll.h>], void *x=epoll_create,
2617   AC_DEFINE(HAVE_EPOLL, 1, Define if you have the 'epoll' functions.)
2618   AC_MSG_RESULT(yes),
2619   AC_MSG_RESULT(no)
2621 AC_MSG_CHECKING(for kqueue)
2622 AC_TRY_COMPILE([
2623 #include <sys/types.h>
2624 #include <sys/event.h>
2625     ], int x=kqueue(),
2626   AC_DEFINE(HAVE_KQUEUE, 1, Define if you have the 'kqueue' functions.)
2627   AC_MSG_RESULT(yes),
2628   AC_MSG_RESULT(no)
2630 # On some systems (eg. FreeBSD 5), we would find a definition of the
2631 # functions ctermid_r, setgroups in the library, but no prototype
2632 # (e.g. because we use _XOPEN_SOURCE). See whether we can take their
2633 # address to avoid compiler warnings and potential miscompilations
2634 # because of the missing prototypes.
2636 AC_MSG_CHECKING(for ctermid_r)
2637 AC_TRY_COMPILE([
2638 #include "confdefs.h" 
2639 #include <stdio.h>
2640 ], void* p = ctermid_r,
2641   AC_DEFINE(HAVE_CTERMID_R, 1, Define if you have the 'ctermid_r' function.)
2642   AC_MSG_RESULT(yes),
2643   AC_MSG_RESULT(no)
2646 AC_MSG_CHECKING(for flock)
2647 AC_TRY_COMPILE([
2648 #include "confdefs.h" 
2649 #include <sys/file.h>
2650 ], void* p = flock,
2651   AC_DEFINE(HAVE_FLOCK, 1, Define if you have the 'flock' function.)
2652   AC_MSG_RESULT(yes),
2653   AC_MSG_RESULT(no)
2656 AC_MSG_CHECKING(for getpagesize)
2657 AC_TRY_COMPILE([
2658 #include "confdefs.h" 
2659 #include <unistd.h>
2660 ], void* p = getpagesize,
2661   AC_DEFINE(HAVE_GETPAGESIZE, 1, Define if you have the 'getpagesize' function.)
2662   AC_MSG_RESULT(yes),
2663   AC_MSG_RESULT(no)
2666 dnl check for true
2667 AC_CHECK_PROGS(TRUE, true, /bin/true)
2669 dnl On some systems (e.g. Solaris 9), hstrerror and inet_aton are in -lresolv
2670 dnl On others, they are in the C library, so we to take no action
2671 AC_CHECK_LIB(c, inet_aton, [$ac_cv_prog_TRUE],
2672   AC_CHECK_LIB(resolv, inet_aton)
2675 # On Tru64, chflags seems to be present, but calling it will
2676 # exit Python
2677 AC_CACHE_CHECK([for chflags], [ac_cv_have_chflags], [dnl
2678 AC_TRY_RUN([[
2679 #include <sys/stat.h>
2680 #include <unistd.h>
2681 int main(int argc, char*argv[])
2683   if(chflags(argv[0], 0) != 0)
2684     return 1;
2685   return 0;
2687 ]], ac_cv_have_chflags=yes,
2688    ac_cv_have_chflags=no,
2689    ac_cv_have_chflags=cross)
2691 if test "$ac_cv_have_chflags" = cross ; then
2692   AC_CHECK_FUNC([chflags], [ac_cv_have_chflags="yes"], [ac_cv_have_chflags="no"])
2694 if test "$ac_cv_have_chflags" = yes ; then
2695   AC_DEFINE(HAVE_CHFLAGS, 1, Define to 1 if you have the `chflags' function.)
2698 AC_CACHE_CHECK([for lchflags], [ac_cv_have_lchflags], [dnl
2699 AC_TRY_RUN([[
2700 #include <sys/stat.h>
2701 #include <unistd.h>
2702 int main(int argc, char*argv[])
2704   if(lchflags(argv[0], 0) != 0)
2705     return 1;
2706   return 0;
2708 ]], ac_cv_have_lchflags=yes,
2709    ac_cv_have_lchflags=no,
2710    ac_cv_have_lchflags=cross)
2712 if test "$ac_cv_have_lchflags" = cross ; then
2713   AC_CHECK_FUNC([lchflags], [ac_cv_have_lchflags="yes"], [ac_cv_have_lchflags="no"])
2715 if test "$ac_cv_have_lchflags" = yes ; then
2716   AC_DEFINE(HAVE_LCHFLAGS, 1, Define to 1 if you have the `lchflags' function.)
2719 dnl Check if system zlib has *Copy() functions
2721 dnl On MacOSX the linker will search for dylibs on the entire linker path
2722 dnl before searching for static libraries. setup.py adds -Wl,-search_paths_first
2723 dnl to revert to a more traditional unix behaviour and make it possible to
2724 dnl override the system libz with a local static library of libz. Temporarily
2725 dnl add that flag to our CFLAGS as well to ensure that we check the version
2726 dnl of libz that will be used by setup.py. 
2727 dnl The -L/usr/local/lib is needed as wel to get the same compilation 
2728 dnl environment as setup.py (and leaving it out can cause configure to use the
2729 dnl wrong version of the library)
2730 case $ac_sys_system/$ac_sys_release in
2731 Darwin/*) 
2732         _CUR_CFLAGS="${CFLAGS}"
2733         _CUR_LDFLAGS="${LDFLAGS}"
2734         CFLAGS="${CFLAGS} -Wl,-search_paths_first"
2735         LDFLAGS="${LDFLAGS} -Wl,-search_paths_first -L/usr/local/lib"
2736         ;;
2737 esac
2739 AC_CHECK_LIB(z, inflateCopy, AC_DEFINE(HAVE_ZLIB_COPY, 1, Define if the zlib library has inflateCopy))
2741 case $ac_sys_system/$ac_sys_release in
2742 Darwin/*) 
2743         CFLAGS="${_CUR_CFLAGS}"
2744         LDFLAGS="${_CUR_LDFLAGS}"
2745         ;;
2746 esac
2748 AC_MSG_CHECKING(for hstrerror)
2749 AC_TRY_LINK([
2750 #include "confdefs.h" 
2751 #include <netdb.h>
2752 ], void* p = hstrerror; hstrerror(0),
2753   AC_DEFINE(HAVE_HSTRERROR, 1, Define if you have the 'hstrerror' function.)
2754   AC_MSG_RESULT(yes),
2755   AC_MSG_RESULT(no)
2758 AC_MSG_CHECKING(for inet_aton)
2759 AC_TRY_LINK([
2760 #include "confdefs.h" 
2761 #include <sys/types.h>
2762 #include <sys/socket.h>
2763 #include <netinet/in.h>
2764 #include <arpa/inet.h>
2765 ], void* p = inet_aton;inet_aton(0,0),
2766   AC_DEFINE(HAVE_INET_ATON, 1, Define if you have the 'inet_aton' function.)
2767   AC_MSG_RESULT(yes),
2768   AC_MSG_RESULT(no)
2771 AC_MSG_CHECKING(for inet_pton)
2772 AC_TRY_COMPILE([
2773 #include "confdefs.h" 
2774 #include <sys/types.h>
2775 #include <sys/socket.h>
2776 #include <netinet/in.h>
2777 #include <arpa/inet.h>
2778 ], void* p = inet_pton,
2779   AC_DEFINE(HAVE_INET_PTON, 1, Define if you have the 'inet_pton' function.)
2780   AC_MSG_RESULT(yes),
2781   AC_MSG_RESULT(no)
2784 # On some systems, setgroups is in unistd.h, on others, in grp.h
2785 AC_MSG_CHECKING(for setgroups)
2786 AC_TRY_COMPILE([
2787 #include "confdefs.h" 
2788 #include <unistd.h>
2789 #ifdef HAVE_GRP_H
2790 #include <grp.h>
2791 #endif
2792 ], 
2793 void* p = setgroups,
2794   AC_DEFINE(HAVE_SETGROUPS, 1, Define if you have the 'setgroups' function.)
2795   AC_MSG_RESULT(yes),
2796   AC_MSG_RESULT(no)
2799 # check for openpty and forkpty
2801 AC_CHECK_FUNCS(openpty,, 
2802    AC_CHECK_LIB(util,openpty,
2803      [AC_DEFINE(HAVE_OPENPTY) LIBS="$LIBS -lutil"],
2804      AC_CHECK_LIB(bsd,openpty, [AC_DEFINE(HAVE_OPENPTY) LIBS="$LIBS -lbsd"])
2805    )
2807 AC_CHECK_FUNCS(forkpty,, 
2808    AC_CHECK_LIB(util,forkpty, 
2809      [AC_DEFINE(HAVE_FORKPTY) LIBS="$LIBS -lutil"],
2810      AC_CHECK_LIB(bsd,forkpty, [AC_DEFINE(HAVE_FORKPTY) LIBS="$LIBS -lbsd"])
2811    )
2814 # Stuff for expat.
2815 AC_CHECK_FUNCS(memmove)
2817 # check for long file support functions
2818 AC_CHECK_FUNCS(fseek64 fseeko fstatvfs ftell64 ftello statvfs)
2820 AC_REPLACE_FUNCS(dup2 getcwd strdup)
2821 AC_CHECK_FUNCS(getpgrp, 
2822   AC_TRY_COMPILE([#include <unistd.h>], 
2823    [getpgrp(0);], 
2824    AC_DEFINE(GETPGRP_HAVE_ARG, 1,
2825    [Define if getpgrp() must be called as getpgrp(0).])
2828 AC_CHECK_FUNCS(setpgrp,
2829   AC_TRY_COMPILE([#include <unistd.h>],
2830     [setpgrp(0,0);],
2831     AC_DEFINE(SETPGRP_HAVE_ARG, 1,
2832     [Define if setpgrp() must be called as setpgrp(0, 0).])
2833   )
2835 AC_CHECK_FUNCS(gettimeofday, 
2836   AC_TRY_COMPILE([#include <sys/time.h>], 
2837     [gettimeofday((struct timeval*)0,(struct timezone*)0);], ,
2838     AC_DEFINE(GETTIMEOFDAY_NO_TZ, 1,
2839     [Define if gettimeofday() does not have second (timezone) argument
2840      This is the case on Motorola V4 (R40V4.2)])
2841   )
2844 AC_MSG_CHECKING(for major, minor, and makedev)
2845 AC_TRY_LINK([
2846 #if defined(MAJOR_IN_MKDEV)
2847 #include <sys/mkdev.h>
2848 #elif defined(MAJOR_IN_SYSMACROS)
2849 #include <sys/sysmacros.h>
2850 #else
2851 #include <sys/types.h>
2852 #endif
2854   makedev(major(0),minor(0));
2856   AC_DEFINE(HAVE_DEVICE_MACROS, 1,
2857             [Define to 1 if you have the device macros.])
2858   AC_MSG_RESULT(yes)
2860   AC_MSG_RESULT(no)
2863 # On OSF/1 V5.1, getaddrinfo is available, but a define
2864 # for [no]getaddrinfo in netdb.h. 
2865 AC_MSG_CHECKING(for getaddrinfo)
2866 AC_TRY_LINK([
2867 #include <sys/types.h>
2868 #include <sys/socket.h>
2869 #include <netdb.h>
2870 #include <stdio.h>
2871 ], [getaddrinfo(NULL, NULL, NULL, NULL);],
2872 have_getaddrinfo=yes,
2873 have_getaddrinfo=no)
2874 AC_MSG_RESULT($have_getaddrinfo)
2875 if test $have_getaddrinfo = yes
2876 then
2877   AC_MSG_CHECKING(getaddrinfo bug)
2878   AC_CACHE_VAL(ac_cv_buggy_getaddrinfo,
2879   AC_TRY_RUN([[
2880 #include <sys/types.h>
2881 #include <netdb.h>
2882 #include <string.h>
2883 #include <sys/socket.h>
2884 #include <netinet/in.h>
2886 int main()
2888   int passive, gaierr, inet4 = 0, inet6 = 0;
2889   struct addrinfo hints, *ai, *aitop;
2890   char straddr[INET6_ADDRSTRLEN], strport[16];
2892   for (passive = 0; passive <= 1; passive++) {
2893     memset(&hints, 0, sizeof(hints));
2894     hints.ai_family = AF_UNSPEC;
2895     hints.ai_flags = passive ? AI_PASSIVE : 0;
2896     hints.ai_socktype = SOCK_STREAM;
2897     hints.ai_protocol = IPPROTO_TCP;
2898     if ((gaierr = getaddrinfo(NULL, "54321", &hints, &aitop)) != 0) {
2899       (void)gai_strerror(gaierr);
2900       goto bad;
2901     }
2902     for (ai = aitop; ai; ai = ai->ai_next) {
2903       if (ai->ai_addr == NULL ||
2904           ai->ai_addrlen == 0 ||
2905           getnameinfo(ai->ai_addr, ai->ai_addrlen,
2906                       straddr, sizeof(straddr), strport, sizeof(strport),
2907                       NI_NUMERICHOST|NI_NUMERICSERV) != 0) {
2908         goto bad;
2909       }
2910       switch (ai->ai_family) {
2911       case AF_INET:
2912         if (strcmp(strport, "54321") != 0) {
2913           goto bad;
2914         }
2915         if (passive) {
2916           if (strcmp(straddr, "0.0.0.0") != 0) {
2917             goto bad;
2918           }
2919         } else {
2920           if (strcmp(straddr, "127.0.0.1") != 0) {
2921             goto bad;
2922           }
2923         }
2924         inet4++;
2925         break;
2926       case AF_INET6:
2927         if (strcmp(strport, "54321") != 0) {
2928           goto bad;
2929         }
2930         if (passive) {
2931           if (strcmp(straddr, "::") != 0) {
2932             goto bad;
2933           }
2934         } else {
2935           if (strcmp(straddr, "::1") != 0) {
2936             goto bad;
2937           }
2938         }
2939         inet6++;
2940         break;
2941       case AF_UNSPEC:
2942         goto bad;
2943         break;
2944       default:
2945         /* another family support? */
2946         break;
2947       }
2948     }
2949   }
2951   if (!(inet4 == 0 || inet4 == 2))
2952     goto bad;
2953   if (!(inet6 == 0 || inet6 == 2))
2954     goto bad;
2956   if (aitop)
2957     freeaddrinfo(aitop);
2958   return 0;
2960  bad:
2961   if (aitop)
2962     freeaddrinfo(aitop);
2963   return 1;
2965 ]], ac_cv_buggy_getaddrinfo=no,
2966     ac_cv_buggy_getaddrinfo=yes,
2967     ac_cv_buggy_getaddrinfo=yes))
2970 if test $have_getaddrinfo = no -o $ac_cv_buggy_getaddrinfo = yes
2971 then
2972         if test $ipv6 = yes
2973         then
2974                 echo 'Fatal: You must get working getaddrinfo() function.'
2975                 echo '       or you can specify "--disable-ipv6"'.
2976                 exit 1
2977         fi
2978 else
2979         AC_DEFINE(HAVE_GETADDRINFO, 1, [Define if you have the getaddrinfo function.])
2981 AC_CHECK_FUNCS(getnameinfo)
2983 # checks for structures
2984 AC_HEADER_TIME
2985 AC_STRUCT_TM
2986 AC_STRUCT_TIMEZONE
2987 AC_CHECK_MEMBERS([struct stat.st_rdev])
2988 AC_CHECK_MEMBERS([struct stat.st_blksize])
2989 AC_CHECK_MEMBERS([struct stat.st_flags])
2990 AC_CHECK_MEMBERS([struct stat.st_gen])
2991 AC_CHECK_MEMBERS([struct stat.st_birthtime])
2992 AC_STRUCT_ST_BLOCKS
2994 AC_MSG_CHECKING(for time.h that defines altzone)
2995 AC_CACHE_VAL(ac_cv_header_time_altzone,
2996 [AC_TRY_COMPILE([#include <time.h>], [return altzone;],
2997   ac_cv_header_time_altzone=yes,
2998   ac_cv_header_time_altzone=no)])
2999 AC_MSG_RESULT($ac_cv_header_time_altzone)
3000 if test $ac_cv_header_time_altzone = yes; then
3001   AC_DEFINE(HAVE_ALTZONE, 1, [Define this if your time.h defines altzone.])
3004 was_it_defined=no
3005 AC_MSG_CHECKING(whether sys/select.h and sys/time.h may both be included)
3006 AC_TRY_COMPILE([
3007 #include <sys/types.h>
3008 #include <sys/select.h>
3009 #include <sys/time.h>
3010 ], [;], [
3011   AC_DEFINE(SYS_SELECT_WITH_SYS_TIME, 1,
3012   [Define if  you can safely include both <sys/select.h> and <sys/time.h>
3013    (which you can't on SCO ODT 3.0).]) 
3014   was_it_defined=yes
3016 AC_MSG_RESULT($was_it_defined)
3018 AC_MSG_CHECKING(for addrinfo)
3019 AC_CACHE_VAL(ac_cv_struct_addrinfo,
3020 AC_TRY_COMPILE([
3021 #               include <netdb.h>],
3022         [struct addrinfo a],
3023         ac_cv_struct_addrinfo=yes,
3024         ac_cv_struct_addrinfo=no))
3025 AC_MSG_RESULT($ac_cv_struct_addrinfo)
3026 if test $ac_cv_struct_addrinfo = yes; then
3027         AC_DEFINE(HAVE_ADDRINFO, 1, [struct addrinfo (netdb.h)])
3030 AC_MSG_CHECKING(for sockaddr_storage)
3031 AC_CACHE_VAL(ac_cv_struct_sockaddr_storage,
3032 AC_TRY_COMPILE([
3033 #               include <sys/types.h>
3034 #               include <sys/socket.h>],
3035         [struct sockaddr_storage s],
3036         ac_cv_struct_sockaddr_storage=yes,
3037         ac_cv_struct_sockaddr_storage=no))
3038 AC_MSG_RESULT($ac_cv_struct_sockaddr_storage)
3039 if test $ac_cv_struct_sockaddr_storage = yes; then
3040         AC_DEFINE(HAVE_SOCKADDR_STORAGE, 1, [struct sockaddr_storage (sys/socket.h)])
3043 # checks for compiler characteristics
3045 AC_C_CHAR_UNSIGNED
3046 AC_C_CONST
3048 works=no
3049 AC_MSG_CHECKING(for working volatile)
3050 AC_TRY_COMPILE([],[volatile int x; x = 0;], works=yes, 
3051   AC_DEFINE(volatile, [], [Define to empty if the keyword does not work.])
3053 AC_MSG_RESULT($works)
3055 works=no
3056 AC_MSG_CHECKING(for working signed char)
3057 AC_TRY_COMPILE([], [signed char c;], works=yes, 
3058   AC_DEFINE(signed, [], [Define to empty if the keyword does not work.])
3060 AC_MSG_RESULT($works)
3062 have_prototypes=no
3063 AC_MSG_CHECKING(for prototypes)
3064 AC_TRY_COMPILE([int foo(int x) { return 0; }], [return foo(10);],[
3065   AC_DEFINE(HAVE_PROTOTYPES, 1, 
3066    [Define if your compiler supports function prototype]) 
3067   have_prototypes=yes
3069 AC_MSG_RESULT($have_prototypes)
3071 works=no
3072 AC_MSG_CHECKING(for variable length prototypes and stdarg.h)
3073 AC_TRY_COMPILE([
3074 #include <stdarg.h>
3075 int foo(int x, ...) {
3076         va_list va;
3077         va_start(va, x);
3078         va_arg(va, int);
3079         va_arg(va, char *);
3080         va_arg(va, double);
3081         return 0;
3083 ], [return foo(10, "", 3.14);], [
3084   AC_DEFINE(HAVE_STDARG_PROTOTYPES, 1,
3085    [Define if your compiler supports variable length function prototypes
3086    (e.g. void fprintf(FILE *, char *, ...);) *and* <stdarg.h>]) 
3087   works=yes
3089 AC_MSG_RESULT($works)
3091 # check for socketpair
3092 AC_MSG_CHECKING(for socketpair)
3093 AC_TRY_COMPILE([
3094 #include <sys/types.h>
3095 #include <sys/socket.h>
3096 ], void *x=socketpair,
3097   AC_DEFINE(HAVE_SOCKETPAIR, 1, Define if you have the 'socketpair' function.)
3098   AC_MSG_RESULT(yes),
3099   AC_MSG_RESULT(no)
3102 # check if sockaddr has sa_len member
3103 AC_MSG_CHECKING(if sockaddr has sa_len member)
3104 AC_TRY_COMPILE([#include <sys/types.h>
3105 #include <sys/socket.h>],
3106 [struct sockaddr x;
3107 x.sa_len = 0;],
3108         AC_MSG_RESULT(yes)
3109         AC_DEFINE(HAVE_SOCKADDR_SA_LEN, 1, [Define if sockaddr has sa_len member]),
3110         AC_MSG_RESULT(no))
3112 va_list_is_array=no
3113 AC_MSG_CHECKING(whether va_list is an array)
3114 AC_TRY_COMPILE([
3115 #ifdef HAVE_STDARG_PROTOTYPES
3116 #include <stdarg.h>
3117 #else
3118 #include <varargs.h>
3119 #endif
3120 ], [va_list list1, list2; list1 = list2;], , [
3121  AC_DEFINE(VA_LIST_IS_ARRAY, 1, [Define if a va_list is an array of some kind]) 
3122  va_list_is_array=yes
3124 AC_MSG_RESULT($va_list_is_array)
3126 # sigh -- gethostbyname_r is a mess; it can have 3, 5 or 6 arguments :-(
3127 AH_TEMPLATE(HAVE_GETHOSTBYNAME_R,
3128   [Define this if you have some version of gethostbyname_r()])
3130 AC_CHECK_FUNC(gethostbyname_r, [
3131   AC_DEFINE(HAVE_GETHOSTBYNAME_R)
3132   AC_MSG_CHECKING([gethostbyname_r with 6 args])
3133   OLD_CFLAGS=$CFLAGS
3134   CFLAGS="$CFLAGS $MY_CPPFLAGS $MY_THREAD_CPPFLAGS $MY_CFLAGS"
3135   AC_TRY_COMPILE([
3136 #   include <netdb.h>
3137   ], [
3138     char *name;
3139     struct hostent *he, *res;
3140     char buffer[2048];
3141     int buflen = 2048;
3142     int h_errnop;
3144     (void) gethostbyname_r(name, he, buffer, buflen, &res, &h_errnop)
3145   ], [
3146     AC_DEFINE(HAVE_GETHOSTBYNAME_R)
3147     AC_DEFINE(HAVE_GETHOSTBYNAME_R_6_ARG, 1,
3148     [Define this if you have the 6-arg version of gethostbyname_r().])
3149     AC_MSG_RESULT(yes)
3150   ], [
3151     AC_MSG_RESULT(no)
3152     AC_MSG_CHECKING([gethostbyname_r with 5 args])
3153     AC_TRY_COMPILE([
3154 #     include <netdb.h>
3155     ], [
3156       char *name;
3157       struct hostent *he;
3158       char buffer[2048];
3159       int buflen = 2048;
3160       int h_errnop;
3162       (void) gethostbyname_r(name, he, buffer, buflen, &h_errnop)
3163     ], [
3164       AC_DEFINE(HAVE_GETHOSTBYNAME_R)
3165       AC_DEFINE(HAVE_GETHOSTBYNAME_R_5_ARG, 1,
3166       [Define this if you have the 5-arg version of gethostbyname_r().])
3167       AC_MSG_RESULT(yes)
3168     ], [
3169       AC_MSG_RESULT(no)
3170       AC_MSG_CHECKING([gethostbyname_r with 3 args])
3171       AC_TRY_COMPILE([
3172 #       include <netdb.h>
3173       ], [
3174         char *name;
3175         struct hostent *he;
3176         struct hostent_data data;
3178         (void) gethostbyname_r(name, he, &data);
3179       ], [
3180         AC_DEFINE(HAVE_GETHOSTBYNAME_R)
3181         AC_DEFINE(HAVE_GETHOSTBYNAME_R_3_ARG, 1,
3182         [Define this if you have the 3-arg version of gethostbyname_r().])
3183         AC_MSG_RESULT(yes)
3184       ], [
3185         AC_MSG_RESULT(no)
3186       ])
3187     ])
3188   ])
3189   CFLAGS=$OLD_CFLAGS
3190 ], [
3191   AC_CHECK_FUNCS(gethostbyname)
3193 AC_SUBST(HAVE_GETHOSTBYNAME_R_6_ARG)
3194 AC_SUBST(HAVE_GETHOSTBYNAME_R_5_ARG)
3195 AC_SUBST(HAVE_GETHOSTBYNAME_R_3_ARG)
3196 AC_SUBST(HAVE_GETHOSTBYNAME_R)
3197 AC_SUBST(HAVE_GETHOSTBYNAME)
3199 # checks for system services
3200 # (none yet)
3202 # Linux requires this for correct f.p. operations
3203 AC_CHECK_FUNC(__fpu_control,
3204   [],
3205   [AC_CHECK_LIB(ieee, __fpu_control)
3208 # Check for --with-fpectl
3209 AC_MSG_CHECKING(for --with-fpectl)
3210 AC_ARG_WITH(fpectl,
3211             AC_HELP_STRING(--with-fpectl, enable SIGFPE catching),
3213 if test "$withval" != no
3214 then 
3215   AC_DEFINE(WANT_SIGFPE_HANDLER, 1,
3216   [Define if you want SIGFPE handled (see Include/pyfpe.h).]) 
3217   AC_MSG_RESULT(yes)
3218 else AC_MSG_RESULT(no)
3219 fi],
3220 [AC_MSG_RESULT(no)])
3222 # check for --with-libm=...
3223 AC_SUBST(LIBM)
3224 case $ac_sys_system in
3225 Darwin) ;;
3226 BeOS) ;;
3227 *) LIBM=-lm
3228 esac
3229 AC_MSG_CHECKING(for --with-libm=STRING)
3230 AC_ARG_WITH(libm,
3231             AC_HELP_STRING(--with-libm=STRING, math library),
3233 if test "$withval" = no
3234 then LIBM=
3235      AC_MSG_RESULT(force LIBM empty)
3236 elif test "$withval" != yes
3237 then LIBM=$withval
3238      AC_MSG_RESULT(set LIBM="$withval")
3239 else AC_MSG_ERROR([proper usage is --with-libm=STRING])
3240 fi],
3241 [AC_MSG_RESULT(default LIBM="$LIBM")])
3243 # check for --with-libc=...
3244 AC_SUBST(LIBC)
3245 AC_MSG_CHECKING(for --with-libc=STRING)
3246 AC_ARG_WITH(libc,
3247             AC_HELP_STRING(--with-libc=STRING, C library),
3249 if test "$withval" = no
3250 then LIBC=
3251      AC_MSG_RESULT(force LIBC empty)
3252 elif test "$withval" != yes
3253 then LIBC=$withval
3254      AC_MSG_RESULT(set LIBC="$withval")
3255 else AC_MSG_ERROR([proper usage is --with-libc=STRING])
3256 fi],
3257 [AC_MSG_RESULT(default LIBC="$LIBC")])
3259 # **************************************************
3260 # * Check for various properties of floating point *
3261 # **************************************************
3263 AC_MSG_CHECKING(whether C doubles are little-endian IEEE 754 binary64)
3264 AC_CACHE_VAL(ac_cv_little_endian_double, [
3265 AC_TRY_RUN([
3266 #include <string.h>
3267 int main() {
3268     double x = 9006104071832581.0;
3269     if (memcmp(&x, "\x05\x04\x03\x02\x01\xff\x3f\x43", 8) == 0)
3270         return 0;
3271     else
3272         return 1;
3275 ac_cv_little_endian_double=yes,
3276 ac_cv_little_endian_double=no,
3277 ac_cv_little_endian_double=no)])
3278 AC_MSG_RESULT($ac_cv_little_endian_double)
3279 if test "$ac_cv_little_endian_double" = yes
3280 then
3281   AC_DEFINE(DOUBLE_IS_LITTLE_ENDIAN_IEEE754, 1,
3282   [Define if C doubles are 64-bit IEEE 754 binary format, stored
3283    with the least significant byte first])
3286 AC_MSG_CHECKING(whether C doubles are big-endian IEEE 754 binary64)
3287 AC_CACHE_VAL(ac_cv_big_endian_double, [
3288 AC_TRY_RUN([
3289 #include <string.h>
3290 int main() {
3291     double x = 9006104071832581.0;
3292     if (memcmp(&x, "\x43\x3f\xff\x01\x02\x03\x04\x05", 8) == 0)
3293         return 0;
3294     else
3295         return 1;
3298 ac_cv_big_endian_double=yes,
3299 ac_cv_big_endian_double=no,
3300 ac_cv_big_endian_double=no)])
3301 AC_MSG_RESULT($ac_cv_big_endian_double)
3302 if test "$ac_cv_big_endian_double" = yes
3303 then
3304   AC_DEFINE(DOUBLE_IS_BIG_ENDIAN_IEEE754, 1,
3305   [Define if C doubles are 64-bit IEEE 754 binary format, stored
3306    with the most significant byte first])
3309 # Some ARM platforms use a mixed-endian representation for doubles.
3310 # While Python doesn't currently have full support for these platforms
3311 # (see e.g., issue 1762561), we can at least make sure that float <-> string
3312 # conversions work.
3313 AC_MSG_CHECKING(whether C doubles are ARM mixed-endian IEEE 754 binary64)
3314 AC_CACHE_VAL(ac_cv_mixed_endian_double, [
3315 AC_TRY_RUN([
3316 #include <string.h>
3317 int main() {
3318     double x = 9006104071832581.0;
3319     if (memcmp(&x, "\x01\xff\x3f\x43\x05\x04\x03\x02", 8) == 0)
3320         return 0;
3321     else
3322         return 1;
3325 ac_cv_mixed_endian_double=yes,
3326 ac_cv_mixed_endian_double=no,
3327 ac_cv_mixed_endian_double=no)])
3328 AC_MSG_RESULT($ac_cv_mixed_endian_double)
3329 if test "$ac_cv_mixed_endian_double" = yes
3330 then
3331   AC_DEFINE(DOUBLE_IS_ARM_MIXED_ENDIAN_IEEE754, 1,
3332   [Define if C doubles are 64-bit IEEE 754 binary format, stored
3333    in ARM mixed-endian order (byte order 45670123)])
3336 # The short float repr introduced in Python 3.1 requires the
3337 # correctly-rounded string <-> double conversion functions from
3338 # Python/dtoa.c, which in turn require that the FPU uses 53-bit
3339 # rounding; this is a problem on x86, where the x87 FPU has a default
3340 # rounding precision of 64 bits.  For gcc/x86, we can fix this by
3341 # using inline assembler to get and set the x87 FPU control word.
3343 # This inline assembler syntax may also work for suncc and icc,
3344 # so we try it on all platforms.
3346 AC_MSG_CHECKING(whether we can use gcc inline assembler to get and set x87 control word)
3347 AC_TRY_COMPILE([], [
3348   unsigned short cw;
3349   __asm__ __volatile__ ("fnstcw %0" : "=m" (cw));
3350   __asm__ __volatile__ ("fldcw %0" : : "m" (cw));
3352 [have_gcc_asm_for_x87=yes], [have_gcc_asm_for_x87=no])
3353 AC_MSG_RESULT($have_gcc_asm_for_x87)
3354 if test "$have_gcc_asm_for_x87" = yes
3355 then
3356     AC_DEFINE(HAVE_GCC_ASM_FOR_X87, 1,
3357     [Define if we can use gcc inline assembler to get and set x87 control word])
3360 # Detect whether system arithmetic is subject to x87-style double
3361 # rounding issues.  The result of this test has little meaning on non
3362 # IEEE 754 platforms.  On IEEE 754, test should return 1 if rounding
3363 # mode is round-to-nearest and double rounding issues are present, and
3364 # 0 otherwise.  See http://bugs.python.org/issue2937 for more info.
3365 AC_MSG_CHECKING(for x87-style double rounding)
3366 # $BASECFLAGS may affect the result
3367 ac_save_cc="$CC"
3368 CC="$CC $BASECFLAGS"
3369 AC_TRY_RUN([
3370 #include <stdlib.h>
3371 #include <math.h>
3372 int main() {
3373     volatile double x, y, z;
3374     /* 1./(1-2**-53) -> 1+2**-52 (correct), 1.0 (double rounding) */
3375     x = 0.99999999999999989; /* 1-2**-53 */
3376     y = 1./x;
3377     if (y != 1.)
3378         exit(0);
3379     /* 1e16+2.99999 -> 1e16+2. (correct), 1e16+4. (double rounding) */
3380     x = 1e16;
3381     y = 2.99999;
3382     z = x + y;
3383     if (z != 1e16+4.)
3384         exit(0);
3385     /* both tests show evidence of double rounding */
3386     exit(1);
3389 ac_cv_x87_double_rounding=no,
3390 ac_cv_x87_double_rounding=yes,
3391 ac_cv_x87_double_rounding=no)
3392 CC="$ac_save_cc"
3393 AC_MSG_RESULT($ac_cv_x87_double_rounding)
3394 if test "$ac_cv_x87_double_rounding" = yes
3395 then
3396   AC_DEFINE(X87_DOUBLE_ROUNDING, 1,
3397   [Define if arithmetic is subject to x87-style double rounding issue])
3400 # ************************************
3401 # * Check for mathematical functions *
3402 # ************************************
3404 LIBS_SAVE=$LIBS
3405 LIBS="$LIBS $LIBM"
3407 # On FreeBSD 6.2, it appears that tanh(-0.) returns 0. instead of
3408 # -0. on some architectures.
3409 AC_MSG_CHECKING(whether tanh preserves the sign of zero)
3410 AC_CACHE_VAL(ac_cv_tanh_preserves_zero_sign, [
3411 AC_TRY_RUN([
3412 #include <math.h>
3413 #include <stdlib.h>
3414 int main() {
3415     /* return 0 if either negative zeros don't exist
3416        on this platform or if negative zeros exist
3417        and tanh(-0.) == -0. */
3418   if (atan2(0., -1.) == atan2(-0., -1.) ||
3419       atan2(tanh(-0.), -1.) == atan2(-0., -1.)) exit(0);
3420   else exit(1);
3423 ac_cv_tanh_preserves_zero_sign=yes,
3424 ac_cv_tanh_preserves_zero_sign=no,
3425 ac_cv_tanh_preserves_zero_sign=no)])
3426 AC_MSG_RESULT($ac_cv_tanh_preserves_zero_sign)
3427 if test "$ac_cv_tanh_preserves_zero_sign" = yes
3428 then
3429   AC_DEFINE(TANH_PRESERVES_ZERO_SIGN, 1,
3430   [Define if tanh(-0.) is -0., or if platform doesn't have signed zeros])
3433 AC_CHECK_FUNCS([acosh asinh atanh copysign erf erfc expm1 finite gamma])
3434 AC_CHECK_FUNCS([hypot lgamma log1p round tgamma])
3435 AC_CHECK_DECLS([isinf, isnan, isfinite], [], [], [[#include <math.h>]])
3437 LIBS=$LIBS_SAVE
3439 # For multiprocessing module, check that sem_open
3440 # actually works.  For FreeBSD versions <= 7.2,
3441 # the kernel module that provides POSIX semaphores
3442 # isn't loaded by default, so an attempt to call
3443 # sem_open results in a 'Signal 12' error.
3444 AC_MSG_CHECKING(whether POSIX semaphores are enabled)
3445 AC_CACHE_VAL(ac_cv_posix_semaphores_enabled,
3446 AC_TRY_RUN([
3447 #include <unistd.h>
3448 #include <fcntl.h>
3449 #include <stdio.h>
3450 #include <semaphore.h>
3451 #include <sys/stat.h>
3453 int main(void) {
3454   sem_t *a = sem_open("/autoconf", O_CREAT, S_IRUSR|S_IWUSR, 0);
3455   if (a == SEM_FAILED) {
3456     perror("sem_open");
3457     return 1;
3458   }
3459   sem_close(a);
3460   sem_unlink("/autoconf");
3461   return 0;
3463 ], ac_cv_posix_semaphores_enabled=yes,
3464    ac_cv_posix_semaphores_enabled=no,
3465    ac_cv_posix_semaphores_enabled=yes)
3467 AC_MSG_RESULT($ac_cv_posix_semaphores_enabled)
3468 if test $ac_cv_posix_semaphores_enabled = no
3469 then
3470   AC_DEFINE(POSIX_SEMAPHORES_NOT_ENABLED, 1,
3471             [Define if POSIX semaphores aren't enabled on your system])
3474 # Multiprocessing check for broken sem_getvalue
3475 AC_MSG_CHECKING(for broken sem_getvalue)
3476 AC_CACHE_VAL(ac_cv_broken_sem_getvalue,
3477 AC_TRY_RUN([
3478 #include <unistd.h>
3479 #include <fcntl.h>
3480 #include <stdio.h>
3481 #include <semaphore.h>
3482 #include <sys/stat.h>
3484 int main(void){
3485   sem_t *a = sem_open("/autocftw", O_CREAT, S_IRUSR|S_IWUSR, 0);
3486   int count;
3487   int res;
3488   if(a==SEM_FAILED){
3489     perror("sem_open");
3490     return 1;
3492   }
3493   res = sem_getvalue(a, &count);
3494   sem_close(a);
3495   sem_unlink("/autocftw");
3496   return res==-1 ? 1 : 0;
3498 ], ac_cv_broken_sem_getvalue=no,
3499    ac_cv_broken_sem_getvalue=yes,
3500    ac_cv_broken_sem_getvalue=yes)
3502 AC_MSG_RESULT($ac_cv_broken_sem_getvalue)
3503 if test $ac_cv_broken_sem_getvalue = yes
3504 then
3505   AC_DEFINE(HAVE_BROKEN_SEM_GETVALUE, 1,
3506   [define to 1 if your sem_getvalue is broken.])
3509 # determine what size digit to use for Python's longs
3510 AC_MSG_CHECKING([digit size for Python's longs])
3511 AC_ARG_ENABLE(big-digits,
3512 AC_HELP_STRING([--enable-big-digits@<:@=BITS@:>@],[use big digits for Python longs [[BITS=30]]]),
3513 [case $enable_big_digits in
3514 yes)
3515   enable_big_digits=30 ;;
3517   enable_big_digits=15 ;;
3518 [15|30])
3519   ;;
3521   AC_MSG_ERROR([bad value $enable_big_digits for --enable-big-digits; value should be 15 or 30]) ;;
3522 esac
3523 AC_MSG_RESULT($enable_big_digits)
3524 AC_DEFINE_UNQUOTED(PYLONG_BITS_IN_DIGIT, $enable_big_digits, [Define as the preferred size in bits of long digits])
3526 [AC_MSG_RESULT(no value specified)])
3528 # check for wchar.h
3529 AC_CHECK_HEADER(wchar.h, [
3530   AC_DEFINE(HAVE_WCHAR_H, 1, 
3531   [Define if the compiler provides a wchar.h header file.]) 
3532   wchar_h="yes"
3534 wchar_h="no"
3537 # determine wchar_t size
3538 if test "$wchar_h" = yes
3539 then
3540   AC_CHECK_SIZEOF(wchar_t, 4, [#include <wchar.h>])
3543 AC_MSG_CHECKING(for UCS-4 tcl)
3544 have_ucs4_tcl=no
3545 AC_TRY_COMPILE([
3546 #include <tcl.h>
3547 #if TCL_UTF_MAX != 6
3548 # error "NOT UCS4_TCL"
3549 #endif], [], [
3550   AC_DEFINE(HAVE_UCS4_TCL, 1, [Define this if you have tcl and TCL_UTF_MAX==6])
3551   have_ucs4_tcl=yes
3553 AC_MSG_RESULT($have_ucs4_tcl)
3555 # check whether wchar_t is signed or not
3556 if test "$wchar_h" = yes
3557 then
3558   # check whether wchar_t is signed or not
3559   AC_MSG_CHECKING(whether wchar_t is signed)
3560   AC_CACHE_VAL(ac_cv_wchar_t_signed, [
3561   AC_TRY_RUN([
3562   #include <wchar.h>
3563   int main()
3564   {
3565         /* Success: exit code 0 */
3566         exit((((wchar_t) -1) < ((wchar_t) 0)) ? 0 : 1);
3567   }
3568   ],
3569   ac_cv_wchar_t_signed=yes,
3570   ac_cv_wchar_t_signed=no,
3571   ac_cv_wchar_t_signed=yes)])
3572   AC_MSG_RESULT($ac_cv_wchar_t_signed)
3574   
3575 AC_MSG_CHECKING(what type to use for unicode)
3576 dnl quadrigraphs "@<:@" and "@:>@" produce "[" and "]" in the output
3577 AC_ARG_ENABLE(unicode, 
3578               AC_HELP_STRING(--enable-unicode@<:@=ucs@<:@24@:>@@:>@, Enable Unicode strings (default is yes)),
3579               [],
3580               [enable_unicode=yes])
3582 if test $enable_unicode = yes
3583 then
3584   # Without any arguments, Py_UNICODE defaults to two-byte mode
3585   case "$have_ucs4_tcl" in
3586   yes) enable_unicode="ucs4"
3587        ;;
3588   *)   enable_unicode="ucs2"
3589        ;;
3590   esac
3593 AH_TEMPLATE(Py_UNICODE_SIZE,
3594   [Define as the size of the unicode type.])
3595 case "$enable_unicode" in
3596 ucs2) unicode_size="2"
3597       AC_DEFINE(Py_UNICODE_SIZE,2)
3598       ;;
3599 ucs4) unicode_size="4"
3600       AC_DEFINE(Py_UNICODE_SIZE,4)
3601       ;;
3602 esac
3604 AH_TEMPLATE(PY_UNICODE_TYPE,
3605   [Define as the integral type used for Unicode representation.])
3607 AC_SUBST(UNICODE_OBJS)
3608 if test "$enable_unicode" = "no"
3609 then
3610   UNICODE_OBJS=""
3611   AC_MSG_RESULT(not used)
3612 else
3613   UNICODE_OBJS="Objects/unicodeobject.o Objects/unicodectype.o"
3614   AC_DEFINE(Py_USING_UNICODE, 1,
3615   [Define if you want to have a Unicode type.])
3617   # wchar_t is only usable if it maps to an unsigned type
3618   if test "$unicode_size" = "$ac_cv_sizeof_wchar_t" \
3619           -a "$ac_cv_wchar_t_signed" = "no"
3620   then
3621     PY_UNICODE_TYPE="wchar_t"
3622     AC_DEFINE(HAVE_USABLE_WCHAR_T, 1,
3623     [Define if you have a useable wchar_t type defined in wchar.h; useable
3624      means wchar_t must be an unsigned type with at least 16 bits. (see
3625      Include/unicodeobject.h).])
3626     AC_DEFINE(PY_UNICODE_TYPE,wchar_t)
3627   elif test "$ac_cv_sizeof_short" = "$unicode_size"
3628   then
3629        PY_UNICODE_TYPE="unsigned short"
3630        AC_DEFINE(PY_UNICODE_TYPE,unsigned short)
3631   elif test "$ac_cv_sizeof_long" = "$unicode_size"
3632   then
3633        PY_UNICODE_TYPE="unsigned long"
3634        AC_DEFINE(PY_UNICODE_TYPE,unsigned long)
3635   else
3636        PY_UNICODE_TYPE="no type found"
3637   fi
3638   AC_MSG_RESULT($PY_UNICODE_TYPE)
3641 # check for endianness
3642 AC_C_BIGENDIAN
3644 # Check whether right shifting a negative integer extends the sign bit
3645 # or fills with zeros (like the Cray J90, according to Tim Peters).
3646 AC_MSG_CHECKING(whether right shift extends the sign bit)
3647 AC_CACHE_VAL(ac_cv_rshift_extends_sign, [
3648 AC_TRY_RUN([
3649 int main()
3651         exit(((-1)>>3 == -1) ? 0 : 1);
3654 ac_cv_rshift_extends_sign=yes,
3655 ac_cv_rshift_extends_sign=no,
3656 ac_cv_rshift_extends_sign=yes)])
3657 AC_MSG_RESULT($ac_cv_rshift_extends_sign)
3658 if test "$ac_cv_rshift_extends_sign" = no
3659 then
3660   AC_DEFINE(SIGNED_RIGHT_SHIFT_ZERO_FILLS, 1,
3661   [Define if i>>j for signed int i does not extend the sign bit
3662    when i < 0])
3665 # check for getc_unlocked and related locking functions
3666 AC_MSG_CHECKING(for getc_unlocked() and friends)
3667 AC_CACHE_VAL(ac_cv_have_getc_unlocked, [
3668 AC_TRY_LINK([#include <stdio.h>],[
3669         FILE *f = fopen("/dev/null", "r");
3670         flockfile(f);
3671         getc_unlocked(f);
3672         funlockfile(f);
3673 ], ac_cv_have_getc_unlocked=yes, ac_cv_have_getc_unlocked=no)])
3674 AC_MSG_RESULT($ac_cv_have_getc_unlocked)
3675 if test "$ac_cv_have_getc_unlocked" = yes
3676 then
3677   AC_DEFINE(HAVE_GETC_UNLOCKED, 1,
3678   [Define this if you have flockfile(), getc_unlocked(), and funlockfile()])
3681 # check where readline lives
3682 # save the value of LIBS so we don't actually link Python with readline
3683 LIBS_no_readline=$LIBS
3685 # On some systems we need to link readline to a termcap compatible
3686 # library.  NOTE: Keep the precedence of listed libraries synchronised
3687 # with setup.py.
3688 py_cv_lib_readline=no
3689 AC_MSG_CHECKING([how to link readline libs])
3690 for py_libtermcap in "" ncursesw ncurses curses termcap; do
3691   if test -z "$py_libtermcap"; then
3692     READLINE_LIBS="-lreadline"
3693   else
3694     READLINE_LIBS="-lreadline -l$py_libtermcap"
3695   fi
3696   LIBS="$READLINE_LIBS $LIBS_no_readline"
3697   AC_LINK_IFELSE(
3698     [AC_LANG_CALL([],[readline])],
3699     [py_cv_lib_readline=yes])
3700   if test $py_cv_lib_readline = yes; then
3701     break
3702   fi
3703 done
3704 # Uncomment this line if you want to use READINE_LIBS in Makefile or scripts
3705 #AC_SUBST([READLINE_LIBS])
3706 if test $py_cv_lib_readline = no; then
3707   AC_MSG_RESULT([none])
3708 else
3709   AC_MSG_RESULT([$READLINE_LIBS])
3710   AC_DEFINE(HAVE_LIBREADLINE, 1,
3711     [Define if you have the readline library (-lreadline).])
3714 # check for readline 2.1
3715 AC_CHECK_LIB(readline, rl_callback_handler_install,
3716         AC_DEFINE(HAVE_RL_CALLBACK, 1,
3717         [Define if you have readline 2.1]), ,$READLINE_LIBS)
3719 # check for readline 2.2
3720 AC_TRY_CPP([#include <readline/readline.h>],
3721 have_readline=yes, have_readline=no)
3722 if test $have_readline = yes
3723 then
3724   AC_EGREP_HEADER([extern int rl_completion_append_character;],
3725   [readline/readline.h],
3726   AC_DEFINE(HAVE_RL_COMPLETION_APPEND_CHARACTER, 1,
3727   [Define if you have readline 2.2]), )
3728   AC_EGREP_HEADER([extern int rl_completion_suppress_append;],
3729   [readline/readline.h],
3730   AC_DEFINE(HAVE_RL_COMPLETION_SUPPRESS_APPEND, 1,
3731   [Define if you have rl_completion_suppress_append]), )
3734 # check for readline 4.0
3735 AC_CHECK_LIB(readline, rl_pre_input_hook,
3736         AC_DEFINE(HAVE_RL_PRE_INPUT_HOOK, 1,
3737         [Define if you have readline 4.0]), ,$READLINE_LIBS)
3739 # also in 4.0
3740 AC_CHECK_LIB(readline, rl_completion_display_matches_hook,
3741         AC_DEFINE(HAVE_RL_COMPLETION_DISPLAY_MATCHES_HOOK, 1,
3742         [Define if you have readline 4.0]), ,$READLINE_LIBS)
3744 # check for readline 4.2
3745 AC_CHECK_LIB(readline, rl_completion_matches,
3746         AC_DEFINE(HAVE_RL_COMPLETION_MATCHES, 1,
3747         [Define if you have readline 4.2]), ,$READLINE_LIBS)
3749 # also in readline 4.2
3750 AC_TRY_CPP([#include <readline/readline.h>],
3751 have_readline=yes, have_readline=no)
3752 if test $have_readline = yes
3753 then
3754   AC_EGREP_HEADER([extern int rl_catch_signals;],
3755   [readline/readline.h],
3756   AC_DEFINE(HAVE_RL_CATCH_SIGNAL, 1,
3757   [Define if you can turn off readline's signal handling.]), )
3760 # End of readline checks: restore LIBS
3761 LIBS=$LIBS_no_readline
3763 AC_MSG_CHECKING(for broken nice())
3764 AC_CACHE_VAL(ac_cv_broken_nice, [
3765 AC_TRY_RUN([
3766 int main()
3768         int val1 = nice(1);
3769         if (val1 != -1 && val1 == nice(2))
3770                 exit(0);
3771         exit(1);
3774 ac_cv_broken_nice=yes,
3775 ac_cv_broken_nice=no,
3776 ac_cv_broken_nice=no)])
3777 AC_MSG_RESULT($ac_cv_broken_nice)
3778 if test "$ac_cv_broken_nice" = yes
3779 then
3780   AC_DEFINE(HAVE_BROKEN_NICE, 1,
3781   [Define if nice() returns success/failure instead of the new priority.])
3784 AC_MSG_CHECKING(for broken poll())
3785 AC_CACHE_VAL(ac_cv_broken_poll,
3786 AC_TRY_RUN([
3787 #include <poll.h>
3789 int main()
3791     struct pollfd poll_struct = { 42, POLLIN|POLLPRI|POLLOUT, 0 };
3792     int poll_test;
3794     close (42);
3796     poll_test = poll(&poll_struct, 1, 0);
3797     if (poll_test < 0)
3798         return 0;
3799     else if (poll_test == 0 && poll_struct.revents != POLLNVAL)
3800         return 0;
3801     else
3802         return 1;
3805 ac_cv_broken_poll=yes,
3806 ac_cv_broken_poll=no,
3807 ac_cv_broken_poll=no))
3808 AC_MSG_RESULT($ac_cv_broken_poll)
3809 if test "$ac_cv_broken_poll" = yes
3810 then
3811   AC_DEFINE(HAVE_BROKEN_POLL, 1,
3812       [Define if poll() sets errno on invalid file descriptors.])
3815 # Before we can test tzset, we need to check if struct tm has a tm_zone 
3816 # (which is not required by ISO C or UNIX spec) and/or if we support
3817 # tzname[]
3818 AC_STRUCT_TIMEZONE
3820 # check tzset(3) exists and works like we expect it to
3821 AC_MSG_CHECKING(for working tzset())
3822 AC_CACHE_VAL(ac_cv_working_tzset, [
3823 AC_TRY_RUN([
3824 #include <stdlib.h>
3825 #include <time.h>
3826 #include <string.h>
3828 #if HAVE_TZNAME
3829 extern char *tzname[];
3830 #endif
3832 int main()
3834         /* Note that we need to ensure that not only does tzset(3)
3835            do 'something' with localtime, but it works as documented
3836            in the library reference and as expected by the test suite.
3837            This includes making sure that tzname is set properly if
3838            tm->tm_zone does not exist since it is the alternative way
3839            of getting timezone info.
3841            Red Hat 6.2 doesn't understand the southern hemisphere 
3842            after New Year's Day.
3843         */
3845         time_t groundhogday = 1044144000; /* GMT-based */
3846         time_t midyear = groundhogday + (365 * 24 * 3600 / 2);
3848         putenv("TZ=UTC+0");
3849         tzset();
3850         if (localtime(&groundhogday)->tm_hour != 0)
3851             exit(1);
3852 #if HAVE_TZNAME
3853         /* For UTC, tzname[1] is sometimes "", sometimes "   " */
3854         if (strcmp(tzname[0], "UTC") || 
3855                 (tzname[1][0] != 0 && tzname[1][0] != ' '))
3856             exit(1);
3857 #endif
3859         putenv("TZ=EST+5EDT,M4.1.0,M10.5.0");
3860         tzset();
3861         if (localtime(&groundhogday)->tm_hour != 19)
3862             exit(1);
3863 #if HAVE_TZNAME
3864         if (strcmp(tzname[0], "EST") || strcmp(tzname[1], "EDT"))
3865             exit(1);
3866 #endif
3868         putenv("TZ=AEST-10AEDT-11,M10.5.0,M3.5.0");
3869         tzset();
3870         if (localtime(&groundhogday)->tm_hour != 11)
3871             exit(1);
3872 #if HAVE_TZNAME
3873         if (strcmp(tzname[0], "AEST") || strcmp(tzname[1], "AEDT"))
3874             exit(1);
3875 #endif
3877 #if HAVE_STRUCT_TM_TM_ZONE
3878         if (strcmp(localtime(&groundhogday)->tm_zone, "AEDT"))
3879             exit(1);
3880         if (strcmp(localtime(&midyear)->tm_zone, "AEST"))
3881             exit(1);
3882 #endif
3884         exit(0);
3887 ac_cv_working_tzset=yes,
3888 ac_cv_working_tzset=no,
3889 ac_cv_working_tzset=no)])
3890 AC_MSG_RESULT($ac_cv_working_tzset)
3891 if test "$ac_cv_working_tzset" = yes
3892 then
3893   AC_DEFINE(HAVE_WORKING_TZSET, 1,
3894   [Define if tzset() actually switches the local timezone in a meaningful way.])
3897 # Look for subsecond timestamps in struct stat
3898 AC_MSG_CHECKING(for tv_nsec in struct stat)
3899 AC_CACHE_VAL(ac_cv_stat_tv_nsec,
3900 AC_TRY_COMPILE([#include <sys/stat.h>], [
3901 struct stat st;
3902 st.st_mtim.tv_nsec = 1;
3904 ac_cv_stat_tv_nsec=yes,
3905 ac_cv_stat_tv_nsec=no,
3906 ac_cv_stat_tv_nsec=no))
3907 AC_MSG_RESULT($ac_cv_stat_tv_nsec)
3908 if test "$ac_cv_stat_tv_nsec" = yes
3909 then
3910   AC_DEFINE(HAVE_STAT_TV_NSEC, 1,
3911   [Define if you have struct stat.st_mtim.tv_nsec])
3914 # Look for BSD style subsecond timestamps in struct stat
3915 AC_MSG_CHECKING(for tv_nsec2 in struct stat)
3916 AC_CACHE_VAL(ac_cv_stat_tv_nsec2,
3917 AC_TRY_COMPILE([#include <sys/stat.h>], [
3918 struct stat st;
3919 st.st_mtimespec.tv_nsec = 1;
3921 ac_cv_stat_tv_nsec2=yes,
3922 ac_cv_stat_tv_nsec2=no,
3923 ac_cv_stat_tv_nsec2=no))
3924 AC_MSG_RESULT($ac_cv_stat_tv_nsec2)
3925 if test "$ac_cv_stat_tv_nsec2" = yes
3926 then
3927   AC_DEFINE(HAVE_STAT_TV_NSEC2, 1,
3928   [Define if you have struct stat.st_mtimensec])
3931 # On HP/UX 11.0, mvwdelch is a block with a return statement
3932 AC_MSG_CHECKING(whether mvwdelch is an expression)
3933 AC_CACHE_VAL(ac_cv_mvwdelch_is_expression,
3934 AC_TRY_COMPILE([#include <curses.h>], [
3935   int rtn;
3936   rtn = mvwdelch(0,0,0);
3937 ], ac_cv_mvwdelch_is_expression=yes,
3938    ac_cv_mvwdelch_is_expression=no,
3939    ac_cv_mvwdelch_is_expression=yes))
3940 AC_MSG_RESULT($ac_cv_mvwdelch_is_expression)
3942 if test "$ac_cv_mvwdelch_is_expression" = yes
3943 then
3944   AC_DEFINE(MVWDELCH_IS_EXPRESSION, 1,
3945   [Define if mvwdelch in curses.h is an expression.])
3948 AC_MSG_CHECKING(whether WINDOW has _flags)
3949 AC_CACHE_VAL(ac_cv_window_has_flags,
3950 AC_TRY_COMPILE([#include <curses.h>], [
3951   WINDOW *w;
3952   w->_flags = 0;
3953 ], ac_cv_window_has_flags=yes,
3954    ac_cv_window_has_flags=no,
3955    ac_cv_window_has_flags=no))
3956 AC_MSG_RESULT($ac_cv_window_has_flags)
3959 if test "$ac_cv_window_has_flags" = yes
3960 then
3961   AC_DEFINE(WINDOW_HAS_FLAGS, 1, 
3962   [Define if WINDOW in curses.h offers a field _flags.])
3965 AC_MSG_CHECKING(for is_term_resized)
3966 AC_TRY_COMPILE([#include <curses.h>], void *x=is_term_resized,
3967   AC_DEFINE(HAVE_CURSES_IS_TERM_RESIZED, 1, Define if you have the 'is_term_resized' function.)
3968   AC_MSG_RESULT(yes),
3969   AC_MSG_RESULT(no)
3972 AC_MSG_CHECKING(for resize_term)
3973 AC_TRY_COMPILE([#include <curses.h>], void *x=resize_term,
3974   AC_DEFINE(HAVE_CURSES_RESIZE_TERM, 1, Define if you have the 'resize_term' function.)
3975   AC_MSG_RESULT(yes),
3976   AC_MSG_RESULT(no)
3979 AC_MSG_CHECKING(for resizeterm)
3980 AC_TRY_COMPILE([#include <curses.h>], void *x=resizeterm,
3981   AC_DEFINE(HAVE_CURSES_RESIZETERM, 1, Define if you have the 'resizeterm' function.)
3982   AC_MSG_RESULT(yes),
3983   AC_MSG_RESULT(no)
3986 AC_MSG_CHECKING(for /dev/ptmx)
3988 if test -r /dev/ptmx
3989 then
3990   AC_MSG_RESULT(yes)
3991   AC_DEFINE(HAVE_DEV_PTMX, 1,
3992   [Define if we have /dev/ptmx.])
3993 else
3994   AC_MSG_RESULT(no)
3997 AC_MSG_CHECKING(for /dev/ptc)
3999 if test -r /dev/ptc
4000 then
4001   AC_MSG_RESULT(yes)
4002   AC_DEFINE(HAVE_DEV_PTC, 1,
4003   [Define if we have /dev/ptc.])
4004 else
4005   AC_MSG_RESULT(no)
4008 if test "$have_long_long" = yes
4009 then
4010   AC_MSG_CHECKING(for %lld and %llu printf() format support)
4011   AC_CACHE_VAL(ac_cv_have_long_long_format,
4012   AC_TRY_RUN([[
4013   #include <stdio.h>
4014   #include <stddef.h>
4015   #include <string.h>
4017   #ifdef HAVE_SYS_TYPES_H
4018   #include <sys/types.h>
4019   #endif
4021   int main()
4022   {
4023       char buffer[256];
4025       if (sprintf(buffer, "%lld", (long long)123) < 0)
4026           return 1;
4027       if (strcmp(buffer, "123"))
4028           return 1;
4030       if (sprintf(buffer, "%lld", (long long)-123) < 0)
4031           return 1;
4032       if (strcmp(buffer, "-123"))
4033           return 1;
4035       if (sprintf(buffer, "%llu", (unsigned long long)123) < 0)
4036           return 1;
4037       if (strcmp(buffer, "123"))
4038           return 1;
4040       return 0;
4041   }
4042   ]], ac_cv_have_long_long_format=yes,
4043       ac_cv_have_long_long_format=no,
4044       ac_cv_have_long_long_format=no)
4045   )
4046   AC_MSG_RESULT($ac_cv_have_long_long_format)
4049 if test $ac_cv_have_long_long_format = yes
4050 then
4051   AC_DEFINE(PY_FORMAT_LONG_LONG, "ll",
4052   [Define to printf format modifier for long long type])
4055 if test $ac_sys_system = Darwin
4056 then
4057         LIBS="$LIBS -framework CoreFoundation"
4061 AC_CACHE_CHECK([for %zd printf() format support], ac_cv_have_size_t_format, [dnl
4062 AC_TRY_RUN([
4063 #include <stdio.h>
4064 #include <stddef.h>
4065 #include <string.h>
4067 #ifdef HAVE_SYS_TYPES_H
4068 #include <sys/types.h>
4069 #endif
4071 #ifdef HAVE_SSIZE_T
4072 typedef ssize_t Py_ssize_t;
4073 #elif SIZEOF_VOID_P == SIZEOF_LONG
4074 typedef long Py_ssize_t;
4075 #else
4076 typedef int Py_ssize_t;
4077 #endif
4079 int main()
4081     char buffer[256];
4083     if(sprintf(buffer, "%zd", (size_t)123) < 0)
4084         return 1;
4086     if (strcmp(buffer, "123"))
4087         return 1;
4089     if (sprintf(buffer, "%zd", (Py_ssize_t)-123) < 0)
4090         return 1;
4092     if (strcmp(buffer, "-123"))
4093         return 1;
4095     return 0;
4097 ], ac_cv_have_size_t_format=yes,
4098     ac_cv_have_size_t_format=no,
4099     [ac_cv_have_size_t_format="cross -- assuming yes"]
4101 if test "$ac_cv_have_size_t_format" != no ; then
4102   AC_DEFINE(PY_FORMAT_SIZE_T, "z",
4103   [Define to printf format modifier for Py_ssize_t])
4106 AC_CHECK_TYPE(socklen_t,,
4107   AC_DEFINE(socklen_t,int,
4108             Define to `int' if <sys/socket.h> does not define.),[
4109 #ifdef HAVE_SYS_TYPES_H
4110 #include <sys/types.h>
4111 #endif
4112 #ifdef HAVE_SYS_SOCKET_H
4113 #include <sys/socket.h>
4114 #endif
4117 AC_SUBST(THREADHEADERS)
4119 for h in `(cd $srcdir;echo Python/thread_*.h)`
4121   THREADHEADERS="$THREADHEADERS \$(srcdir)/$h"
4122 done
4124 AC_SUBST(SRCDIRS)
4125 SRCDIRS="Parser Grammar Objects Python Modules Mac"
4126 AC_MSG_CHECKING(for build directories)
4127 for dir in $SRCDIRS; do
4128     if test ! -d $dir; then
4129         mkdir $dir
4130     fi
4131 done
4132 AC_MSG_RESULT(done)
4134 # generate output files
4135 AC_CONFIG_FILES(Makefile.pre Modules/Setup.config Misc/python.pc)
4136 AC_OUTPUT
4138 echo "creating Modules/Setup"
4139 if test ! -f Modules/Setup
4140 then
4141         cp $srcdir/Modules/Setup.dist Modules/Setup
4144 echo "creating Modules/Setup.local"
4145 if test ! -f Modules/Setup.local
4146 then
4147         echo "# Edit this file for local setup changes" >Modules/Setup.local
4150 echo "creating Makefile"
4151 $SHELL $srcdir/Modules/makesetup -c $srcdir/Modules/config.c.in \
4152                         -s Modules Modules/Setup.config \
4153                         Modules/Setup.local Modules/Setup
4155 case $ac_sys_system in
4156 BeOS)
4157         AC_MSG_WARN([
4159   Support for BeOS is deprecated as of Python 2.6.
4160   See PEP 11 for the gory details.
4161   ])
4162   ;;
4163 *) ;;
4164 esac
4166 mv config.c Modules