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