blob: 8abf2f96cc45ffc80f785403c02dec670411aba4 [file] [log] [blame]
Benjamin Petersonfbeb6b62008-05-26 16:04:49 +00001dnl ***********************************************
2dnl * Please run autoreconf to test your changes! *
3dnl ***********************************************
Martin v. Löwis88afe662002-10-26 13:47:44 +00004
5# Set VERSION so we only need to edit in one place (i.e., here)
Benjamin Petersona8c22a02015-05-27 23:29:00 -05006m4_define(PYTHON_VERSION, 3.6)
Martin v. Löwis88afe662002-10-26 13:47:44 +00007
Barry Warsaw35f3a2c2010-09-03 18:30:30 +00008AC_PREREQ(2.65)
Alexandre Vassalottib89910f2009-07-18 00:33:23 +00009
Benjamin Petersonc2fcbf42016-08-03 22:01:32 -070010AC_INIT(python, PYTHON_VERSION, https://bugs.python.org/)
Benjamin Peterson8c6f88e2011-05-31 20:52:17 -050011
Trent Nelson4d4ec652012-10-16 08:51:24 -040012AC_SUBST(BASECPPFLAGS)
Martin Panterc5ee3ca2016-09-12 01:32:03 +000013if test "$srcdir" != . -a "$srcdir" != "$(pwd)"; then
Trent Nelson4d4ec652012-10-16 08:51:24 -040014 # If we're building out-of-tree, we need to make sure the following
15 # resources get picked up before their $srcdir counterparts.
16 # Objects/ -> typeslots.inc
17 # Include/ -> Python-ast.h, graminit.h
18 # Python/ -> importlib.h
19 # (A side effect of this is that these resources will automatically be
20 # regenerated when building out-of-tree, regardless of whether or not
21 # the $srcdir counterpart is up-to-date. This is an acceptable trade
22 # off.)
23 BASECPPFLAGS="-IObjects -IInclude -IPython"
24else
25 BASECPPFLAGS=""
26fi
27
Ned Deily95c50e52017-03-04 01:05:06 -050028AC_SUBST(GITVERSION)
29AC_SUBST(GITTAG)
30AC_SUBST(GITBRANCH)
Benjamin Peterson8c6f88e2011-05-31 20:52:17 -050031
Victor Stinner4dae0d12017-05-02 23:46:06 +020032if test -e $srcdir/.git
Benjamin Peterson8c6f88e2011-05-31 20:52:17 -050033then
Ned Deily95c50e52017-03-04 01:05:06 -050034AC_CHECK_PROG(HAS_GIT, git, found, not-found)
Benjamin Peterson8c6f88e2011-05-31 20:52:17 -050035else
Ned Deily95c50e52017-03-04 01:05:06 -050036HAS_GIT=no-repository
Benjamin Peterson8c6f88e2011-05-31 20:52:17 -050037fi
Ned Deily95c50e52017-03-04 01:05:06 -050038if test $HAS_GIT = found
Benjamin Peterson8c6f88e2011-05-31 20:52:17 -050039then
Ned Deilye9213d92017-03-21 00:35:08 -040040 GITVERSION="git -C \$(srcdir) rev-parse --short HEAD"
41 GITTAG="git -C \$(srcdir) describe --all --always --dirty"
Ned Deily95c50e52017-03-04 01:05:06 -050042 GITBRANCH="git -C \$(srcdir) name-rev --name-only HEAD"
Benjamin Peterson8c6f88e2011-05-31 20:52:17 -050043else
Ned Deily95c50e52017-03-04 01:05:06 -050044 GITVERSION=""
45 GITTAG=""
46 GITBRANCH=""
Benjamin Peterson8c6f88e2011-05-31 20:52:17 -050047fi
48
Martin v. Löwis88afe662002-10-26 13:47:44 +000049AC_CONFIG_SRCDIR([Include/object.h])
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +000050AC_CONFIG_HEADER(pyconfig.h)
Guido van Rossum627b2d71993-12-24 10:39:16 +000051
Matthias Kloseca2f6ec2012-03-15 21:30:11 +010052AC_CANONICAL_HOST
doko@python.orga10e4a92013-01-25 18:45:12 +010053AC_SUBST(build)
54AC_SUBST(host)
Matthias Kloseca2f6ec2012-03-15 21:30:11 +010055
Ned Deilyfcbc2462014-08-22 13:32:49 -070056# pybuilddir.txt will be created by --generate-posix-vars in the Makefile
57rm -f pybuilddir.txt
58
Victor Stinner9d02f562017-05-05 00:46:56 +020059AC_CHECK_PROGS(PYTHON_FOR_REGEN, python$PACKAGE_VERSION python3 python, python3)
60AC_SUBST(PYTHON_FOR_REGEN)
Xavier de Gayefd0d5932016-07-26 12:48:08 +020061
doko@ubuntu.com1abe1c52012-06-30 20:42:45 +020062if test "$cross_compiling" = yes; then
63 AC_MSG_CHECKING([for python interpreter for cross build])
64 if test -z "$PYTHON_FOR_BUILD"; then
65 for interp in python$PACKAGE_VERSION python3 python; do
66 which $interp >/dev/null 2>&1 || continue
Xavier de Gaye4afd1432016-07-07 18:00:22 +020067 if $interp -c "import sys;sys.exit(not '.'.join(str(n) for n in sys.version_info@<:@:2@:>@) == '$PACKAGE_VERSION')"; then
doko@ubuntu.com1abe1c52012-06-30 20:42:45 +020068 break
69 fi
70 interp=
71 done
72 if test x$interp = x; then
73 AC_MSG_ERROR([python$PACKAGE_VERSION interpreter not found])
74 fi
75 AC_MSG_RESULT($interp)
Xavier de Gaye92dec542016-09-11 22:22:24 +020076 PYTHON_FOR_BUILD='_PYTHON_PROJECT_BASE=$(abs_builddir) _PYTHON_HOST_PLATFORM=$(_PYTHON_HOST_PLATFORM) PYTHONPATH=$(shell test -f pybuilddir.txt && echo $(abs_builddir)/`cat pybuilddir.txt`:)$(srcdir)/Lib _PYTHON_SYSCONFIGDATA_NAME=_sysconfigdata_$(ABIFLAGS)_$(MACHDEP)_$(MULTIARCH) '$interp
doko@ubuntu.com1abe1c52012-06-30 20:42:45 +020077 fi
Christian Heimes954ac032012-12-12 13:10:21 +010078elif test "$cross_compiling" = maybe; then
79 AC_MSG_ERROR([Cross compiling required --host=HOST-TUPLE and --build=ARCH])
doko@ubuntu.com1abe1c52012-06-30 20:42:45 +020080else
81 PYTHON_FOR_BUILD='./$(BUILDPYTHON) -E'
82fi
83AC_SUBST(PYTHON_FOR_BUILD)
84
Benjamin Petersond23f8222009-04-05 19:13:16 +000085dnl Ensure that if prefix is specified, it does not end in a slash. If
86dnl it does, we get path names containing '//' which is both ugly and
87dnl can cause trouble.
88
89dnl Last slash shouldn't be stripped if prefix=/
90if test "$prefix" != "/"; then
91 prefix=`echo "$prefix" | sed -e 's/\/$//g'`
Victor Stinner1b80b242016-04-12 22:34:58 +020092fi
Benjamin Petersond23f8222009-04-05 19:13:16 +000093
Martin v. Löwis8316feb2003-06-14 07:48:07 +000094dnl This is for stuff that absolutely must end up in pyconfig.h.
95dnl Please use pyport.h instead, if possible.
Martin v. Löwisbddf5a52002-11-11 13:37:28 +000096AH_TOP([
97#ifndef Py_PYCONFIG_H
98#define Py_PYCONFIG_H
99])
Martin v. Löwis11437992002-04-12 09:54:03 +0000100AH_BOTTOM([
Martin v. Löwis11437992002-04-12 09:54:03 +0000101/* Define the macros needed if on a UnixWare 7.x system. */
102#if defined(__USLC__) && defined(__SCO_VERSION__)
103#define STRICT_SYSV_CURSES /* Don't use ncurses extensions */
104#endif
Martin v. Löwisbddf5a52002-11-11 13:37:28 +0000105
106#endif /*Py_PYCONFIG_H*/
Martin v. Löwis11437992002-04-12 09:54:03 +0000107])
108
Martin v. Löwis8316feb2003-06-14 07:48:07 +0000109# We don't use PACKAGE_ variables, and they cause conflicts
110# with other autoconf-based packages that include Python.h
111grep -v 'define PACKAGE_' <confdefs.h >confdefs.h.new
112rm confdefs.h
113mv confdefs.h.new confdefs.h
114
Guido van Rossum642b6781997-07-19 19:35:41 +0000115AC_SUBST(VERSION)
Martin v. Löwis88afe662002-10-26 13:47:44 +0000116VERSION=PYTHON_VERSION
Guido van Rossum642b6781997-07-19 19:35:41 +0000117
Georg Brandlde7d8342010-09-03 22:19:07 +0000118# Version number of Python's own shared library file.
Martin v. Löwis1142de32002-03-29 16:28:31 +0000119AC_SUBST(SOVERSION)
120SOVERSION=1.0
121
Martin v. Löwis6f18a3c2002-07-20 08:51:52 +0000122# The later defininition of _XOPEN_SOURCE disables certain features
123# on Linux, so we need _GNU_SOURCE to re-enable them (makedev, tm_zone).
124AC_DEFINE(_GNU_SOURCE, 1, [Define on Linux to activate all library features])
125
Martin v. Löwisbcd93962003-05-03 10:32:18 +0000126# The later defininition of _XOPEN_SOURCE and _POSIX_C_SOURCE disables
127# certain features on NetBSD, so we need _NETBSD_SOURCE to re-enable
128# them.
129AC_DEFINE(_NETBSD_SOURCE, 1, [Define on NetBSD to activate all library features])
130
Andrew MacIntyreabccf412003-07-02 13:53:25 +0000131# The later defininition of _XOPEN_SOURCE and _POSIX_C_SOURCE disables
132# certain features on FreeBSD, so we need __BSD_VISIBLE to re-enable
133# them.
134AC_DEFINE(__BSD_VISIBLE, 1, [Define on FreeBSD to activate all library features])
135
Martin v. Löwisd6320502004-08-12 13:45:08 +0000136# The later defininition of _XOPEN_SOURCE and _POSIX_C_SOURCE disables
137# u_int on Irix 5.3. Defining _BSD_TYPES brings it back.
138AC_DEFINE(_BSD_TYPES, 1, [Define on Irix to enable u_int])
139
Georg Brandlfcaf9102008-07-16 02:17:56 +0000140# The later defininition of _XOPEN_SOURCE and _POSIX_C_SOURCE disables
141# certain features on Mac OS X, so we need _DARWIN_C_SOURCE to re-enable
142# them.
143AC_DEFINE(_DARWIN_C_SOURCE, 1, [Define on Darwin to activate all library features])
144
145
Martin v. Löwise981a4e2002-11-11 13:26:51 +0000146define_xopen_source=yes
Martin v. Löwis6f18a3c2002-07-20 08:51:52 +0000147
Neil Schemenauer4edbc2a2001-03-22 00:34:03 +0000148# Arguments passed to configure.
149AC_SUBST(CONFIG_ARGS)
150CONFIG_ARGS="$ac_configure_args"
151
Ronald Oussoren8af24c12010-02-07 12:03:42 +0000152AC_MSG_CHECKING([for --enable-universalsdk])
Thomas Wouters477c8d52006-05-27 19:21:47 +0000153AC_ARG_ENABLE(universalsdk,
Ned Deilycbfb9a52012-06-23 16:02:19 -0700154 AS_HELP_STRING([--enable-universalsdk@<:@=SDKDIR@:>@], [Build fat binary against Mac OS X SDK]),
Thomas Wouters477c8d52006-05-27 19:21:47 +0000155[
156 case $enableval in
157 yes)
Ned Deilycbfb9a52012-06-23 16:02:19 -0700158 # Locate the best usable SDK, see Mac/README.txt for more
159 # information
160 enableval="`/usr/bin/xcodebuild -version -sdk macosx Path 2>/dev/null`"
Ned Deily87adb6e2013-10-18 21:09:56 -0700161 if ! ( echo $enableval | grep -E '\.sdk' 1>/dev/null )
Ronald Oussoren8af24c12010-02-07 12:03:42 +0000162 then
Ned Deilycbfb9a52012-06-23 16:02:19 -0700163 enableval=/Developer/SDKs/MacOSX10.4u.sdk
164 if test ! -d "${enableval}"
165 then
166 enableval=/
167 fi
Ronald Oussoren8af24c12010-02-07 12:03:42 +0000168 fi
Thomas Wouters477c8d52006-05-27 19:21:47 +0000169 ;;
170 esac
171 case $enableval in
172 no)
173 UNIVERSALSDK=
174 enable_universalsdk=
175 ;;
176 *)
177 UNIVERSALSDK=$enableval
Ronald Oussoren8af24c12010-02-07 12:03:42 +0000178 if test ! -d "${UNIVERSALSDK}"
179 then
180 AC_MSG_ERROR([--enable-universalsdk specifies non-existing SDK: ${UNIVERSALSDK}])
181 fi
Thomas Wouters477c8d52006-05-27 19:21:47 +0000182 ;;
183 esac
Victor Stinner1b80b242016-04-12 22:34:58 +0200184
Thomas Wouters477c8d52006-05-27 19:21:47 +0000185],[
186 UNIVERSALSDK=
187 enable_universalsdk=
188])
Ronald Oussoren8af24c12010-02-07 12:03:42 +0000189if test -n "${UNIVERSALSDK}"
190then
191 AC_MSG_RESULT(${UNIVERSALSDK})
192else
193 AC_MSG_RESULT(no)
194fi
Thomas Wouters477c8d52006-05-27 19:21:47 +0000195AC_SUBST(UNIVERSALSDK)
196
Benjamin Peterson6794aa32008-07-16 20:33:37 +0000197AC_SUBST(ARCH_RUN_32BIT)
Ned Deily87adb6e2013-10-18 21:09:56 -0700198ARCH_RUN_32BIT=""
Benjamin Peterson6794aa32008-07-16 20:33:37 +0000199
Ned Deilycbfb9a52012-06-23 16:02:19 -0700200# For backward compatibility reasons we prefer to select '32-bit' if available,
201# otherwise use 'intel'
Georg Brandlfcaf9102008-07-16 02:17:56 +0000202UNIVERSAL_ARCHS="32-bit"
Ned Deilycbfb9a52012-06-23 16:02:19 -0700203if test "`uname -s`" = "Darwin"
204then
205 if test -n "${UNIVERSALSDK}"
206 then
Ned Deily87adb6e2013-10-18 21:09:56 -0700207 if test -z "`/usr/bin/file -L "${UNIVERSALSDK}/usr/lib/libSystem.dylib" | grep ppc`"
Ned Deilycbfb9a52012-06-23 16:02:19 -0700208 then
209 UNIVERSAL_ARCHS="intel"
210 fi
211 fi
212fi
213
Ronald Oussoren6f6c5622009-12-24 14:03:19 +0000214AC_SUBST(LIPO_32BIT_FLAGS)
Georg Brandlfcaf9102008-07-16 02:17:56 +0000215AC_MSG_CHECKING(for --with-universal-archs)
216AC_ARG_WITH(universal-archs,
Ned Deily87adb6e2013-10-18 21:09:56 -0700217 AS_HELP_STRING([--with-universal-archs=ARCH], [select architectures for universal build ("32-bit", "64-bit", "3-way", "intel", "intel-32", or "all")]),
Georg Brandlfcaf9102008-07-16 02:17:56 +0000218[
Georg Brandlfcaf9102008-07-16 02:17:56 +0000219 UNIVERSAL_ARCHS="$withval"
220],
Ned Deily87adb6e2013-10-18 21:09:56 -0700221[])
222if test -n "${UNIVERSALSDK}"
223then
224 AC_MSG_RESULT(${UNIVERSAL_ARCHS})
225else
226 AC_MSG_RESULT(no)
227fi
Georg Brandlfcaf9102008-07-16 02:17:56 +0000228
Christian Heimes81ee3ef2008-05-04 22:42:01 +0000229AC_ARG_WITH(framework-name,
Matthias Klose2b8733f2010-04-25 18:34:36 +0000230 AS_HELP_STRING([--with-framework-name=FRAMEWORK],
Matthias Klosec80c93f2010-04-24 17:04:35 +0000231 [specify an alternate name of the framework built with --enable-framework]),
Christian Heimes81ee3ef2008-05-04 22:42:01 +0000232[
233 PYTHONFRAMEWORK=${withval}
234 PYTHONFRAMEWORKDIR=${withval}.framework
235 PYTHONFRAMEWORKIDENTIFIER=org.python.`echo $withval | tr '[A-Z]' '[a-z]'`
236 ],[
237 PYTHONFRAMEWORK=Python
238 PYTHONFRAMEWORKDIR=Python.framework
239 PYTHONFRAMEWORKIDENTIFIER=org.python.python
240])
Martin v. Löwis3e2c6322002-10-29 10:07:43 +0000241dnl quadrigraphs "@<:@" and "@:>@" produce "[" and "]" in the output
Jack Jansenb6e9cad2001-08-15 01:26:28 +0000242AC_ARG_ENABLE(framework,
Matthias Klose2b8733f2010-04-25 18:34:36 +0000243 AS_HELP_STRING([--enable-framework@<:@=INSTALLDIR@:>@], [Build (MacOSX|Darwin) framework]),
Martin v. Löwis3e2c6322002-10-29 10:07:43 +0000244[
Jack Jansenb6e9cad2001-08-15 01:26:28 +0000245 case $enableval in
Victor Stinner1b80b242016-04-12 22:34:58 +0200246 yes)
Jack Jansenb6e9cad2001-08-15 01:26:28 +0000247 enableval=/Library/Frameworks
Jack Jansen127e56e2001-09-11 14:41:54 +0000248 esac
249 case $enableval in
250 no)
251 PYTHONFRAMEWORK=
252 PYTHONFRAMEWORKDIR=no-framework
253 PYTHONFRAMEWORKPREFIX=
254 PYTHONFRAMEWORKINSTALLDIR=
Thomas Wouters477c8d52006-05-27 19:21:47 +0000255 FRAMEWORKINSTALLFIRST=
256 FRAMEWORKINSTALLLAST=
Thomas Wouters73e5a5b2006-06-08 15:35:45 +0000257 FRAMEWORKALTINSTALLFIRST=
258 FRAMEWORKALTINSTALLLAST=
Ned Deilyb8f944f2013-11-21 22:42:25 -0800259 FRAMEWORKPYTHONW=
Thomas Wouters73e5a5b2006-06-08 15:35:45 +0000260 if test "x${prefix}" = "xNONE"; then
261 FRAMEWORKUNIXTOOLSPREFIX="${ac_default_prefix}"
262 else
263 FRAMEWORKUNIXTOOLSPREFIX="${prefix}"
264 fi
Jack Jansen127e56e2001-09-11 14:41:54 +0000265 enable_framework=
Jack Jansenb6e9cad2001-08-15 01:26:28 +0000266 ;;
267 *)
Ronald Oussoren86b33c82010-04-30 11:41:56 +0000268 PYTHONFRAMEWORKPREFIX="${enableval}"
Jack Jansen127e56e2001-09-11 14:41:54 +0000269 PYTHONFRAMEWORKINSTALLDIR=$PYTHONFRAMEWORKPREFIX/$PYTHONFRAMEWORKDIR
Thomas Wouters477c8d52006-05-27 19:21:47 +0000270 FRAMEWORKINSTALLFIRST="frameworkinstallstructure"
Ronald Oussorenf6ccbf62009-06-02 10:55:56 +0000271 FRAMEWORKALTINSTALLFIRST="frameworkinstallstructure "
Ronald Oussoren6f6c5622009-12-24 14:03:19 +0000272 FRAMEWORKINSTALLLAST="frameworkinstallmaclib frameworkinstallapps frameworkinstallunixtools"
273 FRAMEWORKALTINSTALLLAST="frameworkinstallmaclib frameworkinstallapps frameworkaltinstallunixtools"
Ned Deilyb8f944f2013-11-21 22:42:25 -0800274 FRAMEWORKPYTHONW="frameworkpythonw"
Ronald Oussoren86b33c82010-04-30 11:41:56 +0000275 FRAMEWORKINSTALLAPPSPREFIX="/Applications"
Georg Brandlfcaf9102008-07-16 02:17:56 +0000276
Thomas Wouters73e5a5b2006-06-08 15:35:45 +0000277 if test "x${prefix}" = "xNONE" ; then
278 FRAMEWORKUNIXTOOLSPREFIX="${ac_default_prefix}"
Ronald Oussoren86b33c82010-04-30 11:41:56 +0000279
Thomas Wouters73e5a5b2006-06-08 15:35:45 +0000280 else
281 FRAMEWORKUNIXTOOLSPREFIX="${prefix}"
282 fi
Ronald Oussoren86b33c82010-04-30 11:41:56 +0000283
284 case "${enableval}" in
285 /System*)
286 FRAMEWORKINSTALLAPPSPREFIX="/Applications"
287 if test "${prefix}" = "NONE" ; then
288 # See below
289 FRAMEWORKUNIXTOOLSPREFIX="/usr"
290 fi
291 ;;
292
293 /Library*)
294 FRAMEWORKINSTALLAPPSPREFIX="/Applications"
295 ;;
296
297 */Library/Frameworks)
298 MDIR="`dirname "${enableval}"`"
299 MDIR="`dirname "${MDIR}"`"
300 FRAMEWORKINSTALLAPPSPREFIX="${MDIR}/Applications"
301
302 if test "${prefix}" = "NONE"; then
Victor Stinner1b80b242016-04-12 22:34:58 +0200303 # User hasn't specified the
Ronald Oussoren86b33c82010-04-30 11:41:56 +0000304 # --prefix option, but wants to install
305 # the framework in a non-default location,
306 # ensure that the compatibility links get
307 # installed relative to that prefix as well
308 # instead of in /usr/local.
309 FRAMEWORKUNIXTOOLSPREFIX="${MDIR}"
310 fi
311 ;;
312
313 *)
314 FRAMEWORKINSTALLAPPSPREFIX="/Applications"
315 ;;
316 esac
317
Jack Jansen127e56e2001-09-11 14:41:54 +0000318 prefix=$PYTHONFRAMEWORKINSTALLDIR/Versions/$VERSION
Thomas Wouters477c8d52006-05-27 19:21:47 +0000319
Christian Heimes81ee3ef2008-05-04 22:42:01 +0000320 # Add files for Mac specific code to the list of output
Thomas Wouters477c8d52006-05-27 19:21:47 +0000321 # files:
Thomas Wouters73e5a5b2006-06-08 15:35:45 +0000322 AC_CONFIG_FILES(Mac/Makefile)
323 AC_CONFIG_FILES(Mac/PythonLauncher/Makefile)
Christian Heimes81ee3ef2008-05-04 22:42:01 +0000324 AC_CONFIG_FILES(Mac/Resources/framework/Info.plist)
325 AC_CONFIG_FILES(Mac/Resources/app/Info.plist)
Jack Jansenb6e9cad2001-08-15 01:26:28 +0000326 esac
Jack Jansenb6e9cad2001-08-15 01:26:28 +0000327 ],[
328 PYTHONFRAMEWORK=
Jack Jansen127e56e2001-09-11 14:41:54 +0000329 PYTHONFRAMEWORKDIR=no-framework
Jack Jansenb6e9cad2001-08-15 01:26:28 +0000330 PYTHONFRAMEWORKPREFIX=
331 PYTHONFRAMEWORKINSTALLDIR=
Thomas Wouters477c8d52006-05-27 19:21:47 +0000332 FRAMEWORKINSTALLFIRST=
333 FRAMEWORKINSTALLLAST=
Thomas Wouters73e5a5b2006-06-08 15:35:45 +0000334 FRAMEWORKALTINSTALLFIRST=
335 FRAMEWORKALTINSTALLLAST=
Ned Deilyb8f944f2013-11-21 22:42:25 -0800336 FRAMEWORKPYTHONW=
Thomas Wouters73e5a5b2006-06-08 15:35:45 +0000337 if test "x${prefix}" = "xNONE" ; then
338 FRAMEWORKUNIXTOOLSPREFIX="${ac_default_prefix}"
339 else
340 FRAMEWORKUNIXTOOLSPREFIX="${prefix}"
341 fi
Jack Jansenb6e9cad2001-08-15 01:26:28 +0000342 enable_framework=
Georg Brandlfcaf9102008-07-16 02:17:56 +0000343
Jack Jansenb6e9cad2001-08-15 01:26:28 +0000344])
345AC_SUBST(PYTHONFRAMEWORK)
Christian Heimes81ee3ef2008-05-04 22:42:01 +0000346AC_SUBST(PYTHONFRAMEWORKIDENTIFIER)
Jack Jansenb6e9cad2001-08-15 01:26:28 +0000347AC_SUBST(PYTHONFRAMEWORKDIR)
348AC_SUBST(PYTHONFRAMEWORKPREFIX)
349AC_SUBST(PYTHONFRAMEWORKINSTALLDIR)
Thomas Wouters477c8d52006-05-27 19:21:47 +0000350AC_SUBST(FRAMEWORKINSTALLFIRST)
351AC_SUBST(FRAMEWORKINSTALLLAST)
Thomas Wouters73e5a5b2006-06-08 15:35:45 +0000352AC_SUBST(FRAMEWORKALTINSTALLFIRST)
353AC_SUBST(FRAMEWORKALTINSTALLLAST)
Ned Deilyb8f944f2013-11-21 22:42:25 -0800354AC_SUBST(FRAMEWORKPYTHONW)
Thomas Wouters73e5a5b2006-06-08 15:35:45 +0000355AC_SUBST(FRAMEWORKUNIXTOOLSPREFIX)
Ronald Oussoren86b33c82010-04-30 11:41:56 +0000356AC_SUBST(FRAMEWORKINSTALLAPPSPREFIX)
Guido van Rossum4b6b5791996-09-09 20:09:34 +0000357
Jack Jansenb6e9cad2001-08-15 01:26:28 +0000358##AC_ARG_WITH(dyld,
Matthias Klose2b8733f2010-04-25 18:34:36 +0000359## AS_HELP_STRING([--with-dyld],
Matthias Klosec80c93f2010-04-24 17:04:35 +0000360## [Use (OpenStep|Rhapsody) dynamic linker]))
Jack Jansenb6e9cad2001-08-15 01:26:28 +0000361##
Guido van Rossumb418f891996-07-30 18:06:02 +0000362# Set name for machine-dependent library files
doko@python.orgeab42bf2013-01-26 18:57:19 +0100363AC_ARG_VAR([MACHDEP], [name for machine-dependent library files])
Guido van Rossumb418f891996-07-30 18:06:02 +0000364AC_MSG_CHECKING(MACHDEP)
365if test -z "$MACHDEP"
366then
Matthias Klosedf2aecb2012-03-15 22:19:28 +0100367 # avoid using uname for cross builds
368 if test "$cross_compiling" = yes; then
doko@python.org44bbbda2013-01-25 14:44:00 +0100369 # ac_sys_system and ac_sys_release are used for setting
370 # a lot of different things including 'define_xopen_source'
371 # in the case statement below.
Matthias Klosedf2aecb2012-03-15 22:19:28 +0100372 case "$host" in
Xavier de Gaye2a352b62017-01-04 21:51:16 +0100373 *-*-linux-android*)
374 ac_sys_system=Linux-android
375 ;;
Matthias Klosedf2aecb2012-03-15 22:19:28 +0100376 *-*-linux*)
377 ac_sys_system=Linux
378 ;;
379 *-*-cygwin*)
380 ac_sys_system=Cygwin
381 ;;
382 *)
383 # for now, limit cross builds to known configurations
384 MACHDEP="unknown"
385 AC_MSG_ERROR([cross build not supported for $host])
386 esac
387 ac_sys_release=
388 else
Guido van Rossum4b6b5791996-09-09 20:09:34 +0000389 ac_sys_system=`uname -s`
Benjamin Peterson8719ad52009-09-11 22:24:02 +0000390 if test "$ac_sys_system" = "AIX" \
Martin v. Löwis21ee4092002-09-30 16:19:48 +0000391 -o "$ac_sys_system" = "UnixWare" -o "$ac_sys_system" = "OpenUNIX"; then
Guido van Rossum4b6b5791996-09-09 20:09:34 +0000392 ac_sys_release=`uname -v`
Guido van Rossumb418f891996-07-30 18:06:02 +0000393 else
Guido van Rossum4b6b5791996-09-09 20:09:34 +0000394 ac_sys_release=`uname -r`
Guido van Rossumb418f891996-07-30 18:06:02 +0000395 fi
Matthias Klosedf2aecb2012-03-15 22:19:28 +0100396 fi
397 ac_md_system=`echo $ac_sys_system |
398 tr -d '[/ ]' | tr '[[A-Z]]' '[[a-z]]'`
399 ac_md_release=`echo $ac_sys_release |
400 tr -d '[/ ]' | sed 's/^[[A-Z]]\.//' | sed 's/\..*//'`
401 MACHDEP="$ac_md_system$ac_md_release"
Guido van Rossum4b6b5791996-09-09 20:09:34 +0000402
Matthias Klosedf2aecb2012-03-15 22:19:28 +0100403 case $MACHDEP in
Victor Stinner7209ff22011-08-21 00:00:16 +0200404 linux*) MACHDEP="linux";;
Andrew M. Kuchling5a3e4cb2001-07-20 19:29:04 +0000405 cygwin*) MACHDEP="cygwin";;
Jack Jansen8a97f4a2001-12-05 23:27:32 +0000406 darwin*) MACHDEP="darwin";;
doko@ubuntu.comba015832012-06-30 16:52:05 +0200407 irix646) MACHDEP="irix6";;
Guido van Rossumb97ef171997-09-28 05:44:03 +0000408 '') MACHDEP="unknown";;
Matthias Klosedf2aecb2012-03-15 22:19:28 +0100409 esac
Guido van Rossumb418f891996-07-30 18:06:02 +0000410fi
doko@ubuntu.com1abe1c52012-06-30 20:42:45 +0200411
412AC_SUBST(_PYTHON_HOST_PLATFORM)
413if test "$cross_compiling" = yes; then
414 case "$host" in
415 *-*-linux*)
416 case "$host_cpu" in
417 arm*)
418 _host_cpu=arm
419 ;;
420 *)
421 _host_cpu=$host_cpu
422 esac
423 ;;
424 *-*-cygwin*)
425 _host_cpu=
426 ;;
427 *)
428 # for now, limit cross builds to known configurations
429 MACHDEP="unknown"
430 AC_MSG_ERROR([cross build not supported for $host])
431 esac
432 _PYTHON_HOST_PLATFORM="$MACHDEP${_host_cpu:+-$_host_cpu}"
433fi
doko@ubuntu.comd3899c12015-04-15 20:23:14 +0200434
Martin v. Löwise981a4e2002-11-11 13:26:51 +0000435# Some systems cannot stand _XOPEN_SOURCE being defined at all; they
436# disable features if it is defined, without any means to access these
437# features as extensions. For these systems, we skip the definition of
438# _XOPEN_SOURCE. Before adding a system to the list to gain access to
439# some feature, make sure there is no alternative way to access this
440# feature. Also, when using wildcards, make sure you have verified the
441# need for not defining _XOPEN_SOURCE on all systems matching the
442# wildcard, and that the wildcard does not include future systems
443# (which may remove their limitations).
444dnl quadrigraphs "@<:@" and "@:>@" produce "[" and "]" in the output
445case $ac_sys_system/$ac_sys_release in
446 # On OpenBSD, select(2) is not available if _XOPEN_SOURCE is defined,
447 # even though select is a POSIX function. Reported by J. Ribbens.
Martin v. Löwis76bafc62003-10-03 13:47:44 +0000448 # Reconfirmed for OpenBSD 3.3 by Zachary Hamm, for 3.4 by Jason Ish.
Martin v. Löwis19ed3c82010-02-15 21:45:06 +0000449 # In addition, Stefan Krah confirms that issue #1244610 exists through
450 # OpenBSD 4.6, but is fixed in 4.7.
Victor Stinner1b80b242016-04-12 22:34:58 +0200451 OpenBSD/2.* | OpenBSD/3.* | OpenBSD/4.@<:@0123456@:>@)
Christian Heimes5b5e81c2007-12-31 16:14:33 +0000452 define_xopen_source=no
453 # OpenBSD undoes our definition of __BSD_VISIBLE if _XOPEN_SOURCE is
454 # also defined. This can be overridden by defining _BSD_SOURCE
455 # As this has a different meaning on Linux, only define it on OpenBSD
456 AC_DEFINE(_BSD_SOURCE, 1, [Define on OpenBSD to activate all library features])
457 ;;
Charles-François Natali54ef40b2011-07-22 23:52:02 +0200458 OpenBSD/*)
Martin v. Löwis7671efc2010-02-15 08:35:16 +0000459 # OpenBSD undoes our definition of __BSD_VISIBLE if _XOPEN_SOURCE is
460 # also defined. This can be overridden by defining _BSD_SOURCE
461 # As this has a different meaning on Linux, only define it on OpenBSD
462 AC_DEFINE(_BSD_SOURCE, 1, [Define on OpenBSD to activate all library features])
463 ;;
Thomas Wouters89f507f2006-12-13 04:49:30 +0000464 # Defining _XOPEN_SOURCE on NetBSD version prior to the introduction of
465 # _NETBSD_SOURCE disables certain features (eg. setgroups). Reported by
466 # Marc Recht
Benjamin Petersonf608c612008-11-16 18:33:53 +0000467 NetBSD/1.5 | NetBSD/1.5.* | NetBSD/1.6 | NetBSD/1.6.* | NetBSD/1.6@<:@A-S@:>@)
Martin v. Löwise981a4e2002-11-11 13:26:51 +0000468 define_xopen_source=no;;
Martin v. Löwis1a415762010-05-28 15:44:20 +0000469 # From the perspective of Solaris, _XOPEN_SOURCE is not so much a
470 # request to enable features supported by the standard as a request
471 # to disable features not supported by the standard. The best way
472 # for Python to use Solaris is simply to leave _XOPEN_SOURCE out
473 # entirely and define __EXTENSIONS__ instead.
474 SunOS/*)
Martin v. Löwisa9d71422003-03-28 18:43:31 +0000475 define_xopen_source=no;;
Martin v. Löwisc2409b42003-05-11 05:53:41 +0000476 # On UnixWare 7, u_long is never defined with _XOPEN_SOURCE,
477 # but used in /usr/include/netinet/tcp.h. Reported by Tim Rice.
Martin v. Löwis253d1f42004-05-07 19:14:14 +0000478 # Reconfirmed for 7.1.4 by Martin v. Loewis.
479 OpenUNIX/8.0.0| UnixWare/7.1.@<:@0-4@:>@)
Martin v. Löwisc2409b42003-05-11 05:53:41 +0000480 define_xopen_source=no;;
481 # On OpenServer 5, u_short is never defined with _XOPEN_SOURCE,
Martin v. Löwis53e73c32003-05-05 05:13:18 +0000482 # but used in struct sockaddr.sa_family. Reported by Tim Rice.
Martin v. Löwisc2409b42003-05-11 05:53:41 +0000483 SCO_SV/3.2)
Martin v. Löwis53e73c32003-05-05 05:13:18 +0000484 define_xopen_source=no;;
Martin v. Löwisb37509b2008-11-04 20:45:29 +0000485 # On FreeBSD 4, the math functions C89 does not cover are never defined
486 # with _XOPEN_SOURCE and __BSD_VISIBLE does not re-enable them.
487 FreeBSD/4.*)
488 define_xopen_source=no;;
Victor Stinner1b80b242016-04-12 22:34:58 +0200489 # On MacOS X 10.2, a bug in ncurses.h means that it craps out if
Martin v. Löwisb37509b2008-11-04 20:45:29 +0000490 # _XOPEN_EXTENDED_SOURCE is defined. Apparently, this is fixed in 10.3, which
491 # identifies itself as Darwin/7.*
492 # On Mac OS X 10.4, defining _POSIX_C_SOURCE or _XOPEN_SOURCE
493 # disables platform specific features beyond repair.
Victor Stinner1b80b242016-04-12 22:34:58 +0200494 # On Mac OS X 10.3, defining _POSIX_C_SOURCE or _XOPEN_SOURCE
Martin v. Löwisb37509b2008-11-04 20:45:29 +0000495 # has no effect, don't bother defining them
496 Darwin/@<:@6789@:>@.*)
Anthony Baxter6169c6b2003-10-04 07:46:23 +0000497 define_xopen_source=no;;
Ronald Oussoren92fb9412010-03-09 06:40:19 +0000498 Darwin/1@<:@0-9@:>@.*)
Ronald Oussorenb8f11a62010-03-08 07:02:03 +0000499 define_xopen_source=no;;
Trent Mickaf16e8c2004-08-25 23:55:59 +0000500 # On AIX 4 and 5.1, mbstate_t is defined only when _XOPEN_SOURCE == 500 but
501 # used in wcsnrtombs() and mbsnrtowcs() even if _XOPEN_SOURCE is not defined
502 # or has another value. By not (re)defining it, the defaults come in place.
Martin v. Löwisc19c5a62003-11-18 20:00:44 +0000503 AIX/4)
504 define_xopen_source=no;;
Trent Mickaf16e8c2004-08-25 23:55:59 +0000505 AIX/5)
506 if test `uname -r` -eq 1; then
507 define_xopen_source=no
508 fi
509 ;;
Georg Brandlf78e02b2008-06-10 17:40:04 +0000510 # On QNX 6.3.2, defining _XOPEN_SOURCE prevents netdb.h from
511 # defining NI_NUMERICHOST.
512 QNX/6.3.2)
513 define_xopen_source=no
514 ;;
Bob Ippolito7026a0a2005-03-28 23:23:47 +0000515
Martin v. Löwise981a4e2002-11-11 13:26:51 +0000516esac
517
518if test $define_xopen_source = yes
519then
Victor Stinner14d098d2011-09-07 22:29:43 +0200520 # X/Open 7, incorporating POSIX.1-2008
521 AC_DEFINE(_XOPEN_SOURCE, 700,
Martin v. Löwis1a415762010-05-28 15:44:20 +0000522 Define to the level of X/Open that your system supports)
Martin v. Löwis678fc1e2002-11-12 06:04:39 +0000523
524 # On Tru64 Unix 4.0F, defining _XOPEN_SOURCE also requires
525 # definition of _XOPEN_SOURCE_EXTENDED and _POSIX_C_SOURCE, or else
526 # several APIs are not declared. Since this is also needed in some
527 # cases for HP-UX, we define it globally.
Martin v. Löwis1a415762010-05-28 15:44:20 +0000528 AC_DEFINE(_XOPEN_SOURCE_EXTENDED, 1,
529 Define to activate Unix95-and-earlier features)
Martin v. Löwis678fc1e2002-11-12 06:04:39 +0000530
Victor Stinnerd169fdc2011-09-08 00:56:17 +0200531 AC_DEFINE(_POSIX_C_SOURCE, 200809L, Define to activate features from IEEE Stds 1003.1-2008)
Martin v. Löwise981a4e2002-11-11 13:26:51 +0000532fi
533
Christian Heimes647cd872013-12-07 23:39:33 +0100534# On HP-UX mbstate_t requires _INCLUDE__STDC_A1_SOURCE
535case $ac_sys_system in
Christian Heimesb02bcae2013-12-08 15:21:08 +0100536 hp*|HP*)
537 define_stdc_a1=yes;;
538 *)
539 define_stdc_a1=no;;
Christian Heimes647cd872013-12-07 23:39:33 +0100540esac
541
Christian Heimesb02bcae2013-12-08 15:21:08 +0100542if test $define_stdc_a1 = yes
543then
544 AC_DEFINE(_INCLUDE__STDC_A1_SOURCE, 1, Define to include mbstate_t for mbrtowc)
545fi
546
Guido van Rossum91922671997-10-09 20:24:13 +0000547#
548# SGI compilers allow the specification of the both the ABI and the
549# ISA on the command line. Depending on the values of these switches,
Martin Panter46f50722016-05-26 05:35:26 +0000550# different and often incompatible code will be generated.
Guido van Rossum91922671997-10-09 20:24:13 +0000551#
552# The SGI_ABI variable can be used to modify the CC and LDFLAGS and
553# thus supply support for various ABI/ISA combinations. The MACHDEP
554# variable is also adjusted.
555#
556AC_SUBST(SGI_ABI)
557if test ! -z "$SGI_ABI"
558then
559 CC="cc $SGI_ABI"
560 LDFLAGS="$SGI_ABI $LDFLAGS"
561 MACHDEP=`echo "${MACHDEP}${SGI_ABI}" | sed 's/ *//g'`
562fi
Guido van Rossumb418f891996-07-30 18:06:02 +0000563AC_MSG_RESULT($MACHDEP)
564
Jack Jansen6b08a402004-06-03 12:41:45 +0000565# Record the configure-time value of MACOSX_DEPLOYMENT_TARGET,
566# it may influence the way we can build extensions, so distutils
567# needs to check it
568AC_SUBST(CONFIGURE_MACOSX_DEPLOYMENT_TARGET)
Thomas Wouters477c8d52006-05-27 19:21:47 +0000569AC_SUBST(EXPORT_MACOSX_DEPLOYMENT_TARGET)
Jack Jansen6b08a402004-06-03 12:41:45 +0000570CONFIGURE_MACOSX_DEPLOYMENT_TARGET=
Thomas Wouters477c8d52006-05-27 19:21:47 +0000571EXPORT_MACOSX_DEPLOYMENT_TARGET='#'
Jack Jansen6b08a402004-06-03 12:41:45 +0000572
Guido van Rossum627b2d71993-12-24 10:39:16 +0000573# checks for alternative programs
Skip Montanarodecc6a42003-01-01 20:07:49 +0000574
575# compiler flags are generated in two sets, BASECFLAGS and OPT. OPT is just
576# for debug/optimization stuff. BASECFLAGS is for flags that are required
577# just to get things to compile and link. Users are free to override OPT
578# when running configure or make. The build should not break if they do.
579# BASECFLAGS should generally not be messed with, however.
580
581# XXX shouldn't some/most/all of this code be merged with the stuff later
582# on that fiddles with OPT and BASECFLAGS?
Guido van Rossum5739e7e1995-01-20 16:50:53 +0000583AC_MSG_CHECKING(for --without-gcc)
Martin v. Löwis3e2c6322002-10-29 10:07:43 +0000584AC_ARG_WITH(gcc,
Matthias Klose2b8733f2010-04-25 18:34:36 +0000585 AS_HELP_STRING([--without-gcc], [never use gcc]),
Martin v. Löwis3e2c6322002-10-29 10:07:43 +0000586[
Guido van Rossum433c8ad1994-08-01 12:07:07 +0000587 case $withval in
Benjamin Peterson960cf0f2009-01-09 04:11:44 +0000588 no) CC=${CC:-cc}
Guido van Rossum5739e7e1995-01-20 16:50:53 +0000589 without_gcc=yes;;
590 yes) CC=gcc
591 without_gcc=no;;
592 *) CC=$withval
593 without_gcc=$withval;;
Guido van Rossum55a214e1995-09-13 17:48:09 +0000594 esac], [
Guido van Rossumb418f891996-07-30 18:06:02 +0000595 case $ac_sys_system in
Antoine Pitrouf6350d22010-09-21 15:19:14 +0000596 AIX*) CC=${CC:-xlc_r}
Neil Schemenauerb3531b82001-02-16 04:09:05 +0000597 without_gcc=;;
Martin v. Löwis130fb172001-07-19 11:00:41 +0000598 *) without_gcc=no;;
Guido van Rossum55a214e1995-09-13 17:48:09 +0000599 esac])
Guido van Rossum5739e7e1995-01-20 16:50:53 +0000600AC_MSG_RESULT($without_gcc)
601
Zachary Ware5af85642015-12-21 12:09:17 -0600602AC_MSG_CHECKING(for --with-icc)
603AC_ARG_WITH(icc,
604 AS_HELP_STRING([--with-icc], [build with icc]),
605[
606 case $withval in
607 no) CC=${CC:-cc}
608 with_icc=no;;
609 yes) CC=icc
610 CXX=icpc
611 with_icc=yes;;
612 *) CC=$withval
613 with_icc=$withval;;
614 esac], [
615 with_icc=no])
616AC_MSG_RESULT($with_icc)
617
Guido van Rossum03ad99f1995-03-09 14:09:54 +0000618# If the user switches compilers, we can't believe the cache
619if test ! -z "$ac_cv_prog_CC" -a ! -z "$CC" -a "$CC" != "$ac_cv_prog_CC"
620then
Martin v. Löwis3e2c6322002-10-29 10:07:43 +0000621 AC_MSG_ERROR([cached CC is different -- throw away $cache_file
622(it is also a good idea to do 'make clean' before compiling)])
Guido van Rossum03ad99f1995-03-09 14:09:54 +0000623fi
624
Jeffrey Yasskind4fcdb12010-07-09 16:30:58 +0000625# Don't let AC_PROG_CC set the default CFLAGS. It normally sets -g -O2
626# when the compiler supports them, but we don't always want -O2, and
627# we set -g later.
628if test -z "$CFLAGS"; then
629 CFLAGS=
Marc-André Lemburgdf700f02010-04-30 17:29:56 +0000630fi
Ned Deilycbfb9a52012-06-23 16:02:19 -0700631
632if test "$ac_sys_system" = "Darwin"
633then
634 # Compiler selection on MacOSX is more complicated than
635 # AC_PROG_CC can handle, see Mac/README.txt for more
636 # information
637 if test -z "${CC}"
638 then
639 found_gcc=
640 found_clang=
641 as_save_IFS=$IFS; IFS=:
642 for as_dir in $PATH
643 do
644 IFS=$as_save_IFS
645 if test -x $as_dir/gcc; then
646 if test -z "${found_gcc}"; then
647 found_gcc=$as_dir/gcc
648 fi
649 fi
650 if test -x $as_dir/clang; then
651 if test -z "${found_clang}"; then
652 found_clang=$as_dir/clang
653 fi
654 fi
655 done
656 IFS=$as_save_IFS
657
658 if test -n "$found_gcc" -a -n "$found_clang"
659 then
660 if test -n "`"$found_gcc" --version | grep llvm-gcc`"
661 then
662 AC_MSG_NOTICE([Detected llvm-gcc, falling back to clang])
663 CC="$found_clang"
664 CXX="$found_clang++"
665 fi
666
667
668 elif test -z "$found_gcc" -a -n "$found_clang"
669 then
670 AC_MSG_NOTICE([No GCC found, use CLANG])
671 CC="$found_clang"
672 CXX="$found_clang++"
673
674 elif test -z "$found_gcc" -a -z "$found_clang"
675 then
676 found_clang=`/usr/bin/xcrun -find clang 2>/dev/null`
677 if test -n "${found_clang}"
678 then
679 AC_MSG_NOTICE([Using clang from Xcode.app])
680 CC="${found_clang}"
681 CXX="`/usr/bin/xcrun -find clang++`"
682
683 # else: use default behaviour
684 fi
685 fi
686 fi
687fi
Jeffrey Yasskind4fcdb12010-07-09 16:30:58 +0000688AC_PROG_CC
doko@ubuntu.comd3899c12015-04-15 20:23:14 +0200689AC_PROG_CPP
690AC_PROG_GREP
Łukasz Langaa785c872016-09-09 17:37:37 -0700691AC_PROG_SED
Martin v. Löwis1d5ecb72001-08-09 10:29:44 +0000692
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000693AC_SUBST(CXX)
694AC_SUBST(MAINCC)
695AC_MSG_CHECKING(for --with-cxx-main=<compiler>)
696AC_ARG_WITH(cxx_main,
Matthias Klose2b8733f2010-04-25 18:34:36 +0000697 AS_HELP_STRING([--with-cxx-main=<compiler>],
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000698 [compile main() and link python executable with C++ compiler]),
699[
Victor Stinner1b80b242016-04-12 22:34:58 +0200700
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000701 case $withval in
702 no) with_cxx_main=no
703 MAINCC='$(CC)';;
704 yes) with_cxx_main=yes
705 MAINCC='$(CXX)';;
706 *) with_cxx_main=yes
707 MAINCC=$withval
708 if test -z "$CXX"
709 then
710 CXX=$withval
711 fi;;
712 esac], [
713 with_cxx_main=no
714 MAINCC='$(CC)'
715])
716AC_MSG_RESULT($with_cxx_main)
717
718preset_cxx="$CXX"
719if test -z "$CXX"
720then
721 case "$CC" in
doko@ubuntu.com51f65942012-06-30 14:42:46 +0200722 gcc) AC_PATH_TOOL(CXX, [g++], [g++], [notfound]) ;;
723 cc) AC_PATH_TOOL(CXX, [c++], [c++], [notfound]) ;;
724 clang|*/clang) AC_PATH_TOOL(CXX, [clang++], [clang++], [notfound]) ;;
Zachary Ware5af85642015-12-21 12:09:17 -0600725 icc|*/icc) AC_PATH_TOOL(CXX, [icpc], [icpc], [notfound]) ;;
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000726 esac
727 if test "$CXX" = "notfound"
728 then
729 CXX=""
730 fi
731fi
732if test -z "$CXX"
733then
doko@ubuntu.com51f65942012-06-30 14:42:46 +0200734 AC_CHECK_TOOLS(CXX, $CCC c++ g++ gcc CC cxx cc++ cl, notfound)
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000735 if test "$CXX" = "notfound"
736 then
737 CXX=""
738 fi
739fi
740if test "$preset_cxx" != "$CXX"
741then
Christian Heimesfe32aec2013-11-20 01:18:26 +0100742 AC_MSG_NOTICE([
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000743
744 By default, distutils will build C++ extension modules with "$CXX".
745 If this is not intended, then set CXX on the configure command line.
746 ])
747fi
748
749
doko@ubuntu.comd3899c12015-04-15 20:23:14 +0200750MULTIARCH=$($CC --print-multiarch 2>/dev/null)
751AC_SUBST(MULTIARCH)
752
753AC_MSG_CHECKING([for the platform triplet based on compiler characteristics])
754cat >> conftest.c <<EOF
doko@ubuntu.com5cc9c4f2015-04-19 14:44:05 +0200755#undef bfin
756#undef cris
757#undef fr30
doko@ubuntu.comd3899c12015-04-15 20:23:14 +0200758#undef linux
doko@ubuntu.com5cc9c4f2015-04-19 14:44:05 +0200759#undef hppa
760#undef hpux
doko@ubuntu.comd3899c12015-04-15 20:23:14 +0200761#undef i386
doko@ubuntu.com5cc9c4f2015-04-19 14:44:05 +0200762#undef mips
doko@ubuntu.com9abe0492015-04-15 23:31:02 +0200763#undef powerpc
doko@ubuntu.com5cc9c4f2015-04-19 14:44:05 +0200764#undef sparc
doko@ubuntu.comd3899c12015-04-15 20:23:14 +0200765#undef unix
doko@ubuntu.com5c38cb22016-09-01 22:05:20 +0200766#if defined(__ANDROID__)
Xavier de Gaye32cf1ac2016-12-10 17:31:28 +0100767 # Android is not a multiarch system.
doko@ubuntu.com5c38cb22016-09-01 22:05:20 +0200768#elif defined(__linux__)
doko@ubuntu.comd3899c12015-04-15 20:23:14 +0200769# if defined(__x86_64__) && defined(__LP64__)
770 x86_64-linux-gnu
771# elif defined(__x86_64__) && defined(__ILP32__)
772 x86_64-linux-gnux32
773# elif defined(__i386__)
774 i386-linux-gnu
775# elif defined(__aarch64__) && defined(__AARCH64EL__)
776# if defined(__ILP32__)
777 aarch64_ilp32-linux-gnu
778# else
779 aarch64-linux-gnu
780# endif
781# elif defined(__aarch64__) && defined(__AARCH64EB__)
782# if defined(__ILP32__)
783 aarch64_be_ilp32-linux-gnu
784# else
785 aarch64_be-linux-gnu
786# endif
787# elif defined(__alpha__)
788 alpha-linux-gnu
789# elif defined(__ARM_EABI__) && defined(__ARM_PCS_VFP)
790# if defined(__ARMEL__)
791 arm-linux-gnueabihf
792# else
793 armeb-linux-gnueabihf
794# endif
795# elif defined(__ARM_EABI__) && !defined(__ARM_PCS_VFP)
796# if defined(__ARMEL__)
797 arm-linux-gnueabi
798# else
799 armeb-linux-gnueabi
800# endif
801# elif defined(__hppa__)
802 hppa-linux-gnu
803# elif defined(__ia64__)
804 ia64-linux-gnu
805# elif defined(__m68k__) && !defined(__mcoldfire__)
806 m68k-linux-gnu
807# elif defined(__mips_hard_float) && defined(_MIPSEL)
808# if _MIPS_SIM == _ABIO32
809 mipsel-linux-gnu
810# elif _MIPS_SIM == _ABIN32
811 mips64el-linux-gnuabin32
812# elif _MIPS_SIM == _ABI64
813 mips64el-linux-gnuabi64
814# else
815# error unknown platform triplet
816# endif
817# elif defined(__mips_hard_float)
818# if _MIPS_SIM == _ABIO32
819 mips-linux-gnu
820# elif _MIPS_SIM == _ABIN32
821 mips64-linux-gnuabin32
822# elif _MIPS_SIM == _ABI64
823 mips64-linux-gnuabi64
824# else
825# error unknown platform triplet
826# endif
827# elif defined(__or1k__)
828 or1k-linux-gnu
829# elif defined(__powerpc__) && defined(__SPE__)
830 powerpc-linux-gnuspe
831# elif defined(__powerpc64__)
832# if defined(__LITTLE_ENDIAN__)
833 powerpc64le-linux-gnu
834# else
835 powerpc64-linux-gnu
836# endif
837# elif defined(__powerpc__)
838 powerpc-linux-gnu
839# elif defined(__s390x__)
840 s390x-linux-gnu
841# elif defined(__s390__)
842 s390-linux-gnu
843# elif defined(__sh__) && defined(__LITTLE_ENDIAN__)
844 sh4-linux-gnu
845# elif defined(__sparc__) && defined(__arch64__)
846 sparc64-linux-gnu
847# elif defined(__sparc__)
848 sparc-linux-gnu
849# else
850# error unknown platform triplet
851# endif
852#elif defined(__FreeBSD_kernel__)
853# if defined(__LP64__)
854 x86_64-kfreebsd-gnu
855# elif defined(__i386__)
856 i386-kfreebsd-gnu
857# else
858# error unknown platform triplet
859# endif
860#elif defined(__gnu_hurd__)
861 i386-gnu
Ned Deily3b812482015-04-15 17:11:47 -0700862#elif defined(__APPLE__)
863 darwin
doko@ubuntu.comd3899c12015-04-15 20:23:14 +0200864#else
865# error unknown platform triplet
866#endif
867
868EOF
869
Xavier de Gaye3a32bdf2016-07-30 11:28:35 +0200870if $CPP $CPPFLAGS conftest.c >conftest.out 2>/dev/null; then
doko@ubuntu.comd3899c12015-04-15 20:23:14 +0200871 PLATFORM_TRIPLET=`grep -v '^#' conftest.out | grep -v '^ *$' | tr -d ' '`
872 AC_MSG_RESULT([$PLATFORM_TRIPLET])
873else
874 AC_MSG_RESULT([none])
875fi
876rm -f conftest.c conftest.out
877
878if test x$PLATFORM_TRIPLET != x && test x$MULTIARCH != x; then
879 if test x$PLATFORM_TRIPLET != x$MULTIARCH; then
880 AC_MSG_ERROR([internal configure error for the platform triplet, please file a bug report])
881 fi
doko@ubuntu.com75b1cb12016-08-29 20:03:25 +0200882elif test x$PLATFORM_TRIPLET != x && test x$MULTIARCH = x; then
883 MULTIARCH=$PLATFORM_TRIPLET
Victor Stinner1b80b242016-04-12 22:34:58 +0200884fi
doko@ubuntu.comd3899c12015-04-15 20:23:14 +0200885AC_SUBST(PLATFORM_TRIPLET)
doko@ubuntu.com55532312016-06-14 08:55:19 +0200886if test x$MULTIARCH != x; then
887 MULTIARCH_CPPFLAGS="-DMULTIARCH=\\\"$MULTIARCH\\\""
888fi
889AC_SUBST(MULTIARCH_CPPFLAGS)
doko@ubuntu.comd3899c12015-04-15 20:23:14 +0200890
Martin v. Löwis48e14d32011-05-09 07:37:45 +0200891AC_MSG_CHECKING([for -Wl,--no-as-needed])
892save_LDFLAGS="$LDFLAGS"
893LDFLAGS="$LDFLAGS -Wl,--no-as-needed"
894AC_LINK_IFELSE([AC_LANG_PROGRAM([[]], [[]])],
895 [NO_AS_NEEDED="-Wl,--no-as-needed"
896 AC_MSG_RESULT([yes])],
897 [NO_AS_NEEDED=""
898 AC_MSG_RESULT([no])])
899LDFLAGS="$save_LDFLAGS"
900AC_SUBST(NO_AS_NEEDED)
901
902
Martin v. Löwis1d5ecb72001-08-09 10:29:44 +0000903# checks for UNIX variants that set C preprocessor variables
Matthias Kloseaf30c5d2010-04-25 18:43:42 +0000904AC_USE_SYSTEM_EXTENSIONS
Martin v. Löwis1d5ecb72001-08-09 10:29:44 +0000905
Xavier de Gaye95750b12016-07-09 11:05:42 +0200906AC_MSG_CHECKING([for the Android API level])
907cat >> conftest.c <<EOF
908#ifdef __ANDROID__
909#include <android/api-level.h>
Xavier de Gaye2a352b62017-01-04 21:51:16 +0100910android_api = __ANDROID_API__
911arm_arch = __ARM_ARCH
Xavier de Gaye95750b12016-07-09 11:05:42 +0200912#else
913#error not Android
914#endif
915EOF
916
917if $CPP $CPPFLAGS conftest.c >conftest.out 2>/dev/null; then
Xavier de Gaye2a352b62017-01-04 21:51:16 +0100918 ANDROID_API_LEVEL=`sed -n -e '/__ANDROID_API__/d' -e 's/^android_api = //p' conftest.out`
919 _arm_arch=`sed -n -e '/__ARM_ARCH/d' -e 's/^arm_arch = //p' conftest.out`
Xavier de Gaye95750b12016-07-09 11:05:42 +0200920 AC_MSG_RESULT([$ANDROID_API_LEVEL])
921 AC_DEFINE_UNQUOTED(ANDROID_API_LEVEL, $ANDROID_API_LEVEL, [The Android API level.])
Xavier de Gaye2a352b62017-01-04 21:51:16 +0100922
923 AC_MSG_CHECKING([for the Android arm ABI])
924 AC_MSG_RESULT([$_arm_arch])
925 if test "$_arm_arch" = 7; then
926 BASECFLAGS="${BASECFLAGS} -mfloat-abi=softfp -mfpu=vfpv3-d16"
927 LDFLAGS="${LDFLAGS} -march=armv7-a -Wl,--fix-cortex-a8"
928 fi
Xavier de Gaye95750b12016-07-09 11:05:42 +0200929else
930 AC_MSG_RESULT([not Android])
931fi
932rm -f conftest.c conftest.out
933
Martin v. Löwis779ffc02002-12-02 22:17:01 +0000934# Check for unsupported systems
935case $ac_sys_system/$ac_sys_release in
Guido van Rossumcd16bf62007-06-13 18:07:49 +0000936atheos*|Linux*/1*)
Martin v. Löwis779ffc02002-12-02 22:17:01 +0000937 echo This system \($ac_sys_system/$ac_sys_release\) is no longer supported.
938 echo See README for details.
939 exit 1;;
940esac
941
Neil Schemenauer55f0cf32001-01-24 17:24:33 +0000942AC_EXEEXT
Neil Schemenauer3ae1d0a2001-01-27 06:54:42 +0000943AC_MSG_CHECKING(for --with-suffix)
Martin v. Löwis3e2c6322002-10-29 10:07:43 +0000944AC_ARG_WITH(suffix,
Matthias Klose2b8733f2010-04-25 18:34:36 +0000945 AS_HELP_STRING([--with-suffix=.exe], [set executable suffix]),
Martin v. Löwis3e2c6322002-10-29 10:07:43 +0000946[
Neil Schemenauer3ae1d0a2001-01-27 06:54:42 +0000947 case $withval in
948 no) EXEEXT=;;
949 yes) EXEEXT=.exe;;
950 *) EXEEXT=$withval;;
951 esac])
952AC_MSG_RESULT($EXEEXT)
Jack Jansen1999ef42001-12-06 21:47:20 +0000953
Jack Jansen9a66b6d2001-08-08 13:56:14 +0000954# Test whether we're running on a non-case-sensitive system, in which
955# case we give a warning if no ext is given
Jack Jansen1999ef42001-12-06 21:47:20 +0000956AC_SUBST(BUILDEXEEXT)
957AC_MSG_CHECKING(for case-insensitive build directory)
Jack Jansen3c2c4332002-11-06 13:33:32 +0000958if test ! -d CaseSensitiveTestDir; then
959mkdir CaseSensitiveTestDir
960fi
961
962if test -d casesensitivetestdir
Jack Jansen9a66b6d2001-08-08 13:56:14 +0000963then
Jack Jansen1999ef42001-12-06 21:47:20 +0000964 AC_MSG_RESULT(yes)
965 BUILDEXEEXT=.exe
966else
967 AC_MSG_RESULT(no)
Jack Jansendd19cf82001-12-06 22:36:17 +0000968 BUILDEXEEXT=$EXEEXT
Jack Jansen9a66b6d2001-08-08 13:56:14 +0000969fi
Jack Jansen3c2c4332002-11-06 13:33:32 +0000970rmdir CaseSensitiveTestDir
Guido van Rossumfb842551997-08-06 23:42:07 +0000971
Guido van Rossumdd997f71998-10-07 19:58:26 +0000972case $MACHDEP in
973bsdos*)
974 case $CC in
975 gcc) CC="$CC -D_HAVE_BSDI";;
976 esac;;
977esac
978
Guido van Rossum84561611997-08-21 00:08:11 +0000979case $ac_sys_system in
980hp*|HP*)
981 case $CC in
Guido van Rossumcd5ff9f2000-09-22 16:15:54 +0000982 cc|*/cc) CC="$CC -Ae";;
Guido van Rossum84561611997-08-21 00:08:11 +0000983 esac;;
984esac
985
Neil Schemenauer61c51152001-01-26 16:18:16 +0000986AC_SUBST(LIBRARY)
987AC_MSG_CHECKING(LIBRARY)
988if test -z "$LIBRARY"
989then
Barry Warsawf040d7d2010-10-18 17:09:07 +0000990 LIBRARY='libpython$(VERSION)$(ABIFLAGS).a'
Neil Schemenauer61c51152001-01-26 16:18:16 +0000991fi
992AC_MSG_RESULT($LIBRARY)
993
Guido van Rossum54ecc3d1999-01-27 17:53:11 +0000994# LDLIBRARY is the name of the library to link against (as opposed to the
Jack Jansenb6e9cad2001-08-15 01:26:28 +0000995# name of the library into which to insert object files). BLDLIBRARY is also
996# the library to link against, usually. On Mac OS X frameworks, BLDLIBRARY
997# is blank as the main program is not linked directly against LDLIBRARY.
998# LDLIBRARYDIR is the path to LDLIBRARY, which is made in a subdirectory. On
999# systems without shared libraries, LDLIBRARY is the same as LIBRARY
1000# (defined in the Makefiles). On Cygwin LDLIBRARY is the import library,
1001# DLLLIBRARY is the shared (i.e., DLL) library.
Victor Stinner1b80b242016-04-12 22:34:58 +02001002#
Martin v. Löwis1142de32002-03-29 16:28:31 +00001003# RUNSHARED is used to run shared python without installed libraries
1004#
1005# INSTSONAME is the name of the shared library that will be use to install
1006# on the system - some systems like version suffix, others don't
Barry Warsaw8cf4eae2010-10-16 01:04:07 +00001007#
1008# LDVERSION is the shared library version number, normally the Python version
1009# with the ABI build flags appended.
Guido van Rossum54ecc3d1999-01-27 17:53:11 +00001010AC_SUBST(LDLIBRARY)
Guido van Rossum27552902001-01-23 01:52:26 +00001011AC_SUBST(DLLLIBRARY)
Jack Jansenb6e9cad2001-08-15 01:26:28 +00001012AC_SUBST(BLDLIBRARY)
Martin v. Löwisd1fc34d2010-12-30 14:55:47 +00001013AC_SUBST(PY3LIBRARY)
Jack Jansenb6e9cad2001-08-15 01:26:28 +00001014AC_SUBST(LDLIBRARYDIR)
Martin v. Löwis1142de32002-03-29 16:28:31 +00001015AC_SUBST(INSTSONAME)
1016AC_SUBST(RUNSHARED)
Barry Warsaw8cf4eae2010-10-16 01:04:07 +00001017AC_SUBST(LDVERSION)
Neil Schemenauer61c51152001-01-26 16:18:16 +00001018LDLIBRARY="$LIBRARY"
Jack Jansenb6e9cad2001-08-15 01:26:28 +00001019BLDLIBRARY='$(LDLIBRARY)'
Martin v. Löwis09bdf722002-05-08 08:51:29 +00001020INSTSONAME='$(LDLIBRARY)'
Guido van Rossum27552902001-01-23 01:52:26 +00001021DLLLIBRARY=''
Jack Jansenb6e9cad2001-08-15 01:26:28 +00001022LDLIBRARYDIR=''
Martin v. Löwis1142de32002-03-29 16:28:31 +00001023RUNSHARED=''
Barry Warsaw14d98ac2010-11-24 19:43:47 +00001024LDVERSION="$VERSION"
Guido van Rossum54ecc3d1999-01-27 17:53:11 +00001025
Guido van Rossumfb842551997-08-06 23:42:07 +00001026# LINKCC is the command that links the python executable -- default is $(CC).
Martin v. Löwisb7da67a2001-10-18 15:35:38 +00001027# If CXX is set, and if it is needed to link a main function that was
1028# compiled with CXX, LINKCC is CXX instead. Always using CXX is undesirable:
1029# python might then depend on the C++ runtime
Victor Stinner1b80b242016-04-12 22:34:58 +02001030# This is altered for AIX in order to build the export list before
Guido van Rossumec95c7b1998-08-04 17:59:56 +00001031# linking.
Guido van Rossumfb842551997-08-06 23:42:07 +00001032AC_SUBST(LINKCC)
1033AC_MSG_CHECKING(LINKCC)
1034if test -z "$LINKCC"
1035then
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00001036 LINKCC='$(PURIFY) $(MAINCC)'
Guido van Rossumfb842551997-08-06 23:42:07 +00001037 case $ac_sys_system in
1038 AIX*)
Neal Norwitz0b27ff92003-03-31 15:53:49 +00001039 exp_extra="\"\""
1040 if test $ac_sys_release -ge 5 -o \
1041 $ac_sys_release -eq 4 -a `uname -r` -ge 2 ; then
1042 exp_extra="."
1043 fi
1044 LINKCC="\$(srcdir)/Modules/makexp_aix Modules/python.exp $exp_extra \$(LIBRARY); $LINKCC";;
Georg Brandlf78e02b2008-06-10 17:40:04 +00001045 QNX*)
1046 # qcc must be used because the other compilers do not
1047 # support -N.
1048 LINKCC=qcc;;
Guido van Rossumfb842551997-08-06 23:42:07 +00001049 esac
1050fi
1051AC_MSG_RESULT($LINKCC)
1052
Tarek Ziadébe720e02009-05-09 11:55:12 +00001053# GNULD is set to "yes" if the GNU linker is used. If this goes wrong
1054# make sure we default having it set to "no": this is used by
1055# distutils.unixccompiler to know if it should add --enable-new-dtags
1056# to linker command lines, and failing to detect GNU ld simply results
1057# in the same bahaviour as before.
1058AC_SUBST(GNULD)
1059AC_MSG_CHECKING(for GNU ld)
1060ac_prog=ld
1061if test "$GCC" = yes; then
1062 ac_prog=`$CC -print-prog-name=ld`
1063fi
1064case `"$ac_prog" -V 2>&1 < /dev/null` in
1065 *GNU*)
1066 GNULD=yes;;
1067 *)
1068 GNULD=no;;
1069esac
1070AC_MSG_RESULT($GNULD)
1071
Daniel Stutzbacha606faa2010-08-31 19:51:07 +00001072AC_C_INLINE
1073if test "$ac_cv_c_inline" != no ; then
Benjamin Petersond7f73e92010-09-05 00:09:07 +00001074 AC_DEFINE(USE_INLINE, 1, [Define to use the C99 inline keyword.])
Daniel Stutzbacha606faa2010-08-31 19:51:07 +00001075 AC_SUBST(USE_INLINE)
1076fi
1077
1078
Martin v. Löwis1142de32002-03-29 16:28:31 +00001079AC_MSG_CHECKING(for --enable-shared)
1080AC_ARG_ENABLE(shared,
Matthias Klose2b8733f2010-04-25 18:34:36 +00001081 AS_HELP_STRING([--enable-shared], [disable/enable building shared python library]))
Guido van Rossum54ecc3d1999-01-27 17:53:11 +00001082
Martin v. Löwis1142de32002-03-29 16:28:31 +00001083if test -z "$enable_shared"
Victor Stinner1b80b242016-04-12 22:34:58 +02001084then
Martin v. Löwisb51033d2002-05-03 05:53:15 +00001085 case $ac_sys_system in
Antoine Pitrou6103ab12009-10-24 20:11:21 +00001086 CYGWIN*)
Martin v. Löwisb51033d2002-05-03 05:53:15 +00001087 enable_shared="yes";;
1088 *)
1089 enable_shared="no";;
1090 esac
Martin v. Löwis1142de32002-03-29 16:28:31 +00001091fi
1092AC_MSG_RESULT($enable_shared)
1093
Skip Montanaro56f6a4f2004-06-18 02:47:22 +00001094AC_MSG_CHECKING(for --enable-profiling)
1095AC_ARG_ENABLE(profiling,
doko@ubuntu.comba015832012-06-30 16:52:05 +02001096 AS_HELP_STRING([--enable-profiling], [enable C-level code profiling]))
1097if test "x$enable_profiling" = xyes; then
1098 ac_save_cc="$CC"
Benjamin Peterson615ea1a2013-03-26 08:55:37 -04001099 CC="$CC -pg"
doko@ubuntu.comba015832012-06-30 16:52:05 +02001100 AC_LINK_IFELSE([AC_LANG_SOURCE([[int main() { return 0; }]])],
1101 [],
1102 [enable_profiling=no])
1103 CC="$ac_save_cc"
1104else
1105 enable_profiling=no
1106fi
1107AC_MSG_RESULT($enable_profiling)
Skip Montanaro56f6a4f2004-06-18 02:47:22 +00001108
doko@ubuntu.comba015832012-06-30 16:52:05 +02001109if test "x$enable_profiling" = xyes; then
1110 BASECFLAGS="-pg $BASECFLAGS"
1111 LDFLAGS="-pg $LDFLAGS"
1112fi
Martin v. Löwis1142de32002-03-29 16:28:31 +00001113
1114AC_MSG_CHECKING(LDLIBRARY)
Jack Jansenb6e9cad2001-08-15 01:26:28 +00001115
Guido van Rossumb8552162001-09-05 14:58:11 +00001116# MacOSX framework builds need more magic. LDLIBRARY is the dynamic
1117# library that we build, but we do not want to link against it (we
1118# will find it with a -framework option). For this reason there is an
1119# extra variable BLDLIBRARY against which Python and the extension
1120# modules are linked, BLDLIBRARY. This is normally the same as
1121# LDLIBRARY, but empty for MacOSX framework builds.
Jack Jansenb6e9cad2001-08-15 01:26:28 +00001122if test "$enable_framework"
1123then
1124 LDLIBRARY='$(PYTHONFRAMEWORKDIR)/Versions/$(VERSION)/$(PYTHONFRAMEWORK)'
doko@ubuntu.come5de66e2014-05-07 12:57:44 +02001125 RUNSHARED=DYLD_FRAMEWORK_PATH=`pwd`${DYLD_FRAMEWORK_PATH:+:${DYLD_FRAMEWORK_PATH}}
Jack Jansenb6e9cad2001-08-15 01:26:28 +00001126 BLDLIBRARY=''
1127else
1128 BLDLIBRARY='$(LDLIBRARY)'
Victor Stinner1b80b242016-04-12 22:34:58 +02001129fi
Jack Jansenb6e9cad2001-08-15 01:26:28 +00001130
Martin v. Löwis1142de32002-03-29 16:28:31 +00001131# Other platforms follow
1132if test $enable_shared = "yes"; then
doko@python.org87421192013-01-26 11:39:31 +01001133 PY_ENABLE_SHARED=1
Mark Hammond8235ea12002-07-19 06:55:41 +00001134 AC_DEFINE(Py_ENABLE_SHARED, 1, [Defined if Python is built as a shared library.])
Martin v. Löwis1142de32002-03-29 16:28:31 +00001135 case $ac_sys_system in
Martin v. Löwis1142de32002-03-29 16:28:31 +00001136 CYGWIN*)
Barry Warsaw8cf4eae2010-10-16 01:04:07 +00001137 LDLIBRARY='libpython$(LDVERSION).dll.a'
1138 DLLLIBRARY='libpython$(LDVERSION).dll'
Martin v. Löwis1142de32002-03-29 16:28:31 +00001139 ;;
1140 SunOS*)
Barry Warsaw8cf4eae2010-10-16 01:04:07 +00001141 LDLIBRARY='libpython$(LDVERSION).so'
1142 BLDLIBRARY='-Wl,-R,$(LIBDIR) -L. -lpython$(LDVERSION)'
doko@ubuntu.come5de66e2014-05-07 12:57:44 +02001143 RUNSHARED=LD_LIBRARY_PATH=`pwd`${LD_LIBRARY_PATH:+:${LD_LIBRARY_PATH}}
Martin v. Löwis2389c412003-10-31 15:42:07 +00001144 INSTSONAME="$LDLIBRARY".$SOVERSION
Martin v. Löwis9b142aa2011-02-05 20:26:52 +00001145 if test "$with_pydebug" != yes
Martin v. Löwisd1fc34d2010-12-30 14:55:47 +00001146 then
1147 PY3LIBRARY=libpython3.so
1148 fi
Martin v. Löwis1142de32002-03-29 16:28:31 +00001149 ;;
Charles-François Natali749400a2011-07-24 22:41:18 +02001150 Linux*|GNU*|NetBSD*|FreeBSD*|DragonFly*|OpenBSD*)
Barry Warsaw8cf4eae2010-10-16 01:04:07 +00001151 LDLIBRARY='libpython$(LDVERSION).so'
1152 BLDLIBRARY='-L. -lpython$(LDVERSION)'
doko@ubuntu.come5de66e2014-05-07 12:57:44 +02001153 RUNSHARED=LD_LIBRARY_PATH=`pwd`${LD_LIBRARY_PATH:+:${LD_LIBRARY_PATH}}
Martin v. Löwis1142de32002-03-29 16:28:31 +00001154 INSTSONAME="$LDLIBRARY".$SOVERSION
Martin v. Löwis9b142aa2011-02-05 20:26:52 +00001155 if test "$with_pydebug" != yes
Martin v. Löwisd1fc34d2010-12-30 14:55:47 +00001156 then
1157 PY3LIBRARY=libpython3.so
1158 fi
Martin v. Löwis1142de32002-03-29 16:28:31 +00001159 ;;
1160 hp*|HP*)
Thomas Wouters477c8d52006-05-27 19:21:47 +00001161 case `uname -m` in
1162 ia64)
Barry Warsaw8cf4eae2010-10-16 01:04:07 +00001163 LDLIBRARY='libpython$(LDVERSION).so'
Thomas Wouters477c8d52006-05-27 19:21:47 +00001164 ;;
1165 *)
Barry Warsaw8cf4eae2010-10-16 01:04:07 +00001166 LDLIBRARY='libpython$(LDVERSION).sl'
Thomas Wouters477c8d52006-05-27 19:21:47 +00001167 ;;
1168 esac
Barry Warsaw8cf4eae2010-10-16 01:04:07 +00001169 BLDLIBRARY='-Wl,+b,$(LIBDIR) -L. -lpython$(LDVERSION)'
doko@ubuntu.come5de66e2014-05-07 12:57:44 +02001170 RUNSHARED=SHLIB_PATH=`pwd`${SHLIB_PATH:+:${SHLIB_PATH}}
Martin v. Löwis1142de32002-03-29 16:28:31 +00001171 ;;
Georg Brandlb1441c72009-01-03 22:33:39 +00001172 Darwin*)
Barry Warsaw8cf4eae2010-10-16 01:04:07 +00001173 LDLIBRARY='libpython$(LDVERSION).dylib'
1174 BLDLIBRARY='-L. -lpython$(LDVERSION)'
doko@ubuntu.come5de66e2014-05-07 12:57:44 +02001175 RUNSHARED=DYLD_LIBRARY_PATH=`pwd`${DYLD_LIBRARY_PATH:+:${DYLD_LIBRARY_PATH}}
Georg Brandlb1441c72009-01-03 22:33:39 +00001176 ;;
Antoine Pitrou8e6b4072010-09-10 19:44:44 +00001177 AIX*)
Barry Warsaw8cf4eae2010-10-16 01:04:07 +00001178 LDLIBRARY='libpython$(LDVERSION).so'
doko@ubuntu.come5de66e2014-05-07 12:57:44 +02001179 RUNSHARED=LIBPATH=`pwd`${LIBPATH:+:${LIBPATH}}
Antoine Pitrou8e6b4072010-09-10 19:44:44 +00001180 ;;
Georg Brandlb1441c72009-01-03 22:33:39 +00001181
Martin v. Löwis1142de32002-03-29 16:28:31 +00001182 esac
Jason Tishler30765592003-09-04 11:04:06 +00001183else # shared is disabled
doko@python.org87421192013-01-26 11:39:31 +01001184 PY_ENABLE_SHARED=0
Jason Tishler30765592003-09-04 11:04:06 +00001185 case $ac_sys_system in
1186 CYGWIN*)
1187 BLDLIBRARY='$(LIBRARY)'
Barry Warsaw8cf4eae2010-10-16 01:04:07 +00001188 LDLIBRARY='libpython$(LDVERSION).dll.a'
Jason Tishler30765592003-09-04 11:04:06 +00001189 ;;
1190 esac
Martin v. Löwis1142de32002-03-29 16:28:31 +00001191fi
1192
doko@ubuntu.com1abe1c52012-06-30 20:42:45 +02001193if test "$cross_compiling" = yes; then
1194 RUNSHARED=
1195fi
1196
Guido van Rossum54ecc3d1999-01-27 17:53:11 +00001197AC_MSG_RESULT($LDLIBRARY)
1198
Guido van Rossum627b2d71993-12-24 10:39:16 +00001199AC_PROG_RANLIB
Guido van Rossum433c8ad1994-08-01 12:07:07 +00001200AC_SUBST(AR)
doko@ubuntu.com51f65942012-06-30 14:42:46 +02001201AC_CHECK_TOOLS(AR, ar aal, ar)
Neil Schemenauera42c8272001-03-31 00:01:55 +00001202
Tarek Ziadé5662d3e2009-05-07 21:24:43 +00001203# tweak ARFLAGS only if the user didn't set it on the command line
1204AC_SUBST(ARFLAGS)
1205if test -z "$ARFLAGS"
1206then
1207 ARFLAGS="rc"
1208fi
1209
doko@ubuntu.com58844492012-06-30 18:25:32 +02001210AC_CHECK_TOOLS([READELF], [readelf], [:])
1211if test "$cross_compiling" = yes; then
1212 case "$READELF" in
1213 readelf|:)
1214 AC_MSG_ERROR([readelf for the host is required for cross builds])
1215 ;;
1216 esac
1217fi
1218AC_SUBST(READELF)
1219
Ralf Schmitt023f3a72011-05-31 17:10:03 -05001220
Neil Schemenauera42c8272001-03-31 00:01:55 +00001221case $MACHDEP in
Neil Schemenaueraf5567f2001-10-21 22:32:04 +00001222bsdos*|hp*|HP*)
1223 # install -d does not work on BSDI or HP-UX
Neil Schemenauera42c8272001-03-31 00:01:55 +00001224 if test -z "$INSTALL"
1225 then
1226 INSTALL="${srcdir}/install-sh -c"
1227 fi
1228esac
Neil Schemenauer55f0cf32001-01-24 17:24:33 +00001229AC_PROG_INSTALL
Matthias Klose93a0ef12012-03-15 18:08:34 +01001230AC_PROG_MKDIR_P
Guido van Rossumb418f891996-07-30 18:06:02 +00001231
Guido van Rossumec95c7b1998-08-04 17:59:56 +00001232# Not every filesystem supports hard links
1233AC_SUBST(LN)
1234if test -z "$LN" ; then
1235 case $ac_sys_system in
Guido van Rossumaef734b2001-01-10 21:09:12 +00001236 CYGWIN*) LN="ln -s";;
Guido van Rossumec95c7b1998-08-04 17:59:56 +00001237 *) LN=ln;;
1238 esac
1239fi
1240
Barry Warsaw35f3a2c2010-09-03 18:30:30 +00001241# For calculating the .so ABI tag.
Barry Warsaw8cf4eae2010-10-16 01:04:07 +00001242AC_SUBST(ABIFLAGS)
1243ABIFLAGS=""
Barry Warsaw35f3a2c2010-09-03 18:30:30 +00001244
Fred Drake9f715822001-07-11 06:27:00 +00001245# Check for --with-pydebug
1246AC_MSG_CHECKING(for --with-pydebug)
Victor Stinner1b80b242016-04-12 22:34:58 +02001247AC_ARG_WITH(pydebug,
Matthias Klose2b8733f2010-04-25 18:34:36 +00001248 AS_HELP_STRING([--with-pydebug], [build with Py_DEBUG defined]),
Martin v. Löwis3e2c6322002-10-29 10:07:43 +00001249[
Fred Drake9f715822001-07-11 06:27:00 +00001250if test "$withval" != no
Victor Stinner1b80b242016-04-12 22:34:58 +02001251then
1252 AC_DEFINE(Py_DEBUG, 1,
1253 [Define if you want to build an interpreter with many run-time checks.])
1254 AC_MSG_RESULT(yes);
Martin v. Löwisc45929e2002-04-06 10:10:49 +00001255 Py_DEBUG='true'
Barry Warsaw8cf4eae2010-10-16 01:04:07 +00001256 ABIFLAGS="${ABIFLAGS}d"
Fred Drake9f715822001-07-11 06:27:00 +00001257else AC_MSG_RESULT(no); Py_DEBUG='false'
1258fi],
1259[AC_MSG_RESULT(no)])
1260
Brett Cannon63d98bc2016-09-06 17:12:40 -07001261# Enable optimization flags
1262AC_SUBST(DEF_MAKE_ALL_RULE)
1263AC_SUBST(DEF_MAKE_RULE)
1264Py_OPT='false'
Gregory P. Smith ext:(%20%5BGoogle%20Inc.%5D)1016b2f2016-11-20 21:07:42 +00001265AC_MSG_CHECKING(for --enable-optimizations)
Gregory P. Smith ext:(%20%5BGoogle%20Inc.%5D)164eea52016-11-20 21:13:16 +00001266AC_ARG_ENABLE(optimizations, AS_HELP_STRING([--enable-optimizations], [Enable expensive optimizations (PGO, etc). Disabled by default.]),
Brett Cannon63d98bc2016-09-06 17:12:40 -07001267[
INADA Naokif01de612017-03-29 00:25:26 +09001268if test "$enableval" != no
Brett Cannon63d98bc2016-09-06 17:12:40 -07001269then
1270 Py_OPT='true'
1271 AC_MSG_RESULT(yes);
1272else
1273 Py_OPT='false'
1274 AC_MSG_RESULT(no);
1275fi],
1276[AC_MSG_RESULT(no)])
1277if test "$Py_OPT" = 'true' ; then
Gregory P. Smith ext:(%20%5BGoogle%20Inc.%5D)14c7f712016-09-08 22:38:46 +00001278 # Intentionally not forcing Py_LTO='true' here. Too many toolchains do not
1279 # compile working code using it and both test_distutils and test_gdb are
Brett Cannon1d8f7552016-11-03 16:20:00 -07001280 # broken when you do manage to get a toolchain that works with it. People
Gregory P. Smith ext:(%20%5BGoogle%20Inc.%5D)14c7f712016-09-08 22:38:46 +00001281 # who want LTO need to use --with-lto themselves.
Brett Cannon63d98bc2016-09-06 17:12:40 -07001282 DEF_MAKE_ALL_RULE="profile-opt"
Gregory P. Smith799520c2016-09-07 16:10:00 -07001283 REQUIRE_PGO="yes"
Brett Cannon63d98bc2016-09-06 17:12:40 -07001284 DEF_MAKE_RULE="build_all"
1285else
1286 DEF_MAKE_ALL_RULE="build_all"
Gregory P. Smith799520c2016-09-07 16:10:00 -07001287 REQUIRE_PGO="no"
Brett Cannon63d98bc2016-09-06 17:12:40 -07001288 DEF_MAKE_RULE="all"
1289fi
1290
Gregory P. Smithd82da9f2016-04-15 16:57:04 -07001291# Enable LTO flags
1292AC_SUBST(LTOFLAGS)
1293AC_MSG_CHECKING(for --with-lto)
1294AC_ARG_WITH(lto, AS_HELP_STRING([--with-lto], [Enable Link Time Optimization in PGO builds. Disabled by default.]),
1295[
1296if test "$withval" != no
1297then
1298 Py_LTO='true'
1299 AC_MSG_RESULT(yes);
1300else
1301 Py_LTO='false'
1302 AC_MSG_RESULT(no);
1303fi],
1304[AC_MSG_RESULT(no)])
1305if test "$Py_LTO" = 'true' ; then
1306 case $CC in
1307 *clang*)
Ned Deily8482ce42016-09-06 15:09:20 -07001308 case $ac_sys_system in
1309 Darwin*)
1310 # Any changes made here should be reflected in the GCC+Darwin case below
1311 LTOFLAGS="-flto -Wl,-export_dynamic"
1312 ;;
1313 *)
1314 LTOFLAGS="-flto"
1315 ;;
1316 esac
Gregory P. Smithd82da9f2016-04-15 16:57:04 -07001317 ;;
1318 *gcc*)
1319 case $ac_sys_system in
1320 Darwin*)
Ned Deily8482ce42016-09-06 15:09:20 -07001321 LTOFLAGS="-flto -Wl,-export_dynamic"
Gregory P. Smithd82da9f2016-04-15 16:57:04 -07001322 ;;
1323 *)
1324 LTOFLAGS="-flto -fuse-linker-plugin -ffat-lto-objects -flto-partition=none"
1325 ;;
1326 esac
1327 ;;
1328 esac
1329fi
1330
Brett Cannon7188a3e2015-09-18 15:13:44 -07001331# Enable PGO flags.
1332AC_SUBST(PGO_PROF_GEN_FLAG)
1333AC_SUBST(PGO_PROF_USE_FLAG)
1334AC_SUBST(LLVM_PROF_MERGER)
1335AC_SUBST(LLVM_PROF_FILE)
1336AC_SUBST(LLVM_PROF_ERR)
Gregory P. Smith799520c2016-09-07 16:10:00 -07001337# Make this work on systems where llvm tools are not installed with their
1338# normal names in the default $PATH (ie: Ubuntu). They exist under the
1339# non-suffixed name in their versioned llvm directory.
1340llvm_bin_dir=''
1341llvm_path="${PATH}"
1342if test "${CC}" = "clang"
1343then
1344 clang_bin=`which clang`
1345 # Some systems install clang elsewhere as a symlink to the real path
1346 # which is where the related llvm tools are located.
1347 if test -L "${clang_bin}"
1348 then
1349 clang_dir=`dirname "${clang_bin}"`
1350 clang_bin=`readlink "${clang_bin}"`
1351 llvm_bin_dir="${clang_dir}/"`dirname "${clang_bin}"`
1352 llvm_path="${llvm_path}${PATH_SEPARATOR}${llvm_bin_dir}"
1353 fi
1354fi
1355AC_SUBST(LLVM_PROFDATA)
1356AC_PATH_TARGET_TOOL(LLVM_PROFDATA, llvm-profdata, '', ${llvm_path})
Brett Cannon7188a3e2015-09-18 15:13:44 -07001357AC_SUBST(LLVM_PROF_FOUND)
Gregory P. Smith799520c2016-09-07 16:10:00 -07001358if test -n "${LLVM_PROFDATA}" -a -x "${LLVM_PROFDATA}"
1359then
1360 LLVM_PROF_FOUND="found"
1361else
1362 LLVM_PROF_FOUND="not-found"
1363fi
1364if test "$ac_sys_system" = "Darwin" -a "${LLVM_PROF_FOUND}" = "not-found"
1365then
1366 found_llvm_profdata=`/usr/bin/xcrun -find llvm-profdata 2>/dev/null`
1367 if test -n "${found_llvm_profdata}"
1368 then
1369 # llvm-profdata isn't directly in $PATH in some cases.
1370 # https://apple.stackexchange.com/questions/197053/
1371 LLVM_PROFDATA='/usr/bin/xcrun llvm-profdata'
1372 LLVM_PROF_FOUND=found
1373 AC_MSG_NOTICE([llvm-profdata found via xcrun: ${LLVM_PROFDATA}])
1374 fi
1375fi
Brett Cannon7188a3e2015-09-18 15:13:44 -07001376LLVM_PROF_ERR=no
1377case $CC in
1378 *clang*)
1379 # Any changes made here should be reflected in the GCC+Darwin case below
1380 PGO_PROF_GEN_FLAG="-fprofile-instr-generate"
1381 PGO_PROF_USE_FLAG="-fprofile-instr-use=code.profclangd"
Gregory P. Smith799520c2016-09-07 16:10:00 -07001382 LLVM_PROF_MERGER="${LLVM_PROFDATA} merge -output=code.profclangd *.profclangr"
Brett Cannon7188a3e2015-09-18 15:13:44 -07001383 LLVM_PROF_FILE="LLVM_PROFILE_FILE=\"code-%p.profclangr\""
1384 if test $LLVM_PROF_FOUND = not-found
1385 then
1386 LLVM_PROF_ERR=yes
Gregory P. Smith799520c2016-09-07 16:10:00 -07001387 if test "${REQUIRE_PGO}" = "yes"
1388 then
Gregory P. Smith ext:(%20%5BGoogle%20Inc.%5D)1016b2f2016-11-20 21:07:42 +00001389 AC_MSG_ERROR([llvm-profdata is required for a --enable-optimizations build but could not be found.])
Gregory P. Smith799520c2016-09-07 16:10:00 -07001390 fi
Brett Cannon7188a3e2015-09-18 15:13:44 -07001391 fi
1392 ;;
1393 *gcc*)
1394 case $ac_sys_system in
1395 Darwin*)
1396 PGO_PROF_GEN_FLAG="-fprofile-instr-generate"
1397 PGO_PROF_USE_FLAG="-fprofile-instr-use=code.profclangd"
Gregory P. Smith799520c2016-09-07 16:10:00 -07001398 LLVM_PROF_MERGER="${LLVM_PROFDATA} merge -output=code.profclangd *.profclangr"
Brett Cannon7188a3e2015-09-18 15:13:44 -07001399 LLVM_PROF_FILE="LLVM_PROFILE_FILE=\"code-%p.profclangr\""
Gregory P. Smith799520c2016-09-07 16:10:00 -07001400 if test "${LLVM_PROF_FOUND}" = "not-found"
Brett Cannon7188a3e2015-09-18 15:13:44 -07001401 then
1402 LLVM_PROF_ERR=yes
Gregory P. Smith799520c2016-09-07 16:10:00 -07001403 if test "${REQUIRE_PGO}" = "yes"
1404 then
Gregory P. Smith ext:(%20%5BGoogle%20Inc.%5D)1016b2f2016-11-20 21:07:42 +00001405 AC_MSG_ERROR([llvm-profdata is required for a --enable-optimizations build but could not be found.])
Gregory P. Smith799520c2016-09-07 16:10:00 -07001406 fi
Brett Cannon7188a3e2015-09-18 15:13:44 -07001407 fi
1408 ;;
1409 *)
1410 PGO_PROF_GEN_FLAG="-fprofile-generate"
1411 PGO_PROF_USE_FLAG="-fprofile-use -fprofile-correction"
1412 LLVM_PROF_MERGER="true"
1413 LLVM_PROF_FILE=""
1414 ;;
1415 esac
1416 ;;
Zachary Ware5af85642015-12-21 12:09:17 -06001417 *icc*)
1418 PGO_PROF_GEN_FLAG="-prof-gen"
1419 PGO_PROF_USE_FLAG="-prof-use"
1420 LLVM_PROF_MERGER="true"
1421 LLVM_PROF_FILE=""
1422 ;;
Brett Cannon7188a3e2015-09-18 15:13:44 -07001423esac
1424
Skip Montanarodecc6a42003-01-01 20:07:49 +00001425# XXX Shouldn't the code above that fiddles with BASECFLAGS and OPT be
1426# merged with this chunk of code?
1427
Neil Schemenauer55f0cf32001-01-24 17:24:33 +00001428# Optimizer/debugger flags
Skip Montanarodecc6a42003-01-01 20:07:49 +00001429# ------------------------
1430# (The following bit of code is complicated enough - please keep things
1431# indented properly. Just pretend you're editing Python code. ;-)
1432
1433# There are two parallel sets of case statements below, one that checks to
1434# see if OPT was set and one that does BASECFLAGS setting based upon
1435# compiler and platform. BASECFLAGS tweaks need to be made even if the
1436# user set OPT.
1437
1438# tweak OPT based on compiler and platform, only if the user didn't set
1439# it on the command line
Guido van Rossumb418f891996-07-30 18:06:02 +00001440AC_SUBST(OPT)
Victor Stinner809101f2017-05-02 10:47:37 +02001441AC_SUBST(CFLAGS_ALIASING)
Benjamin Peterson65b4ec52010-03-23 21:02:34 +00001442if test "${OPT-unset}" = "unset"
Guido van Rossumb418f891996-07-30 18:06:02 +00001443then
Skip Montanarodecc6a42003-01-01 20:07:49 +00001444 case $GCC in
1445 yes)
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00001446 if test "$CC" != 'g++' ; then
1447 STRICT_PROTO="-Wstrict-prototypes"
1448 fi
Christian Heimes38053212007-12-14 01:24:44 +00001449 # For gcc 4.x we need to use -fwrapv so lets check if its supported
1450 if "$CC" -v --help 2>/dev/null |grep -- -fwrapv > /dev/null; then
1451 WRAP="-fwrapv"
1452 fi
Stefan Krah962055d2011-09-14 15:14:08 +02001453
Stefan Krahaf04ff22011-12-08 22:20:31 +01001454 case $CC in
Victor Stinner809101f2017-05-02 10:47:37 +02001455 *clang*)
1456 cc_is_clang=1
1457 ;;
1458 *)
1459 if $CC --version 2>&1 | grep -q clang
1460 then
1461 cc_is_clang=1
1462 else
1463 cc_is_clang=
1464 fi
Stefan Krahaf04ff22011-12-08 22:20:31 +01001465 esac
Stefan Krah962055d2011-09-14 15:14:08 +02001466
Victor Stinner809101f2017-05-02 10:47:37 +02001467 if test -n "${cc_is_clang}"
1468 then
1469 # Clang also needs -fwrapv
1470 WRAP="-fwrapv"
1471 # bpo-30104: disable strict aliasing to compile correctly dtoa.c,
1472 # see Makefile.pre.in for more information
1473 CFLAGS_ALIASING="-fno-strict-aliasing"
1474 fi
1475
Skip Montanarodecc6a42003-01-01 20:07:49 +00001476 case $ac_cv_prog_cc_g in
Guido van Rossum2242f2f2001-04-11 20:58:20 +00001477 yes)
Fred Drake9f715822001-07-11 06:27:00 +00001478 if test "$Py_DEBUG" = 'true' ; then
1479 # Optimization messes up debuggers, so turn it off for
1480 # debug builds.
Antoine Pitrou3d6c7842015-02-11 19:39:16 +01001481 if "$CC" -v --help 2>/dev/null |grep -- -Og > /dev/null; then
Victor Stinner809101f2017-05-02 10:47:37 +02001482 OPT="-g -Og -Wall"
Antoine Pitrou3d6c7842015-02-11 19:39:16 +01001483 else
Victor Stinner809101f2017-05-02 10:47:37 +02001484 OPT="-g -O0 -Wall"
Antoine Pitrou3d6c7842015-02-11 19:39:16 +01001485 fi
Fred Drake9f715822001-07-11 06:27:00 +00001486 else
Victor Stinner809101f2017-05-02 10:47:37 +02001487 OPT="-g $WRAP -O3 -Wall"
Skip Montanarodecc6a42003-01-01 20:07:49 +00001488 fi
1489 ;;
Guido van Rossum2242f2f2001-04-11 20:58:20 +00001490 *)
Victor Stinner809101f2017-05-02 10:47:37 +02001491 OPT="-O3 -Wall"
Skip Montanarodecc6a42003-01-01 20:07:49 +00001492 ;;
Fred Drake9f715822001-07-11 06:27:00 +00001493 esac
Victor Stinner809101f2017-05-02 10:47:37 +02001494
1495 OPT="$OPT $STRICT_PROTO"
1496
Martin v. Löwis21ee4092002-09-30 16:19:48 +00001497 case $ac_sys_system in
Skip Montanarodecc6a42003-01-01 20:07:49 +00001498 SCO_SV*) OPT="$OPT -m486 -DSCO5"
1499 ;;
1500 esac
Fred Drake9f715822001-07-11 06:27:00 +00001501 ;;
Skip Montanarodecc6a42003-01-01 20:07:49 +00001502
Guido van Rossum2242f2f2001-04-11 20:58:20 +00001503 *)
Skip Montanarodecc6a42003-01-01 20:07:49 +00001504 OPT="-O"
1505 ;;
Guido van Rossum2242f2f2001-04-11 20:58:20 +00001506 esac
Guido van Rossum4e8af441994-08-19 15:33:54 +00001507fi
Guido van Rossum627b2d71993-12-24 10:39:16 +00001508
Skip Montanarodecc6a42003-01-01 20:07:49 +00001509AC_SUBST(BASECFLAGS)
Benjamin Petersonacb8c522014-08-09 20:01:49 -07001510AC_SUBST(CFLAGS_NODIST)
Georg Brandlfcaf9102008-07-16 02:17:56 +00001511
1512# The -arch flags for universal builds on OSX
1513UNIVERSAL_ARCH_FLAGS=
1514AC_SUBST(UNIVERSAL_ARCH_FLAGS)
1515
Skip Montanarodecc6a42003-01-01 20:07:49 +00001516# tweak BASECFLAGS based on compiler and platform
1517case $GCC in
1518yes)
Benjamin Peterson050af5d2016-09-10 17:53:13 -07001519 CFLAGS_NODIST="$CFLAGS_NODIST -std=c99"
Benjamin Petersond1702562016-09-07 12:00:06 -07001520
Serhiy Storchakaea80ffb2016-09-11 21:56:32 +03001521 AC_MSG_CHECKING(for -Wextra)
1522 ac_save_cc="$CC"
1523 CC="$CC -Wextra -Werror"
1524 AC_CACHE_VAL(ac_cv_extra_warnings,
1525 AC_COMPILE_IFELSE(
1526 [
1527 AC_LANG_PROGRAM([[]], [[]])
1528 ],[
1529 ac_cv_extra_warnings=yes
1530 ],[
1531 ac_cv_extra_warnings=no
1532 ]))
1533 CC="$ac_save_cc"
1534 AC_MSG_RESULT($ac_cv_extra_warnings)
1535
1536 if test $ac_cv_extra_warnings = yes
1537 then
1538 CFLAGS_NODIST="$CFLAGS_NODIST -Wextra"
1539 fi
1540
Benjamin Petersone6c9d242010-03-30 17:34:47 +00001541 # Python doesn't violate C99 aliasing rules, but older versions of
1542 # GCC produce warnings for legal Python code. Enable
1543 # -fno-strict-aliasing on versions of GCC that support but produce
1544 # warnings. See Issue3326
1545 AC_MSG_CHECKING(whether $CC accepts and needs -fno-strict-aliasing)
Martin v. Löwis70fedcd2003-07-07 21:26:19 +00001546 ac_save_cc="$CC"
1547 CC="$CC -fno-strict-aliasing"
Benjamin Petersone6c9d242010-03-30 17:34:47 +00001548 save_CFLAGS="$CFLAGS"
1549 AC_CACHE_VAL(ac_cv_no_strict_aliasing,
Matthias Kloseb159a552010-04-25 21:00:44 +00001550 AC_COMPILE_IFELSE(
1551 [
Mark Dickinson8c2b6f12010-05-11 09:23:07 +00001552 AC_LANG_PROGRAM([[]], [[]])
Matthias Kloseb159a552010-04-25 21:00:44 +00001553 ],[
1554 CC="$ac_save_cc -fstrict-aliasing"
1555 CFLAGS="$CFLAGS -Werror -Wstrict-aliasing"
1556 AC_COMPILE_IFELSE(
1557 [
Mark Dickinson8c2b6f12010-05-11 09:23:07 +00001558 AC_LANG_PROGRAM([[void f(int **x) {}]],
1559 [[double *x; f((int **) &x);]])
Matthias Kloseb159a552010-04-25 21:00:44 +00001560 ],[
1561 ac_cv_no_strict_aliasing=no
1562 ],[
1563 ac_cv_no_strict_aliasing=yes
1564 ])
1565 ],[
1566 ac_cv_no_strict_aliasing=no
1567 ]))
Benjamin Petersone6c9d242010-03-30 17:34:47 +00001568 CFLAGS="$save_CFLAGS"
Martin v. Löwis70fedcd2003-07-07 21:26:19 +00001569 CC="$ac_save_cc"
Benjamin Petersone6c9d242010-03-30 17:34:47 +00001570 AC_MSG_RESULT($ac_cv_no_strict_aliasing)
1571 if test $ac_cv_no_strict_aliasing = yes
Martin v. Löwis70fedcd2003-07-07 21:26:19 +00001572 then
1573 BASECFLAGS="$BASECFLAGS -fno-strict-aliasing"
1574 fi
Mark Dickinsonb0e2b4c2008-04-26 20:48:56 +00001575
Zachary Ware5af85642015-12-21 12:09:17 -06001576 # ICC doesn't recognize the option, but only emits a warning
1577 ## XXX does it emit an unused result warning and can it be disabled?
1578 case "$CC" in
1579 *icc*)
1580 ac_cv_disable_unused_result_warning=no
1581 ;;
1582 *)
Benjamin Peterson7ddbf102011-09-23 13:23:22 -04001583 AC_MSG_CHECKING(if we can turn off $CC unused result warning)
1584 ac_save_cc="$CC"
1585 CC="$CC -Wunused-result -Werror"
1586 save_CFLAGS="$CFLAGS"
1587 AC_CACHE_VAL(ac_cv_disable_unused_result_warning,
1588 AC_COMPILE_IFELSE(
1589 [
1590 AC_LANG_PROGRAM([[]], [[]])
1591 ],[
1592 ac_cv_disable_unused_result_warning=yes
1593 ],[
1594 ac_cv_disable_unused_result_warning=no
1595 ]))
1596 CFLAGS="$save_CFLAGS"
1597 CC="$ac_save_cc"
1598 AC_MSG_RESULT($ac_cv_disable_unused_result_warning)
Zachary Ware5af85642015-12-21 12:09:17 -06001599 ;;
1600 esac
Benjamin Peterson7ddbf102011-09-23 13:23:22 -04001601
1602 if test $ac_cv_disable_unused_result_warning = yes
1603 then
1604 BASECFLAGS="$BASECFLAGS -Wno-unused-result"
Serhiy Storchakaea80ffb2016-09-11 21:56:32 +03001605 CFLAGS_NODIST="$CFLAGS_NODIST -Wno-unused-result"
1606 fi
1607
1608 AC_MSG_CHECKING(if we can turn off $CC unused parameter warning)
1609 ac_save_cc="$CC"
1610 CC="$CC -Wunused-parameter -Werror"
1611 AC_CACHE_VAL(ac_cv_disable_unused_parameter_warning,
1612 AC_COMPILE_IFELSE(
1613 [
1614 AC_LANG_PROGRAM([[]], [[]])
1615 ],[
1616 ac_cv_disable_unused_parameter_warning=yes
1617 ],[
1618 ac_cv_disable_unused_parameter_warning=no
1619 ]))
1620 CC="$ac_save_cc"
1621 AC_MSG_RESULT($ac_cv_disable_unused_parameter_warning)
1622
1623 if test $ac_cv_disable_unused_parameter_warning = yes
1624 then
1625 CFLAGS_NODIST="$CFLAGS_NODIST -Wno-unused-parameter"
1626 fi
1627
1628 AC_MSG_CHECKING(if we can turn off $CC missing field initializers warning)
1629 ac_save_cc="$CC"
1630 CC="$CC -Wmissing-field-initializers -Werror"
1631 AC_CACHE_VAL(ac_cv_disable_missing_field_initializers,
1632 AC_COMPILE_IFELSE(
1633 [
1634 AC_LANG_PROGRAM([[]], [[]])
1635 ],[
1636 ac_cv_disable_missing_field_initializers=yes
1637 ],[
1638 ac_cv_disable_missing_field_initializers=no
1639 ]))
1640 CC="$ac_save_cc"
1641 AC_MSG_RESULT($ac_cv_disable_missing_field_initializers)
1642
1643 if test $ac_cv_disable_missing_field_initializers = yes
1644 then
1645 CFLAGS_NODIST="$CFLAGS_NODIST -Wno-missing-field-initializers"
Benjamin Peterson7ddbf102011-09-23 13:23:22 -04001646 fi
1647
Charles-François Natali7f9cc932014-08-01 21:57:49 +01001648 AC_MSG_CHECKING(if we can turn on $CC mixed sign comparison warning)
1649 ac_save_cc="$CC"
1650 CC="$CC -Wsign-compare"
1651 save_CFLAGS="$CFLAGS"
1652 AC_CACHE_VAL(ac_cv_enable_sign_compare_warning,
1653 AC_COMPILE_IFELSE(
1654 [
1655 AC_LANG_PROGRAM([[]], [[]])
1656 ],[
1657 ac_cv_enable_sign_compare_warning=yes
1658 ],[
1659 ac_cv_enable_sign_compare_warning=no
1660 ]))
1661 CFLAGS="$save_CFLAGS"
1662 CC="$ac_save_cc"
1663 AC_MSG_RESULT($ac_cv_enable_sign_compare_warning)
1664
1665 if test $ac_cv_enable_sign_compare_warning = yes
1666 then
1667 BASECFLAGS="$BASECFLAGS -Wsign-compare"
1668 fi
1669
1670 AC_MSG_CHECKING(if we can turn on $CC unreachable code warning)
1671 ac_save_cc="$CC"
1672 CC="$CC -Wunreachable-code"
1673 save_CFLAGS="$CFLAGS"
1674 AC_CACHE_VAL(ac_cv_enable_unreachable_code_warning,
1675 AC_COMPILE_IFELSE(
1676 [
1677 AC_LANG_PROGRAM([[]], [[]])
1678 ],[
1679 ac_cv_enable_unreachable_code_warning=yes
1680 ],[
1681 ac_cv_enable_unreachable_code_warning=no
1682 ]))
1683 CFLAGS="$save_CFLAGS"
1684 CC="$ac_save_cc"
Charles-François Natali7f9cc932014-08-01 21:57:49 +01001685
1686 # Don't enable unreachable code warning in debug mode, since it usually
1687 # results in non-standard code paths.
Ned Deilybec699e2016-03-08 00:28:37 -05001688 # Issue #24324: Unfortunately, the unreachable code warning does not work
1689 # correctly on gcc and has been silently removed from the compiler.
1690 # It is supported on clang but on OS X systems gcc may be an alias
1691 # for clang. Try to determine if the compiler is not really gcc and,
1692 # if so, only then enable the warning.
1693 if test $ac_cv_enable_unreachable_code_warning = yes && \
1694 test "$Py_DEBUG" != "true" && \
1695 test -z "`$CC --version 2>/dev/null | grep 'Free Software Foundation'`"
Charles-François Natali7f9cc932014-08-01 21:57:49 +01001696 then
1697 BASECFLAGS="$BASECFLAGS -Wunreachable-code"
Ned Deilybec699e2016-03-08 00:28:37 -05001698 else
1699 ac_cv_enable_unreachable_code_warning=no
Charles-François Natali7f9cc932014-08-01 21:57:49 +01001700 fi
Ned Deilybec699e2016-03-08 00:28:37 -05001701 AC_MSG_RESULT($ac_cv_enable_unreachable_code_warning)
Charles-François Natali7f9cc932014-08-01 21:57:49 +01001702
Mark Dickinsonb0e2b4c2008-04-26 20:48:56 +00001703 # if using gcc on alpha, use -mieee to get (near) full IEEE 754
1704 # support. Without this, treatment of subnormals doesn't follow
1705 # the standard.
Matthias Klosedf2aecb2012-03-15 22:19:28 +01001706 case $host in
Mark Dickinsonb0e2b4c2008-04-26 20:48:56 +00001707 alpha*)
1708 BASECFLAGS="$BASECFLAGS -mieee"
1709 ;;
1710 esac
1711
Skip Montanarodecc6a42003-01-01 20:07:49 +00001712 case $ac_sys_system in
1713 SCO_SV*)
1714 BASECFLAGS="$BASECFLAGS -m486 -DSCO5"
1715 ;;
Benjamin Peterson67c38e22008-07-17 16:10:34 +00001716
Ned Deily87adb6e2013-10-18 21:09:56 -07001717 # is there any other compiler on Darwin besides gcc?
1718 Darwin*)
1719 # -Wno-long-double, -no-cpp-precomp, and -mno-fused-madd
1720 # used to be here, but non-Apple gcc doesn't accept them.
1721 if test "${CC}" = gcc
1722 then
1723 AC_MSG_CHECKING(which compiler should be used)
1724 case "${UNIVERSALSDK}" in
1725 */MacOSX10.4u.sdk)
1726 # Build using 10.4 SDK, force usage of gcc when the
1727 # compiler is gcc, otherwise the user will get very
1728 # confusing error messages when building on OSX 10.6
1729 CC=gcc-4.0
1730 CPP=cpp-4.0
1731 ;;
1732 esac
1733 AC_MSG_RESULT($CC)
1734 fi
Benjamin Peterson67c38e22008-07-17 16:10:34 +00001735
Ned Deily87adb6e2013-10-18 21:09:56 -07001736 if test "${enable_universalsdk}"
1737 then
1738 case "$UNIVERSAL_ARCHS" in
1739 32-bit)
1740 UNIVERSAL_ARCH_FLAGS="-arch ppc -arch i386"
1741 LIPO_32BIT_FLAGS=""
1742 ARCH_RUN_32BIT=""
1743 ;;
1744 64-bit)
1745 UNIVERSAL_ARCH_FLAGS="-arch ppc64 -arch x86_64"
1746 LIPO_32BIT_FLAGS=""
1747 ARCH_RUN_32BIT="true"
1748 ;;
1749 all)
1750 UNIVERSAL_ARCH_FLAGS="-arch i386 -arch ppc -arch ppc64 -arch x86_64"
1751 LIPO_32BIT_FLAGS="-extract ppc7400 -extract i386"
1752 ARCH_RUN_32BIT="/usr/bin/arch -i386 -ppc"
1753 ;;
1754 intel)
1755 UNIVERSAL_ARCH_FLAGS="-arch i386 -arch x86_64"
1756 LIPO_32BIT_FLAGS="-extract i386"
1757 ARCH_RUN_32BIT="/usr/bin/arch -i386"
1758 ;;
1759 intel-32)
1760 UNIVERSAL_ARCH_FLAGS="-arch i386"
1761 LIPO_32BIT_FLAGS=""
1762 ARCH_RUN_32BIT=""
1763 ;;
1764 3-way)
1765 UNIVERSAL_ARCH_FLAGS="-arch i386 -arch ppc -arch x86_64"
1766 LIPO_32BIT_FLAGS="-extract ppc7400 -extract i386"
1767 ARCH_RUN_32BIT="/usr/bin/arch -i386 -ppc"
1768 ;;
1769 *)
1770 AC_MSG_ERROR([proper usage is --with-universal-arch=32-bit|64-bit|all|intel|3-way])
1771 ;;
1772 esac
Georg Brandlfcaf9102008-07-16 02:17:56 +00001773
Ned Deily87adb6e2013-10-18 21:09:56 -07001774 CFLAGS="${UNIVERSAL_ARCH_FLAGS} -isysroot ${UNIVERSALSDK} ${CFLAGS}"
1775 LDFLAGS="${UNIVERSAL_ARCH_FLAGS} -isysroot ${UNIVERSALSDK} ${LDFLAGS}"
1776 if test "${UNIVERSALSDK}" != "/"
1777 then
1778 CPPFLAGS="-isysroot ${UNIVERSALSDK} ${CPPFLAGS}"
1779 fi
1780 fi
Georg Brandlfcaf9102008-07-16 02:17:56 +00001781
Ned Deily87adb6e2013-10-18 21:09:56 -07001782 # Calculate an appropriate deployment target for this build:
1783 # The deployment target value is used explicitly to enable certain
1784 # features are enabled (such as builtin libedit support for readline)
Raymond Hettinger15f44ab2016-08-30 10:47:49 -07001785 # through the use of Apple's Availability Macros and is used as a
Ned Deily87adb6e2013-10-18 21:09:56 -07001786 # component of the string returned by distutils.get_platform().
1787 #
1788 # Use the value from:
1789 # 1. the MACOSX_DEPLOYMENT_TARGET environment variable if specified
1790 # 2. the operating system version of the build machine if >= 10.6
1791 # 3. If running on OS X 10.3 through 10.5, use the legacy tests
1792 # below to pick either 10.3, 10.4, or 10.5 as the target.
1793 # 4. If we are running on OS X 10.2 or earlier, good luck!
Ronald Oussoren3c064c12009-09-08 07:12:42 +00001794
Ned Deily87adb6e2013-10-18 21:09:56 -07001795 AC_MSG_CHECKING(which MACOSX_DEPLOYMENT_TARGET to use)
Ned Deily36820b62014-06-25 13:44:22 -07001796 cur_target_major=`sw_vers -productVersion | \
1797 sed 's/\([[0-9]]*\)\.\([[0-9]]*\).*/\1/'`
1798 cur_target_minor=`sw_vers -productVersion | \
1799 sed 's/\([[0-9]]*\)\.\([[0-9]]*\).*/\2/'`
1800 cur_target="${cur_target_major}.${cur_target_minor}"
1801 if test ${cur_target_major} -eq 10 && \
1802 test ${cur_target_minor} -ge 3 && \
1803 test ${cur_target_minor} -le 5
Ned Deily87adb6e2013-10-18 21:09:56 -07001804 then
Ned Deily36820b62014-06-25 13:44:22 -07001805 # OS X 10.3 through 10.5
Ned Deily87adb6e2013-10-18 21:09:56 -07001806 cur_target=10.3
1807 if test ${enable_universalsdk}
1808 then
1809 case "$UNIVERSAL_ARCHS" in
1810 all|3-way|intel|64-bit)
1811 # These configurations were first supported in 10.5
1812 cur_target='10.5'
1813 ;;
1814 esac
1815 else
1816 if test `/usr/bin/arch` = "i386"
1817 then
1818 # 10.4 was the first release to support Intel archs
1819 cur_target="10.4"
1820 fi
1821 fi
1822 fi
1823 CONFIGURE_MACOSX_DEPLOYMENT_TARGET=${MACOSX_DEPLOYMENT_TARGET-${cur_target}}
Ronald Oussoren3c064c12009-09-08 07:12:42 +00001824
Ned Deily87adb6e2013-10-18 21:09:56 -07001825 # Make sure that MACOSX_DEPLOYMENT_TARGET is set in the
1826 # environment with a value that is the same as what we'll use
1827 # in the Makefile to ensure that we'll get the same compiler
1828 # environment during configure and build time.
1829 MACOSX_DEPLOYMENT_TARGET="$CONFIGURE_MACOSX_DEPLOYMENT_TARGET"
1830 export MACOSX_DEPLOYMENT_TARGET
1831 EXPORT_MACOSX_DEPLOYMENT_TARGET=''
1832 AC_MSG_RESULT($MACOSX_DEPLOYMENT_TARGET)
Georg Brandlfcaf9102008-07-16 02:17:56 +00001833
Ned Deily87adb6e2013-10-18 21:09:56 -07001834 # end of Darwin* tests
1835 ;;
Skip Montanarodecc6a42003-01-01 20:07:49 +00001836 esac
1837 ;;
1838
1839*)
1840 case $ac_sys_system in
1841 OpenUNIX*|UnixWare*)
1842 BASECFLAGS="$BASECFLAGS -K pentium,host,inline,loop_unroll,alloca "
1843 ;;
1844 SCO_SV*)
1845 BASECFLAGS="$BASECFLAGS -belf -Ki486 -DSCO5"
1846 ;;
1847 esac
1848 ;;
1849esac
1850
Zachary Ware5af85642015-12-21 12:09:17 -06001851# ICC needs -fp-model strict or floats behave badly
1852case "$CC" in
1853*icc*)
1854 CFLAGS_NODIST="$CFLAGS_NODIST -fp-model strict"
1855 ;;
1856esac
1857
Fred Drakee1ceaa02001-12-04 20:55:47 +00001858if test "$Py_DEBUG" = 'true'; then
1859 :
1860else
1861 OPT="-DNDEBUG $OPT"
1862fi
1863
Guido van Rossum6f2260e1996-09-09 16:21:03 +00001864if test "$ac_arch_flags"
Guido van Rossumc5a39031996-07-31 17:35:03 +00001865then
Skip Montanarodecc6a42003-01-01 20:07:49 +00001866 BASECFLAGS="$BASECFLAGS $ac_arch_flags"
Guido van Rossumc5a39031996-07-31 17:35:03 +00001867fi
Guido van Rossum5739e7e1995-01-20 16:50:53 +00001868
Martin v. Löwisa5f73f92001-10-15 08:06:29 +00001869# On some compilers, pthreads are available without further options
1870# (e.g. MacOS X). On some of these systems, the compiler will not
1871# complain if unaccepted options are passed (e.g. gcc on Mac OS X).
1872# So we have to see first whether pthreads are available without
1873# options before we can check whether -Kpthread improves anything.
1874AC_MSG_CHECKING(whether pthreads are available without options)
1875AC_CACHE_VAL(ac_cv_pthread_is_default,
Matthias Kloseb159a552010-04-25 21:00:44 +00001876[AC_RUN_IFELSE([AC_LANG_SOURCE([[
Stefan Krah7dba5942012-11-22 22:49:11 +01001877#include <stdio.h>
Martin v. Löwisa5f73f92001-10-15 08:06:29 +00001878#include <pthread.h>
1879
1880void* routine(void* p){return NULL;}
1881
1882int main(){
1883 pthread_t p;
1884 if(pthread_create(&p,NULL,routine,NULL)!=0)
1885 return 1;
Jack Jansen4f8d0542002-03-08 13:43:01 +00001886 (void)pthread_detach(p);
Martin v. Löwisa5f73f92001-10-15 08:06:29 +00001887 return 0;
1888}
Matthias Kloseb159a552010-04-25 21:00:44 +00001889]])],[
Skip Montanarod8d39a02003-07-10 20:44:10 +00001890 ac_cv_pthread_is_default=yes
1891 ac_cv_kthread=no
1892 ac_cv_pthread=no
Matthias Kloseb159a552010-04-25 21:00:44 +00001893],[ac_cv_pthread_is_default=no],[ac_cv_pthread_is_default=no])
Martin v. Löwisa5f73f92001-10-15 08:06:29 +00001894])
1895AC_MSG_RESULT($ac_cv_pthread_is_default)
1896
1897
Victor Stinner1b80b242016-04-12 22:34:58 +02001898if test $ac_cv_pthread_is_default = yes
Martin v. Löwisa5f73f92001-10-15 08:06:29 +00001899then
1900 ac_cv_kpthread=no
1901else
Martin v. Löwis130fb172001-07-19 11:00:41 +00001902# -Kpthread, if available, provides the right #defines
1903# and linker options to make pthread_create available
Martin v. Löwis260aecc2001-10-07 08:14:41 +00001904# Some compilers won't report that they do not support -Kpthread,
1905# so we need to run a program to see whether it really made the
1906# function available.
Martin v. Löwis130fb172001-07-19 11:00:41 +00001907AC_MSG_CHECKING(whether $CC accepts -Kpthread)
1908AC_CACHE_VAL(ac_cv_kpthread,
1909[ac_save_cc="$CC"
1910CC="$CC -Kpthread"
Matthias Kloseb159a552010-04-25 21:00:44 +00001911AC_RUN_IFELSE([AC_LANG_SOURCE([[
Stefan Krah7dba5942012-11-22 22:49:11 +01001912#include <stdio.h>
Martin v. Löwis260aecc2001-10-07 08:14:41 +00001913#include <pthread.h>
1914
1915void* routine(void* p){return NULL;}
1916
1917int main(){
1918 pthread_t p;
1919 if(pthread_create(&p,NULL,routine,NULL)!=0)
1920 return 1;
Jack Jansen4f8d0542002-03-08 13:43:01 +00001921 (void)pthread_detach(p);
Martin v. Löwis260aecc2001-10-07 08:14:41 +00001922 return 0;
1923}
Matthias Kloseb159a552010-04-25 21:00:44 +00001924]])],[ac_cv_kpthread=yes],[ac_cv_kpthread=no],[ac_cv_kpthread=no])
Martin v. Löwis130fb172001-07-19 11:00:41 +00001925CC="$ac_save_cc"])
Martin v. Löwis130fb172001-07-19 11:00:41 +00001926AC_MSG_RESULT($ac_cv_kpthread)
Martin v. Löwisa5f73f92001-10-15 08:06:29 +00001927fi
Martin v. Löwis130fb172001-07-19 11:00:41 +00001928
Skip Montanarod8d39a02003-07-10 20:44:10 +00001929if test $ac_cv_kpthread = no -a $ac_cv_pthread_is_default = no
Martin v. Löwis5f433f02003-05-05 05:05:30 +00001930then
1931# -Kthread, if available, provides the right #defines
1932# and linker options to make pthread_create available
1933# Some compilers won't report that they do not support -Kthread,
1934# so we need to run a program to see whether it really made the
1935# function available.
1936AC_MSG_CHECKING(whether $CC accepts -Kthread)
1937AC_CACHE_VAL(ac_cv_kthread,
1938[ac_save_cc="$CC"
1939CC="$CC -Kthread"
Matthias Kloseb159a552010-04-25 21:00:44 +00001940AC_RUN_IFELSE([AC_LANG_SOURCE([[
Stefan Krah7dba5942012-11-22 22:49:11 +01001941#include <stdio.h>
Martin v. Löwis5f433f02003-05-05 05:05:30 +00001942#include <pthread.h>
1943
1944void* routine(void* p){return NULL;}
1945
1946int main(){
1947 pthread_t p;
1948 if(pthread_create(&p,NULL,routine,NULL)!=0)
1949 return 1;
1950 (void)pthread_detach(p);
1951 return 0;
1952}
Matthias Kloseb159a552010-04-25 21:00:44 +00001953]])],[ac_cv_kthread=yes],[ac_cv_kthread=no],[ac_cv_kthread=no])
Martin v. Löwis5f433f02003-05-05 05:05:30 +00001954CC="$ac_save_cc"])
1955AC_MSG_RESULT($ac_cv_kthread)
1956fi
1957
Skip Montanarod8d39a02003-07-10 20:44:10 +00001958if test $ac_cv_kthread = no -a $ac_cv_pthread_is_default = no
Martin v. Löwis4ee6eef2003-05-26 05:37:51 +00001959then
1960# -pthread, if available, provides the right #defines
1961# and linker options to make pthread_create available
1962# Some compilers won't report that they do not support -pthread,
1963# so we need to run a program to see whether it really made the
1964# function available.
1965AC_MSG_CHECKING(whether $CC accepts -pthread)
doko@python.org7981f202013-01-25 15:33:25 +01001966AC_CACHE_VAL(ac_cv_pthread,
Martin v. Löwis4ee6eef2003-05-26 05:37:51 +00001967[ac_save_cc="$CC"
1968CC="$CC -pthread"
Matthias Kloseb159a552010-04-25 21:00:44 +00001969AC_RUN_IFELSE([AC_LANG_SOURCE([[
Stefan Krah7dba5942012-11-22 22:49:11 +01001970#include <stdio.h>
Martin v. Löwis4ee6eef2003-05-26 05:37:51 +00001971#include <pthread.h>
1972
1973void* routine(void* p){return NULL;}
1974
1975int main(){
1976 pthread_t p;
1977 if(pthread_create(&p,NULL,routine,NULL)!=0)
1978 return 1;
1979 (void)pthread_detach(p);
1980 return 0;
1981}
Matthias Kloseb159a552010-04-25 21:00:44 +00001982]])],[ac_cv_pthread=yes],[ac_cv_pthread=no],[ac_cv_pthread=no])
Martin v. Löwis4ee6eef2003-05-26 05:37:51 +00001983CC="$ac_save_cc"])
1984AC_MSG_RESULT($ac_cv_pthread)
1985fi
1986
Martin v. Löwisab1e5852003-06-28 07:46:38 +00001987# If we have set a CC compiler flag for thread support then
1988# check if it works for CXX, too.
1989ac_cv_cxx_thread=no
1990if test ! -z "$CXX"
1991then
1992AC_MSG_CHECKING(whether $CXX also accepts flags for thread support)
1993ac_save_cxx="$CXX"
1994
1995if test "$ac_cv_kpthread" = "yes"
1996then
Victor Stinner1b80b242016-04-12 22:34:58 +02001997 CXX="$CXX -Kpthread"
Martin v. Löwisab1e5852003-06-28 07:46:38 +00001998 ac_cv_cxx_thread=yes
1999elif test "$ac_cv_kthread" = "yes"
2000then
2001 CXX="$CXX -Kthread"
2002 ac_cv_cxx_thread=yes
2003elif test "$ac_cv_pthread" = "yes"
Victor Stinner1b80b242016-04-12 22:34:58 +02002004then
Martin v. Löwisab1e5852003-06-28 07:46:38 +00002005 CXX="$CXX -pthread"
2006 ac_cv_cxx_thread=yes
2007fi
2008
2009if test $ac_cv_cxx_thread = yes
2010then
2011 echo 'void foo();int main(){foo();}void foo(){}' > conftest.$ac_ext
2012 $CXX -c conftest.$ac_ext 2>&5
2013 if $CXX -o conftest$ac_exeext conftest.$ac_objext 2>&5 \
2014 && test -s conftest$ac_exeext && ./conftest$ac_exeext
2015 then
2016 ac_cv_cxx_thread=yes
2017 else
2018 ac_cv_cxx_thread=no
Martin v. Löwisab1e5852003-06-28 07:46:38 +00002019 fi
2020 rm -fr conftest*
Martin v. Löwisab1e5852003-06-28 07:46:38 +00002021fi
Brett Cannonc601e0f2004-11-07 01:24:12 +00002022AC_MSG_RESULT($ac_cv_cxx_thread)
Martin v. Löwisab1e5852003-06-28 07:46:38 +00002023fi
Martin v. Löwis519adae2003-09-20 10:47:47 +00002024CXX="$ac_save_cxx"
Martin v. Löwisab1e5852003-06-28 07:46:38 +00002025
Fred Drakece81d592000-07-09 14:39:29 +00002026dnl # check for ANSI or K&R ("traditional") preprocessor
2027dnl AC_MSG_CHECKING(for C preprocessor type)
Matthias Kloseb159a552010-04-25 21:00:44 +00002028dnl AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
Fred Drakece81d592000-07-09 14:39:29 +00002029dnl #define spam(name, doc) {#name, &name, #name "() -- " doc}
2030dnl int foo;
2031dnl struct {char *name; int *addr; char *doc;} desc = spam(foo, "something");
Matthias Kloseb159a552010-04-25 21:00:44 +00002032dnl ]], [[;]])],[cpp_type=ansi],[AC_DEFINE(HAVE_OLD_CPP) cpp_type=traditional])
Fred Drakece81d592000-07-09 14:39:29 +00002033dnl AC_MSG_RESULT($cpp_type)
Guido van Rossum300fda71996-08-19 21:58:16 +00002034
Guido van Rossum627b2d71993-12-24 10:39:16 +00002035# checks for header files
Guido van Rossum76be6ed1995-01-02 18:33:54 +00002036AC_HEADER_STDC
doko@ubuntu.com1a4f5612014-04-17 20:13:44 +02002037AC_CHECK_HEADERS(asm/types.h conio.h direct.h dlfcn.h errno.h \
Thomas Wouters0e3f5912006-08-11 14:57:12 +00002038fcntl.h grp.h \
doko@ubuntu.com1a4f5612014-04-17 20:13:44 +02002039ieeefp.h io.h langinfo.h libintl.h process.h pthread.h \
Benjamin Peterson4fe55102016-09-06 11:58:01 -07002040sched.h shadow.h signal.h stropts.h termios.h \
Martin v. Löwis14e73b12003-01-01 09:51:12 +00002041unistd.h utime.h \
Jesus Cead8b9ae62011-11-14 19:07:41 +01002042poll.h sys/devpoll.h sys/epoll.h sys/poll.h \
Antoine Pitroubcf2b592012-02-08 23:28:36 +01002043sys/audioio.h sys/xattr.h sys/bsdtty.h sys/event.h sys/file.h sys/ioctl.h \
Martin v. Löwis9d6c6692012-02-03 17:44:58 +01002044sys/kern_control.h sys/loadavg.h sys/lock.h sys/mkdev.h sys/modem.h \
Benjamin Petersonfb2ae152016-12-19 23:54:25 -08002045sys/param.h sys/random.h sys/select.h sys/sendfile.h sys/socket.h sys/statvfs.h \
Martin v. Löwis9d6c6692012-02-03 17:44:58 +01002046sys/stat.h sys/syscall.h sys/sys_domain.h sys/termio.h sys/time.h \
Giampaolo Rodolàc9c2c8b2011-02-25 14:39:16 +00002047sys/times.h sys/types.h sys/uio.h sys/un.h sys/utsname.h sys/wait.h pty.h \
Gregory P. Smith3b1f2c32011-05-15 12:18:23 -07002048libutil.h sys/resource.h netpacket/packet.h sysexits.h bluetooth.h \
Benjamin Peterson93b2dee2016-09-09 10:22:45 -07002049linux/tipc.h linux/random.h spawn.h util.h alloca.h endian.h \
Christian Heimes985ecdc2013-11-20 11:46:18 +01002050sys/endian.h)
Guido van Rossum76be6ed1995-01-02 18:33:54 +00002051AC_HEADER_DIRENT
Martin v. Löwisdbe3f762002-10-10 14:27:30 +00002052AC_HEADER_MAJOR
Guido van Rossum627b2d71993-12-24 10:39:16 +00002053
Benjamin Peterson93b2dee2016-09-09 10:22:45 -07002054# bluetooth/bluetooth.h has been known to not compile with -std=c99.
2055# http://permalink.gmane.org/gmane.linux.bluez.kernel/22294
2056SAVE_CFLAGS=$CFLAGS
2057CFLAGS="-std=c99 $CFLAGS"
2058AC_CHECK_HEADERS(bluetooth/bluetooth.h)
2059CFLAGS=$SAVE_CFLAGS
2060
Gregory P. Smith3b1f2c32011-05-15 12:18:23 -07002061# On Darwin (OS X) net/if.h requires sys/socket.h to be imported first.
2062AC_CHECK_HEADERS([net/if.h], [], [],
2063[#include <stdio.h>
2064#ifdef STDC_HEADERS
2065# include <stdlib.h>
2066# include <stddef.h>
2067#else
2068# ifdef HAVE_STDLIB_H
2069# include <stdlib.h>
2070# endif
2071#endif
2072#ifdef HAVE_SYS_SOCKET_H
2073# include <sys/socket.h>
2074#endif
2075])
2076
Martin v. Löwis11017b12006-01-14 18:12:57 +00002077# On Linux, netlink.h requires asm/types.h
2078AC_CHECK_HEADERS(linux/netlink.h,,,[
2079#ifdef HAVE_ASM_TYPES_H
2080#include <asm/types.h>
2081#endif
2082#ifdef HAVE_SYS_SOCKET_H
2083#include <sys/socket.h>
2084#endif
2085])
2086
Charles-François Natali47413c12011-10-06 19:47:44 +02002087# On Linux, can.h and can/raw.h require sys/socket.h
Charles-François Natali773e42d2013-02-05 19:42:01 +01002088AC_CHECK_HEADERS(linux/can.h linux/can/raw.h linux/can/bcm.h,,,[
Charles-François Natali47413c12011-10-06 19:47:44 +02002089#ifdef HAVE_SYS_SOCKET_H
2090#include <sys/socket.h>
2091#endif
2092])
2093
Guido van Rossum627b2d71993-12-24 10:39:16 +00002094# checks for typedefs
Guido van Rossum5739e7e1995-01-20 16:50:53 +00002095was_it_defined=no
2096AC_MSG_CHECKING(for clock_t in time.h)
Martin v. Löwisc45929e2002-04-06 10:10:49 +00002097AC_EGREP_HEADER(clock_t, time.h, was_it_defined=yes, [
2098 AC_DEFINE(clock_t, long, [Define to 'long' if <time.h> doesn't define.])
2099])
Guido van Rossum5739e7e1995-01-20 16:50:53 +00002100AC_MSG_RESULT($was_it_defined)
2101
Neal Norwitz11690112002-07-30 01:08:28 +00002102AC_MSG_CHECKING(for makedev)
Jesus Cea740f53a2010-04-28 11:35:30 +00002103AC_LINK_IFELSE([AC_LANG_PROGRAM([[
2104#if defined(MAJOR_IN_MKDEV)
2105#include <sys/mkdev.h>
2106#elif defined(MAJOR_IN_SYSMACROS)
2107#include <sys/sysmacros.h>
2108#else
2109#include <sys/types.h>
2110#endif
2111]], [[
2112 makedev(0, 0) ]])
Matthias Kloseb159a552010-04-25 21:00:44 +00002113],[ac_cv_has_makedev=yes],[ac_cv_has_makedev=no])
Neal Norwitz11690112002-07-30 01:08:28 +00002114AC_MSG_RESULT($ac_cv_has_makedev)
2115if test "$ac_cv_has_makedev" = "yes"; then
2116 AC_DEFINE(HAVE_MAKEDEV, 1, [Define this if you have the makedev macro.])
2117fi
2118
Christian Heimes985ecdc2013-11-20 11:46:18 +01002119# byte swapping
2120AC_MSG_CHECKING(for le64toh)
2121AC_LINK_IFELSE([AC_LANG_PROGRAM([[
2122#ifdef HAVE_ENDIAN_H
2123#include <endian.h>
2124#elif defined(HAVE_SYS_ENDIAN_H)
2125#include <sys/endian.h>
2126#endif
2127]], [[
2128 le64toh(1) ]])
2129],[ac_cv_has_le64toh=yes],[ac_cv_has_le64toh=no])
2130AC_MSG_RESULT($ac_cv_has_le64toh)
2131if test "$ac_cv_has_le64toh" = "yes"; then
2132 AC_DEFINE(HAVE_HTOLE64, 1, [Define this if you have le64toh()])
2133fi
2134
Martin v. Löwis399a6892002-10-04 10:22:02 +00002135# Enabling LFS on Solaris (2.6 to 9) with gcc 2.95 triggers a bug in
2136# the system headers: If _XOPEN_SOURCE and _LARGEFILE_SOURCE are
2137# defined, but the compiler does not support pragma redefine_extname,
2138# and _LARGEFILE64_SOURCE is not defined, the headers refer to 64-bit
2139# structures (such as rlimit64) without declaring them. As a
2140# work-around, disable LFS on such configurations
2141
2142use_lfs=yes
2143AC_MSG_CHECKING(Solaris LFS bug)
Matthias Kloseb159a552010-04-25 21:00:44 +00002144AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
Martin v. Löwis399a6892002-10-04 10:22:02 +00002145#define _LARGEFILE_SOURCE 1
2146#define _FILE_OFFSET_BITS 64
2147#include <sys/resource.h>
Matthias Kloseb159a552010-04-25 21:00:44 +00002148]], [[struct rlimit foo;]])],[sol_lfs_bug=no],[sol_lfs_bug=yes])
Martin v. Löwis399a6892002-10-04 10:22:02 +00002149AC_MSG_RESULT($sol_lfs_bug)
2150if test "$sol_lfs_bug" = "yes"; then
2151 use_lfs=no
2152fi
2153
doko@ubuntu.com006a56c2016-06-14 10:15:25 +02002154# Don't use largefile support for GNU/Hurd
2155case $ac_sys_system in GNU*)
2156 use_lfs=no
2157esac
2158
Martin v. Löwis399a6892002-10-04 10:22:02 +00002159if test "$use_lfs" = "yes"; then
Guido van Rossum810cc512001-09-09 23:51:39 +00002160# Two defines needed to enable largefile support on various platforms
2161# These may affect some typedefs
Georg Brandl216e4042011-02-19 08:58:23 +00002162case $ac_sys_system/$ac_sys_release in
2163AIX*)
Victor Stinner1b80b242016-04-12 22:34:58 +02002164 AC_DEFINE(_LARGE_FILES, 1,
Georg Brandl216e4042011-02-19 08:58:23 +00002165 [This must be defined on AIX systems to enable large file support.])
2166 ;;
2167esac
Victor Stinner1b80b242016-04-12 22:34:58 +02002168AC_DEFINE(_LARGEFILE_SOURCE, 1,
Martin v. Löwisc45929e2002-04-06 10:10:49 +00002169[This must be defined on some systems to enable large file support.])
2170AC_DEFINE(_FILE_OFFSET_BITS, 64,
2171[This must be set to 64 on some systems to enable large file support.])
Martin v. Löwis399a6892002-10-04 10:22:02 +00002172fi
Guido van Rossum810cc512001-09-09 23:51:39 +00002173
Guido van Rossum300fda71996-08-19 21:58:16 +00002174# Add some code to confdefs.h so that the test for off_t works on SCO
2175cat >> confdefs.h <<\EOF
2176#if defined(SCO_DS)
2177#undef _OFF_T
2178#endif
2179EOF
2180
Guido van Rossumef2255b2000-03-10 22:30:29 +00002181# Type availability checks
Guido van Rossum76be6ed1995-01-02 18:33:54 +00002182AC_TYPE_MODE_T
2183AC_TYPE_OFF_T
2184AC_TYPE_PID_T
Matthias Klosebada4c32010-04-25 21:18:48 +00002185AC_DEFINE_UNQUOTED([RETSIGTYPE],[void],[assume C89 semantics that RETSIGTYPE is always void])
Guido van Rossum76be6ed1995-01-02 18:33:54 +00002186AC_TYPE_SIZE_T
2187AC_TYPE_UID_T
Mark Dickinson983bc162012-12-02 12:11:38 +00002188
Christian Heimes400adb02008-02-01 08:12:03 +00002189AC_CHECK_TYPE(ssize_t,
Matthias Klosec80c93f2010-04-24 17:04:35 +00002190 AC_DEFINE(HAVE_SSIZE_T, 1, [Define if your compiler provides ssize_t]),,)
Stefan Krah1919b7e2012-03-21 18:25:23 +01002191AC_CHECK_TYPE(__uint128_t,
2192 AC_DEFINE(HAVE_GCC_UINT128_T, 1, [Define if your compiler provides __uint128_t]),,)
Guido van Rossum627b2d71993-12-24 10:39:16 +00002193
Guido van Rossumef2255b2000-03-10 22:30:29 +00002194# Sizes of various common basic types
Skip Montanarob9820a32004-01-17 00:16:12 +00002195# ANSI C requires sizeof(char) == 1, so no need to check it
Guido van Rossum3065c942001-09-17 04:03:14 +00002196AC_CHECK_SIZEOF(int, 4)
2197AC_CHECK_SIZEOF(long, 4)
Benjamin Petersoned4aa832016-09-05 17:44:18 -07002198AC_CHECK_SIZEOF(long long, 8)
Guido van Rossum3065c942001-09-17 04:03:14 +00002199AC_CHECK_SIZEOF(void *, 4)
Guido van Rossum3065c942001-09-17 04:03:14 +00002200AC_CHECK_SIZEOF(short, 2)
2201AC_CHECK_SIZEOF(float, 4)
2202AC_CHECK_SIZEOF(double, 8)
2203AC_CHECK_SIZEOF(fpos_t, 4)
Martin v. Löwis18e16552006-02-15 17:27:45 +00002204AC_CHECK_SIZEOF(size_t, 4)
Christian Heimes400adb02008-02-01 08:12:03 +00002205AC_CHECK_SIZEOF(pid_t, 4)
Benjamin Petersondf6ff7b2016-09-06 13:53:14 -07002206AC_CHECK_SIZEOF(uintptr_t)
Guido van Rossumac405f61994-09-12 10:56:06 +00002207
Travis E. Oliphant9b307842007-10-12 22:06:37 +00002208AC_MSG_CHECKING(for long double support)
2209have_long_double=no
Matthias Kloseb159a552010-04-25 21:00:44 +00002210AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[]], [[long double x; x = (long double)0;]])],[
Victor Stinner1b80b242016-04-12 22:34:58 +02002211 AC_DEFINE(HAVE_LONG_DOUBLE, 1, [Define this if you have the type long double.])
Travis E. Oliphant9b307842007-10-12 22:06:37 +00002212 have_long_double=yes
Matthias Kloseb159a552010-04-25 21:00:44 +00002213],[])
Travis E. Oliphant9b307842007-10-12 22:06:37 +00002214AC_MSG_RESULT($have_long_double)
2215if test "$have_long_double" = yes ; then
2216AC_CHECK_SIZEOF(long double, 16)
2217fi
2218
Thomas Woutersb2137042007-02-01 18:02:27 +00002219AC_CHECK_SIZEOF(_Bool, 1)
Thomas Woutersb2137042007-02-01 18:02:27 +00002220
Alexandre Vassalotti0805b4a2009-07-17 05:47:33 +00002221AC_CHECK_SIZEOF(off_t, [], [
2222#ifdef HAVE_SYS_TYPES_H
Guido van Rossum00f0f6e1999-01-06 18:52:29 +00002223#include <sys/types.h>
Alexandre Vassalotti0805b4a2009-07-17 05:47:33 +00002224#endif
Guido van Rossum00f0f6e1999-01-06 18:52:29 +00002225])
Guido van Rossum00f0f6e1999-01-06 18:52:29 +00002226
2227AC_MSG_CHECKING(whether to enable large file support)
Mark Dickinson2df5d282009-12-31 21:22:50 +00002228if test "$ac_cv_sizeof_off_t" -gt "$ac_cv_sizeof_long" -a \
Guido van Rossum8bc1dfd1999-04-10 16:01:48 +00002229 "$ac_cv_sizeof_long_long" -ge "$ac_cv_sizeof_off_t"; then
Victor Stinner1b80b242016-04-12 22:34:58 +02002230 AC_DEFINE(HAVE_LARGEFILE_SUPPORT, 1,
Martin v. Löwisc45929e2002-04-06 10:10:49 +00002231 [Defined to enable large file support when an off_t is bigger than a long
2232 and long long is available and at least as big as an off_t. You may need
2233 to add some flags for configuration and compilation to enable this mode.
2234 (For Solaris and Linux, the necessary defines are already defined.)])
Guido van Rossum00f0f6e1999-01-06 18:52:29 +00002235 AC_MSG_RESULT(yes)
2236else
2237 AC_MSG_RESULT(no)
2238fi
2239
Alexandre Vassalotti0805b4a2009-07-17 05:47:33 +00002240AC_CHECK_SIZEOF(time_t, [], [
2241#ifdef HAVE_SYS_TYPES_H
2242#include <sys/types.h>
2243#endif
2244#ifdef HAVE_TIME_H
Fred Drakea3f6e912000-06-29 20:44:47 +00002245#include <time.h>
Alexandre Vassalotti0805b4a2009-07-17 05:47:33 +00002246#endif
Fred Drakea3f6e912000-06-29 20:44:47 +00002247])
Guido van Rossum00f0f6e1999-01-06 18:52:29 +00002248
Trent Mick635f6fb2000-08-23 21:33:05 +00002249# if have pthread_t then define SIZEOF_PTHREAD_T
Martin v. Löwis123cbd22001-07-19 14:21:10 +00002250ac_save_cc="$CC"
2251if test "$ac_cv_kpthread" = "yes"
2252then CC="$CC -Kpthread"
Martin v. Löwis5f433f02003-05-05 05:05:30 +00002253elif test "$ac_cv_kthread" = "yes"
2254then CC="$CC -Kthread"
Martin v. Löwis4ee6eef2003-05-26 05:37:51 +00002255elif test "$ac_cv_pthread" = "yes"
2256then CC="$CC -pthread"
Martin v. Löwis123cbd22001-07-19 14:21:10 +00002257fi
Alexandre Vassalotti0805b4a2009-07-17 05:47:33 +00002258
Trent Mick635f6fb2000-08-23 21:33:05 +00002259AC_MSG_CHECKING(for pthread_t)
2260have_pthread_t=no
Matthias Kloseb159a552010-04-25 21:00:44 +00002261AC_COMPILE_IFELSE([
2262 AC_LANG_PROGRAM([[#include <pthread.h>]], [[pthread_t x; x = *(pthread_t*)0;]])
2263],[have_pthread_t=yes],[])
Trent Mick635f6fb2000-08-23 21:33:05 +00002264AC_MSG_RESULT($have_pthread_t)
2265if test "$have_pthread_t" = yes ; then
Alexandre Vassalotti0805b4a2009-07-17 05:47:33 +00002266 AC_CHECK_SIZEOF(pthread_t, [], [
2267#ifdef HAVE_PTHREAD_H
Neal Norwitz6eb37f02003-02-23 23:28:15 +00002268#include <pthread.h>
Alexandre Vassalotti0805b4a2009-07-17 05:47:33 +00002269#endif
Trent Mick635f6fb2000-08-23 21:33:05 +00002270 ])
Trent Mick635f6fb2000-08-23 21:33:05 +00002271fi
Martin v. Löwis123cbd22001-07-19 14:21:10 +00002272CC="$ac_save_cc"
Trent Mick635f6fb2000-08-23 21:33:05 +00002273
Bob Ippolito7026a0a2005-03-28 23:23:47 +00002274AC_SUBST(OTHER_LIBTOOL_OPT)
2275case $ac_sys_system/$ac_sys_release in
Victor Stinner1b80b242016-04-12 22:34:58 +02002276 Darwin/@<:@01567@:>@\..*)
Bob Ippolito7026a0a2005-03-28 23:23:47 +00002277 OTHER_LIBTOOL_OPT="-prebind -seg1addr 0x10000000"
2278 ;;
2279 Darwin/*)
2280 OTHER_LIBTOOL_OPT=""
2281 ;;
2282esac
2283
Ronald Oussoren5bbab3e2009-09-06 11:01:15 +00002284
Guido van Rossum54ecc3d1999-01-27 17:53:11 +00002285AC_SUBST(LIBTOOL_CRUFT)
2286case $ac_sys_system/$ac_sys_release in
Victor Stinner1b80b242016-04-12 22:34:58 +02002287 Darwin/@<:@01567@:>@\..*)
Thomas Wouters477c8d52006-05-27 19:21:47 +00002288 LIBTOOL_CRUFT="-framework System -lcc_dynamic"
2289 if test "${enable_universalsdk}"; then
2290 :
2291 else
Ronald Oussorene3da75a2010-02-11 13:38:58 +00002292 LIBTOOL_CRUFT="${LIBTOOL_CRUFT} -arch_only `/usr/bin/arch`"
Thomas Wouters477c8d52006-05-27 19:21:47 +00002293 fi
Jack Jansenb36687a2004-07-16 08:43:47 +00002294 LIBTOOL_CRUFT=$LIBTOOL_CRUFT' -install_name $(PYTHONFRAMEWORKINSTALLDIR)/Versions/$(VERSION)/$(PYTHONFRAMEWORK)'
Jack Jansena3891ea2001-09-07 14:25:12 +00002295 LIBTOOL_CRUFT=$LIBTOOL_CRUFT' -compatibility_version $(VERSION) -current_version $(VERSION)';;
Guido van Rossum5839e582000-10-09 19:52:35 +00002296 Darwin/*)
Ronald Oussoren9812a6c2010-02-07 11:53:18 +00002297 gcc_version=`gcc -dumpversion`
Bob Ippolito7026a0a2005-03-28 23:23:47 +00002298 if test ${gcc_version} '<' 4.0
2299 then
2300 LIBTOOL_CRUFT="-lcc_dynamic"
Victor Stinner1b80b242016-04-12 22:34:58 +02002301 else
Bob Ippolito7026a0a2005-03-28 23:23:47 +00002302 LIBTOOL_CRUFT=""
2303 fi
Matthias Kloseb159a552010-04-25 21:00:44 +00002304 AC_RUN_IFELSE([AC_LANG_SOURCE([[
Ronald Oussoren5bbab3e2009-09-06 11:01:15 +00002305 #include <unistd.h>
2306 int main(int argc, char*argv[])
2307 {
2308 if (sizeof(long) == 4) {
2309 return 0;
2310 } else {
2311 return 1;
2312 }
Ronald Oussoren3c064c12009-09-08 07:12:42 +00002313 }
Matthias Kloseb159a552010-04-25 21:00:44 +00002314 ]])],[ac_osx_32bit=yes],[ac_osx_32bit=no],[ac_osx_32bit=yes])
Victor Stinner1b80b242016-04-12 22:34:58 +02002315
Ronald Oussoren5bbab3e2009-09-06 11:01:15 +00002316 if test "${ac_osx_32bit}" = "yes"; then
Ronald Oussorene3da75a2010-02-11 13:38:58 +00002317 case `/usr/bin/arch` in
Victor Stinner1b80b242016-04-12 22:34:58 +02002318 i386)
2319 MACOSX_DEFAULT_ARCH="i386"
Ronald Oussoren5bbab3e2009-09-06 11:01:15 +00002320 ;;
Victor Stinner1b80b242016-04-12 22:34:58 +02002321 ppc)
2322 MACOSX_DEFAULT_ARCH="ppc"
Ronald Oussoren5bbab3e2009-09-06 11:01:15 +00002323 ;;
2324 *)
2325 AC_MSG_ERROR([Unexpected output of 'arch' on OSX])
2326 ;;
2327 esac
2328 else
Ronald Oussorene3da75a2010-02-11 13:38:58 +00002329 case `/usr/bin/arch` in
Victor Stinner1b80b242016-04-12 22:34:58 +02002330 i386)
2331 MACOSX_DEFAULT_ARCH="x86_64"
Ronald Oussoren5bbab3e2009-09-06 11:01:15 +00002332 ;;
Victor Stinner1b80b242016-04-12 22:34:58 +02002333 ppc)
2334 MACOSX_DEFAULT_ARCH="ppc64"
Ronald Oussoren5bbab3e2009-09-06 11:01:15 +00002335 ;;
2336 *)
2337 AC_MSG_ERROR([Unexpected output of 'arch' on OSX])
2338 ;;
2339 esac
2340
Ronald Oussoren5bbab3e2009-09-06 11:01:15 +00002341 fi
2342
2343 LIBTOOL_CRUFT=$LIBTOOL_CRUFT" -lSystem -lSystemStubs -arch_only ${MACOSX_DEFAULT_ARCH}"
Jack Jansenb36687a2004-07-16 08:43:47 +00002344 LIBTOOL_CRUFT=$LIBTOOL_CRUFT' -install_name $(PYTHONFRAMEWORKINSTALLDIR)/Versions/$(VERSION)/$(PYTHONFRAMEWORK)'
Jack Jansenb6e9cad2001-08-15 01:26:28 +00002345 LIBTOOL_CRUFT=$LIBTOOL_CRUFT' -compatibility_version $(VERSION) -current_version $(VERSION)';;
Guido van Rossum54ecc3d1999-01-27 17:53:11 +00002346esac
Jack Jansenb6e9cad2001-08-15 01:26:28 +00002347AC_MSG_CHECKING(for --enable-framework)
2348if test "$enable_framework"
Guido van Rossum54ecc3d1999-01-27 17:53:11 +00002349then
Skip Montanarodecc6a42003-01-01 20:07:49 +00002350 BASECFLAGS="$BASECFLAGS -fno-common -dynamic"
Victor Stinner1b80b242016-04-12 22:34:58 +02002351 # -F. is needed to allow linking to the framework while
Jack Jansenb6e9cad2001-08-15 01:26:28 +00002352 # in the build location.
Victor Stinner1b80b242016-04-12 22:34:58 +02002353 AC_DEFINE(WITH_NEXT_FRAMEWORK, 1,
Martin v. Löwisc45929e2002-04-06 10:10:49 +00002354 [Define if you want to produce an OpenStep/Rhapsody framework
2355 (shared library plus accessory files).])
Guido van Rossum54ecc3d1999-01-27 17:53:11 +00002356 AC_MSG_RESULT(yes)
Ronald Oussoren99aab652009-06-08 21:22:57 +00002357 if test $enable_shared = "yes"
2358 then
2359 AC_MSG_ERROR([Specifying both --enable-shared and --enable-framework is not supported, use only --enable-framework instead])
2360 fi
Guido van Rossum54ecc3d1999-01-27 17:53:11 +00002361else
2362 AC_MSG_RESULT(no)
2363fi
2364
Jack Jansenb6e9cad2001-08-15 01:26:28 +00002365AC_MSG_CHECKING(for dyld)
Jack Jansen9a66b6d2001-08-08 13:56:14 +00002366case $ac_sys_system/$ac_sys_release in
2367 Darwin/*)
Victor Stinner1b80b242016-04-12 22:34:58 +02002368 AC_DEFINE(WITH_DYLD, 1,
Martin v. Löwisc45929e2002-04-06 10:10:49 +00002369 [Define if you want to use the new-style (Openstep, Rhapsody, MacOS)
2370 dynamic linker (dyld) instead of the old-style (NextStep) dynamic
2371 linker (rld). Dyld is necessary to support frameworks.])
Jack Jansen9a66b6d2001-08-08 13:56:14 +00002372 AC_MSG_RESULT(always on for Darwin)
2373 ;;
2374 *)
Jack Jansenb6e9cad2001-08-15 01:26:28 +00002375 AC_MSG_RESULT(no)
2376 ;;
Jack Jansen9a66b6d2001-08-08 13:56:14 +00002377esac
Guido van Rossum54ecc3d1999-01-27 17:53:11 +00002378
Guido van Rossumac405f61994-09-12 10:56:06 +00002379# Set info about shared libraries.
doko@ubuntu.comd5537d02013-03-21 13:21:49 -07002380AC_SUBST(SHLIB_SUFFIX)
Guido van Rossumac405f61994-09-12 10:56:06 +00002381AC_SUBST(LDSHARED)
Tarek Ziadé03d788d2010-04-03 08:46:49 +00002382AC_SUBST(LDCXXSHARED)
Neil Schemenauerb3531b82001-02-16 04:09:05 +00002383AC_SUBST(BLDSHARED)
Guido van Rossumac405f61994-09-12 10:56:06 +00002384AC_SUBST(CCSHARED)
2385AC_SUBST(LINKFORSHARED)
Georg Brandlb1441c72009-01-03 22:33:39 +00002386
doko@ubuntu.comd5537d02013-03-21 13:21:49 -07002387# SHLIB_SUFFIX is the extension of shared libraries `(including the dot!)
2388# -- usually .so, .sl on HP-UX, .dll on Cygwin
2389AC_MSG_CHECKING(the extension of shared libraries)
2390if test -z "$SHLIB_SUFFIX"; then
2391 case $ac_sys_system in
2392 hp*|HP*)
2393 case `uname -m` in
2394 ia64) SHLIB_SUFFIX=.so;;
2395 *) SHLIB_SUFFIX=.sl;;
2396 esac
2397 ;;
2398 CYGWIN*) SHLIB_SUFFIX=.dll;;
2399 *) SHLIB_SUFFIX=.so;;
2400 esac
2401fi
2402AC_MSG_RESULT($SHLIB_SUFFIX)
2403
Guido van Rossumac405f61994-09-12 10:56:06 +00002404# LDSHARED is the ld *command* used to create shared library
Skip Montanaroce59c042004-01-17 14:19:44 +00002405# -- "cc -G" on SunOS 5.x, "ld -shared" on IRIX 5
Guido van Rossum54ecc3d1999-01-27 17:53:11 +00002406# (Shared libraries in this instance are shared modules to be loaded into
2407# Python, as opposed to building Python itself as a shared library.)
Guido van Rossum76be6ed1995-01-02 18:33:54 +00002408AC_MSG_CHECKING(LDSHARED)
Guido van Rossumac405f61994-09-12 10:56:06 +00002409if test -z "$LDSHARED"
2410then
Guido van Rossum76be6ed1995-01-02 18:33:54 +00002411 case $ac_sys_system/$ac_sys_release in
Neil Schemenauerb3531b82001-02-16 04:09:05 +00002412 AIX*)
Martin Panter395733d2016-11-20 07:56:37 +00002413 BLDSHARED="Modules/ld_so_aix \$(CC) -bI:Modules/python.exp"
Martin Panter5de141f2016-08-27 04:00:19 +00002414 LDSHARED="\$(LIBPL)/ld_so_aix \$(CC) -bI:\$(LIBPL)/python.exp"
Neil Schemenauerb3531b82001-02-16 04:09:05 +00002415 ;;
Guido van Rossum6100aaf1997-04-29 21:48:51 +00002416 IRIX/5*) LDSHARED="ld -shared";;
Guido van Rossum91922671997-10-09 20:24:13 +00002417 IRIX*/6*) LDSHARED="ld ${SGI_ABI} -shared -all";;
Victor Stinner1b80b242016-04-12 22:34:58 +02002418 SunOS/5*)
Tarek Ziadé03d788d2010-04-03 08:46:49 +00002419 if test "$GCC" = "yes" ; then
2420 LDSHARED='$(CC) -shared'
2421 LDCXXSHARED='$(CXX) -shared'
2422 else
2423 LDSHARED='$(CC) -G'
2424 LDCXXSHARED='$(CXX) -G'
Greg Ward57c9a6632000-05-26 12:22:54 +00002425 fi ;;
Thomas Hellerf44b9a12008-04-04 10:18:23 +00002426 hp*|HP*)
Tarek Ziadé03d788d2010-04-03 08:46:49 +00002427 if test "$GCC" = "yes" ; then
2428 LDSHARED='$(CC) -shared'
2429 LDCXXSHARED='$(CXX) -shared'
2430 else
2431 LDSHARED='ld -b'
Thomas Hellerf44b9a12008-04-04 10:18:23 +00002432 fi ;;
Jack Jansen418c3b12001-11-14 10:59:57 +00002433 Darwin/1.3*)
Antoine Pitroud4958c22010-10-13 17:01:10 +00002434 LDSHARED='$(CC) -bundle'
2435 LDCXXSHARED='$(CXX) -bundle'
Jack Jansena3891ea2001-09-07 14:25:12 +00002436 if test "$enable_framework" ; then
2437 # Link against the framework. All externals should be defined.
Jack Jansenda49e192005-01-07 13:08:22 +00002438 BLDSHARED="$LDSHARED "'$(PYTHONFRAMEWORKDIR)/Versions/$(VERSION)/$(PYTHONFRAMEWORK)'
2439 LDSHARED="$LDSHARED "'$(PYTHONFRAMEWORKPREFIX)/$(PYTHONFRAMEWORKDIR)/Versions/$(VERSION)/$(PYTHONFRAMEWORK)'
Tarek Ziadé03d788d2010-04-03 08:46:49 +00002440 LDCXXSHARED="$LDCXXSHARED "'$(PYTHONFRAMEWORKPREFIX)/$(PYTHONFRAMEWORKDIR)/Versions/$(VERSION)/$(PYTHONFRAMEWORK)'
Jack Jansena3891ea2001-09-07 14:25:12 +00002441 else
2442 # No framework. Ignore undefined symbols, assuming they come from Python
Jack Jansen418c3b12001-11-14 10:59:57 +00002443 LDSHARED="$LDSHARED -undefined suppress"
Tarek Ziadé03d788d2010-04-03 08:46:49 +00002444 LDCXXSHARED="$LDCXXSHARED -undefined suppress"
Jack Jansena3891ea2001-09-07 14:25:12 +00002445 fi ;;
Jack Jansen6b08a402004-06-03 12:41:45 +00002446 Darwin/1.4*|Darwin/5.*|Darwin/6.*)
Antoine Pitroud4958c22010-10-13 17:01:10 +00002447 LDSHARED='$(CC) -bundle'
2448 LDCXXSHARED='$(CXX) -bundle'
Jack Jansenb6e9cad2001-08-15 01:26:28 +00002449 if test "$enable_framework" ; then
2450 # Link against the framework. All externals should be defined.
Jack Jansenda49e192005-01-07 13:08:22 +00002451 BLDSHARED="$LDSHARED "'$(PYTHONFRAMEWORKDIR)/Versions/$(VERSION)/$(PYTHONFRAMEWORK)'
2452 LDSHARED="$LDSHARED "'$(PYTHONFRAMEWORKPREFIX)/$(PYTHONFRAMEWORKDIR)/Versions/$(VERSION)/$(PYTHONFRAMEWORK)'
Tarek Ziadé03d788d2010-04-03 08:46:49 +00002453 LDCXXSHARED="$LDCXXSHARED "'$(PYTHONFRAMEWORKPREFIX)/$(PYTHONFRAMEWORKDIR)/Versions/$(VERSION)/$(PYTHONFRAMEWORK)'
Jack Jansenb6e9cad2001-08-15 01:26:28 +00002454 else
Michael W. Hudson0c46c0c2002-03-07 09:58:56 +00002455 # No framework, use the Python app as bundle-loader
2456 BLDSHARED="$LDSHARED "'-bundle_loader $(BUILDPYTHON)'
Jack Jansenc28fc372003-02-25 13:14:43 +00002457 LDSHARED="$LDSHARED "'-bundle_loader $(BINDIR)/python$(VERSION)$(EXE)'
Tarek Ziadé03d788d2010-04-03 08:46:49 +00002458 LDCXXSHARED="$LDCXXSHARED "'-bundle_loader $(BINDIR)/python$(VERSION)$(EXE)'
Guido van Rossum54ecc3d1999-01-27 17:53:11 +00002459 fi ;;
Jack Jansen6b08a402004-06-03 12:41:45 +00002460 Darwin/*)
2461 # Use -undefined dynamic_lookup whenever possible (10.3 and later).
2462 # This allows an extension to be used in any Python
Thomas Wouters89d996e2007-09-08 17:39:28 +00002463
Ned Deily36820b62014-06-25 13:44:22 -07002464 dep_target_major=`echo ${MACOSX_DEPLOYMENT_TARGET} | \
2465 sed 's/\([[0-9]]*\)\.\([[0-9]]*\).*/\1/'`
2466 dep_target_minor=`echo ${MACOSX_DEPLOYMENT_TARGET} | \
2467 sed 's/\([[0-9]]*\)\.\([[0-9]]*\).*/\2/'`
2468 if test ${dep_target_major} -eq 10 && \
2469 test ${dep_target_minor} -le 2
Jack Jansen6b08a402004-06-03 12:41:45 +00002470 then
Ned Deily36820b62014-06-25 13:44:22 -07002471 # building for OS X 10.0 through 10.2
Antoine Pitroud4958c22010-10-13 17:01:10 +00002472 LDSHARED='$(CC) -bundle'
2473 LDCXXSHARED='$(CXX) -bundle'
Jack Jansen6b08a402004-06-03 12:41:45 +00002474 if test "$enable_framework" ; then
2475 # Link against the framework. All externals should be defined.
Jack Jansenda49e192005-01-07 13:08:22 +00002476 BLDSHARED="$LDSHARED "'$(PYTHONFRAMEWORKDIR)/Versions/$(VERSION)/$(PYTHONFRAMEWORK)'
2477 LDSHARED="$LDSHARED "'$(PYTHONFRAMEWORKPREFIX)/$(PYTHONFRAMEWORKDIR)/Versions/$(VERSION)/$(PYTHONFRAMEWORK)'
Tarek Ziadé03d788d2010-04-03 08:46:49 +00002478 LDCXXSHARED="$LDCXXSHARED "'$(PYTHONFRAMEWORKPREFIX)/$(PYTHONFRAMEWORKDIR)/Versions/$(VERSION)/$(PYTHONFRAMEWORK)'
Jack Jansen6b08a402004-06-03 12:41:45 +00002479 else
2480 # No framework, use the Python app as bundle-loader
2481 BLDSHARED="$LDSHARED "'-bundle_loader $(BUILDPYTHON)'
2482 LDSHARED="$LDSHARED "'-bundle_loader $(BINDIR)/python$(VERSION)$(EXE)'
Tarek Ziadé03d788d2010-04-03 08:46:49 +00002483 LDCXXSHARED="$LDCXXSHARED "'-bundle_loader $(BINDIR)/python$(VERSION)$(EXE)'
Jack Jansen6b08a402004-06-03 12:41:45 +00002484 fi
Ned Deily36820b62014-06-25 13:44:22 -07002485 else
2486 # building for OS X 10.3 and later
2487 LDSHARED='$(CC) -bundle -undefined dynamic_lookup'
2488 LDCXXSHARED='$(CXX) -bundle -undefined dynamic_lookup'
2489 BLDSHARED="$LDSHARED"
Jack Jansen6b08a402004-06-03 12:41:45 +00002490 fi
2491 ;;
Tarek Ziadé03d788d2010-04-03 08:46:49 +00002492 Linux*|GNU*|QNX*)
2493 LDSHARED='$(CC) -shared'
2494 LDCXXSHARED='$(CXX) -shared';;
2495 BSD/OS*/4*)
2496 LDSHARED="gcc -shared"
2497 LDCXXSHARED="g++ -shared";;
Thomas Wouters1ba5b3b2006-06-08 14:52:47 +00002498 FreeBSD*)
Jeremy Hylton4bcc7c52000-08-31 17:45:35 +00002499 if [[ "`$CC -dM -E - </dev/null | grep __ELF__`" != "" ]]
Guido van Rossum0286ae82000-08-29 15:06:49 +00002500 then
Antoine Pitroud4958c22010-10-13 17:01:10 +00002501 LDSHARED='$(CC) -shared'
2502 LDCXXSHARED='$(CXX) -shared'
Guido van Rossum0286ae82000-08-29 15:06:49 +00002503 else
Antoine Pitroud4958c22010-10-13 17:01:10 +00002504 LDSHARED="ld -Bshareable"
Guido van Rossum0286ae82000-08-29 15:06:49 +00002505 fi;;
Thomas Wouters1ba5b3b2006-06-08 14:52:47 +00002506 OpenBSD*)
2507 if [[ "`$CC -dM -E - </dev/null | grep __ELF__`" != "" ]]
2508 then
Antoine Pitroud4958c22010-10-13 17:01:10 +00002509 LDSHARED='$(CC) -shared $(CCSHARED)'
2510 LDCXXSHARED='$(CXX) -shared $(CCSHARED)'
Thomas Wouters1ba5b3b2006-06-08 14:52:47 +00002511 else
2512 case `uname -r` in
2513 [[01]].* | 2.[[0-7]] | 2.[[0-7]].*)
2514 LDSHARED="ld -Bshareable ${LDFLAGS}"
2515 ;;
2516 *)
Antoine Pitroud4958c22010-10-13 17:01:10 +00002517 LDSHARED='$(CC) -shared $(CCSHARED)'
2518 LDCXXSHARED='$(CXX) -shared $(CCSHARED)'
Thomas Wouters1ba5b3b2006-06-08 14:52:47 +00002519 ;;
2520 esac
2521 fi;;
Tarek Ziadé03d788d2010-04-03 08:46:49 +00002522 NetBSD*|DragonFly*)
Antoine Pitrouece919e2011-01-02 20:45:21 +00002523 LDSHARED='$(CC) -shared'
2524 LDCXXSHARED='$(CXX) -shared';;
Martin v. Löwis25ae43b2001-10-07 08:39:18 +00002525 OpenUNIX*|UnixWare*)
Tarek Ziadé03d788d2010-04-03 08:46:49 +00002526 if test "$GCC" = "yes" ; then
2527 LDSHARED='$(CC) -shared'
2528 LDCXXSHARED='$(CXX) -shared'
2529 else
2530 LDSHARED='$(CC) -G'
2531 LDCXXSHARED='$(CXX) -G'
Martin v. Löwisbec19582001-03-21 15:57:54 +00002532 fi;;
Tarek Ziadé03d788d2010-04-03 08:46:49 +00002533 SCO_SV*)
2534 LDSHARED='$(CC) -Wl,-G,-Bexport'
2535 LDCXXSHARED='$(CXX) -Wl,-G,-Bexport';;
2536 CYGWIN*)
2537 LDSHARED="gcc -shared -Wl,--enable-auto-image-base"
2538 LDCXXSHARED="g++ -shared -Wl,--enable-auto-image-base";;
Guido van Rossumac405f61994-09-12 10:56:06 +00002539 *) LDSHARED="ld";;
2540 esac
Guido van Rossumac405f61994-09-12 10:56:06 +00002541fi
Guido van Rossum76be6ed1995-01-02 18:33:54 +00002542AC_MSG_RESULT($LDSHARED)
Tarek Ziadé03d788d2010-04-03 08:46:49 +00002543LDCXXSHARED=${LDCXXSHARED-$LDSHARED}
Neil Schemenauerb3531b82001-02-16 04:09:05 +00002544BLDSHARED=${BLDSHARED-$LDSHARED}
Guido van Rossumac405f61994-09-12 10:56:06 +00002545# CCSHARED are the C *flags* used to create objects to go into a shared
Guido van Rossum54ecc3d1999-01-27 17:53:11 +00002546# library (module) -- this is only needed for a few systems
Guido van Rossum76be6ed1995-01-02 18:33:54 +00002547AC_MSG_CHECKING(CCSHARED)
Guido van Rossumac405f61994-09-12 10:56:06 +00002548if test -z "$CCSHARED"
2549then
Guido van Rossum6100aaf1997-04-29 21:48:51 +00002550 case $ac_sys_system/$ac_sys_release in
Neil Schemenauer66252162001-02-19 04:47:42 +00002551 SunOS*) if test "$GCC" = yes;
Guido van Rossumd8faa362007-04-27 19:54:29 +00002552 then CCSHARED="-fPIC";
2553 elif test `uname -p` = sparc;
2554 then CCSHARED="-xcode=pic32";
2555 else CCSHARED="-Kpic";
2556 fi;;
Guido van Rossumaf07a441995-02-13 19:45:27 +00002557 hp*|HP*) if test "$GCC" = yes;
Martin v. Löwis703ad702001-09-05 08:36:52 +00002558 then CCSHARED="-fPIC";
Guido van Rossumaf07a441995-02-13 19:45:27 +00002559 else CCSHARED="+z";
2560 fi;;
Xavier de Gaye2a352b62017-01-04 21:51:16 +01002561 Linux-android*) ;;
Martin v. Löwisa6e97582002-01-01 18:41:33 +00002562 Linux*|GNU*) CCSHARED="-fPIC";;
Guido van Rossumf5957ea1999-10-05 21:59:33 +00002563 BSD/OS*/4*) CCSHARED="-fpic";;
Martin v. Löwis86d66262006-02-17 08:40:11 +00002564 FreeBSD*|NetBSD*|OpenBSD*|DragonFly*) CCSHARED="-fPIC";;
Martin v. Löwis25ae43b2001-10-07 08:39:18 +00002565 OpenUNIX*|UnixWare*)
Martin v. Löwisbec19582001-03-21 15:57:54 +00002566 if test "$GCC" = "yes"
2567 then CCSHARED="-fPIC"
Martin v. Löwis130fb172001-07-19 11:00:41 +00002568 else CCSHARED="-KPIC"
Martin v. Löwisbec19582001-03-21 15:57:54 +00002569 fi;;
Martin v. Löwis21ee4092002-09-30 16:19:48 +00002570 SCO_SV*)
2571 if test "$GCC" = "yes"
2572 then CCSHARED="-fPIC"
2573 else CCSHARED="-Kpic -belf"
2574 fi;;
Guido van Rossum2b5ca001998-03-05 15:41:09 +00002575 IRIX*/6*) case $CC in
2576 *gcc*) CCSHARED="-shared";;
Guido van Rossumee21f411998-04-20 18:51:54 +00002577 *) CCSHARED="";;
Guido van Rossum2b5ca001998-03-05 15:41:09 +00002578 esac;;
Guido van Rossumac405f61994-09-12 10:56:06 +00002579 esac
Guido van Rossumac405f61994-09-12 10:56:06 +00002580fi
Guido van Rossum76be6ed1995-01-02 18:33:54 +00002581AC_MSG_RESULT($CCSHARED)
Guido van Rossumac405f61994-09-12 10:56:06 +00002582# LINKFORSHARED are the flags passed to the $(CC) command that links
Guido van Rossumb65a48e1995-06-14 18:21:23 +00002583# the python executable -- this is only needed for a few systems
Guido van Rossum76be6ed1995-01-02 18:33:54 +00002584AC_MSG_CHECKING(LINKFORSHARED)
Guido van Rossumac405f61994-09-12 10:56:06 +00002585if test -z "$LINKFORSHARED"
2586then
Guido van Rossum6100aaf1997-04-29 21:48:51 +00002587 case $ac_sys_system/$ac_sys_release in
Neil Schemenauerb3531b82001-02-16 04:09:05 +00002588 AIX*) LINKFORSHARED='-Wl,-bE:Modules/python.exp -lld';;
Guido van Rossum5dab3d81996-12-06 21:18:18 +00002589 hp*|HP*)
Martin v. Löwis1142de32002-03-29 16:28:31 +00002590 LINKFORSHARED="-Wl,-E -Wl,+s";;
2591# LINKFORSHARED="-Wl,-E -Wl,+s -Wl,+b\$(BINLIBDEST)/lib-dynload";;
Guido van Rossumf5957ea1999-10-05 21:59:33 +00002592 BSD/OS/4*) LINKFORSHARED="-Xlinker -export-dynamic";;
Xavier de Gaye2a352b62017-01-04 21:51:16 +01002593 Linux-android*) LINKFORSHARED="-pie -Xlinker -export-dynamic";;
Martin v. Löwisa6e97582002-01-01 18:41:33 +00002594 Linux*|GNU*) LINKFORSHARED="-Xlinker -export-dynamic";;
Guido van Rossum54ecc3d1999-01-27 17:53:11 +00002595 # -u libsys_s pulls in all symbols in libsys
Victor Stinner1b80b242016-04-12 22:34:58 +02002596 Darwin/*)
Benjamin Peterson9c80cac2009-05-23 16:34:23 +00002597 LINKFORSHARED="$extra_undefs -framework CoreFoundation"
Łukasz Langa335ab5b2013-05-30 20:58:53 +02002598
2599 # Issue #18075: the default maximum stack size (8MBytes) is too
2600 # small for the default recursion limit. Increase the stack size
2601 # to ensure that tests don't crash
2602 LINKFORSHARED="-Wl,-stack_size,1000000 $LINKFORSHARED"
2603
Jack Jansenb6e9cad2001-08-15 01:26:28 +00002604 if test "$enable_framework"
2605 then
Jack Jansenda49e192005-01-07 13:08:22 +00002606 LINKFORSHARED="$LINKFORSHARED "'$(PYTHONFRAMEWORKDIR)/Versions/$(VERSION)/$(PYTHONFRAMEWORK)'
Jack Jansenb6e9cad2001-08-15 01:26:28 +00002607 fi
Raymond Hettingerec6eb362004-11-05 07:02:59 +00002608 LINKFORSHARED="$LINKFORSHARED";;
Martin v. Löwis25ae43b2001-10-07 08:39:18 +00002609 OpenUNIX*|UnixWare*) LINKFORSHARED="-Wl,-Bexport";;
Martin v. Löwis21ee4092002-09-30 16:19:48 +00002610 SCO_SV*) LINKFORSHARED="-Wl,-Bexport";;
Fred Drake02706f52000-09-25 15:08:46 +00002611 ReliantUNIX*) LINKFORSHARED="-W1 -Blargedynsym";;
Victor Stinner1b80b242016-04-12 22:34:58 +02002612 FreeBSD*|NetBSD*|OpenBSD*|DragonFly*)
Guido van Rossumdf693651999-01-07 21:50:41 +00002613 if [[ "`$CC -dM -E - </dev/null | grep __ELF__`" != "" ]]
2614 then
2615 LINKFORSHARED="-Wl,--export-dynamic"
2616 fi;;
Guido van Rossum2b5ca001998-03-05 15:41:09 +00002617 SunOS/5*) case $CC in
2618 *gcc*)
Martin v. Löwisa4548572002-04-18 14:51:36 +00002619 if $CC -Xlinker --help 2>&1 | grep export-dynamic >/dev/null
Guido van Rossum8f4ceb11997-12-18 23:42:19 +00002620 then
2621 LINKFORSHARED="-Xlinker --export-dynamic"
Guido van Rossum2b5ca001998-03-05 15:41:09 +00002622 fi;;
2623 esac;;
Jason Tishler30765592003-09-04 11:04:06 +00002624 CYGWIN*)
2625 if test $enable_shared = "no"
2626 then
2627 LINKFORSHARED='-Wl,--out-implib=$(LDLIBRARY)'
2628 fi;;
Georg Brandlf78e02b2008-06-10 17:40:04 +00002629 QNX*)
2630 # -Wl,-E causes the symbols to be added to the dynamic
2631 # symbol table so that they can be found when a module
2632 # is loaded. -N 2048K causes the stack size to be set
2633 # to 2048 kilobytes so that the stack doesn't overflow
2634 # when running test_compile.py.
2635 LINKFORSHARED='-Wl,-E -N 2048K';;
Guido van Rossumac405f61994-09-12 10:56:06 +00002636 esac
Guido van Rossumac405f61994-09-12 10:56:06 +00002637fi
Guido van Rossum76be6ed1995-01-02 18:33:54 +00002638AC_MSG_RESULT($LINKFORSHARED)
Guido van Rossumac405f61994-09-12 10:56:06 +00002639
Georg Brandl93de2162008-07-16 02:21:06 +00002640
Neil Schemenauer61c51152001-01-26 16:18:16 +00002641AC_SUBST(CFLAGSFORSHARED)
2642AC_MSG_CHECKING(CFLAGSFORSHARED)
2643if test ! "$LIBRARY" = "$LDLIBRARY"
2644then
Neil Schemenauerd9cf41c2001-01-27 21:39:17 +00002645 case $ac_sys_system in
2646 CYGWIN*)
2647 # Cygwin needs CCSHARED when building extension DLLs
2648 # but not when building the interpreter DLL.
2649 CFLAGSFORSHARED='';;
2650 *)
2651 CFLAGSFORSHARED='$(CCSHARED)'
2652 esac
Neil Schemenauer61c51152001-01-26 16:18:16 +00002653fi
2654AC_MSG_RESULT($CFLAGSFORSHARED)
2655
Martin v. Löwisf90ae202002-06-11 06:22:31 +00002656# SHLIBS are libraries (except -lc and -lm) to link to the python shared
2657# library (with --enable-shared).
2658# For platforms on which shared libraries are not allowed to have unresolved
Martin v. Löwisd6359c52002-08-04 12:38:50 +00002659# symbols, this must be set to $(LIBS) (expanded by make). We do this even
2660# if it is not required, since it creates a dependency of the shared library
2661# to LIBS. This, in turn, means that applications linking the shared libpython
2662# don't need to link LIBS explicitly. The default should be only changed
2663# on systems where this approach causes problems.
Martin v. Löwisf90ae202002-06-11 06:22:31 +00002664AC_SUBST(SHLIBS)
2665AC_MSG_CHECKING(SHLIBS)
2666case "$ac_sys_system" in
Martin v. Löwisf90ae202002-06-11 06:22:31 +00002667 *)
Martin v. Löwisd6359c52002-08-04 12:38:50 +00002668 SHLIBS='$(LIBS)';;
Martin v. Löwisf90ae202002-06-11 06:22:31 +00002669esac
2670AC_MSG_RESULT($SHLIBS)
2671
2672
Guido van Rossum627b2d71993-12-24 10:39:16 +00002673# checks for libraries
Giampaolo Rodolàc9c2c8b2011-02-25 14:39:16 +00002674AC_CHECK_LIB(sendfile, sendfile)
Guido van Rossum76be6ed1995-01-02 18:33:54 +00002675AC_CHECK_LIB(dl, dlopen) # Dynamic linking for SunOS/Solaris and SYSV
2676AC_CHECK_LIB(dld, shl_load) # Dynamic linking for HP-UX
Martin v. Löwis519adae2003-09-20 10:47:47 +00002677
Georg Brandleee31162008-12-07 15:15:22 +00002678# only check for sem_init if thread support is requested
Martin v. Löwis519adae2003-09-20 10:47:47 +00002679if test "$with_threads" = "yes" -o -z "$with_threads"; then
2680 AC_SEARCH_LIBS(sem_init, pthread rt posix4) # 'Real Time' functions on Solaris
2681 # posix4 on Solaris 2.6
2682 # pthread (first!) on Linux
2683fi
2684
Martin v. Löwis19d17342003-06-14 21:03:05 +00002685# check if we need libintl for locale functions
2686AC_CHECK_LIB(intl, textdomain,
Brett Cannonc6d936e2009-06-07 20:09:53 +00002687 [AC_DEFINE(WITH_LIBINTL, 1,
2688 [Define to 1 if libintl is needed for locale functions.])
2689 LIBS="-lintl $LIBS"])
Guido van Rossum0eefa3f1999-11-16 15:57:37 +00002690
2691# checks for system dependent C++ extensions support
2692case "$ac_sys_system" in
2693 AIX*) AC_MSG_CHECKING(for genuine AIX C++ extensions support)
Matthias Kloseb159a552010-04-25 21:00:44 +00002694 AC_LINK_IFELSE([
Georg Brandl59e87bd2011-02-15 19:48:59 +00002695 AC_LANG_PROGRAM([[#include <load.h>]],
Matthias Kloseb159a552010-04-25 21:00:44 +00002696 [[loadAndInit("", 0, "")]])
2697 ],[
2698 AC_DEFINE(AIX_GENUINE_CPLUSPLUS, 1,
Martin v. Löwisc45929e2002-04-06 10:10:49 +00002699 [Define for AIX if your compiler is a genuine IBM xlC/xlC_r
2700 and you want support for AIX C++ shared extension modules.])
Matthias Kloseb159a552010-04-25 21:00:44 +00002701 AC_MSG_RESULT(yes)
2702 ],[
2703 AC_MSG_RESULT(no)
2704 ]);;
Guido van Rossum0eefa3f1999-11-16 15:57:37 +00002705 *) ;;
2706esac
2707
Christian Heimes985ecdc2013-11-20 11:46:18 +01002708# check for systems that require aligned memory access
2709AC_MSG_CHECKING(aligned memory access is required)
Benjamin Peterson2e30eb62017-04-14 09:59:34 -07002710AC_CACHE_VAL(ac_cv_aligned_required,
2711[AC_RUN_IFELSE([AC_LANG_SOURCE([[
Christian Heimes985ecdc2013-11-20 11:46:18 +01002712int main()
2713{
2714 char s[16];
2715 int i, *p1, *p2;
2716 for (i=0; i < 16; i++)
2717 s[i] = i;
2718 p1 = (int*)(s+1);
2719 p2 = (int*)(s+2);
2720 if (*p1 == *p2)
2721 return 1;
2722 return 0;
Benjamin Peterson2e30eb62017-04-14 09:59:34 -07002723}]])],
2724[ac_cv_aligned_required=no],
2725[ac_cv_aligned_required=yes],
2726[ac_cv_aligned_required=yes])
2727])
2728AC_MSG_RESULT($ac_cv_aligned_required)
2729if test "$ac_cv_aligned_required" = yes ; then
Christian Heimes985ecdc2013-11-20 11:46:18 +01002730 AC_DEFINE([HAVE_ALIGNED_REQUIRED], [1],
2731 [Define if aligned memory access is required])
2732fi
Christian Heimes985ecdc2013-11-20 11:46:18 +01002733
2734# str, bytes and memoryview hash algorithm
2735AH_TEMPLATE(Py_HASH_ALGORITHM,
2736 [Define hash algorithm for str, bytes and memoryview.
2737 SipHash24: 1, FNV: 2, externally defined: 0])
2738
2739AC_MSG_CHECKING(for --with-hash-algorithm)
2740dnl quadrigraphs "@<:@" and "@:>@" produce "[" and "]" in the output
2741AC_ARG_WITH(hash_algorithm,
2742 AS_HELP_STRING([--with-hash-algorithm=@<:@fnv|siphash24@:>@],
2743 [select hash algorithm]),
2744[
2745AC_MSG_RESULT($withval)
2746case "$withval" in
2747 siphash24)
2748 AC_DEFINE(Py_HASH_ALGORITHM, 1)
2749 ;;
2750 fnv)
2751 AC_DEFINE(Py_HASH_ALGORITHM, 2)
2752 ;;
2753 *)
2754 AC_MSG_ERROR([unknown hash algorithm '$withval'])
2755 ;;
2756esac
2757],
2758[AC_MSG_RESULT(default)])
2759
Charles-François Natalid30b0222014-05-08 23:08:51 +01002760AC_MSG_CHECKING(for --with-address-sanitizer)
2761AC_ARG_WITH(address_sanitizer,
2762 AS_HELP_STRING([--with-address-sanitizer],
2763 [enable AddressSanitizer]),
2764[
2765AC_MSG_RESULT($withval)
2766BASECFLAGS="-fsanitize=address -fno-omit-frame-pointer $BASECFLAGS"
2767LDFLAGS="-fsanitize=address $LDFLAGS"
2768],
2769[AC_MSG_RESULT(no)])
2770
Guido van Rossum70c7f481998-03-26 18:44:10 +00002771# Most SVR4 platforms (e.g. Solaris) need -lsocket and -lnsl.
Guido van Rossumf618d2c1995-01-17 16:36:13 +00002772AC_CHECK_LIB(nsl, t_open, [LIBS="-lnsl $LIBS"]) # SVR4
Guido van Rossumf618d2c1995-01-17 16:36:13 +00002773AC_CHECK_LIB(socket, socket, [LIBS="-lsocket $LIBS"], [], $LIBS) # SVR4 sockets
Skip Montanarob9949db2004-01-17 04:04:13 +00002774
Guido van Rossumc5a39031996-07-31 17:35:03 +00002775AC_MSG_CHECKING(for --with-libs)
Barry Warsawc0d24d8b2000-06-29 16:12:00 +00002776AC_ARG_WITH(libs,
Matthias Klose2b8733f2010-04-25 18:34:36 +00002777 AS_HELP_STRING([--with-libs='lib1 ...'], [link against additional libs]),
Martin v. Löwis3e2c6322002-10-29 10:07:43 +00002778[
Guido van Rossumc5a39031996-07-31 17:35:03 +00002779AC_MSG_RESULT($withval)
2780LIBS="$withval $LIBS"
Martin v. Löwis3e2c6322002-10-29 10:07:43 +00002781],
2782[AC_MSG_RESULT(no)])
Guido van Rossum627b2d71993-12-24 10:39:16 +00002783
Benjamin Peterson0f3cde12014-12-15 00:00:23 -05002784PKG_PROG_PKG_CONFIG
Benjamin Peterson0f64b0b2010-03-09 21:49:52 +00002785
Benjamin Petersonb2d90462009-12-31 03:23:10 +00002786# Check for use of the system expat library
2787AC_MSG_CHECKING(for --with-system-expat)
2788AC_ARG_WITH(system_expat,
Benjamin Peterson79263252010-10-31 16:50:44 +00002789 AS_HELP_STRING([--with-system-expat], [build pyexpat module using an installed expat library]),
2790 [],
2791 [with_system_expat="no"])
Benjamin Petersonb2d90462009-12-31 03:23:10 +00002792
2793AC_MSG_RESULT($with_system_expat)
2794
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00002795# Check for use of the system libffi library
2796AC_MSG_CHECKING(for --with-system-ffi)
2797AC_ARG_WITH(system_ffi,
Zachary Ware935043d2016-09-09 17:01:21 -07002798 AS_HELP_STRING([--with-system-ffi], [build _ctypes module using an installed ffi library]),,,)
2799
2800case "$with_system_ffi" in
2801 "")
2802 case $ac_sys_system in
2803 Darwin)
2804 with_system_ffi="no"
2805 ;;
2806 *)
2807 with_system_ffi="yes"
2808 ;;
2809 esac
2810 ;;
2811 yes|no)
2812 ;;
2813 *)
2814 AC_MSG_ERROR([--with-system-ffi accepts no arguments])
2815 ;;
2816esac
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00002817
Benjamin Peterson0f64b0b2010-03-09 21:49:52 +00002818if test "$with_system_ffi" = "yes" && test -n "$PKG_CONFIG"; then
Benjamin Petersond78735d2010-01-01 16:04:23 +00002819 LIBFFI_INCLUDEDIR="`"$PKG_CONFIG" libffi --cflags-only-I 2>/dev/null | sed -e 's/^-I//;s/ *$//'`"
2820else
2821 LIBFFI_INCLUDEDIR=""
2822fi
2823AC_SUBST(LIBFFI_INCLUDEDIR)
2824
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00002825AC_MSG_RESULT($with_system_ffi)
2826
Stefan Krah60187b52012-03-23 19:06:27 +01002827# Check for use of the system libmpdec library
2828AC_MSG_CHECKING(for --with-system-libmpdec)
2829AC_ARG_WITH(system_libmpdec,
2830 AS_HELP_STRING([--with-system-libmpdec], [build _decimal module using an installed libmpdec library]),
2831 [],
2832 [with_system_libmpdec="no"])
2833
2834AC_MSG_RESULT($with_system_libmpdec)
2835
Benjamin Peterson076ed002010-10-31 17:11:02 +00002836# Check for support for loadable sqlite extensions
2837AC_MSG_CHECKING(for --enable-loadable-sqlite-extensions)
2838AC_ARG_ENABLE(loadable-sqlite-extensions,
2839 AS_HELP_STRING([--enable-loadable-sqlite-extensions], [support loadable extensions in _sqlite module]),
2840 [],
2841 [enable_loadable_sqlite_extensions="no"])
2842
2843AC_MSG_RESULT($enable_loadable_sqlite_extensions)
2844
Ned Deilyd819b932013-09-06 01:07:05 -07002845# Check for --with-tcltk-includes=path and --with-tcltk-libs=path
2846AC_SUBST(TCLTK_INCLUDES)
2847AC_SUBST(TCLTK_LIBS)
2848AC_MSG_CHECKING(for --with-tcltk-includes)
2849AC_ARG_WITH(tcltk-includes,
2850 AS_HELP_STRING([--with-tcltk-includes='-I...'], [override search for Tcl and Tk include files]),
2851 [],
2852 [with_tcltk_includes="default"])
2853AC_MSG_RESULT($with_tcltk_includes)
2854AC_MSG_CHECKING(for --with-tcltk-libs)
2855AC_ARG_WITH(tcltk-libs,
2856 AS_HELP_STRING([--with-tcltk-libs='-L...'], [override search for Tcl and Tk libs]),
2857 [],
2858 [with_tcltk_libs="default"])
2859AC_MSG_RESULT($with_tcltk_libs)
2860if test "x$with_tcltk_includes" = xdefault || test "x$with_tcltk_libs" = xdefault
2861then
2862 if test "x$with_tcltk_includes" != "x$with_tcltk_libs"
2863 then
2864 AC_MSG_ERROR([use both --with-tcltk-includes='...' and --with-tcltk-libs='...' or neither])
2865 fi
2866 TCLTK_INCLUDES=""
2867 TCLTK_LIBS=""
2868else
2869 TCLTK_INCLUDES="$with_tcltk_includes"
2870 TCLTK_LIBS="$with_tcltk_libs"
2871fi
2872
Matthias Klose55708cc2009-04-30 08:06:49 +00002873# Check for --with-dbmliborder
2874AC_MSG_CHECKING(for --with-dbmliborder)
2875AC_ARG_WITH(dbmliborder,
Matthias Klose2b8733f2010-04-25 18:34:36 +00002876 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 Klose55708cc2009-04-30 08:06:49 +00002877[
2878if test x$with_dbmliborder = xyes
2879then
2880AC_MSG_ERROR([proper usage is --with-dbmliborder=db1:db2:...])
2881else
2882 for db in `echo $with_dbmliborder | sed 's/:/ /g'`; do
2883 if test x$db != xndbm && test x$db != xgdbm && test x$db != xbdb
2884 then
2885 AC_MSG_ERROR([proper usage is --with-dbmliborder=db1:db2:...])
2886 fi
2887 done
2888fi])
2889AC_MSG_RESULT($with_dbmliborder)
2890
Guido van Rossum3d15bd82001-01-10 18:53:48 +00002891# This is used to generate Setup.config
Guido van Rossum009f7871997-12-04 00:51:42 +00002892AC_SUBST(USE_THREAD_MODULE)
Barry Warsawc0d24d8b2000-06-29 16:12:00 +00002893USE_THREAD_MODULE=""
Guido van Rossum009f7871997-12-04 00:51:42 +00002894
Guido van Rossum54d93d41997-01-22 20:51:58 +00002895AC_SUBST(LDLAST)
Guido van Rossum54d93d41997-01-22 20:51:58 +00002896
Martin v. Löwis11437992002-04-12 09:54:03 +00002897# Templates for things AC_DEFINEd more than once.
2898# For a single AC_DEFINE, no template is needed.
Martin v. Löwis11437992002-04-12 09:54:03 +00002899AH_TEMPLATE(_REENTRANT,
2900 [Define to force use of thread-safe errno, h_errno, and other functions])
2901AH_TEMPLATE(WITH_THREAD,
2902 [Define if you want to compile in rudimentary thread support])
2903
Guido van Rossum54d93d41997-01-22 20:51:58 +00002904AC_MSG_CHECKING(for --with-threads)
Martin v. Löwis3e2c6322002-10-29 10:07:43 +00002905dnl quadrigraphs "@<:@" and "@:>@" produce "[" and "]" in the output
Barry Warsawc0d24d8b2000-06-29 16:12:00 +00002906AC_ARG_WITH(threads,
Matthias Klose2b8733f2010-04-25 18:34:36 +00002907 AS_HELP_STRING([--with(out)-threads@<:@=DIRECTORY@:>@], [disable/enable thread support]))
Guido van Rossum54d93d41997-01-22 20:51:58 +00002908
Barry Warsawc0d24d8b2000-06-29 16:12:00 +00002909# --with-thread is deprecated, but check for it anyway
Martin v. Löwis3e2c6322002-10-29 10:07:43 +00002910dnl quadrigraphs "@<:@" and "@:>@" produce "[" and "]" in the output
Barry Warsawa0f3c5c2000-06-30 16:39:35 +00002911AC_ARG_WITH(thread,
Matthias Klose2b8733f2010-04-25 18:34:36 +00002912 AS_HELP_STRING([--with(out)-thread@<:@=DIRECTORY@:>@], [deprecated; use --with(out)-threads]),
Martin v. Löwis3e2c6322002-10-29 10:07:43 +00002913 [with_threads=$with_thread])
Barry Warsawc0d24d8b2000-06-29 16:12:00 +00002914
2915if test -z "$with_threads"
2916then with_threads="yes"
Guido van Rossum433c8ad1994-08-01 12:07:07 +00002917fi
Barry Warsawc0d24d8b2000-06-29 16:12:00 +00002918AC_MSG_RESULT($with_threads)
Guido van Rossum6400c261997-05-22 20:34:27 +00002919
Martin v. Löwis2d7e2642002-04-05 16:50:53 +00002920AC_SUBST(THREADOBJ)
Barry Warsawc0d24d8b2000-06-29 16:12:00 +00002921if test "$with_threads" = "no"
2922then
2923 USE_THREAD_MODULE="#"
Martin v. Löwisa5f73f92001-10-15 08:06:29 +00002924elif test "$ac_cv_pthread_is_default" = yes
2925then
2926 AC_DEFINE(WITH_THREAD)
Martin v. Löwisa5f73f92001-10-15 08:06:29 +00002927 # Defining _REENTRANT on system with POSIX threads should not hurt.
2928 AC_DEFINE(_REENTRANT)
2929 posix_threads=yes
Victor Stinner1b80b242016-04-12 22:34:58 +02002930 THREADOBJ="Python/thread.o"
Martin v. Löwis130fb172001-07-19 11:00:41 +00002931elif test "$ac_cv_kpthread" = "yes"
2932then
2933 CC="$CC -Kpthread"
Martin v. Löwis519adae2003-09-20 10:47:47 +00002934 if test "$ac_cv_cxx_thread" = "yes"; then
2935 CXX="$CXX -Kpthread"
2936 fi
Martin v. Löwis130fb172001-07-19 11:00:41 +00002937 AC_DEFINE(WITH_THREAD)
Guido van Rossumd0b69ec2001-09-10 14:10:54 +00002938 posix_threads=yes
Martin v. Löwis2d7e2642002-04-05 16:50:53 +00002939 THREADOBJ="Python/thread.o"
Martin v. Löwis5f433f02003-05-05 05:05:30 +00002940elif test "$ac_cv_kthread" = "yes"
2941then
2942 CC="$CC -Kthread"
Martin v. Löwis519adae2003-09-20 10:47:47 +00002943 if test "$ac_cv_cxx_thread" = "yes"; then
2944 CXX="$CXX -Kthread"
2945 fi
Martin v. Löwis5f433f02003-05-05 05:05:30 +00002946 AC_DEFINE(WITH_THREAD)
2947 posix_threads=yes
2948 THREADOBJ="Python/thread.o"
Martin v. Löwis4ee6eef2003-05-26 05:37:51 +00002949elif test "$ac_cv_pthread" = "yes"
2950then
2951 CC="$CC -pthread"
Martin v. Löwis519adae2003-09-20 10:47:47 +00002952 if test "$ac_cv_cxx_thread" = "yes"; then
2953 CXX="$CXX -pthread"
2954 fi
Martin v. Löwis4ee6eef2003-05-26 05:37:51 +00002955 AC_DEFINE(WITH_THREAD)
2956 posix_threads=yes
2957 THREADOBJ="Python/thread.o"
Barry Warsawc0d24d8b2000-06-29 16:12:00 +00002958else
Martin v. Löwis130fb172001-07-19 11:00:41 +00002959 if test ! -z "$with_threads" -a -d "$with_threads"
2960 then LDFLAGS="$LDFLAGS -L$with_threads"
2961 fi
2962 if test ! -z "$withval" -a -d "$withval"
2963 then LDFLAGS="$LDFLAGS -L$withval"
2964 fi
Martin v. Löwis69c0ff32001-10-15 14:34:42 +00002965
2966 # According to the POSIX spec, a pthreads implementation must
Matthias Klosea2542be2004-08-16 11:35:51 +00002967 # define _POSIX_THREADS in unistd.h. Some apparently don't
2968 # (e.g. gnu pth with pthread emulation)
Martin v. Löwis69c0ff32001-10-15 14:34:42 +00002969 AC_MSG_CHECKING(for _POSIX_THREADS in unistd.h)
2970 AC_EGREP_CPP(yes,
Neal Norwitz6eb37f02003-02-23 23:28:15 +00002971 [
2972#include <unistd.h>
2973#ifdef _POSIX_THREADS
2974yes
2975#endif
Martin v. Löwis69c0ff32001-10-15 14:34:42 +00002976 ], unistd_defines_pthreads=yes, unistd_defines_pthreads=no)
2977 AC_MSG_RESULT($unistd_defines_pthreads)
2978
Martin v. Löwis130fb172001-07-19 11:00:41 +00002979 AC_DEFINE(_REENTRANT)
Martin v. Löwis8158b5a2001-10-08 13:17:28 +00002980 # Just looking for pthread_create in libpthread is not enough:
2981 # on HP/UX, pthread.h renames pthread_create to a different symbol name.
2982 # So we really have to include pthread.h, and then link.
2983 _libs=$LIBS
2984 LIBS="$LIBS -lpthread"
2985 AC_MSG_CHECKING([for pthread_create in -lpthread])
Stefan Krah7dba5942012-11-22 22:49:11 +01002986 AC_LINK_IFELSE([AC_LANG_PROGRAM([[
2987#include <stdio.h>
2988#include <pthread.h>
Martin v. Löwis8158b5a2001-10-08 13:17:28 +00002989
Matthias Kloseb159a552010-04-25 21:00:44 +00002990void * start_routine (void *arg) { exit (0); }]], [[
2991pthread_create (NULL, NULL, start_routine, NULL)]])],[
Martin v. Löwis8158b5a2001-10-08 13:17:28 +00002992 AC_MSG_RESULT(yes)
2993 AC_DEFINE(WITH_THREAD)
Martin v. Löwis69c0ff32001-10-15 14:34:42 +00002994 posix_threads=yes
Martin v. Löwis2d7e2642002-04-05 16:50:53 +00002995 THREADOBJ="Python/thread.o"],[
Martin v. Löwis8158b5a2001-10-08 13:17:28 +00002996 LIBS=$_libs
Martin v. Löwis130fb172001-07-19 11:00:41 +00002997 AC_CHECK_FUNC(pthread_detach, [AC_DEFINE(WITH_THREAD)
Martin v. Löwis69c0ff32001-10-15 14:34:42 +00002998 posix_threads=yes
Martin v. Löwis2d7e2642002-04-05 16:50:53 +00002999 THREADOBJ="Python/thread.o"],[
Martin v. Löwis130fb172001-07-19 11:00:41 +00003000 AC_CHECK_LIB(pthreads, pthread_create, [AC_DEFINE(WITH_THREAD)
Guido van Rossumd0b69ec2001-09-10 14:10:54 +00003001 posix_threads=yes
Martin v. Löwis130fb172001-07-19 11:00:41 +00003002 LIBS="$LIBS -lpthreads"
Martin v. Löwis2d7e2642002-04-05 16:50:53 +00003003 THREADOBJ="Python/thread.o"], [
Martin v. Löwis130fb172001-07-19 11:00:41 +00003004 AC_CHECK_LIB(c_r, pthread_create, [AC_DEFINE(WITH_THREAD)
Guido van Rossumd0b69ec2001-09-10 14:10:54 +00003005 posix_threads=yes
Martin v. Löwis130fb172001-07-19 11:00:41 +00003006 LIBS="$LIBS -lc_r"
Martin v. Löwis2d7e2642002-04-05 16:50:53 +00003007 THREADOBJ="Python/thread.o"], [
Martin v. Löwis130fb172001-07-19 11:00:41 +00003008 AC_CHECK_LIB(pthread, __pthread_create_system, [AC_DEFINE(WITH_THREAD)
Guido van Rossumd0b69ec2001-09-10 14:10:54 +00003009 posix_threads=yes
Martin v. Löwis130fb172001-07-19 11:00:41 +00003010 LIBS="$LIBS -lpthread"
Martin v. Löwis2d7e2642002-04-05 16:50:53 +00003011 THREADOBJ="Python/thread.o"], [
Martin v. Löwis130fb172001-07-19 11:00:41 +00003012 AC_CHECK_LIB(cma, pthread_create, [AC_DEFINE(WITH_THREAD)
Guido van Rossumd0b69ec2001-09-10 14:10:54 +00003013 posix_threads=yes
Martin v. Löwis130fb172001-07-19 11:00:41 +00003014 LIBS="$LIBS -lcma"
Martin v. Löwis2d7e2642002-04-05 16:50:53 +00003015 THREADOBJ="Python/thread.o"],[
Martin v. Löwis130fb172001-07-19 11:00:41 +00003016 USE_THREAD_MODULE="#"])
Antoine Pitrou37009202011-07-08 23:47:50 +02003017 ])])])])])
Barry Warsawc0d24d8b2000-06-29 16:12:00 +00003018
Martin v. Löwis4ee6eef2003-05-26 05:37:51 +00003019 AC_CHECK_LIB(mpc, usconfig, [AC_DEFINE(WITH_THREAD)
3020 LIBS="$LIBS -lmpc"
3021 THREADOBJ="Python/thread.o"
3022 USE_THREAD_MODULE=""])
3023
Victor Stinner1b80b242016-04-12 22:34:58 +02003024 if test "$posix_threads" != "yes"; then
Martin v. Löwis4ee6eef2003-05-26 05:37:51 +00003025 AC_CHECK_LIB(thread, thr_create, [AC_DEFINE(WITH_THREAD)
3026 LIBS="$LIBS -lthread"
3027 THREADOBJ="Python/thread.o"
3028 USE_THREAD_MODULE=""])
3029 fi
Martin v. Löwis4ee6eef2003-05-26 05:37:51 +00003030fi
3031
3032if test "$posix_threads" = "yes"; then
Martin v. Löwis69c0ff32001-10-15 14:34:42 +00003033 if test "$unistd_defines_pthreads" = "no"; then
Martin v. Löwisc45929e2002-04-06 10:10:49 +00003034 AC_DEFINE(_POSIX_THREADS, 1,
Victor Stinner1b80b242016-04-12 22:34:58 +02003035 [Define if you have POSIX threads,
Martin v. Löwisc45929e2002-04-06 10:10:49 +00003036 and your system does not define that.])
Martin v. Löwis69c0ff32001-10-15 14:34:42 +00003037 fi
3038
Martin v. Löwisdfc33fd2003-01-21 10:14:41 +00003039 # Bug 662787: Using semaphores causes unexplicable hangs on Solaris 8.
3040 case $ac_sys_system/$ac_sys_release in
Charles-François Natali996f6062011-07-21 19:45:31 +02003041 SunOS/5.6) AC_DEFINE(HAVE_PTHREAD_DESTRUCTOR, 1,
Matthias Klosec80c93f2010-04-24 17:04:35 +00003042 [Defined for Solaris 2.6 bug in pthread header.])
Martin v. Löwis4ee6eef2003-05-26 05:37:51 +00003043 ;;
Martin v. Löwisdfc33fd2003-01-21 10:14:41 +00003044 SunOS/5.8) AC_DEFINE(HAVE_BROKEN_POSIX_SEMAPHORES, 1,
Matthias Klosec80c93f2010-04-24 17:04:35 +00003045 [Define if the Posix semaphores do not work on your system])
Martin v. Löwis4ee6eef2003-05-26 05:37:51 +00003046 ;;
Charles-François Natali996f6062011-07-21 19:45:31 +02003047 AIX/*) AC_DEFINE(HAVE_BROKEN_POSIX_SEMAPHORES, 1,
Matthias Klosec80c93f2010-04-24 17:04:35 +00003048 [Define if the Posix semaphores do not work on your system])
Christian Heimes7b3ce6a2008-01-31 14:31:45 +00003049 ;;
Martin v. Löwisdfc33fd2003-01-21 10:14:41 +00003050 esac
3051
Guido van Rossumd0b69ec2001-09-10 14:10:54 +00003052 AC_MSG_CHECKING(if PTHREAD_SCOPE_SYSTEM is supported)
3053 AC_CACHE_VAL(ac_cv_pthread_system_supported,
Stefan Krah7dba5942012-11-22 22:49:11 +01003054 [AC_RUN_IFELSE([AC_LANG_SOURCE([[
3055 #include <stdio.h>
3056 #include <pthread.h>
Guido van Rossumd0b69ec2001-09-10 14:10:54 +00003057 void *foo(void *parm) {
3058 return NULL;
3059 }
3060 main() {
3061 pthread_attr_t attr;
Martin v. Löwisa82d3472002-02-24 16:05:05 +00003062 pthread_t id;
Guido van Rossumd0b69ec2001-09-10 14:10:54 +00003063 if (pthread_attr_init(&attr)) exit(-1);
3064 if (pthread_attr_setscope(&attr, PTHREAD_SCOPE_SYSTEM)) exit(-1);
Martin v. Löwisa82d3472002-02-24 16:05:05 +00003065 if (pthread_create(&id, &attr, foo, NULL)) exit(-1);
Guido van Rossumd0b69ec2001-09-10 14:10:54 +00003066 exit(0);
Matthias Kloseb159a552010-04-25 21:00:44 +00003067 }]])],
3068 [ac_cv_pthread_system_supported=yes],
3069 [ac_cv_pthread_system_supported=no],
3070 [ac_cv_pthread_system_supported=no])
Guido van Rossumd0b69ec2001-09-10 14:10:54 +00003071 ])
3072 AC_MSG_RESULT($ac_cv_pthread_system_supported)
3073 if test "$ac_cv_pthread_system_supported" = "yes"; then
Martin v. Löwisc45929e2002-04-06 10:10:49 +00003074 AC_DEFINE(PTHREAD_SYSTEM_SCHED_SUPPORTED, 1, [Defined if PTHREAD_SCOPE_SYSTEM supported.])
Guido van Rossumd0b69ec2001-09-10 14:10:54 +00003075 fi
Jason Tishlerfac083d2003-07-22 15:20:49 +00003076 AC_CHECK_FUNCS(pthread_sigmask,
3077 [case $ac_sys_system in
3078 CYGWIN*)
3079 AC_DEFINE(HAVE_BROKEN_PTHREAD_SIGMASK, 1,
3080 [Define if pthread_sigmask() does not work on your system.])
3081 ;;
3082 esac])
Christian Heimesf77b4b22013-08-21 13:26:05 +02003083 AC_CHECK_FUNCS(pthread_atfork)
Barry Warsawc0d24d8b2000-06-29 16:12:00 +00003084fi
Guido van Rossum433c8ad1994-08-01 12:07:07 +00003085
Martin v. Löwis4ee6eef2003-05-26 05:37:51 +00003086
Martin v. Löwisa2ac6022001-08-09 11:40:14 +00003087# Check for enable-ipv6
Martin v. Löwis11437992002-04-12 09:54:03 +00003088AH_TEMPLATE(ENABLE_IPV6, [Define if --enable-ipv6 is specified])
Martin v. Löwisa5f8bb52001-09-05 08:22:34 +00003089AC_MSG_CHECKING([if --enable-ipv6 is specified])
Martin v. Löwisa2ac6022001-08-09 11:40:14 +00003090AC_ARG_ENABLE(ipv6,
Martin v. Löwis3e2c6322002-10-29 10:07:43 +00003091[ --enable-ipv6 Enable ipv6 (with ipv4) support
3092 --disable-ipv6 Disable ipv6 support],
Martin v. Löwisa2ac6022001-08-09 11:40:14 +00003093[ case "$enableval" in
3094 no)
3095 AC_MSG_RESULT(no)
3096 ipv6=no
3097 ;;
3098 *) AC_MSG_RESULT(yes)
3099 AC_DEFINE(ENABLE_IPV6)
3100 ipv6=yes
3101 ;;
3102 esac ],
3103
Martin v. Löwisa5f8bb52001-09-05 08:22:34 +00003104[
3105dnl the check does not work on cross compilation case...
Charles-François Natalif6fd7942013-01-08 19:49:42 +01003106 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[ /* AF_INET6 available check */
Martin v. Löwisa2ac6022001-08-09 11:40:14 +00003107#include <sys/types.h>
Charles-François Natalif6fd7942013-01-08 19:49:42 +01003108#include <sys/socket.h>]],
3109[[int domain = AF_INET6;]])],[
Martin v. Löwisa2ac6022001-08-09 11:40:14 +00003110 AC_MSG_RESULT(yes)
Matthias Kloseb159a552010-04-25 21:00:44 +00003111 ipv6=yes
3112],[
Martin v. Löwisa2ac6022001-08-09 11:40:14 +00003113 AC_MSG_RESULT(no)
3114 ipv6=no
Matthias Kloseb159a552010-04-25 21:00:44 +00003115])
Martin v. Löwisa5f8bb52001-09-05 08:22:34 +00003116
3117if test "$ipv6" = "yes"; then
3118 AC_MSG_CHECKING(if RFC2553 API is available)
Matthias Kloseb159a552010-04-25 21:00:44 +00003119 AC_COMPILE_IFELSE([
3120 AC_LANG_PROGRAM([[#include <sys/types.h>
3121#include <netinet/in.h>]],
3122 [[struct sockaddr_in6 x;
3123 x.sin6_scope_id;]])
3124 ],[
3125 AC_MSG_RESULT(yes)
3126 ipv6=yes
3127 ],[
3128 AC_MSG_RESULT(no, IPv6 disabled)
3129 ipv6=no
3130 ])
Martin v. Löwisa5f8bb52001-09-05 08:22:34 +00003131fi
3132
3133if test "$ipv6" = "yes"; then
3134 AC_DEFINE(ENABLE_IPV6)
3135fi
3136])
Martin v. Löwisa2ac6022001-08-09 11:40:14 +00003137
3138ipv6type=unknown
3139ipv6lib=none
3140ipv6trylibc=no
3141
3142if test "$ipv6" = "yes"; then
3143 AC_MSG_CHECKING([ipv6 stack type])
Guido van Rossumb8552162001-09-05 14:58:11 +00003144 for i in inria kame linux-glibc linux-inet6 solaris toshiba v6d zeta;
3145 do
Martin v. Löwisa2ac6022001-08-09 11:40:14 +00003146 case $i in
3147 inria)
3148 dnl http://www.kame.net/
Martin v. Löwisa5f73f92001-10-15 08:06:29 +00003149 AC_EGREP_CPP(yes, [
Martin v. Löwisa2ac6022001-08-09 11:40:14 +00003150#include <netinet/in.h>
3151#ifdef IPV6_INRIA_VERSION
3152yes
3153#endif],
Martin v. Löwis44ddbde2001-12-02 10:15:37 +00003154 [ipv6type=$i])
Martin v. Löwisa2ac6022001-08-09 11:40:14 +00003155 ;;
3156 kame)
3157 dnl http://www.kame.net/
Martin v. Löwisa5f73f92001-10-15 08:06:29 +00003158 AC_EGREP_CPP(yes, [
Martin v. Löwisa2ac6022001-08-09 11:40:14 +00003159#include <netinet/in.h>
3160#ifdef __KAME__
3161yes
3162#endif],
3163 [ipv6type=$i;
3164 ipv6lib=inet6
3165 ipv6libdir=/usr/local/v6/lib
Martin v. Löwis44ddbde2001-12-02 10:15:37 +00003166 ipv6trylibc=yes])
Martin v. Löwisa2ac6022001-08-09 11:40:14 +00003167 ;;
3168 linux-glibc)
3169 dnl http://www.v6.linux.or.jp/
Martin v. Löwisa5f73f92001-10-15 08:06:29 +00003170 AC_EGREP_CPP(yes, [
Martin v. Löwisa2ac6022001-08-09 11:40:14 +00003171#include <features.h>
3172#if defined(__GLIBC__) && ((__GLIBC__ == 2 && __GLIBC_MINOR__ >= 1) || (__GLIBC__ > 2))
3173yes
3174#endif],
3175 [ipv6type=$i;
Martin v. Löwis44ddbde2001-12-02 10:15:37 +00003176 ipv6trylibc=yes])
Martin v. Löwisa2ac6022001-08-09 11:40:14 +00003177 ;;
3178 linux-inet6)
3179 dnl http://www.v6.linux.or.jp/
3180 if test -d /usr/inet6; then
3181 ipv6type=$i
3182 ipv6lib=inet6
3183 ipv6libdir=/usr/inet6/lib
Skip Montanarodecc6a42003-01-01 20:07:49 +00003184 BASECFLAGS="-I/usr/inet6/include $BASECFLAGS"
Martin v. Löwisa2ac6022001-08-09 11:40:14 +00003185 fi
3186 ;;
3187 solaris)
3188 if test -f /etc/netconfig; then
Antoine Pitrouf3fcd9f2011-01-03 18:53:50 +00003189 if $GREP -q tcp6 /etc/netconfig; then
Martin v. Löwisa2ac6022001-08-09 11:40:14 +00003190 ipv6type=$i
3191 ipv6trylibc=yes
Martin v. Löwisa2ac6022001-08-09 11:40:14 +00003192 fi
3193 fi
3194 ;;
3195 toshiba)
Martin v. Löwisa5f73f92001-10-15 08:06:29 +00003196 AC_EGREP_CPP(yes, [
Martin v. Löwisa2ac6022001-08-09 11:40:14 +00003197#include <sys/param.h>
3198#ifdef _TOSHIBA_INET6
3199yes
3200#endif],
3201 [ipv6type=$i;
3202 ipv6lib=inet6;
Martin v. Löwis44ddbde2001-12-02 10:15:37 +00003203 ipv6libdir=/usr/local/v6/lib])
Martin v. Löwisa2ac6022001-08-09 11:40:14 +00003204 ;;
3205 v6d)
Martin v. Löwisa5f73f92001-10-15 08:06:29 +00003206 AC_EGREP_CPP(yes, [
Martin v. Löwisa2ac6022001-08-09 11:40:14 +00003207#include </usr/local/v6/include/sys/v6config.h>
3208#ifdef __V6D__
3209yes
3210#endif],
3211 [ipv6type=$i;
3212 ipv6lib=v6;
3213 ipv6libdir=/usr/local/v6/lib;
Skip Montanarodecc6a42003-01-01 20:07:49 +00003214 BASECFLAGS="-I/usr/local/v6/include $BASECFLAGS"])
Martin v. Löwisa2ac6022001-08-09 11:40:14 +00003215 ;;
3216 zeta)
Martin v. Löwisa5f73f92001-10-15 08:06:29 +00003217 AC_EGREP_CPP(yes, [
Martin v. Löwisa2ac6022001-08-09 11:40:14 +00003218#include <sys/param.h>
3219#ifdef _ZETA_MINAMI_INET6
3220yes
3221#endif],
3222 [ipv6type=$i;
3223 ipv6lib=inet6;
Martin v. Löwis44ddbde2001-12-02 10:15:37 +00003224 ipv6libdir=/usr/local/v6/lib])
Martin v. Löwisa2ac6022001-08-09 11:40:14 +00003225 ;;
3226 esac
3227 if test "$ipv6type" != "unknown"; then
3228 break
3229 fi
3230 done
3231 AC_MSG_RESULT($ipv6type)
3232fi
3233
3234if test "$ipv6" = "yes" -a "$ipv6lib" != "none"; then
3235 if test -d $ipv6libdir -a -f $ipv6libdir/lib$ipv6lib.a; then
3236 LIBS="-L$ipv6libdir -l$ipv6lib $LIBS"
3237 echo "using lib$ipv6lib"
3238 else
3239 if test $ipv6trylibc = "yes"; then
3240 echo "using libc"
3241 else
3242 echo 'Fatal: no $ipv6lib library found. cannot continue.'
3243 echo "You need to fetch lib$ipv6lib.a from appropriate"
3244 echo 'ipv6 kit and compile beforehand.'
3245 exit 1
3246 fi
3247 fi
3248fi
3249
Larry Hastingsa6cc5512015-04-13 17:48:40 -04003250AC_MSG_CHECKING(for CAN_RAW_FD_FRAMES)
3251AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[ /* CAN_RAW_FD_FRAMES available check */
3252#include <linux/can/raw.h>]],
3253[[int can_raw_fd_frames = CAN_RAW_FD_FRAMES;]])],[
3254 AC_DEFINE(HAVE_LINUX_CAN_RAW_FD_FRAMES, 1, [Define if compiling using Linux 3.6 or later.])
3255 AC_MSG_RESULT(yes)
3256],[
3257 AC_MSG_RESULT(no)
3258])
3259
Martin v. Löwisa3fb4f72002-06-09 13:33:54 +00003260# Check for --with-doc-strings
3261AC_MSG_CHECKING(for --with-doc-strings)
3262AC_ARG_WITH(doc-strings,
Matthias Klose2b8733f2010-04-25 18:34:36 +00003263 AS_HELP_STRING([--with(out)-doc-strings], [disable/enable documentation strings]))
Martin v. Löwisa3fb4f72002-06-09 13:33:54 +00003264
3265if test -z "$with_doc_strings"
3266then with_doc_strings="yes"
3267fi
3268if test "$with_doc_strings" != "no"
3269then
3270 AC_DEFINE(WITH_DOC_STRINGS, 1,
3271 [Define if you want documentation strings in extension modules])
3272fi
3273AC_MSG_RESULT($with_doc_strings)
3274
Martin v. Löwisf30d60e2004-06-08 08:17:44 +00003275# Check for Python-specific malloc support
Neil Schemenauera35c6882001-02-27 04:45:05 +00003276AC_MSG_CHECKING(for --with-pymalloc)
3277AC_ARG_WITH(pymalloc,
Matthias Klose2b8733f2010-04-25 18:34:36 +00003278 AS_HELP_STRING([--with(out)-pymalloc], [disable/enable specialized mallocs]))
Neil Schemenauer16c22972002-03-22 15:34:49 +00003279
3280if test -z "$with_pymalloc"
Barry Warsaw35f3a2c2010-09-03 18:30:30 +00003281then
3282 with_pymalloc="yes"
Neil Schemenauer16c22972002-03-22 15:34:49 +00003283fi
3284if test "$with_pymalloc" != "no"
3285then
Victor Stinner1b80b242016-04-12 22:34:58 +02003286 AC_DEFINE(WITH_PYMALLOC, 1,
Martin v. Löwisc45929e2002-04-06 10:10:49 +00003287 [Define if you want to compile in Python-specific mallocs])
doko@ubuntu.com9c7817e2012-06-30 17:05:13 +02003288 ABIFLAGS="${ABIFLAGS}m"
Neil Schemenauer16c22972002-03-22 15:34:49 +00003289fi
3290AC_MSG_RESULT($with_pymalloc)
Neil Schemenauera35c6882001-02-27 04:45:05 +00003291
Benjamin Peterson05159c42009-12-03 03:01:27 +00003292# Check for Valgrind support
3293AC_MSG_CHECKING([for --with-valgrind])
3294AC_ARG_WITH([valgrind],
Matthias Klose2b8733f2010-04-25 18:34:36 +00003295 AS_HELP_STRING([--with-valgrind], [Enable Valgrind support]),,
Benjamin Peterson05159c42009-12-03 03:01:27 +00003296 with_valgrind=no)
3297AC_MSG_RESULT([$with_valgrind])
3298if test "$with_valgrind" != no; then
3299 AC_CHECK_HEADER([valgrind/valgrind.h],
3300 [AC_DEFINE([WITH_VALGRIND], 1, [Define if you want pymalloc to be disabled when running under valgrind])],
3301 [AC_MSG_ERROR([Valgrind support requested but headers not available])]
3302 )
Jeffrey Yasskin39370832010-05-03 19:29:34 +00003303 OPT="-DDYNAMIC_ANNOTATIONS_ENABLED=1 $OPT"
Benjamin Peterson05159c42009-12-03 03:01:27 +00003304fi
3305
Łukasz Langaa785c872016-09-09 17:37:37 -07003306# Check for DTrace support
3307AC_MSG_CHECKING(for --with-dtrace)
3308AC_ARG_WITH(dtrace,
3309 AC_HELP_STRING(--with(out)-dtrace, [disable/enable DTrace support]),,
3310 with_dtrace=no)
3311AC_MSG_RESULT($with_dtrace)
3312
3313AC_SUBST(DTRACE)
3314AC_SUBST(DFLAGS)
3315AC_SUBST(DTRACE_HEADERS)
3316AC_SUBST(DTRACE_OBJS)
3317DTRACE=
3318DFLAGS=
3319DTRACE_HEADERS=
3320DTRACE_OBJS=
3321
3322if test "$with_dtrace" = "yes"
3323then
3324 AC_PATH_PROG(DTRACE, [dtrace], [not found])
3325 if test "$DTRACE" = "not found"; then
3326 AC_MSG_ERROR([dtrace command not found on \$PATH])
3327 fi
3328 AC_DEFINE(WITH_DTRACE, 1, [Define if you want to compile in DTrace support])
3329 DTRACE_HEADERS="Include/pydtrace_probes.h"
3330
3331 # On OS X, DTrace providers do not need to be explicitly compiled and
3332 # linked into the binary. Correspondingly, dtrace(1) is missing the ELF
3333 # generation flag '-G'. We check for presence of this flag, rather than
3334 # hardcoding support by OS, in the interest of robustness.
3335 AC_CACHE_CHECK([whether DTrace probes require linking],
3336 [ac_cv_dtrace_link], [dnl
3337 ac_cv_dtrace_link=no
3338 echo 'BEGIN' > conftest.d
3339 "$DTRACE" -G -s conftest.d -o conftest.o > /dev/null 2>&1 && \
3340 ac_cv_dtrace_link=yes
3341 ])
3342 if test "$ac_cv_dtrace_link" = "yes"; then
3343 DTRACE_OBJS="Python/pydtrace.o"
3344 fi
3345fi
3346
Guido van Rossum68242b51996-05-28 22:53:03 +00003347# -I${DLINCLDIR} is added to the compile rule for importdl.o
Guido van Rossum433c8ad1994-08-01 12:07:07 +00003348AC_SUBST(DLINCLDIR)
Guido van Rossum98935bf2001-09-05 19:13:16 +00003349DLINCLDIR=.
Guido van Rossum433c8ad1994-08-01 12:07:07 +00003350
Guido van Rossume97ee181999-12-20 21:27:22 +00003351# the dlopen() function means we might want to use dynload_shlib.o. some
3352# platforms, such as AIX, have dlopen(), but don't want to use it.
Thomas Wouters3a584202000-08-05 23:28:51 +00003353AC_CHECK_FUNCS(dlopen)
Guido van Rossume97ee181999-12-20 21:27:22 +00003354
3355# DYNLOADFILE specifies which dynload_*.o file we will use for dynamic
3356# loading of modules.
3357AC_SUBST(DYNLOADFILE)
3358AC_MSG_CHECKING(DYNLOADFILE)
3359if test -z "$DYNLOADFILE"
3360then
3361 case $ac_sys_system/$ac_sys_release in
Martin v. Löwisc19c5a62003-11-18 20:00:44 +00003362 AIX*) # Use dynload_shlib.c and dlopen() if we have it; otherwise dynload_aix.c
3363 if test "$ac_cv_func_dlopen" = yes
3364 then DYNLOADFILE="dynload_shlib.o"
3365 else DYNLOADFILE="dynload_aix.o"
3366 fi
3367 ;;
Guido van Rossume97ee181999-12-20 21:27:22 +00003368 hp*|HP*) DYNLOADFILE="dynload_hpux.o";;
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00003369 # Use dynload_next.c only on 10.2 and below, which don't have native dlopen()
3370 Darwin/@<:@0156@:>@\..*) DYNLOADFILE="dynload_next.o";;
Guido van Rossume97ee181999-12-20 21:27:22 +00003371 *)
3372 # use dynload_shlib.c and dlopen() if we have it; otherwise stub
3373 # out any dynamic loading
3374 if test "$ac_cv_func_dlopen" = yes
3375 then DYNLOADFILE="dynload_shlib.o"
3376 else DYNLOADFILE="dynload_stub.o"
3377 fi
3378 ;;
3379 esac
3380fi
3381AC_MSG_RESULT($DYNLOADFILE)
3382if test "$DYNLOADFILE" != "dynload_stub.o"
3383then
Martin v. Löwisc45929e2002-04-06 10:10:49 +00003384 AC_DEFINE(HAVE_DYNAMIC_LOADING, 1,
3385 [Defined when any dynamic module loading is enabled.])
Guido van Rossume97ee181999-12-20 21:27:22 +00003386fi
3387
Jack Jansenc49e5b72001-06-19 15:00:23 +00003388# MACHDEP_OBJS can be set to platform-specific object files needed by Python
3389
3390AC_SUBST(MACHDEP_OBJS)
3391AC_MSG_CHECKING(MACHDEP_OBJS)
3392if test -z "$MACHDEP_OBJS"
3393then
Jack Jansenb6e9cad2001-08-15 01:26:28 +00003394 MACHDEP_OBJS=$extra_machdep_objs
3395else
3396 MACHDEP_OBJS="$MACHDEP_OBJS $extra_machdep_objs"
Jack Jansenc49e5b72001-06-19 15:00:23 +00003397fi
doko@ubuntu.com9c7817e2012-06-30 17:05:13 +02003398if test -z "$MACHDEP_OBJS"; then
3399 AC_MSG_RESULT([none])
3400else
3401 AC_MSG_RESULT([$MACHDEP_OBJS])
3402fi
Jack Jansenc49e5b72001-06-19 15:00:23 +00003403
Guido van Rossum627b2d71993-12-24 10:39:16 +00003404# checks for library functions
Antoine Pitroub1c54962010-10-14 15:05:38 +00003405AC_CHECK_FUNCS(alarm accept4 setitimer getitimer bind_textdomain_codeset chown \
Victor Stinnerdaf45552013-08-28 00:53:59 +02003406 clock confstr ctermid dup3 execv faccessat fchmod fchmodat fchown fchownat \
Ross Lagerwall7807c352011-03-17 20:20:30 +02003407 fexecve fdopendir fork fpathconf fstatat ftime ftruncate futimesat \
Victor Stinner4d6a3d62014-12-21 01:16:38 +01003408 futimens futimes gai_strerror getentropy \
Ross Lagerwallb0ae53d2011-06-10 07:30:30 +02003409 getgrouplist getgroups getlogin getloadavg getpeername getpgid getpid \
Martin v. Löwis7aed61a2009-11-27 14:09:49 +00003410 getpriority getresuid getresgid getpwent getspnam getspent getsid getwd \
Xavier de Gayebdf0d0f2016-12-22 10:38:59 +01003411 initgroups kill killpg lchmod lchown linkat lstat lutimes mmap \
Antoine Pitrouf0effe62011-11-26 01:11:02 +01003412 memrchr mbrtowc mkdirat mkfifo \
Charles-François Natalidaafdd52011-05-29 20:07:40 +02003413 mkfifoat mknod mknodat mktime mremap nice openat pathconf pause pipe2 plock poll \
Ross Lagerwall7807c352011-03-17 20:20:30 +02003414 posix_fallocate posix_fadvise pread \
Victor Stinnerb3e72192011-05-08 01:46:11 +02003415 pthread_init pthread_kill putenv pwrite readlink readlinkat readv realpath renameat \
Giampaolo Rodolàc9c2c8b2011-02-25 14:39:16 +00003416 select sem_open sem_timedwait sem_getvalue sem_unlink sendfile setegid seteuid \
Antoine Pitrou061cfb52011-02-28 22:25:22 +00003417 setgid sethostname \
Giampaolo Rodolà18e8bcb2011-02-25 20:57:54 +00003418 setlocale setregid setreuid setresuid setresgid setsid setpgid setpgrp setpriority setuid setvbuf \
Charles-François Nataliea0d5fc2011-09-06 19:03:35 +02003419 sched_get_priority_max sched_setaffinity sched_setscheduler sched_setparam \
3420 sched_rr_get_interval \
Ross Lagerwallbc808222011-06-25 12:13:40 +02003421 sigaction sigaltstack siginterrupt sigpending sigrelse \
3422 sigtimedwait sigwait sigwaitinfo snprintf strftime strlcpy symlinkat sync \
Michael W. Hudson34f20ea2002-05-27 15:08:24 +00003423 sysconf tcgetpgrp tcsetpgrp tempnam timegm times tmpfile tmpnam tmpnam_r \
Ross Lagerwall7807c352011-03-17 20:20:30 +02003424 truncate uname unlinkat unsetenv utimensat utimes waitid waitpid wait3 wait4 \
Victor Stinnercd777ea2013-04-08 22:43:44 +02003425 wcscoll wcsftime wcsxfrm wmemcmp writev _getpty)
Guido van Rossum00f0f6e1999-01-06 18:52:29 +00003426
Gregory P. Smithdf300d52012-01-21 18:20:15 -08003427AC_CHECK_DECL(dirfd,
3428 AC_DEFINE(HAVE_DIRFD, 1,
3429 Define if you have the 'dirfd' function or macro.), ,
3430 [#include <sys/types.h>
3431 #include <dirent.h>])
3432
Martin v. Löwisc8ad7cc2002-11-11 13:23:45 +00003433# For some functions, having a definition is not sufficient, since
3434# we want to take their address.
3435AC_MSG_CHECKING(for chroot)
Matthias Kloseb159a552010-04-25 21:00:44 +00003436AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#include <unistd.h>]], [[void *x=chroot]])],
3437 [AC_DEFINE(HAVE_CHROOT, 1, Define if you have the 'chroot' function.)
3438 AC_MSG_RESULT(yes)],
3439 [AC_MSG_RESULT(no)
3440])
Martin v. Löwisc8ad7cc2002-11-11 13:23:45 +00003441AC_MSG_CHECKING(for link)
Matthias Kloseb159a552010-04-25 21:00:44 +00003442AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#include <unistd.h>]], [[void *x=link]])],
3443 [AC_DEFINE(HAVE_LINK, 1, Define if you have the 'link' function.)
3444 AC_MSG_RESULT(yes)],
3445 [AC_MSG_RESULT(no)
3446])
Martin v. Löwisc8ad7cc2002-11-11 13:23:45 +00003447AC_MSG_CHECKING(for symlink)
Matthias Kloseb159a552010-04-25 21:00:44 +00003448AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#include <unistd.h>]], [[void *x=symlink]])],
3449 [AC_DEFINE(HAVE_SYMLINK, 1, Define if you have the 'symlink' function.)
3450 AC_MSG_RESULT(yes)],
3451 [AC_MSG_RESULT(no)
3452])
Martin v. Löwisa64988c2003-09-20 15:30:20 +00003453AC_MSG_CHECKING(for fchdir)
Matthias Kloseb159a552010-04-25 21:00:44 +00003454AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#include <unistd.h>]], [[void *x=fchdir]])],
3455 [AC_DEFINE(HAVE_FCHDIR, 1, Define if you have the 'fchdir' function.)
3456 AC_MSG_RESULT(yes)],
3457 [AC_MSG_RESULT(no)
3458])
Martin v. Löwisa64988c2003-09-20 15:30:20 +00003459AC_MSG_CHECKING(for fsync)
Matthias Kloseb159a552010-04-25 21:00:44 +00003460AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#include <unistd.h>]], [[void *x=fsync]])],
3461 [AC_DEFINE(HAVE_FSYNC, 1, Define if you have the 'fsync' function.)
3462 AC_MSG_RESULT(yes)],
3463 [AC_MSG_RESULT(no)
3464])
Martin v. Löwisa64988c2003-09-20 15:30:20 +00003465AC_MSG_CHECKING(for fdatasync)
Matthias Kloseb159a552010-04-25 21:00:44 +00003466AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#include <unistd.h>]], [[void *x=fdatasync]])],
3467 [AC_DEFINE(HAVE_FDATASYNC, 1, Define if you have the 'fdatasync' function.)
3468 AC_MSG_RESULT(yes)],
3469 [AC_MSG_RESULT(no)
3470])
Christian Heimes4fbc72b2008-03-22 00:47:35 +00003471AC_MSG_CHECKING(for epoll)
Matthias Kloseb159a552010-04-25 21:00:44 +00003472AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#include <sys/epoll.h>]], [[void *x=epoll_create]])],
3473 [AC_DEFINE(HAVE_EPOLL, 1, Define if you have the 'epoll' functions.)
3474 AC_MSG_RESULT(yes)],
3475 [AC_MSG_RESULT(no)
3476])
Benjamin Peterson95c16622011-12-27 15:36:32 -06003477AC_MSG_CHECKING(for epoll_create1)
3478AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#include <sys/epoll.h>]], [[void *x=epoll_create1]])],
3479 [AC_DEFINE(HAVE_EPOLL_CREATE1, 1, Define if you have the 'epoll_create1' function.)
3480 AC_MSG_RESULT(yes)],
3481 [AC_MSG_RESULT(no)
3482])
Christian Heimes4fbc72b2008-03-22 00:47:35 +00003483AC_MSG_CHECKING(for kqueue)
Matthias Kloseb159a552010-04-25 21:00:44 +00003484AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
Christian Heimes4fbc72b2008-03-22 00:47:35 +00003485#include <sys/types.h>
3486#include <sys/event.h>
Matthias Kloseb159a552010-04-25 21:00:44 +00003487 ]], [[int x=kqueue()]])],
3488 [AC_DEFINE(HAVE_KQUEUE, 1, Define if you have the 'kqueue' functions.)
3489 AC_MSG_RESULT(yes)],
3490 [AC_MSG_RESULT(no)
3491])
Christian Heimesb7bd5df2013-10-22 11:21:54 +02003492AC_MSG_CHECKING(for prlimit)
3493AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
3494#include <sys/time.h>
3495#include <sys/resource.h>
3496 ]], [[void *x=prlimit]])],
3497 [AC_DEFINE(HAVE_PRLIMIT, 1, Define if you have the 'prlimit' functions.)
3498 AC_MSG_RESULT(yes)],
3499 [AC_MSG_RESULT(no)
3500])
3501
Martin v. Löwisd5843682002-11-21 20:41:28 +00003502# On some systems (eg. FreeBSD 5), we would find a definition of the
3503# functions ctermid_r, setgroups in the library, but no prototype
3504# (e.g. because we use _XOPEN_SOURCE). See whether we can take their
3505# address to avoid compiler warnings and potential miscompilations
3506# because of the missing prototypes.
3507
3508AC_MSG_CHECKING(for ctermid_r)
Matthias Kloseb159a552010-04-25 21:00:44 +00003509AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
Martin v. Löwisd5843682002-11-21 20:41:28 +00003510#include <stdio.h>
Matthias Kloseb159a552010-04-25 21:00:44 +00003511]], [[void* p = ctermid_r]])],
3512 [AC_DEFINE(HAVE_CTERMID_R, 1, Define if you have the 'ctermid_r' function.)
3513 AC_MSG_RESULT(yes)],
3514 [AC_MSG_RESULT(no)
3515])
Martin v. Löwisd5843682002-11-21 20:41:28 +00003516
Antoine Pitroua4e4ae22010-09-10 18:39:00 +00003517AC_CACHE_CHECK([for flock declaration], [ac_cv_flock_decl],
3518 [AC_COMPILE_IFELSE(
3519 [AC_LANG_PROGRAM(
3520 [#include <sys/file.h>],
3521 [void* p = flock]
3522 )],
3523 [ac_cv_flock_decl=yes],
3524 [ac_cv_flock_decl=no]
3525 )
Matthias Kloseb159a552010-04-25 21:00:44 +00003526])
Antoine Pitroua4e4ae22010-09-10 18:39:00 +00003527if test "x${ac_cv_flock_decl}" = xyes; then
3528 AC_CHECK_FUNCS(flock,,
3529 AC_CHECK_LIB(bsd,flock,
3530 [AC_DEFINE(HAVE_FLOCK)
3531 AC_DEFINE(FLOCK_NEEDS_LIBBSD, 1, Define if flock needs to be linked with bsd library.)
3532 ])
3533 )
Antoine Pitroua3000072010-09-07 14:52:42 +00003534fi
Martin v. Löwisf26d63b2003-03-30 17:23:49 +00003535
3536AC_MSG_CHECKING(for getpagesize)
Matthias Kloseb159a552010-04-25 21:00:44 +00003537AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
Martin v. Löwisf26d63b2003-03-30 17:23:49 +00003538#include <unistd.h>
Matthias Kloseb159a552010-04-25 21:00:44 +00003539]], [[void* p = getpagesize]])],
3540 [AC_DEFINE(HAVE_GETPAGESIZE, 1, Define if you have the 'getpagesize' function.)
3541 AC_MSG_RESULT(yes)],
3542 [AC_MSG_RESULT(no)
3543])
Martin v. Löwisf26d63b2003-03-30 17:23:49 +00003544
Victor Stinner984890f2011-11-24 13:53:38 +01003545AC_MSG_CHECKING(for broken unsetenv)
3546AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
3547#include <stdlib.h>
3548]], [[int res = unsetenv("DUMMY")]])],
3549 [AC_MSG_RESULT(no)],
3550 [AC_DEFINE(HAVE_BROKEN_UNSETENV, 1, Define if `unsetenv` does not return an int.)
3551 AC_MSG_RESULT(yes)
3552])
3553
Martin v. Löwis4ee6eef2003-05-26 05:37:51 +00003554dnl check for true
3555AC_CHECK_PROGS(TRUE, true, /bin/true)
3556
Martin v. Löwis95c419b2003-05-03 12:10:48 +00003557dnl On some systems (e.g. Solaris 9), hstrerror and inet_aton are in -lresolv
3558dnl On others, they are in the C library, so we to take no action
Martin v. Löwis4ee6eef2003-05-26 05:37:51 +00003559AC_CHECK_LIB(c, inet_aton, [$ac_cv_prog_TRUE],
Martin v. Löwis95c419b2003-05-03 12:10:48 +00003560 AC_CHECK_LIB(resolv, inet_aton)
3561)
3562
Christian Heimesd0764e22007-12-04 15:00:33 +00003563# On Tru64, chflags seems to be present, but calling it will
3564# exit Python
Benjamin Petersoned68afa2010-01-30 19:36:43 +00003565AC_CACHE_CHECK([for chflags], [ac_cv_have_chflags], [dnl
Ned Deily3eb67d52011-06-28 00:00:28 -07003566AC_RUN_IFELSE([AC_LANG_SOURCE([[
Christian Heimesd0764e22007-12-04 15:00:33 +00003567#include <sys/stat.h>
3568#include <unistd.h>
3569int main(int argc, char*argv[])
3570{
3571 if(chflags(argv[0], 0) != 0)
3572 return 1;
3573 return 0;
3574}
Ned Deily3eb67d52011-06-28 00:00:28 -07003575]])],
Matthias Kloseb159a552010-04-25 21:00:44 +00003576[ac_cv_have_chflags=yes],
3577[ac_cv_have_chflags=no],
3578[ac_cv_have_chflags=cross])
Benjamin Petersoned68afa2010-01-30 19:36:43 +00003579])
3580if test "$ac_cv_have_chflags" = cross ; then
3581 AC_CHECK_FUNC([chflags], [ac_cv_have_chflags="yes"], [ac_cv_have_chflags="no"])
3582fi
3583if test "$ac_cv_have_chflags" = yes ; then
Ned Deily3eb67d52011-06-28 00:00:28 -07003584 AC_DEFINE(HAVE_CHFLAGS, 1, [Define to 1 if you have the 'chflags' function.])
Alexandre Vassalotti7b0c1c72009-07-17 06:00:34 +00003585fi
Christian Heimesd0764e22007-12-04 15:00:33 +00003586
Benjamin Petersoned68afa2010-01-30 19:36:43 +00003587AC_CACHE_CHECK([for lchflags], [ac_cv_have_lchflags], [dnl
Ned Deily3eb67d52011-06-28 00:00:28 -07003588AC_RUN_IFELSE([AC_LANG_SOURCE([[
Christian Heimesd0764e22007-12-04 15:00:33 +00003589#include <sys/stat.h>
3590#include <unistd.h>
3591int main(int argc, char*argv[])
3592{
3593 if(lchflags(argv[0], 0) != 0)
3594 return 1;
3595 return 0;
3596}
Ned Deily3eb67d52011-06-28 00:00:28 -07003597]])],[ac_cv_have_lchflags=yes],[ac_cv_have_lchflags=no],[ac_cv_have_lchflags=cross])
Benjamin Petersoned68afa2010-01-30 19:36:43 +00003598])
3599if test "$ac_cv_have_lchflags" = cross ; then
3600 AC_CHECK_FUNC([lchflags], [ac_cv_have_lchflags="yes"], [ac_cv_have_lchflags="no"])
3601fi
3602if test "$ac_cv_have_lchflags" = yes ; then
Ned Deily3eb67d52011-06-28 00:00:28 -07003603 AC_DEFINE(HAVE_LCHFLAGS, 1, [Define to 1 if you have the 'lchflags' function.])
Alexandre Vassalotti7b0c1c72009-07-17 06:00:34 +00003604fi
Christian Heimesd0764e22007-12-04 15:00:33 +00003605
Thomas Wouters0e3f5912006-08-11 14:57:12 +00003606dnl Check if system zlib has *Copy() functions
3607dnl
3608dnl On MacOSX the linker will search for dylibs on the entire linker path
3609dnl before searching for static libraries. setup.py adds -Wl,-search_paths_first
3610dnl to revert to a more traditional unix behaviour and make it possible to
3611dnl override the system libz with a local static library of libz. Temporarily
3612dnl add that flag to our CFLAGS as well to ensure that we check the version
Victor Stinner1b80b242016-04-12 22:34:58 +02003613dnl of libz that will be used by setup.py.
3614dnl The -L/usr/local/lib is needed as wel to get the same compilation
Thomas Wouters0e3f5912006-08-11 14:57:12 +00003615dnl environment as setup.py (and leaving it out can cause configure to use the
3616dnl wrong version of the library)
3617case $ac_sys_system/$ac_sys_release in
Victor Stinner1b80b242016-04-12 22:34:58 +02003618Darwin/*)
Thomas Wouters0e3f5912006-08-11 14:57:12 +00003619 _CUR_CFLAGS="${CFLAGS}"
3620 _CUR_LDFLAGS="${LDFLAGS}"
3621 CFLAGS="${CFLAGS} -Wl,-search_paths_first"
3622 LDFLAGS="${LDFLAGS} -Wl,-search_paths_first -L/usr/local/lib"
3623 ;;
3624esac
3625
Matthias Klosec80c93f2010-04-24 17:04:35 +00003626AC_CHECK_LIB(z, inflateCopy, AC_DEFINE(HAVE_ZLIB_COPY, 1, [Define if the zlib library has inflateCopy]))
Thomas Wouters0e3f5912006-08-11 14:57:12 +00003627
3628case $ac_sys_system/$ac_sys_release in
Victor Stinner1b80b242016-04-12 22:34:58 +02003629Darwin/*)
Thomas Wouters0e3f5912006-08-11 14:57:12 +00003630 CFLAGS="${_CUR_CFLAGS}"
3631 LDFLAGS="${_CUR_LDFLAGS}"
3632 ;;
3633esac
3634
Martin v. Löwise9416172003-05-03 10:12:45 +00003635AC_MSG_CHECKING(for hstrerror)
Matthias Kloseb159a552010-04-25 21:00:44 +00003636AC_LINK_IFELSE([AC_LANG_PROGRAM([[
Martin v. Löwise9416172003-05-03 10:12:45 +00003637#include <netdb.h>
Matthias Kloseb159a552010-04-25 21:00:44 +00003638]], [[void* p = hstrerror; hstrerror(0)]])],
3639 [AC_DEFINE(HAVE_HSTRERROR, 1, Define if you have the 'hstrerror' function.)
3640 AC_MSG_RESULT(yes)],
3641 [AC_MSG_RESULT(no)
3642])
Martin v. Löwise9416172003-05-03 10:12:45 +00003643
3644AC_MSG_CHECKING(for inet_aton)
Matthias Kloseb159a552010-04-25 21:00:44 +00003645AC_LINK_IFELSE([AC_LANG_PROGRAM([[
Martin v. Löwis86d66262006-02-17 08:40:11 +00003646#include <sys/types.h>
Martin v. Löwise9416172003-05-03 10:12:45 +00003647#include <sys/socket.h>
3648#include <netinet/in.h>
3649#include <arpa/inet.h>
Matthias Kloseb159a552010-04-25 21:00:44 +00003650]], [[void* p = inet_aton;inet_aton(0,0)]])],
3651 [AC_DEFINE(HAVE_INET_ATON, 1, Define if you have the 'inet_aton' function.)
3652 AC_MSG_RESULT(yes)],
3653 [AC_MSG_RESULT(no)
3654])
Martin v. Löwise9416172003-05-03 10:12:45 +00003655
3656AC_MSG_CHECKING(for inet_pton)
Matthias Kloseb159a552010-04-25 21:00:44 +00003657AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
Martin v. Löwisf2e488d2003-05-05 22:00:11 +00003658#include <sys/types.h>
Martin v. Löwise9416172003-05-03 10:12:45 +00003659#include <sys/socket.h>
3660#include <netinet/in.h>
3661#include <arpa/inet.h>
Matthias Kloseb159a552010-04-25 21:00:44 +00003662]], [[void* p = inet_pton]])],
3663 [AC_DEFINE(HAVE_INET_PTON, 1, Define if you have the 'inet_pton' function.)
3664 AC_MSG_RESULT(yes)],
3665 [AC_MSG_RESULT(no)
3666])
Martin v. Löwise9416172003-05-03 10:12:45 +00003667
Martin v. Löwisd6640d42003-07-06 09:29:52 +00003668# On some systems, setgroups is in unistd.h, on others, in grp.h
Martin v. Löwisd5843682002-11-21 20:41:28 +00003669AC_MSG_CHECKING(for setgroups)
Matthias Kloseb159a552010-04-25 21:00:44 +00003670AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
Martin v. Löwisf2e488d2003-05-05 22:00:11 +00003671#include <unistd.h>
Martin v. Löwisd6640d42003-07-06 09:29:52 +00003672#ifdef HAVE_GRP_H
3673#include <grp.h>
3674#endif
Matthias Kloseb159a552010-04-25 21:00:44 +00003675]], [[void* p = setgroups]])],
3676 [AC_DEFINE(HAVE_SETGROUPS, 1, Define if you have the 'setgroups' function.)
3677 AC_MSG_RESULT(yes)],
3678 [AC_MSG_RESULT(no)
3679])
Martin v. Löwisd5843682002-11-21 20:41:28 +00003680
Fred Drake8cef4cf2000-06-28 16:40:38 +00003681# check for openpty and forkpty
3682
Victor Stinner1b80b242016-04-12 22:34:58 +02003683AC_CHECK_FUNCS(openpty,,
Martin v. Löwisfd9a72a2006-01-08 10:07:33 +00003684 AC_CHECK_LIB(util,openpty,
3685 [AC_DEFINE(HAVE_OPENPTY) LIBS="$LIBS -lutil"],
3686 AC_CHECK_LIB(bsd,openpty, [AC_DEFINE(HAVE_OPENPTY) LIBS="$LIBS -lbsd"])
3687 )
3688)
Victor Stinner1b80b242016-04-12 22:34:58 +02003689AC_CHECK_FUNCS(forkpty,,
3690 AC_CHECK_LIB(util,forkpty,
Martin v. Löwisfd9a72a2006-01-08 10:07:33 +00003691 [AC_DEFINE(HAVE_FORKPTY) LIBS="$LIBS -lutil"],
3692 AC_CHECK_LIB(bsd,forkpty, [AC_DEFINE(HAVE_FORKPTY) LIBS="$LIBS -lbsd"])
3693 )
3694)
Fred Drake8cef4cf2000-06-28 16:40:38 +00003695
Christian Heimesb186d002008-03-18 15:15:01 +00003696# Stuff for expat.
3697AC_CHECK_FUNCS(memmove)
3698
Guido van Rossum00f0f6e1999-01-06 18:52:29 +00003699# check for long file support functions
3700AC_CHECK_FUNCS(fseek64 fseeko fstatvfs ftell64 ftello statvfs)
3701
Benjamin Peterson3a7dffa2013-08-23 21:01:48 -05003702AC_REPLACE_FUNCS(dup2 strdup)
Victor Stinner1b80b242016-04-12 22:34:58 +02003703AC_CHECK_FUNCS(getpgrp,
Matthias Kloseb159a552010-04-25 21:00:44 +00003704 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#include <unistd.h>]], [[getpgrp(0);]])],
3705 [AC_DEFINE(GETPGRP_HAVE_ARG, 1, [Define if getpgrp() must be called as getpgrp(0).])],
3706 [])
Martin v. Löwisc45929e2002-04-06 10:10:49 +00003707)
Jack Jansen150753c2003-03-29 22:07:47 +00003708AC_CHECK_FUNCS(setpgrp,
Matthias Kloseb159a552010-04-25 21:00:44 +00003709 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#include <unistd.h>]], [[setpgrp(0,0);]])],
3710 [AC_DEFINE(SETPGRP_HAVE_ARG, 1, [Define if setpgrp() must be called as setpgrp(0, 0).])],
3711 [])
Martin v. Löwisc45929e2002-04-06 10:10:49 +00003712)
Victor Stinner1b80b242016-04-12 22:34:58 +02003713AC_CHECK_FUNCS(gettimeofday,
Matthias Kloseb159a552010-04-25 21:00:44 +00003714 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#include <sys/time.h>]],
3715 [[gettimeofday((struct timeval*)0,(struct timezone*)0);]])],
3716 [],
3717 [AC_DEFINE(GETTIMEOFDAY_NO_TZ, 1,
3718 [Define if gettimeofday() does not have second (timezone) argument
3719 This is the case on Motorola V4 (R40V4.2)])
3720 ])
Martin v. Löwisc45929e2002-04-06 10:10:49 +00003721)
Guido van Rossum627b2d71993-12-24 10:39:16 +00003722
Victor Stinnere0be4232011-10-25 13:06:09 +02003723AC_CHECK_FUNCS(clock_gettime, [], [
3724 AC_CHECK_LIB(rt, clock_gettime, [
Victor Stinner7efb8332014-08-29 15:41:08 +02003725 LIBS="$LIBS -lrt"
Victor Stinnere0be4232011-10-25 13:06:09 +02003726 AC_DEFINE(HAVE_CLOCK_GETTIME, 1)
3727 AC_DEFINE(TIMEMODULE_LIB, [rt],
3728 [Library needed by timemodule.c: librt may be needed for clock_gettime()])
3729 ])
3730])
3731
3732AC_CHECK_FUNCS(clock_getres, [], [
3733 AC_CHECK_LIB(rt, clock_getres, [
3734 AC_DEFINE(HAVE_CLOCK_GETRES, 1)
3735 ])
3736])
3737
Benjamin Peterson37098cd2016-09-13 22:55:09 -07003738AC_CHECK_FUNCS(clock_settime, [], [
3739 AC_CHECK_LIB(rt, clock_settime, [
3740 AC_DEFINE(HAVE_CLOCK_SETTIME, 1)
3741 ])
3742])
3743
Martin v. Löwisdbe3f762002-10-10 14:27:30 +00003744AC_MSG_CHECKING(for major, minor, and makedev)
Matthias Kloseb159a552010-04-25 21:00:44 +00003745AC_LINK_IFELSE([AC_LANG_PROGRAM([[
Neal Norwitz6eb37f02003-02-23 23:28:15 +00003746#if defined(MAJOR_IN_MKDEV)
3747#include <sys/mkdev.h>
3748#elif defined(MAJOR_IN_SYSMACROS)
3749#include <sys/sysmacros.h>
3750#else
3751#include <sys/types.h>
3752#endif
Matthias Kloseb159a552010-04-25 21:00:44 +00003753]], [[
Martin v. Löwisdbe3f762002-10-10 14:27:30 +00003754 makedev(major(0),minor(0));
Matthias Kloseb159a552010-04-25 21:00:44 +00003755]])],[
Martin v. Löwisdbe3f762002-10-10 14:27:30 +00003756 AC_DEFINE(HAVE_DEVICE_MACROS, 1,
3757 [Define to 1 if you have the device macros.])
3758 AC_MSG_RESULT(yes)
3759],[
3760 AC_MSG_RESULT(no)
3761])
Martin v. Löwis861a65b2001-10-24 14:36:00 +00003762
Xavier de Gaye40e320b2016-12-21 17:29:59 +01003763# On Android API level 24 with android-ndk-r13, if_nameindex() is available,
3764# but the if_nameindex structure is not defined.
Xavier de Gaye70878422016-12-21 12:46:36 +01003765AC_MSG_CHECKING(for if_nameindex)
3766AC_LINK_IFELSE([AC_LANG_PROGRAM([[
Xavier de Gaye40e320b2016-12-21 17:29:59 +01003767#include <stdio.h>
3768#ifdef STDC_HEADERS
3769# include <stdlib.h>
3770# include <stddef.h>
3771#else
3772# ifdef HAVE_STDLIB_H
3773# include <stdlib.h>
3774# endif
3775#endif
3776#ifdef HAVE_SYS_SOCKET_H
3777# include <sys/socket.h>
3778#endif
Xavier de Gaye70878422016-12-21 12:46:36 +01003779#ifdef HAVE_NET_IF_H
3780# include <net/if.h>
3781#endif
3782]], [[struct if_nameindex *ni = if_nameindex(); int x = ni[0].if_index;]])],
3783 [AC_DEFINE(HAVE_IF_NAMEINDEX, 1, Define to 1 if you have the 'if_nameindex' function.)
3784 AC_MSG_RESULT(yes)],
3785 [AC_MSG_RESULT(no)
3786])
3787
Xavier de Gayebdf0d0f2016-12-22 10:38:59 +01003788# Issue #28762: lockf() is available on Android API level 24, but the F_LOCK
3789# macro is not defined in android-ndk-r13.
3790AC_MSG_CHECKING(for lockf)
3791AC_LINK_IFELSE([AC_LANG_PROGRAM([[#include <unistd.h> ]],[[lockf(0, F_LOCK, 0);]])],
3792 [AC_DEFINE(HAVE_LOCKF, 1, Define to 1 if you have the 'lockf' function and the F_LOCK macro.)
3793 AC_MSG_RESULT(yes)],
3794 [AC_MSG_RESULT(no)
3795])
3796
Martin v. Löwis861a65b2001-10-24 14:36:00 +00003797# On OSF/1 V5.1, getaddrinfo is available, but a define
Victor Stinner1b80b242016-04-12 22:34:58 +02003798# for [no]getaddrinfo in netdb.h.
Martin v. Löwis861a65b2001-10-24 14:36:00 +00003799AC_MSG_CHECKING(for getaddrinfo)
Matthias Kloseb159a552010-04-25 21:00:44 +00003800AC_LINK_IFELSE([AC_LANG_PROGRAM([[
Martin v. Löwisc010b6d2001-11-09 17:50:52 +00003801#include <sys/types.h>
Martin v. Löwis861a65b2001-10-24 14:36:00 +00003802#include <sys/socket.h>
3803#include <netdb.h>
Martin v. Löwisc010b6d2001-11-09 17:50:52 +00003804#include <stdio.h>
Matthias Kloseb159a552010-04-25 21:00:44 +00003805]], [[getaddrinfo(NULL, NULL, NULL, NULL);]])],
3806[have_getaddrinfo=yes],
3807[have_getaddrinfo=no])
Alexandre Vassalotti7b0c1c72009-07-17 06:00:34 +00003808AC_MSG_RESULT($have_getaddrinfo)
3809if test $have_getaddrinfo = yes
3810then
3811 AC_MSG_CHECKING(getaddrinfo bug)
3812 AC_CACHE_VAL(ac_cv_buggy_getaddrinfo,
Matthias Kloseb159a552010-04-25 21:00:44 +00003813 AC_RUN_IFELSE([AC_LANG_SOURCE([[[
Stefan Krah19c21392012-11-22 23:47:32 +01003814#include <stdio.h>
Martin v. Löwis01dfdb32001-06-23 16:30:13 +00003815#include <sys/types.h>
3816#include <netdb.h>
3817#include <string.h>
3818#include <sys/socket.h>
3819#include <netinet/in.h>
3820
Alexandre Vassalotti7b0c1c72009-07-17 06:00:34 +00003821int main()
Martin v. Löwis01dfdb32001-06-23 16:30:13 +00003822{
3823 int passive, gaierr, inet4 = 0, inet6 = 0;
3824 struct addrinfo hints, *ai, *aitop;
3825 char straddr[INET6_ADDRSTRLEN], strport[16];
3826
3827 for (passive = 0; passive <= 1; passive++) {
3828 memset(&hints, 0, sizeof(hints));
3829 hints.ai_family = AF_UNSPEC;
3830 hints.ai_flags = passive ? AI_PASSIVE : 0;
3831 hints.ai_socktype = SOCK_STREAM;
Hye-Shik Chang54f94392004-04-14 07:55:31 +00003832 hints.ai_protocol = IPPROTO_TCP;
Martin v. Löwis01dfdb32001-06-23 16:30:13 +00003833 if ((gaierr = getaddrinfo(NULL, "54321", &hints, &aitop)) != 0) {
3834 (void)gai_strerror(gaierr);
3835 goto bad;
3836 }
3837 for (ai = aitop; ai; ai = ai->ai_next) {
3838 if (ai->ai_addr == NULL ||
3839 ai->ai_addrlen == 0 ||
3840 getnameinfo(ai->ai_addr, ai->ai_addrlen,
3841 straddr, sizeof(straddr), strport, sizeof(strport),
3842 NI_NUMERICHOST|NI_NUMERICSERV) != 0) {
3843 goto bad;
3844 }
3845 switch (ai->ai_family) {
3846 case AF_INET:
3847 if (strcmp(strport, "54321") != 0) {
3848 goto bad;
3849 }
3850 if (passive) {
3851 if (strcmp(straddr, "0.0.0.0") != 0) {
3852 goto bad;
3853 }
3854 } else {
3855 if (strcmp(straddr, "127.0.0.1") != 0) {
3856 goto bad;
3857 }
3858 }
3859 inet4++;
3860 break;
3861 case AF_INET6:
3862 if (strcmp(strport, "54321") != 0) {
3863 goto bad;
3864 }
3865 if (passive) {
3866 if (strcmp(straddr, "::") != 0) {
3867 goto bad;
3868 }
3869 } else {
3870 if (strcmp(straddr, "::1") != 0) {
3871 goto bad;
3872 }
3873 }
3874 inet6++;
3875 break;
3876 case AF_UNSPEC:
3877 goto bad;
3878 break;
3879 default:
3880 /* another family support? */
3881 break;
3882 }
3883 }
Benjamin Peterson01c340d2016-09-06 15:54:24 -07003884 freeaddrinfo(aitop);
3885 aitop = NULL;
Martin v. Löwis01dfdb32001-06-23 16:30:13 +00003886 }
3887
3888 if (!(inet4 == 0 || inet4 == 2))
3889 goto bad;
3890 if (!(inet6 == 0 || inet6 == 2))
3891 goto bad;
3892
3893 if (aitop)
3894 freeaddrinfo(aitop);
Alexandre Vassalotti7b0c1c72009-07-17 06:00:34 +00003895 return 0;
Martin v. Löwis01dfdb32001-06-23 16:30:13 +00003896
3897 bad:
3898 if (aitop)
3899 freeaddrinfo(aitop);
Alexandre Vassalotti7b0c1c72009-07-17 06:00:34 +00003900 return 1;
Martin v. Löwis01dfdb32001-06-23 16:30:13 +00003901}
Matthias Kloseb159a552010-04-25 21:00:44 +00003902]]])],
3903[ac_cv_buggy_getaddrinfo=no],
3904[ac_cv_buggy_getaddrinfo=yes],
Matthias Klose96350132012-03-15 20:42:23 +01003905[
3906if test "${enable_ipv6+set}" = set; then
3907 ac_cv_buggy_getaddrinfo="no -- configured with --(en|dis)able-ipv6"
3908else
3909 ac_cv_buggy_getaddrinfo=yes
3910fi]))
Alexandre Vassalotti7b0c1c72009-07-17 06:00:34 +00003911fi
Martin v. Löwis01dfdb32001-06-23 16:30:13 +00003912
Benjamin Petersond4694ed2010-11-01 01:44:30 +00003913AC_MSG_RESULT($ac_cv_buggy_getaddrinfo)
3914
doko@ubuntu.com9c7817e2012-06-30 17:05:13 +02003915if test $have_getaddrinfo = no || test "$ac_cv_buggy_getaddrinfo" = yes
Alexandre Vassalotti7b0c1c72009-07-17 06:00:34 +00003916then
3917 if test $ipv6 = yes
3918 then
Martin v. Löwis01dfdb32001-06-23 16:30:13 +00003919 echo 'Fatal: You must get working getaddrinfo() function.'
3920 echo ' or you can specify "--disable-ipv6"'.
3921 exit 1
3922 fi
Martin v. Löwis861a65b2001-10-24 14:36:00 +00003923else
Martin v. Löwisc45929e2002-04-06 10:10:49 +00003924 AC_DEFINE(HAVE_GETADDRINFO, 1, [Define if you have the getaddrinfo function.])
Martin v. Löwis01dfdb32001-06-23 16:30:13 +00003925fi
Benjamin Petersond4694ed2010-11-01 01:44:30 +00003926
Thomas Woutersb0db85a2001-08-08 10:39:03 +00003927AC_CHECK_FUNCS(getnameinfo)
Martin v. Löwis01dfdb32001-06-23 16:30:13 +00003928
Guido van Rossum627b2d71993-12-24 10:39:16 +00003929# checks for structures
Guido van Rossum76be6ed1995-01-02 18:33:54 +00003930AC_HEADER_TIME
Guido van Rossum627b2d71993-12-24 10:39:16 +00003931AC_STRUCT_TM
Guido van Rossum76be6ed1995-01-02 18:33:54 +00003932AC_STRUCT_TIMEZONE
Martin v. Löwis60a5d722002-10-16 20:28:25 +00003933AC_CHECK_MEMBERS([struct stat.st_rdev])
3934AC_CHECK_MEMBERS([struct stat.st_blksize])
Hye-Shik Chang5f937a72005-06-02 13:09:30 +00003935AC_CHECK_MEMBERS([struct stat.st_flags])
Martin v. Löwisebd9d5b2005-08-09 15:00:59 +00003936AC_CHECK_MEMBERS([struct stat.st_gen])
3937AC_CHECK_MEMBERS([struct stat.st_birthtime])
Martin Panterd887d1f2016-03-18 02:36:41 +00003938AC_CHECK_MEMBERS([struct stat.st_blocks])
Stefan Krah267b6392016-04-26 01:09:18 +02003939AC_CHECK_MEMBERS([struct passwd.pw_gecos, struct passwd.pw_passwd], [], [], [[
3940 #include <sys/types.h>
3941 #include <pwd.h>
3942]])
Guido van Rossum76be6ed1995-01-02 18:33:54 +00003943
3944AC_MSG_CHECKING(for time.h that defines altzone)
Matthias Kloseb159a552010-04-25 21:00:44 +00003945AC_CACHE_VAL(ac_cv_header_time_altzone,[
3946 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#include <time.h>]], [[return altzone;]])],
3947 [ac_cv_header_time_altzone=yes],
3948 [ac_cv_header_time_altzone=no])
3949 ])
Guido van Rossum76be6ed1995-01-02 18:33:54 +00003950AC_MSG_RESULT($ac_cv_header_time_altzone)
3951if test $ac_cv_header_time_altzone = yes; then
Martin v. Löwisc45929e2002-04-06 10:10:49 +00003952 AC_DEFINE(HAVE_ALTZONE, 1, [Define this if your time.h defines altzone.])
Guido van Rossum76be6ed1995-01-02 18:33:54 +00003953fi
3954
Guido van Rossum5739e7e1995-01-20 16:50:53 +00003955was_it_defined=no
3956AC_MSG_CHECKING(whether sys/select.h and sys/time.h may both be included)
Matthias Kloseb159a552010-04-25 21:00:44 +00003957AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
Guido van Rossum433c8ad1994-08-01 12:07:07 +00003958#include <sys/types.h>
3959#include <sys/select.h>
3960#include <sys/time.h>
Matthias Kloseb159a552010-04-25 21:00:44 +00003961]], [[;]])],[
Martin v. Löwisc45929e2002-04-06 10:10:49 +00003962 AC_DEFINE(SYS_SELECT_WITH_SYS_TIME, 1,
3963 [Define if you can safely include both <sys/select.h> and <sys/time.h>
Victor Stinner1b80b242016-04-12 22:34:58 +02003964 (which you can't on SCO ODT 3.0).])
Martin v. Löwisc45929e2002-04-06 10:10:49 +00003965 was_it_defined=yes
Matthias Kloseb159a552010-04-25 21:00:44 +00003966],[])
Guido van Rossum5739e7e1995-01-20 16:50:53 +00003967AC_MSG_RESULT($was_it_defined)
Guido van Rossum627b2d71993-12-24 10:39:16 +00003968
Martin v. Löwis01dfdb32001-06-23 16:30:13 +00003969AC_MSG_CHECKING(for addrinfo)
3970AC_CACHE_VAL(ac_cv_struct_addrinfo,
Matthias Kloseb159a552010-04-25 21:00:44 +00003971AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#include <netdb.h>]], [[struct addrinfo a]])],
3972 [ac_cv_struct_addrinfo=yes],
3973 [ac_cv_struct_addrinfo=no]))
Martin v. Löwis01dfdb32001-06-23 16:30:13 +00003974AC_MSG_RESULT($ac_cv_struct_addrinfo)
3975if test $ac_cv_struct_addrinfo = yes; then
Martin v. Löwisc45929e2002-04-06 10:10:49 +00003976 AC_DEFINE(HAVE_ADDRINFO, 1, [struct addrinfo (netdb.h)])
Martin v. Löwis01dfdb32001-06-23 16:30:13 +00003977fi
3978
3979AC_MSG_CHECKING(for sockaddr_storage)
3980AC_CACHE_VAL(ac_cv_struct_sockaddr_storage,
Matthias Kloseb159a552010-04-25 21:00:44 +00003981AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
Martin v. Löwis01dfdb32001-06-23 16:30:13 +00003982# include <sys/types.h>
Matthias Kloseb159a552010-04-25 21:00:44 +00003983# include <sys/socket.h>]], [[struct sockaddr_storage s]])],
3984 [ac_cv_struct_sockaddr_storage=yes],
3985 [ac_cv_struct_sockaddr_storage=no]))
Martin v. Löwis01dfdb32001-06-23 16:30:13 +00003986AC_MSG_RESULT($ac_cv_struct_sockaddr_storage)
3987if test $ac_cv_struct_sockaddr_storage = yes; then
Martin v. Löwisc45929e2002-04-06 10:10:49 +00003988 AC_DEFINE(HAVE_SOCKADDR_STORAGE, 1, [struct sockaddr_storage (sys/socket.h)])
Martin v. Löwis01dfdb32001-06-23 16:30:13 +00003989fi
3990
Christian Heimesdffa3942016-09-05 23:54:41 +02003991AC_MSG_CHECKING(for sockaddr_alg)
3992AC_CACHE_VAL(ac_cv_struct_sockaddr_alg,
3993AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
3994# include <sys/types.h>
3995# include <sys/socket.h>
3996# include <linux/if_alg.h>]], [[struct sockaddr_alg s]])],
3997 [ac_cv_struct_sockaddr_alg=yes],
3998 [ac_cv_struct_sockaddr_alg=no]))
3999AC_MSG_RESULT($ac_cv_struct_sockaddr_alg)
4000if test $ac_cv_struct_sockaddr_alg = yes; then
4001 AC_DEFINE(HAVE_SOCKADDR_ALG, 1, [struct sockaddr_alg (linux/if_alg.h)])
4002fi
4003
Guido van Rossum627b2d71993-12-24 10:39:16 +00004004# checks for compiler characteristics
Guido van Rossum433c8ad1994-08-01 12:07:07 +00004005
Guido van Rossum76be6ed1995-01-02 18:33:54 +00004006AC_C_CHAR_UNSIGNED
Guido van Rossum76be6ed1995-01-02 18:33:54 +00004007AC_C_CONST
Guido van Rossum433c8ad1994-08-01 12:07:07 +00004008
Guido van Rossum5739e7e1995-01-20 16:50:53 +00004009works=no
4010AC_MSG_CHECKING(for working volatile)
Matthias Kloseb159a552010-04-25 21:00:44 +00004011AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[]], [[volatile int x; x = 0;]])],
4012 [works=yes],
4013 [AC_DEFINE(volatile, , [Define to empty if the keyword does not work.])]
Martin v. Löwisc45929e2002-04-06 10:10:49 +00004014)
Guido van Rossum5739e7e1995-01-20 16:50:53 +00004015AC_MSG_RESULT($works)
Guido van Rossumdabb11b1994-10-11 15:04:27 +00004016
Guido van Rossum5739e7e1995-01-20 16:50:53 +00004017works=no
4018AC_MSG_CHECKING(for working signed char)
Matthias Kloseb159a552010-04-25 21:00:44 +00004019AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[]], [[signed char c;]])],
4020 [works=yes],
4021 [AC_DEFINE(signed, , [Define to empty if the keyword does not work.])]
Martin v. Löwisc45929e2002-04-06 10:10:49 +00004022)
Guido van Rossum5739e7e1995-01-20 16:50:53 +00004023AC_MSG_RESULT($works)
Guido van Rossum433c8ad1994-08-01 12:07:07 +00004024
Guido van Rossum5739e7e1995-01-20 16:50:53 +00004025have_prototypes=no
4026AC_MSG_CHECKING(for prototypes)
Matthias Kloseb159a552010-04-25 21:00:44 +00004027AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[int foo(int x) { return 0; }]], [[return foo(10);]])],
Victor Stinner1b80b242016-04-12 22:34:58 +02004028 [AC_DEFINE(HAVE_PROTOTYPES, 1,
4029 [Define if your compiler supports function prototype])
Matthias Kloseb159a552010-04-25 21:00:44 +00004030 have_prototypes=yes],
4031 []
4032)
Guido van Rossum5739e7e1995-01-20 16:50:53 +00004033AC_MSG_RESULT($have_prototypes)
Guido van Rossum433c8ad1994-08-01 12:07:07 +00004034
Guido van Rossum5739e7e1995-01-20 16:50:53 +00004035works=no
4036AC_MSG_CHECKING(for variable length prototypes and stdarg.h)
Matthias Kloseb159a552010-04-25 21:00:44 +00004037AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
Guido van Rossum433c8ad1994-08-01 12:07:07 +00004038#include <stdarg.h>
Guido van Rossum3f13e481996-08-30 20:58:11 +00004039int foo(int x, ...) {
4040 va_list va;
4041 va_start(va, x);
4042 va_arg(va, int);
4043 va_arg(va, char *);
4044 va_arg(va, double);
4045 return 0;
4046}
Matthias Kloseb159a552010-04-25 21:00:44 +00004047]], [[return foo(10, "", 3.14);]])],[
Martin v. Löwisc45929e2002-04-06 10:10:49 +00004048 AC_DEFINE(HAVE_STDARG_PROTOTYPES, 1,
4049 [Define if your compiler supports variable length function prototypes
Victor Stinner1b80b242016-04-12 22:34:58 +02004050 (e.g. void fprintf(FILE *, char *, ...);) *and* <stdarg.h>])
Martin v. Löwisc45929e2002-04-06 10:10:49 +00004051 works=yes
Matthias Kloseb159a552010-04-25 21:00:44 +00004052],[])
Guido van Rossum5739e7e1995-01-20 16:50:53 +00004053AC_MSG_RESULT($works)
Guido van Rossum76be6ed1995-01-02 18:33:54 +00004054
Dave Cole331708b2004-08-09 04:51:41 +00004055# check for socketpair
4056AC_MSG_CHECKING(for socketpair)
Matthias Kloseb159a552010-04-25 21:00:44 +00004057AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
Dave Cole331708b2004-08-09 04:51:41 +00004058#include <sys/types.h>
4059#include <sys/socket.h>
Matthias Kloseb159a552010-04-25 21:00:44 +00004060]], [[void *x=socketpair]])],
4061 [AC_DEFINE(HAVE_SOCKETPAIR, 1, [Define if you have the 'socketpair' function.])
4062 AC_MSG_RESULT(yes)],
4063 [AC_MSG_RESULT(no)]
Dave Cole331708b2004-08-09 04:51:41 +00004064)
4065
Martin v. Löwis01dfdb32001-06-23 16:30:13 +00004066# check if sockaddr has sa_len member
4067AC_MSG_CHECKING(if sockaddr has sa_len member)
Matthias Kloseb159a552010-04-25 21:00:44 +00004068AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#include <sys/types.h>
4069#include <sys/socket.h>]], [[struct sockaddr x;
4070x.sa_len = 0;]])],
4071 [AC_MSG_RESULT(yes)
4072 AC_DEFINE(HAVE_SOCKADDR_SA_LEN, 1, [Define if sockaddr has sa_len member])],
4073 [AC_MSG_RESULT(no)]
4074)
Martin v. Löwis01dfdb32001-06-23 16:30:13 +00004075
Guido van Rossuma96f0ba1999-03-22 21:49:51 +00004076# sigh -- gethostbyname_r is a mess; it can have 3, 5 or 6 arguments :-(
Martin v. Löwis11437992002-04-12 09:54:03 +00004077AH_TEMPLATE(HAVE_GETHOSTBYNAME_R,
4078 [Define this if you have some version of gethostbyname_r()])
4079
Guido van Rossuma96f0ba1999-03-22 21:49:51 +00004080AC_CHECK_FUNC(gethostbyname_r, [
4081 AC_DEFINE(HAVE_GETHOSTBYNAME_R)
4082 AC_MSG_CHECKING([gethostbyname_r with 6 args])
4083 OLD_CFLAGS=$CFLAGS
4084 CFLAGS="$CFLAGS $MY_CPPFLAGS $MY_THREAD_CPPFLAGS $MY_CFLAGS"
Matthias Kloseb159a552010-04-25 21:00:44 +00004085 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
Guido van Rossuma96f0ba1999-03-22 21:49:51 +00004086# include <netdb.h>
Matthias Kloseb159a552010-04-25 21:00:44 +00004087 ]], [[
Guido van Rossuma96f0ba1999-03-22 21:49:51 +00004088 char *name;
4089 struct hostent *he, *res;
4090 char buffer[2048];
4091 int buflen = 2048;
4092 int h_errnop;
4093
4094 (void) gethostbyname_r(name, he, buffer, buflen, &res, &h_errnop)
Matthias Kloseb159a552010-04-25 21:00:44 +00004095 ]])],[
Guido van Rossum8db7d8b1999-03-23 16:40:33 +00004096 AC_DEFINE(HAVE_GETHOSTBYNAME_R)
Martin v. Löwisc45929e2002-04-06 10:10:49 +00004097 AC_DEFINE(HAVE_GETHOSTBYNAME_R_6_ARG, 1,
4098 [Define this if you have the 6-arg version of gethostbyname_r().])
Guido van Rossuma96f0ba1999-03-22 21:49:51 +00004099 AC_MSG_RESULT(yes)
Matthias Kloseb159a552010-04-25 21:00:44 +00004100 ],[
Guido van Rossuma96f0ba1999-03-22 21:49:51 +00004101 AC_MSG_RESULT(no)
4102 AC_MSG_CHECKING([gethostbyname_r with 5 args])
Matthias Kloseb159a552010-04-25 21:00:44 +00004103 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
Guido van Rossuma96f0ba1999-03-22 21:49:51 +00004104# include <netdb.h>
Matthias Kloseb159a552010-04-25 21:00:44 +00004105 ]], [[
Guido van Rossuma96f0ba1999-03-22 21:49:51 +00004106 char *name;
4107 struct hostent *he;
Matthias Kloseb159a552010-04-25 21:00:44 +00004108 char buffer[2048];
4109 int buflen = 2048;
4110 int h_errnop;
Guido van Rossuma96f0ba1999-03-22 21:49:51 +00004111
Matthias Kloseb159a552010-04-25 21:00:44 +00004112 (void) gethostbyname_r(name, he, buffer, buflen, &h_errnop)
4113 ]])],
4114 [
Guido van Rossum8db7d8b1999-03-23 16:40:33 +00004115 AC_DEFINE(HAVE_GETHOSTBYNAME_R)
Matthias Kloseb159a552010-04-25 21:00:44 +00004116 AC_DEFINE(HAVE_GETHOSTBYNAME_R_5_ARG, 1,
4117 [Define this if you have the 5-arg version of gethostbyname_r().])
Guido van Rossuma96f0ba1999-03-22 21:49:51 +00004118 AC_MSG_RESULT(yes)
4119 ], [
4120 AC_MSG_RESULT(no)
Matthias Kloseb159a552010-04-25 21:00:44 +00004121 AC_MSG_CHECKING([gethostbyname_r with 3 args])
4122 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
4123# include <netdb.h>
4124 ]], [[
4125 char *name;
4126 struct hostent *he;
4127 struct hostent_data data;
4128
4129 (void) gethostbyname_r(name, he, &data);
4130 ]])],
4131 [
4132 AC_DEFINE(HAVE_GETHOSTBYNAME_R)
4133 AC_DEFINE(HAVE_GETHOSTBYNAME_R_3_ARG, 1,
4134 [Define this if you have the 3-arg version of gethostbyname_r().])
4135 AC_MSG_RESULT(yes)
4136 ], [
4137 AC_MSG_RESULT(no)
4138 ])
Guido van Rossuma96f0ba1999-03-22 21:49:51 +00004139 ])
4140 ])
4141 CFLAGS=$OLD_CFLAGS
4142], [
Thomas Wouters3a584202000-08-05 23:28:51 +00004143 AC_CHECK_FUNCS(gethostbyname)
Guido van Rossuma96f0ba1999-03-22 21:49:51 +00004144])
4145AC_SUBST(HAVE_GETHOSTBYNAME_R_6_ARG)
4146AC_SUBST(HAVE_GETHOSTBYNAME_R_5_ARG)
4147AC_SUBST(HAVE_GETHOSTBYNAME_R_3_ARG)
Guido van Rossum8db7d8b1999-03-23 16:40:33 +00004148AC_SUBST(HAVE_GETHOSTBYNAME_R)
Guido van Rossuma96f0ba1999-03-22 21:49:51 +00004149AC_SUBST(HAVE_GETHOSTBYNAME)
4150
Guido van Rossum627b2d71993-12-24 10:39:16 +00004151# checks for system services
4152# (none yet)
4153
Guido van Rossum76be6ed1995-01-02 18:33:54 +00004154# Linux requires this for correct f.p. operations
Jeremy Hyltonbe28f5b2000-07-27 21:03:04 +00004155AC_CHECK_FUNC(__fpu_control,
4156 [],
4157 [AC_CHECK_LIB(ieee, __fpu_control)
4158])
Guido van Rossum627b2d71993-12-24 10:39:16 +00004159
Guido van Rossum93274221997-05-09 02:42:00 +00004160# Check for --with-fpectl
Guido van Rossum93274221997-05-09 02:42:00 +00004161AC_MSG_CHECKING(for --with-fpectl)
Barry Warsawc0d24d8b2000-06-29 16:12:00 +00004162AC_ARG_WITH(fpectl,
Matthias Klose2b8733f2010-04-25 18:34:36 +00004163 AS_HELP_STRING([--with-fpectl], [enable SIGFPE catching]),
Martin v. Löwis3e2c6322002-10-29 10:07:43 +00004164[
Guido van Rossum93274221997-05-09 02:42:00 +00004165if test "$withval" != no
Victor Stinner1b80b242016-04-12 22:34:58 +02004166then
Martin v. Löwisc45929e2002-04-06 10:10:49 +00004167 AC_DEFINE(WANT_SIGFPE_HANDLER, 1,
Victor Stinner1b80b242016-04-12 22:34:58 +02004168 [Define if you want SIGFPE handled (see Include/pyfpe.h).])
Martin v. Löwisc45929e2002-04-06 10:10:49 +00004169 AC_MSG_RESULT(yes)
Guido van Rossum93274221997-05-09 02:42:00 +00004170else AC_MSG_RESULT(no)
Guido van Rossumef2255b2000-03-10 22:30:29 +00004171fi],
4172[AC_MSG_RESULT(no)])
Guido van Rossum93274221997-05-09 02:42:00 +00004173
Guido van Rossum433c8ad1994-08-01 12:07:07 +00004174# check for --with-libm=...
4175AC_SUBST(LIBM)
Guido van Rossum4b6b5791996-09-09 20:09:34 +00004176case $ac_sys_system in
Guido van Rossum3dc0a512000-10-05 18:00:06 +00004177Darwin) ;;
Guido van Rossum4b6b5791996-09-09 20:09:34 +00004178*) LIBM=-lm
4179esac
Guido van Rossum93274221997-05-09 02:42:00 +00004180AC_MSG_CHECKING(for --with-libm=STRING)
Martin v. Löwis3e2c6322002-10-29 10:07:43 +00004181AC_ARG_WITH(libm,
Matthias Klose2b8733f2010-04-25 18:34:36 +00004182 AS_HELP_STRING([--with-libm=STRING], [math library]),
Martin v. Löwis3e2c6322002-10-29 10:07:43 +00004183[
Guido van Rossum93274221997-05-09 02:42:00 +00004184if test "$withval" = no
4185then LIBM=
4186 AC_MSG_RESULT(force LIBM empty)
4187elif test "$withval" != yes
Guido van Rossum433c8ad1994-08-01 12:07:07 +00004188then LIBM=$withval
Martin v. Löwis3e2c6322002-10-29 10:07:43 +00004189 AC_MSG_RESULT(set LIBM="$withval")
4190else AC_MSG_ERROR([proper usage is --with-libm=STRING])
Guido van Rossum93274221997-05-09 02:42:00 +00004191fi],
Martin v. Löwis3e2c6322002-10-29 10:07:43 +00004192[AC_MSG_RESULT(default LIBM="$LIBM")])
Guido van Rossum433c8ad1994-08-01 12:07:07 +00004193
4194# check for --with-libc=...
4195AC_SUBST(LIBC)
Guido van Rossum93274221997-05-09 02:42:00 +00004196AC_MSG_CHECKING(for --with-libc=STRING)
Martin v. Löwis3e2c6322002-10-29 10:07:43 +00004197AC_ARG_WITH(libc,
Matthias Klose2b8733f2010-04-25 18:34:36 +00004198 AS_HELP_STRING([--with-libc=STRING], [C library]),
Martin v. Löwis3e2c6322002-10-29 10:07:43 +00004199[
Guido van Rossum93274221997-05-09 02:42:00 +00004200if test "$withval" = no
4201then LIBC=
4202 AC_MSG_RESULT(force LIBC empty)
4203elif test "$withval" != yes
Guido van Rossum433c8ad1994-08-01 12:07:07 +00004204then LIBC=$withval
Martin v. Löwis3e2c6322002-10-29 10:07:43 +00004205 AC_MSG_RESULT(set LIBC="$withval")
4206else AC_MSG_ERROR([proper usage is --with-libc=STRING])
Guido van Rossum93274221997-05-09 02:42:00 +00004207fi],
Martin v. Löwis3e2c6322002-10-29 10:07:43 +00004208[AC_MSG_RESULT(default LIBC="$LIBC")])
Guido van Rossum433c8ad1994-08-01 12:07:07 +00004209
Stefan Krah1919b7e2012-03-21 18:25:23 +01004210# **************************************
4211# * Check for gcc x64 inline assembler *
4212# **************************************
4213
4214AC_MSG_CHECKING(for x64 gcc inline assembler)
Stefan Krahe31db2a2015-07-02 20:27:56 +02004215AC_LINK_IFELSE( [AC_LANG_PROGRAM([[]], [[
Stefan Krah1919b7e2012-03-21 18:25:23 +01004216 __asm__ __volatile__ ("movq %rcx, %rax");
4217]])],[have_gcc_asm_for_x64=yes],[have_gcc_asm_for_x64=no])
4218AC_MSG_RESULT($have_gcc_asm_for_x64)
4219if test "$have_gcc_asm_for_x64" = yes
4220then
4221 AC_DEFINE(HAVE_GCC_ASM_FOR_X64, 1,
4222 [Define if we can use x64 gcc inline assembler])
4223fi
4224
Mark Dickinsonb08a53a2009-04-16 19:52:09 +00004225# **************************************************
4226# * Check for various properties of floating point *
4227# **************************************************
Christian Heimes81ee3ef2008-05-04 22:42:01 +00004228
Mark Dickinsonb08a53a2009-04-16 19:52:09 +00004229AC_MSG_CHECKING(whether C doubles are little-endian IEEE 754 binary64)
4230AC_CACHE_VAL(ac_cv_little_endian_double, [
Matthias Kloseb159a552010-04-25 21:00:44 +00004231AC_RUN_IFELSE([AC_LANG_SOURCE([[
Mark Dickinsonb08a53a2009-04-16 19:52:09 +00004232#include <string.h>
4233int main() {
4234 double x = 9006104071832581.0;
4235 if (memcmp(&x, "\x05\x04\x03\x02\x01\xff\x3f\x43", 8) == 0)
4236 return 0;
4237 else
4238 return 1;
4239}
Matthias Kloseb159a552010-04-25 21:00:44 +00004240]])],
4241[ac_cv_little_endian_double=yes],
4242[ac_cv_little_endian_double=no],
4243[ac_cv_little_endian_double=no])])
Mark Dickinsonb08a53a2009-04-16 19:52:09 +00004244AC_MSG_RESULT($ac_cv_little_endian_double)
4245if test "$ac_cv_little_endian_double" = yes
4246then
4247 AC_DEFINE(DOUBLE_IS_LITTLE_ENDIAN_IEEE754, 1,
4248 [Define if C doubles are 64-bit IEEE 754 binary format, stored
4249 with the least significant byte first])
4250fi
4251
4252AC_MSG_CHECKING(whether C doubles are big-endian IEEE 754 binary64)
4253AC_CACHE_VAL(ac_cv_big_endian_double, [
Matthias Kloseb159a552010-04-25 21:00:44 +00004254AC_RUN_IFELSE([AC_LANG_SOURCE([[
Mark Dickinsonb08a53a2009-04-16 19:52:09 +00004255#include <string.h>
4256int main() {
4257 double x = 9006104071832581.0;
4258 if (memcmp(&x, "\x43\x3f\xff\x01\x02\x03\x04\x05", 8) == 0)
4259 return 0;
4260 else
4261 return 1;
4262}
Matthias Kloseb159a552010-04-25 21:00:44 +00004263]])],
4264[ac_cv_big_endian_double=yes],
4265[ac_cv_big_endian_double=no],
4266[ac_cv_big_endian_double=no])])
Mark Dickinsonb08a53a2009-04-16 19:52:09 +00004267AC_MSG_RESULT($ac_cv_big_endian_double)
4268if test "$ac_cv_big_endian_double" = yes
4269then
4270 AC_DEFINE(DOUBLE_IS_BIG_ENDIAN_IEEE754, 1,
4271 [Define if C doubles are 64-bit IEEE 754 binary format, stored
4272 with the most significant byte first])
4273fi
4274
4275# Some ARM platforms use a mixed-endian representation for doubles.
4276# While Python doesn't currently have full support for these platforms
4277# (see e.g., issue 1762561), we can at least make sure that float <-> string
4278# conversions work.
4279AC_MSG_CHECKING(whether C doubles are ARM mixed-endian IEEE 754 binary64)
4280AC_CACHE_VAL(ac_cv_mixed_endian_double, [
Matthias Kloseb159a552010-04-25 21:00:44 +00004281AC_RUN_IFELSE([AC_LANG_SOURCE([[
Mark Dickinsonb08a53a2009-04-16 19:52:09 +00004282#include <string.h>
4283int main() {
4284 double x = 9006104071832581.0;
4285 if (memcmp(&x, "\x01\xff\x3f\x43\x05\x04\x03\x02", 8) == 0)
4286 return 0;
4287 else
4288 return 1;
4289}
Matthias Kloseb159a552010-04-25 21:00:44 +00004290]])],
4291[ac_cv_mixed_endian_double=yes],
4292[ac_cv_mixed_endian_double=no],
4293[ac_cv_mixed_endian_double=no])])
Mark Dickinsonb08a53a2009-04-16 19:52:09 +00004294AC_MSG_RESULT($ac_cv_mixed_endian_double)
4295if test "$ac_cv_mixed_endian_double" = yes
4296then
4297 AC_DEFINE(DOUBLE_IS_ARM_MIXED_ENDIAN_IEEE754, 1,
4298 [Define if C doubles are 64-bit IEEE 754 binary format, stored
4299 in ARM mixed-endian order (byte order 45670123)])
4300fi
4301
Mark Dickinson7abf8d42009-04-18 20:17:52 +00004302# The short float repr introduced in Python 3.1 requires the
4303# correctly-rounded string <-> double conversion functions from
4304# Python/dtoa.c, which in turn require that the FPU uses 53-bit
4305# rounding; this is a problem on x86, where the x87 FPU has a default
Mark Dickinsonf4243f62009-11-15 13:47:27 +00004306# rounding precision of 64 bits. For gcc/x86, we can fix this by
Mark Dickinson7abf8d42009-04-18 20:17:52 +00004307# using inline assembler to get and set the x87 FPU control word.
Mark Dickinsonf4243f62009-11-15 13:47:27 +00004308
4309# This inline assembler syntax may also work for suncc and icc,
4310# so we try it on all platforms.
4311
4312AC_MSG_CHECKING(whether we can use gcc inline assembler to get and set x87 control word)
Stefan Krahe31db2a2015-07-02 20:27:56 +02004313AC_LINK_IFELSE( [AC_LANG_PROGRAM([[]], [[
Mark Dickinsonf4243f62009-11-15 13:47:27 +00004314 unsigned short cw;
4315 __asm__ __volatile__ ("fnstcw %0" : "=m" (cw));
4316 __asm__ __volatile__ ("fldcw %0" : : "m" (cw));
Matthias Kloseb159a552010-04-25 21:00:44 +00004317]])],[have_gcc_asm_for_x87=yes],[have_gcc_asm_for_x87=no])
Mark Dickinsonf4243f62009-11-15 13:47:27 +00004318AC_MSG_RESULT($have_gcc_asm_for_x87)
4319if test "$have_gcc_asm_for_x87" = yes
Mark Dickinsonb08a53a2009-04-16 19:52:09 +00004320then
Mark Dickinsonf4243f62009-11-15 13:47:27 +00004321 AC_DEFINE(HAVE_GCC_ASM_FOR_X87, 1,
4322 [Define if we can use gcc inline assembler to get and set x87 control word])
Mark Dickinsonb08a53a2009-04-16 19:52:09 +00004323fi
Christian Heimes81ee3ef2008-05-04 22:42:01 +00004324
Benjamin Peterson8bdeb162014-04-17 00:00:31 -04004325AC_MSG_CHECKING(whether we can use gcc inline assembler to get and set mc68881 fpcr)
Stefan Krahe31db2a2015-07-02 20:27:56 +02004326AC_LINK_IFELSE( [AC_LANG_PROGRAM([[]], [[
Benjamin Peterson8bdeb162014-04-17 00:00:31 -04004327 unsigned int fpcr;
4328 __asm__ __volatile__ ("fmove.l %%fpcr,%0" : "=g" (fpcr));
4329 __asm__ __volatile__ ("fmove.l %0,%%fpcr" : : "g" (fpcr));
4330]])],[have_gcc_asm_for_mc68881=yes],[have_gcc_asm_for_mc68881=no])
4331AC_MSG_RESULT($have_gcc_asm_for_mc68881)
4332if test "$have_gcc_asm_for_mc68881" = yes
4333then
4334 AC_DEFINE(HAVE_GCC_ASM_FOR_MC68881, 1,
4335 [Define if we can use gcc inline assembler to get and set mc68881 fpcr])
4336fi
4337
Mark Dickinson3dc7c6a2009-01-04 15:09:02 +00004338# Detect whether system arithmetic is subject to x87-style double
4339# rounding issues. The result of this test has little meaning on non
4340# IEEE 754 platforms. On IEEE 754, test should return 1 if rounding
4341# mode is round-to-nearest and double rounding issues are present, and
4342# 0 otherwise. See http://bugs.python.org/issue2937 for more info.
4343AC_MSG_CHECKING(for x87-style double rounding)
Mark Dickinsonb08a53a2009-04-16 19:52:09 +00004344# $BASECFLAGS may affect the result
4345ac_save_cc="$CC"
4346CC="$CC $BASECFLAGS"
Matthias Kloseb159a552010-04-25 21:00:44 +00004347AC_RUN_IFELSE([AC_LANG_SOURCE([[
Mark Dickinson3dc7c6a2009-01-04 15:09:02 +00004348#include <stdlib.h>
4349#include <math.h>
4350int main() {
4351 volatile double x, y, z;
4352 /* 1./(1-2**-53) -> 1+2**-52 (correct), 1.0 (double rounding) */
4353 x = 0.99999999999999989; /* 1-2**-53 */
4354 y = 1./x;
4355 if (y != 1.)
4356 exit(0);
4357 /* 1e16+2.99999 -> 1e16+2. (correct), 1e16+4. (double rounding) */
4358 x = 1e16;
4359 y = 2.99999;
4360 z = x + y;
4361 if (z != 1e16+4.)
4362 exit(0);
4363 /* both tests show evidence of double rounding */
4364 exit(1);
4365}
Matthias Kloseb159a552010-04-25 21:00:44 +00004366]])],
4367[ac_cv_x87_double_rounding=no],
4368[ac_cv_x87_double_rounding=yes],
4369[ac_cv_x87_double_rounding=no])
Mark Dickinsonb08a53a2009-04-16 19:52:09 +00004370CC="$ac_save_cc"
Mark Dickinson3dc7c6a2009-01-04 15:09:02 +00004371AC_MSG_RESULT($ac_cv_x87_double_rounding)
4372if test "$ac_cv_x87_double_rounding" = yes
4373then
4374 AC_DEFINE(X87_DOUBLE_ROUNDING, 1,
4375 [Define if arithmetic is subject to x87-style double rounding issue])
4376fi
4377
Mark Dickinsonb08a53a2009-04-16 19:52:09 +00004378# ************************************
4379# * Check for mathematical functions *
4380# ************************************
4381
4382LIBS_SAVE=$LIBS
4383LIBS="$LIBS $LIBM"
4384
Mark Dickinson7edecdd2010-11-20 10:09:56 +00004385AC_CHECK_FUNCS([acosh asinh atanh copysign erf erfc expm1 finite gamma])
Victor Stinner8f9f8d62011-05-09 12:45:41 +02004386AC_CHECK_FUNCS([hypot lgamma log1p log2 round tgamma])
Mark Dickinson7edecdd2010-11-20 10:09:56 +00004387AC_CHECK_DECLS([isinf, isnan, isfinite], [], [], [[#include <math.h>]])
4388
Christian Heimes81ee3ef2008-05-04 22:42:01 +00004389# On FreeBSD 6.2, it appears that tanh(-0.) returns 0. instead of
4390# -0. on some architectures.
4391AC_MSG_CHECKING(whether tanh preserves the sign of zero)
4392AC_CACHE_VAL(ac_cv_tanh_preserves_zero_sign, [
Matthias Kloseb159a552010-04-25 21:00:44 +00004393AC_RUN_IFELSE([AC_LANG_SOURCE([[
Christian Heimes81ee3ef2008-05-04 22:42:01 +00004394#include <math.h>
4395#include <stdlib.h>
4396int main() {
4397 /* return 0 if either negative zeros don't exist
4398 on this platform or if negative zeros exist
4399 and tanh(-0.) == -0. */
4400 if (atan2(0., -1.) == atan2(-0., -1.) ||
4401 atan2(tanh(-0.), -1.) == atan2(-0., -1.)) exit(0);
4402 else exit(1);
4403}
Matthias Kloseb159a552010-04-25 21:00:44 +00004404]])],
4405[ac_cv_tanh_preserves_zero_sign=yes],
4406[ac_cv_tanh_preserves_zero_sign=no],
4407[ac_cv_tanh_preserves_zero_sign=no])])
Christian Heimes81ee3ef2008-05-04 22:42:01 +00004408AC_MSG_RESULT($ac_cv_tanh_preserves_zero_sign)
4409if test "$ac_cv_tanh_preserves_zero_sign" = yes
4410then
4411 AC_DEFINE(TANH_PRESERVES_ZERO_SIGN, 1,
4412 [Define if tanh(-0.) is -0., or if platform doesn't have signed zeros])
4413fi
4414
Mark Dickinson7edecdd2010-11-20 10:09:56 +00004415if test "$ac_cv_func_log1p" = yes
4416then
4417 # On some versions of AIX, log1p(-0.) returns 0. instead of
4418 # -0. See issue #9920.
4419 AC_MSG_CHECKING(whether log1p drops the sign of negative zero)
4420 AC_CACHE_VAL(ac_cv_log1p_drops_zero_sign, [
4421 AC_RUN_IFELSE([AC_LANG_SOURCE([[
4422 #include <math.h>
4423 #include <stdlib.h>
4424 int main() {
4425 /* Fail if the signs of log1p(-0.) and -0. can be
4426 distinguished. */
4427 if (atan2(log1p(-0.), -1.) == atan2(-0., -1.))
4428 return 0;
4429 else
4430 return 1;
4431 }
4432 ]])],
4433 [ac_cv_log1p_drops_zero_sign=no],
4434 [ac_cv_log1p_drops_zero_sign=yes],
4435 [ac_cv_log1p_drops_zero_sign=no])])
4436 AC_MSG_RESULT($ac_cv_log1p_drops_zero_sign)
4437fi
4438if test "$ac_cv_log1p_drops_zero_sign" = yes
4439then
4440 AC_DEFINE(LOG1P_DROPS_ZERO_SIGN, 1,
4441 [Define if log1p(-0.) is 0. rather than -0.])
4442fi
Christian Heimes99170a52007-12-19 02:07:34 +00004443
Guido van Rossumaf5b83e1995-01-04 19:02:35 +00004444LIBS=$LIBS_SAVE
4445
Mark Dickinsona614f042009-11-28 12:48:43 +00004446# For multiprocessing module, check that sem_open
4447# actually works. For FreeBSD versions <= 7.2,
4448# the kernel module that provides POSIX semaphores
4449# isn't loaded by default, so an attempt to call
4450# sem_open results in a 'Signal 12' error.
4451AC_MSG_CHECKING(whether POSIX semaphores are enabled)
4452AC_CACHE_VAL(ac_cv_posix_semaphores_enabled,
Matthias Kloseb159a552010-04-25 21:00:44 +00004453AC_RUN_IFELSE([AC_LANG_SOURCE([[
Mark Dickinsona614f042009-11-28 12:48:43 +00004454#include <unistd.h>
4455#include <fcntl.h>
4456#include <stdio.h>
4457#include <semaphore.h>
4458#include <sys/stat.h>
4459
4460int main(void) {
4461 sem_t *a = sem_open("/autoconf", O_CREAT, S_IRUSR|S_IWUSR, 0);
4462 if (a == SEM_FAILED) {
4463 perror("sem_open");
4464 return 1;
4465 }
4466 sem_close(a);
Mark Dickinsonba79b352009-12-13 21:10:57 +00004467 sem_unlink("/autoconf");
Mark Dickinsona614f042009-11-28 12:48:43 +00004468 return 0;
4469}
Matthias Kloseb159a552010-04-25 21:00:44 +00004470]])],
4471[ac_cv_posix_semaphores_enabled=yes],
4472[ac_cv_posix_semaphores_enabled=no],
4473[ac_cv_posix_semaphores_enabled=yes])
Mark Dickinsona614f042009-11-28 12:48:43 +00004474)
4475AC_MSG_RESULT($ac_cv_posix_semaphores_enabled)
4476if test $ac_cv_posix_semaphores_enabled = no
4477then
4478 AC_DEFINE(POSIX_SEMAPHORES_NOT_ENABLED, 1,
4479 [Define if POSIX semaphores aren't enabled on your system])
4480fi
4481
Mark Dickinson10683072009-04-18 21:18:19 +00004482# Multiprocessing check for broken sem_getvalue
4483AC_MSG_CHECKING(for broken sem_getvalue)
Alexandre Vassalotti7b0c1c72009-07-17 06:00:34 +00004484AC_CACHE_VAL(ac_cv_broken_sem_getvalue,
Matthias Kloseb159a552010-04-25 21:00:44 +00004485AC_RUN_IFELSE([AC_LANG_SOURCE([[
Mark Dickinson10683072009-04-18 21:18:19 +00004486#include <unistd.h>
4487#include <fcntl.h>
4488#include <stdio.h>
4489#include <semaphore.h>
4490#include <sys/stat.h>
4491
4492int main(void){
Mark Dickinsonba79b352009-12-13 21:10:57 +00004493 sem_t *a = sem_open("/autocftw", O_CREAT, S_IRUSR|S_IWUSR, 0);
Mark Dickinson10683072009-04-18 21:18:19 +00004494 int count;
4495 int res;
4496 if(a==SEM_FAILED){
4497 perror("sem_open");
4498 return 1;
4499
4500 }
4501 res = sem_getvalue(a, &count);
4502 sem_close(a);
Mark Dickinsonba79b352009-12-13 21:10:57 +00004503 sem_unlink("/autocftw");
Mark Dickinson10683072009-04-18 21:18:19 +00004504 return res==-1 ? 1 : 0;
4505}
Matthias Kloseb159a552010-04-25 21:00:44 +00004506]])],
4507[ac_cv_broken_sem_getvalue=no],
4508[ac_cv_broken_sem_getvalue=yes],
4509[ac_cv_broken_sem_getvalue=yes])
Mark Dickinson10683072009-04-18 21:18:19 +00004510)
Alexandre Vassalotti7b0c1c72009-07-17 06:00:34 +00004511AC_MSG_RESULT($ac_cv_broken_sem_getvalue)
4512if test $ac_cv_broken_sem_getvalue = yes
4513then
4514 AC_DEFINE(HAVE_BROKEN_SEM_GETVALUE, 1,
4515 [define to 1 if your sem_getvalue is broken.])
4516fi
Mark Dickinson10683072009-04-18 21:18:19 +00004517
Serhiy Storchakac2f7d872016-05-04 09:44:44 +03004518AC_CHECK_DECLS([RTLD_LAZY, RTLD_NOW, RTLD_GLOBAL, RTLD_LOCAL, RTLD_NODELETE, RTLD_NOLOAD, RTLD_DEEPBIND], [], [], [[#include <dlfcn.h>]])
4519
Mark Dickinsonbd792642009-03-18 20:06:12 +00004520# determine what size digit to use for Python's longs
4521AC_MSG_CHECKING([digit size for Python's longs])
4522AC_ARG_ENABLE(big-digits,
Matthias Klose2b8733f2010-04-25 18:34:36 +00004523AS_HELP_STRING([--enable-big-digits@<:@=BITS@:>@],[use big digits for Python longs [[BITS=30]]]),
Mark Dickinsonbd792642009-03-18 20:06:12 +00004524[case $enable_big_digits in
4525yes)
4526 enable_big_digits=30 ;;
4527no)
4528 enable_big_digits=15 ;;
4529[15|30])
4530 ;;
4531*)
4532 AC_MSG_ERROR([bad value $enable_big_digits for --enable-big-digits; value should be 15 or 30]) ;;
4533esac
4534AC_MSG_RESULT($enable_big_digits)
4535AC_DEFINE_UNQUOTED(PYLONG_BITS_IN_DIGIT, $enable_big_digits, [Define as the preferred size in bits of long digits])
4536],
4537[AC_MSG_RESULT(no value specified)])
4538
Guido van Rossumef2255b2000-03-10 22:30:29 +00004539# check for wchar.h
Martin v. Löwisc45929e2002-04-06 10:10:49 +00004540AC_CHECK_HEADER(wchar.h, [
Victor Stinner1b80b242016-04-12 22:34:58 +02004541 AC_DEFINE(HAVE_WCHAR_H, 1,
4542 [Define if the compiler provides a wchar.h header file.])
Martin v. Löwisc45929e2002-04-06 10:10:49 +00004543 wchar_h="yes"
4544],
Guido van Rossumef2255b2000-03-10 22:30:29 +00004545wchar_h="no"
4546)
4547
Martin v. Löwis0ba70cc2001-06-26 22:22:37 +00004548# determine wchar_t size
4549if test "$wchar_h" = yes
4550then
Guido van Rossum67b26592001-10-20 14:21:45 +00004551 AC_CHECK_SIZEOF(wchar_t, 4, [#include <wchar.h>])
Martin v. Löwis0ba70cc2001-06-26 22:22:37 +00004552fi
4553
Martin v. Löwisfa3bdea2003-09-04 18:50:54 +00004554AC_MSG_CHECKING(for UCS-4 tcl)
4555have_ucs4_tcl=no
Matthias Kloseb159a552010-04-25 21:00:44 +00004556AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
Martin v. Löwisfa3bdea2003-09-04 18:50:54 +00004557#include <tcl.h>
4558#if TCL_UTF_MAX != 6
4559# error "NOT UCS4_TCL"
Matthias Kloseb159a552010-04-25 21:00:44 +00004560#endif]], [[]])],[
Martin v. Löwisfa3bdea2003-09-04 18:50:54 +00004561 AC_DEFINE(HAVE_UCS4_TCL, 1, [Define this if you have tcl and TCL_UTF_MAX==6])
4562 have_ucs4_tcl=yes
Matthias Kloseb159a552010-04-25 21:00:44 +00004563],[])
Martin v. Löwisfa3bdea2003-09-04 18:50:54 +00004564AC_MSG_RESULT($have_ucs4_tcl)
4565
Marc-André Lemburgd7160f82003-09-22 11:14:40 +00004566# check whether wchar_t is signed or not
4567if test "$wchar_h" = yes
4568then
4569 # check whether wchar_t is signed or not
4570 AC_MSG_CHECKING(whether wchar_t is signed)
4571 AC_CACHE_VAL(ac_cv_wchar_t_signed, [
Matthias Kloseb159a552010-04-25 21:00:44 +00004572 AC_RUN_IFELSE([AC_LANG_SOURCE([[
Marc-André Lemburgd7160f82003-09-22 11:14:40 +00004573 #include <wchar.h>
4574 int main()
4575 {
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00004576 /* Success: exit code 0 */
4577 exit((((wchar_t) -1) < ((wchar_t) 0)) ? 0 : 1);
Marc-André Lemburgd7160f82003-09-22 11:14:40 +00004578 }
Matthias Kloseb159a552010-04-25 21:00:44 +00004579 ]])],
4580 [ac_cv_wchar_t_signed=yes],
4581 [ac_cv_wchar_t_signed=no],
4582 [ac_cv_wchar_t_signed=yes])])
Marc-André Lemburgd7160f82003-09-22 11:14:40 +00004583 AC_MSG_RESULT($ac_cv_wchar_t_signed)
4584fi
Martin v. Löwis0ba70cc2001-06-26 22:22:37 +00004585
Georg Brandl52d168a2008-01-07 18:10:24 +00004586# wchar_t is only usable if it maps to an unsigned type
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02004587if test "$ac_cv_sizeof_wchar_t" -ge 2 \
Matthias Klose7dbeed72004-12-24 08:22:17 +00004588 -a "$ac_cv_wchar_t_signed" = "no"
Georg Brandl52d168a2008-01-07 18:10:24 +00004589then
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02004590 HAVE_USABLE_WCHAR_T="yes"
Georg Brandl52d168a2008-01-07 18:10:24 +00004591 AC_DEFINE(HAVE_USABLE_WCHAR_T, 1,
4592 [Define if you have a useable wchar_t type defined in wchar.h; useable
4593 means wchar_t must be an unsigned type with at least 16 bits. (see
4594 Include/unicodeobject.h).])
Georg Brandl52d168a2008-01-07 18:10:24 +00004595else
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02004596 HAVE_USABLE_WCHAR_T="no usable wchar_t found"
Martin v. Löwis0ba70cc2001-06-26 22:22:37 +00004597fi
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02004598AC_MSG_RESULT($HAVE_USABLE_WCHAR_T)
Guido van Rossumef2255b2000-03-10 22:30:29 +00004599
4600# check for endianness
4601AC_C_BIGENDIAN
4602
Barry Warsaw35f3a2c2010-09-03 18:30:30 +00004603# ABI version string for Python extension modules. This appears between the
4604# periods in shared library file names, e.g. foo.<SOABI>.so. It is calculated
4605# from the following attributes which affect the ABI of this Python build (in
4606# this order):
4607#
4608# * The Python implementation (always 'cpython-' for us)
4609# * The major and minor version numbers
4610# * --with-pydebug (adds a 'd')
4611# * --with-pymalloc (adds a 'm')
4612# * --with-wide-unicode (adds a 'u')
4613#
4614# Thus for example, Python 3.2 built with wide unicode, pydebug, and pymalloc,
Georg Brandlde7d8342010-09-03 22:19:07 +00004615# would get a shared library ABI version tag of 'cpython-32dmu' and shared
4616# libraries would be named 'foo.cpython-32dmu.so'.
Barry Warsaw35f3a2c2010-09-03 18:30:30 +00004617AC_SUBST(SOABI)
Barry Warsaw8cf4eae2010-10-16 01:04:07 +00004618AC_MSG_CHECKING(ABIFLAGS)
4619AC_MSG_RESULT($ABIFLAGS)
Barry Warsaw35f3a2c2010-09-03 18:30:30 +00004620AC_MSG_CHECKING(SOABI)
doko@ubuntu.comd3899c12015-04-15 20:23:14 +02004621SOABI='cpython-'`echo $VERSION | tr -d .`${ABIFLAGS}${PLATFORM_TRIPLET:+-$PLATFORM_TRIPLET}
Barry Warsaw35f3a2c2010-09-03 18:30:30 +00004622AC_MSG_RESULT($SOABI)
4623
doko@ubuntu.comd5537d02013-03-21 13:21:49 -07004624AC_SUBST(EXT_SUFFIX)
4625case $ac_sys_system in
Ned Deily3b812482015-04-15 17:11:47 -07004626 Linux*|GNU*|Darwin)
doko@ubuntu.comd5537d02013-03-21 13:21:49 -07004627 EXT_SUFFIX=.${SOABI}${SHLIB_SUFFIX};;
4628 *)
4629 EXT_SUFFIX=${SHLIB_SUFFIX};;
4630esac
4631
Barry Warsaw8cf4eae2010-10-16 01:04:07 +00004632AC_MSG_CHECKING(LDVERSION)
4633LDVERSION='$(VERSION)$(ABIFLAGS)'
4634AC_MSG_RESULT($LDVERSION)
4635
doko@python.org87421192013-01-26 11:39:31 +01004636dnl define LIBPL after ABIFLAGS and LDVERSION is defined.
4637AC_SUBST(PY_ENABLE_SHARED)
doko@ubuntu.com55532312016-06-14 08:55:19 +02004638if test x$PLATFORM_TRIPLET = x; then
4639 LIBPL='$(prefix)'"/lib/python${VERSION}/config-${LDVERSION}"
4640else
4641 LIBPL='$(prefix)'"/lib/python${VERSION}/config-${LDVERSION}-${PLATFORM_TRIPLET}"
4642fi
doko@python.org87421192013-01-26 11:39:31 +01004643AC_SUBST(LIBPL)
4644
Vladimir Marangozov9a5a5d12000-07-12 03:02:16 +00004645# Check whether right shifting a negative integer extends the sign bit
4646# or fills with zeros (like the Cray J90, according to Tim Peters).
4647AC_MSG_CHECKING(whether right shift extends the sign bit)
Vladimir Marangozova6180282000-07-12 05:05:06 +00004648AC_CACHE_VAL(ac_cv_rshift_extends_sign, [
Matthias Kloseb159a552010-04-25 21:00:44 +00004649AC_RUN_IFELSE([AC_LANG_SOURCE([[
Vladimir Marangozov9a5a5d12000-07-12 03:02:16 +00004650int main()
4651{
Vladimir Marangozova6180282000-07-12 05:05:06 +00004652 exit(((-1)>>3 == -1) ? 0 : 1);
Vladimir Marangozov9a5a5d12000-07-12 03:02:16 +00004653}
Matthias Kloseb159a552010-04-25 21:00:44 +00004654]])],
4655[ac_cv_rshift_extends_sign=yes],
4656[ac_cv_rshift_extends_sign=no],
4657[ac_cv_rshift_extends_sign=yes])])
Vladimir Marangozova6180282000-07-12 05:05:06 +00004658AC_MSG_RESULT($ac_cv_rshift_extends_sign)
4659if test "$ac_cv_rshift_extends_sign" = no
4660then
Martin v. Löwisc45929e2002-04-06 10:10:49 +00004661 AC_DEFINE(SIGNED_RIGHT_SHIFT_ZERO_FILLS, 1,
4662 [Define if i>>j for signed int i does not extend the sign bit
4663 when i < 0])
Vladimir Marangozova6180282000-07-12 05:05:06 +00004664fi
4665
Guido van Rossumcadfaec2001-01-05 14:45:49 +00004666# check for getc_unlocked and related locking functions
4667AC_MSG_CHECKING(for getc_unlocked() and friends)
4668AC_CACHE_VAL(ac_cv_have_getc_unlocked, [
Matthias Kloseb159a552010-04-25 21:00:44 +00004669AC_LINK_IFELSE([AC_LANG_PROGRAM([[#include <stdio.h>]], [[
Guido van Rossumcadfaec2001-01-05 14:45:49 +00004670 FILE *f = fopen("/dev/null", "r");
4671 flockfile(f);
4672 getc_unlocked(f);
4673 funlockfile(f);
Matthias Kloseb159a552010-04-25 21:00:44 +00004674]])],[ac_cv_have_getc_unlocked=yes],[ac_cv_have_getc_unlocked=no])])
Guido van Rossumcadfaec2001-01-05 14:45:49 +00004675AC_MSG_RESULT($ac_cv_have_getc_unlocked)
4676if test "$ac_cv_have_getc_unlocked" = yes
4677then
Martin v. Löwisc45929e2002-04-06 10:10:49 +00004678 AC_DEFINE(HAVE_GETC_UNLOCKED, 1,
4679 [Define this if you have flockfile(), getc_unlocked(), and funlockfile()])
Guido van Rossumcadfaec2001-01-05 14:45:49 +00004680fi
Vladimir Marangozov9a5a5d12000-07-12 03:02:16 +00004681
Neal Norwitzfe8e3d92006-01-07 21:07:20 +00004682# check where readline lives
Martin v. Löwis82bca632006-02-10 20:49:30 +00004683# save the value of LIBS so we don't actually link Python with readline
4684LIBS_no_readline=$LIBS
Gregory P. Smith18820942008-09-07 06:24:49 +00004685
4686# On some systems we need to link readline to a termcap compatible
4687# library. NOTE: Keep the precedence of listed libraries synchronised
4688# with setup.py.
4689py_cv_lib_readline=no
4690AC_MSG_CHECKING([how to link readline libs])
doko@ubuntu.comf2967c72012-06-30 17:32:23 +02004691for py_libtermcap in "" tinfo ncursesw ncurses curses termcap; do
Gregory P. Smith18820942008-09-07 06:24:49 +00004692 if test -z "$py_libtermcap"; then
4693 READLINE_LIBS="-lreadline"
4694 else
4695 READLINE_LIBS="-lreadline -l$py_libtermcap"
4696 fi
4697 LIBS="$READLINE_LIBS $LIBS_no_readline"
4698 AC_LINK_IFELSE(
4699 [AC_LANG_CALL([],[readline])],
4700 [py_cv_lib_readline=yes])
4701 if test $py_cv_lib_readline = yes; then
4702 break
4703 fi
4704done
4705# Uncomment this line if you want to use READINE_LIBS in Makefile or scripts
4706#AC_SUBST([READLINE_LIBS])
Gregory P. Smith97515912008-09-07 19:23:19 +00004707if test $py_cv_lib_readline = no; then
Gregory P. Smith18820942008-09-07 06:24:49 +00004708 AC_MSG_RESULT([none])
4709else
4710 AC_MSG_RESULT([$READLINE_LIBS])
4711 AC_DEFINE(HAVE_LIBREADLINE, 1,
4712 [Define if you have the readline library (-lreadline).])
Neal Norwitzfe8e3d92006-01-07 21:07:20 +00004713fi
4714
Michael W. Hudson30ea2f22004-07-07 17:44:12 +00004715# check for readline 2.1
4716AC_CHECK_LIB(readline, rl_callback_handler_install,
4717 AC_DEFINE(HAVE_RL_CALLBACK, 1,
Gregory P. Smith18820942008-09-07 06:24:49 +00004718 [Define if you have readline 2.1]), ,$READLINE_LIBS)
Michael W. Hudson30ea2f22004-07-07 17:44:12 +00004719
Guido van Rossumfaf5e4d2002-12-30 16:25:41 +00004720# check for readline 2.2
Matthias Kloseb159a552010-04-25 21:00:44 +00004721AC_PREPROC_IFELSE([AC_LANG_SOURCE([[#include <readline/readline.h>]])],
4722 [have_readline=yes],
4723 [have_readline=no]
4724)
Guido van Rossumfaf5e4d2002-12-30 16:25:41 +00004725if test $have_readline = yes
4726then
4727 AC_EGREP_HEADER([extern int rl_completion_append_character;],
4728 [readline/readline.h],
4729 AC_DEFINE(HAVE_RL_COMPLETION_APPEND_CHARACTER, 1,
4730 [Define if you have readline 2.2]), )
Antoine Pitroud5131772009-10-26 19:22:14 +00004731 AC_EGREP_HEADER([extern int rl_completion_suppress_append;],
4732 [readline/readline.h],
4733 AC_DEFINE(HAVE_RL_COMPLETION_SUPPRESS_APPEND, 1,
4734 [Define if you have rl_completion_suppress_append]), )
Guido van Rossumfaf5e4d2002-12-30 16:25:41 +00004735fi
4736
Martin v. Löwis0daad592001-09-30 21:09:59 +00004737# check for readline 4.0
4738AC_CHECK_LIB(readline, rl_pre_input_hook,
Martin v. Löwisc45929e2002-04-06 10:10:49 +00004739 AC_DEFINE(HAVE_RL_PRE_INPUT_HOOK, 1,
Gregory P. Smith18820942008-09-07 06:24:49 +00004740 [Define if you have readline 4.0]), ,$READLINE_LIBS)
Martin v. Löwis0daad592001-09-30 21:09:59 +00004741
Thomas Wouters89d996e2007-09-08 17:39:28 +00004742# also in 4.0
4743AC_CHECK_LIB(readline, rl_completion_display_matches_hook,
4744 AC_DEFINE(HAVE_RL_COMPLETION_DISPLAY_MATCHES_HOOK, 1,
Gregory P. Smith18820942008-09-07 06:24:49 +00004745 [Define if you have readline 4.0]), ,$READLINE_LIBS)
Thomas Wouters89d996e2007-09-08 17:39:28 +00004746
Martin Panter5dbbf1a2016-04-03 02:54:58 +00004747# also in 4.0, but not in editline
4748AC_CHECK_LIB(readline, rl_resize_terminal,
4749 AC_DEFINE(HAVE_RL_RESIZE_TERMINAL, 1,
4750 [Define if you have readline 4.0]), ,$READLINE_LIBS)
4751
Guido van Rossum353ae582001-07-10 16:45:32 +00004752# check for readline 4.2
4753AC_CHECK_LIB(readline, rl_completion_matches,
Martin v. Löwisc45929e2002-04-06 10:10:49 +00004754 AC_DEFINE(HAVE_RL_COMPLETION_MATCHES, 1,
Gregory P. Smith18820942008-09-07 06:24:49 +00004755 [Define if you have readline 4.2]), ,$READLINE_LIBS)
Guido van Rossum353ae582001-07-10 16:45:32 +00004756
Michael W. Hudson30ea2f22004-07-07 17:44:12 +00004757# also in readline 4.2
Matthias Kloseb159a552010-04-25 21:00:44 +00004758AC_PREPROC_IFELSE([AC_LANG_SOURCE([[#include <readline/readline.h>]])],
4759 [have_readline=yes],
4760 [have_readline=no]
4761)
Michael W. Hudson30ea2f22004-07-07 17:44:12 +00004762if test $have_readline = yes
4763then
4764 AC_EGREP_HEADER([extern int rl_catch_signals;],
4765 [readline/readline.h],
4766 AC_DEFINE(HAVE_RL_CATCH_SIGNAL, 1,
4767 [Define if you can turn off readline's signal handling.]), )
4768fi
4769
Benjamin Petersond1e22ba2014-11-26 14:35:12 -06004770AC_CHECK_LIB(readline, append_history,
4771 AC_DEFINE(HAVE_RL_APPEND_HISTORY, 1,
4772 [Define if readline supports append_history]), ,$READLINE_LIBS)
4773
Martin v. Löwis82bca632006-02-10 20:49:30 +00004774# End of readline checks: restore LIBS
4775LIBS=$LIBS_no_readline
4776
Thomas Wouterse38b2f12001-07-11 22:35:31 +00004777AC_MSG_CHECKING(for broken nice())
4778AC_CACHE_VAL(ac_cv_broken_nice, [
Matthias Kloseb159a552010-04-25 21:00:44 +00004779AC_RUN_IFELSE([AC_LANG_SOURCE([[
Thomas Wouterse38b2f12001-07-11 22:35:31 +00004780int main()
4781{
4782 int val1 = nice(1);
4783 if (val1 != -1 && val1 == nice(2))
4784 exit(0);
4785 exit(1);
4786}
Matthias Kloseb159a552010-04-25 21:00:44 +00004787]])],
4788[ac_cv_broken_nice=yes],
4789[ac_cv_broken_nice=no],
4790[ac_cv_broken_nice=no])])
Thomas Wouterse38b2f12001-07-11 22:35:31 +00004791AC_MSG_RESULT($ac_cv_broken_nice)
4792if test "$ac_cv_broken_nice" = yes
4793then
Martin v. Löwisc45929e2002-04-06 10:10:49 +00004794 AC_DEFINE(HAVE_BROKEN_NICE, 1,
4795 [Define if nice() returns success/failure instead of the new priority.])
Thomas Wouterse38b2f12001-07-11 22:35:31 +00004796fi
4797
Nicholas Bastine62c5c82004-03-21 23:45:42 +00004798AC_MSG_CHECKING(for broken poll())
Alexandre Vassalotti7b0c1c72009-07-17 06:00:34 +00004799AC_CACHE_VAL(ac_cv_broken_poll,
Matthias Kloseb159a552010-04-25 21:00:44 +00004800AC_RUN_IFELSE([AC_LANG_SOURCE([[
Nicholas Bastine62c5c82004-03-21 23:45:42 +00004801#include <poll.h>
4802
Alexandre Vassalottiaee170a2009-07-17 06:24:33 +00004803int main()
4804{
Nicholas Bastine62c5c82004-03-21 23:45:42 +00004805 struct pollfd poll_struct = { 42, POLLIN|POLLPRI|POLLOUT, 0 };
Alexandre Vassalottiaee170a2009-07-17 06:24:33 +00004806 int poll_test;
4807
Nicholas Bastine62c5c82004-03-21 23:45:42 +00004808 close (42);
4809
Alexandre Vassalottiaee170a2009-07-17 06:24:33 +00004810 poll_test = poll(&poll_struct, 1, 0);
Nicholas Bastine62c5c82004-03-21 23:45:42 +00004811 if (poll_test < 0)
Alexandre Vassalottiaee170a2009-07-17 06:24:33 +00004812 return 0;
Nicholas Bastine62c5c82004-03-21 23:45:42 +00004813 else if (poll_test == 0 && poll_struct.revents != POLLNVAL)
Alexandre Vassalottiaee170a2009-07-17 06:24:33 +00004814 return 0;
Nicholas Bastine62c5c82004-03-21 23:45:42 +00004815 else
Alexandre Vassalottiaee170a2009-07-17 06:24:33 +00004816 return 1;
4817}
Matthias Kloseb159a552010-04-25 21:00:44 +00004818]])],
4819[ac_cv_broken_poll=yes],
4820[ac_cv_broken_poll=no],
4821[ac_cv_broken_poll=no]))
Nicholas Bastine62c5c82004-03-21 23:45:42 +00004822AC_MSG_RESULT($ac_cv_broken_poll)
4823if test "$ac_cv_broken_poll" = yes
4824then
4825 AC_DEFINE(HAVE_BROKEN_POLL, 1,
4826 [Define if poll() sets errno on invalid file descriptors.])
4827fi
4828
Victor Stinner1b80b242016-04-12 22:34:58 +02004829# Before we can test tzset, we need to check if struct tm has a tm_zone
Brett Cannon43802422005-02-10 20:48:03 +00004830# (which is not required by ISO C or UNIX spec) and/or if we support
4831# tzname[]
4832AC_STRUCT_TIMEZONE
Nicholas Bastine62c5c82004-03-21 23:45:42 +00004833
Brett Cannon43802422005-02-10 20:48:03 +00004834# check tzset(3) exists and works like we expect it to
Guido van Rossumd11b62e2003-03-14 21:51:36 +00004835AC_MSG_CHECKING(for working tzset())
4836AC_CACHE_VAL(ac_cv_working_tzset, [
Matthias Kloseb159a552010-04-25 21:00:44 +00004837AC_RUN_IFELSE([AC_LANG_SOURCE([[
Guido van Rossumd11b62e2003-03-14 21:51:36 +00004838#include <stdlib.h>
4839#include <time.h>
Brett Cannon18367812003-09-19 00:59:16 +00004840#include <string.h>
Brett Cannon43802422005-02-10 20:48:03 +00004841
4842#if HAVE_TZNAME
4843extern char *tzname[];
4844#endif
4845
Guido van Rossumd11b62e2003-03-14 21:51:36 +00004846int main()
4847{
Brett Cannon18367812003-09-19 00:59:16 +00004848 /* Note that we need to ensure that not only does tzset(3)
4849 do 'something' with localtime, but it works as documented
4850 in the library reference and as expected by the test suite.
Brett Cannon43802422005-02-10 20:48:03 +00004851 This includes making sure that tzname is set properly if
4852 tm->tm_zone does not exist since it is the alternative way
4853 of getting timezone info.
Brett Cannon18367812003-09-19 00:59:16 +00004854
Victor Stinner1b80b242016-04-12 22:34:58 +02004855 Red Hat 6.2 doesn't understand the southern hemisphere
Brett Cannon43802422005-02-10 20:48:03 +00004856 after New Year's Day.
Brett Cannon18367812003-09-19 00:59:16 +00004857 */
4858
Brett Cannon43802422005-02-10 20:48:03 +00004859 time_t groundhogday = 1044144000; /* GMT-based */
Brett Cannon18367812003-09-19 00:59:16 +00004860 time_t midyear = groundhogday + (365 * 24 * 3600 / 2);
4861
Neal Norwitz7f2588c2003-04-11 15:35:53 +00004862 putenv("TZ=UTC+0");
Guido van Rossumd11b62e2003-03-14 21:51:36 +00004863 tzset();
Brett Cannon18367812003-09-19 00:59:16 +00004864 if (localtime(&groundhogday)->tm_hour != 0)
4865 exit(1);
Brett Cannon43802422005-02-10 20:48:03 +00004866#if HAVE_TZNAME
4867 /* For UTC, tzname[1] is sometimes "", sometimes " " */
Victor Stinner1b80b242016-04-12 22:34:58 +02004868 if (strcmp(tzname[0], "UTC") ||
Brett Cannon43802422005-02-10 20:48:03 +00004869 (tzname[1][0] != 0 && tzname[1][0] != ' '))
4870 exit(1);
4871#endif
Brett Cannon18367812003-09-19 00:59:16 +00004872
Neal Norwitz7f2588c2003-04-11 15:35:53 +00004873 putenv("TZ=EST+5EDT,M4.1.0,M10.5.0");
Guido van Rossumd11b62e2003-03-14 21:51:36 +00004874 tzset();
Brett Cannon18367812003-09-19 00:59:16 +00004875 if (localtime(&groundhogday)->tm_hour != 19)
Guido van Rossumd11b62e2003-03-14 21:51:36 +00004876 exit(1);
Brett Cannon43802422005-02-10 20:48:03 +00004877#if HAVE_TZNAME
4878 if (strcmp(tzname[0], "EST") || strcmp(tzname[1], "EDT"))
4879 exit(1);
4880#endif
Brett Cannon18367812003-09-19 00:59:16 +00004881
4882 putenv("TZ=AEST-10AEDT-11,M10.5.0,M3.5.0");
4883 tzset();
4884 if (localtime(&groundhogday)->tm_hour != 11)
4885 exit(1);
Brett Cannon43802422005-02-10 20:48:03 +00004886#if HAVE_TZNAME
4887 if (strcmp(tzname[0], "AEST") || strcmp(tzname[1], "AEDT"))
4888 exit(1);
4889#endif
4890
4891#if HAVE_STRUCT_TM_TM_ZONE
Brett Cannon18367812003-09-19 00:59:16 +00004892 if (strcmp(localtime(&groundhogday)->tm_zone, "AEDT"))
4893 exit(1);
4894 if (strcmp(localtime(&midyear)->tm_zone, "AEST"))
4895 exit(1);
Brett Cannon43802422005-02-10 20:48:03 +00004896#endif
Brett Cannon18367812003-09-19 00:59:16 +00004897
Guido van Rossumd11b62e2003-03-14 21:51:36 +00004898 exit(0);
4899}
Matthias Kloseb159a552010-04-25 21:00:44 +00004900]])],
4901[ac_cv_working_tzset=yes],
4902[ac_cv_working_tzset=no],
4903[ac_cv_working_tzset=no])])
Guido van Rossumd11b62e2003-03-14 21:51:36 +00004904AC_MSG_RESULT($ac_cv_working_tzset)
4905if test "$ac_cv_working_tzset" = yes
4906then
4907 AC_DEFINE(HAVE_WORKING_TZSET, 1,
4908 [Define if tzset() actually switches the local timezone in a meaningful way.])
4909fi
4910
Martin v. Löwis94717ed2002-09-09 14:24:16 +00004911# Look for subsecond timestamps in struct stat
4912AC_MSG_CHECKING(for tv_nsec in struct stat)
4913AC_CACHE_VAL(ac_cv_stat_tv_nsec,
Matthias Kloseb159a552010-04-25 21:00:44 +00004914AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#include <sys/stat.h>]], [[
Martin v. Löwis94717ed2002-09-09 14:24:16 +00004915struct stat st;
4916st.st_mtim.tv_nsec = 1;
Matthias Kloseb159a552010-04-25 21:00:44 +00004917]])],
4918[ac_cv_stat_tv_nsec=yes],
4919[ac_cv_stat_tv_nsec=no]))
Martin v. Löwis94717ed2002-09-09 14:24:16 +00004920AC_MSG_RESULT($ac_cv_stat_tv_nsec)
4921if test "$ac_cv_stat_tv_nsec" = yes
4922then
4923 AC_DEFINE(HAVE_STAT_TV_NSEC, 1,
4924 [Define if you have struct stat.st_mtim.tv_nsec])
4925fi
4926
Martin v. Löwisebd9d5b2005-08-09 15:00:59 +00004927# Look for BSD style subsecond timestamps in struct stat
4928AC_MSG_CHECKING(for tv_nsec2 in struct stat)
4929AC_CACHE_VAL(ac_cv_stat_tv_nsec2,
Matthias Kloseb159a552010-04-25 21:00:44 +00004930AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#include <sys/stat.h>]], [[
Martin v. Löwisebd9d5b2005-08-09 15:00:59 +00004931struct stat st;
4932st.st_mtimespec.tv_nsec = 1;
Matthias Kloseb159a552010-04-25 21:00:44 +00004933]])],
4934[ac_cv_stat_tv_nsec2=yes],
4935[ac_cv_stat_tv_nsec2=no]))
Martin v. Löwisebd9d5b2005-08-09 15:00:59 +00004936AC_MSG_RESULT($ac_cv_stat_tv_nsec2)
4937if test "$ac_cv_stat_tv_nsec2" = yes
4938then
4939 AC_DEFINE(HAVE_STAT_TV_NSEC2, 1,
4940 [Define if you have struct stat.st_mtimensec])
4941fi
4942
doko@ubuntu.com1a4f5612014-04-17 20:13:44 +02004943# first curses header check
doko@ubuntu.com9dc823d2012-07-07 03:06:42 +02004944ac_save_cppflags="$CPPFLAGS"
Xavier de Gayee13c3202016-12-13 16:04:14 +01004945if test "$cross_compiling" = no; then
4946 CPPFLAGS="$CPPFLAGS -I/usr/include/ncursesw"
4947fi
doko@ubuntu.com1a4f5612014-04-17 20:13:44 +02004948
4949AC_CHECK_HEADERS(curses.h ncurses.h)
4950
4951# On Solaris, term.h requires curses.h
4952AC_CHECK_HEADERS(term.h,,,[
4953#ifdef HAVE_CURSES_H
4954#include <curses.h>
4955#endif
4956])
4957
Martin v. Löwiseb9b1032001-10-24 17:10:49 +00004958# On HP/UX 11.0, mvwdelch is a block with a return statement
4959AC_MSG_CHECKING(whether mvwdelch is an expression)
4960AC_CACHE_VAL(ac_cv_mvwdelch_is_expression,
Matthias Kloseb159a552010-04-25 21:00:44 +00004961AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#include <curses.h>]], [[
Martin v. Löwiseb9b1032001-10-24 17:10:49 +00004962 int rtn;
4963 rtn = mvwdelch(0,0,0);
Matthias Kloseb159a552010-04-25 21:00:44 +00004964]])],
4965[ac_cv_mvwdelch_is_expression=yes],
4966[ac_cv_mvwdelch_is_expression=no]))
Martin v. Löwiseb9b1032001-10-24 17:10:49 +00004967AC_MSG_RESULT($ac_cv_mvwdelch_is_expression)
4968
4969if test "$ac_cv_mvwdelch_is_expression" = yes
4970then
Martin v. Löwisc45929e2002-04-06 10:10:49 +00004971 AC_DEFINE(MVWDELCH_IS_EXPRESSION, 1,
4972 [Define if mvwdelch in curses.h is an expression.])
Martin v. Löwiseb9b1032001-10-24 17:10:49 +00004973fi
4974
4975AC_MSG_CHECKING(whether WINDOW has _flags)
4976AC_CACHE_VAL(ac_cv_window_has_flags,
Matthias Kloseb159a552010-04-25 21:00:44 +00004977AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#include <curses.h>]], [[
Martin v. Löwiseb9b1032001-10-24 17:10:49 +00004978 WINDOW *w;
4979 w->_flags = 0;
Matthias Kloseb159a552010-04-25 21:00:44 +00004980]])],
4981[ac_cv_window_has_flags=yes],
4982[ac_cv_window_has_flags=no]))
Martin v. Löwiseb9b1032001-10-24 17:10:49 +00004983AC_MSG_RESULT($ac_cv_window_has_flags)
4984
4985
4986if test "$ac_cv_window_has_flags" = yes
4987then
Victor Stinner1b80b242016-04-12 22:34:58 +02004988 AC_DEFINE(WINDOW_HAS_FLAGS, 1,
Martin v. Löwisc45929e2002-04-06 10:10:49 +00004989 [Define if WINDOW in curses.h offers a field _flags.])
Martin v. Löwiseb9b1032001-10-24 17:10:49 +00004990fi
4991
Thomas Wouters0e3f5912006-08-11 14:57:12 +00004992AC_MSG_CHECKING(for is_term_resized)
Matthias Kloseb159a552010-04-25 21:00:44 +00004993AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#include <curses.h>]], [[void *x=is_term_resized]])],
4994 [AC_DEFINE(HAVE_CURSES_IS_TERM_RESIZED, 1, Define if you have the 'is_term_resized' function.)
4995 AC_MSG_RESULT(yes)],
4996 [AC_MSG_RESULT(no)]
Thomas Wouters0e3f5912006-08-11 14:57:12 +00004997)
Martin v. Löwis24a880b2002-12-31 12:55:15 +00004998
Thomas Wouters0e3f5912006-08-11 14:57:12 +00004999AC_MSG_CHECKING(for resize_term)
Matthias Kloseb159a552010-04-25 21:00:44 +00005000AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#include <curses.h>]], [[void *x=resize_term]])],
5001 [AC_DEFINE(HAVE_CURSES_RESIZE_TERM, 1, Define if you have the 'resize_term' function.)
5002 AC_MSG_RESULT(yes)],
5003 [AC_MSG_RESULT(no)]
Thomas Wouters0e3f5912006-08-11 14:57:12 +00005004)
5005
5006AC_MSG_CHECKING(for resizeterm)
Matthias Kloseb159a552010-04-25 21:00:44 +00005007AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#include <curses.h>]], [[void *x=resizeterm]])],
5008 [AC_DEFINE(HAVE_CURSES_RESIZETERM, 1, Define if you have the 'resizeterm' function.)
5009 AC_MSG_RESULT(yes)],
5010 [AC_MSG_RESULT(no)]
Thomas Wouters0e3f5912006-08-11 14:57:12 +00005011)
doko@ubuntu.com9dc823d2012-07-07 03:06:42 +02005012# last curses configure check
5013CPPFLAGS=$ac_save_cppflags
Thomas Wouters0e3f5912006-08-11 14:57:12 +00005014
doko@ubuntu.comb457b9b2012-06-30 19:28:16 +02005015AC_MSG_NOTICE([checking for device files])
Thomas Wouters89f507f2006-12-13 04:49:30 +00005016
doko@ubuntu.comb457b9b2012-06-30 19:28:16 +02005017dnl NOTE: Inform user how to proceed with files when cross compiling.
5018if test "x$cross_compiling" = xyes; then
5019 if test "${ac_cv_file__dev_ptmx+set}" != set; then
5020 AC_MSG_CHECKING([for /dev/ptmx])
5021 AC_MSG_RESULT([not set])
5022 AC_MSG_ERROR([set ac_cv_file__dev_ptmx to yes/no in your CONFIG_SITE file when cross compiling])
5023 fi
5024 if test "${ac_cv_file__dev_ptc+set}" != set; then
5025 AC_MSG_CHECKING([for /dev/ptc])
5026 AC_MSG_RESULT([not set])
5027 AC_MSG_ERROR([set ac_cv_file__dev_ptc to yes/no in your CONFIG_SITE file when cross compiling])
5028 fi
Thomas Wouters89f507f2006-12-13 04:49:30 +00005029fi
5030
doko@ubuntu.comb457b9b2012-06-30 19:28:16 +02005031AC_CHECK_FILE(/dev/ptmx, [], [])
5032if test "x$ac_cv_file__dev_ptmx" = xyes; then
5033 AC_DEFINE(HAVE_DEV_PTMX, 1,
5034 [Define to 1 if you have the /dev/ptmx device file.])
5035fi
5036AC_CHECK_FILE(/dev/ptc, [], [])
5037if test "x$ac_cv_file__dev_ptc" = xyes; then
Thomas Wouters89f507f2006-12-13 04:49:30 +00005038 AC_DEFINE(HAVE_DEV_PTC, 1,
doko@ubuntu.comb457b9b2012-06-30 19:28:16 +02005039 [Define to 1 if you have the /dev/ptc device file.])
Thomas Wouters89f507f2006-12-13 04:49:30 +00005040fi
Neal Norwitz865400f2003-03-21 01:42:58 +00005041
Ronald Oussoren3c1928a2009-11-19 17:15:31 +00005042if test $ac_sys_system = Darwin
5043then
5044 LIBS="$LIBS -framework CoreFoundation"
5045fi
Mark Dickinson6ce4a9a2009-11-16 17:00:11 +00005046
Benjamin Peterson8f326b22009-12-13 02:10:36 +00005047AC_CACHE_CHECK([for %zd printf() format support], ac_cv_have_size_t_format, [dnl
Matthias Kloseb159a552010-04-25 21:00:44 +00005048AC_RUN_IFELSE([AC_LANG_SOURCE([[
Alexandre Vassalottie5091f62009-07-17 06:41:02 +00005049#include <stdio.h>
Thomas Wouters477c8d52006-05-27 19:21:47 +00005050#include <stddef.h>
5051#include <string.h>
5052
Christian Heimes2c181612007-12-17 20:04:13 +00005053#ifdef HAVE_SYS_TYPES_H
5054#include <sys/types.h>
5055#endif
Thomas Wouters89f507f2006-12-13 04:49:30 +00005056
5057#ifdef HAVE_SSIZE_T
5058typedef ssize_t Py_ssize_t;
5059#elif SIZEOF_VOID_P == SIZEOF_LONG
5060typedef long Py_ssize_t;
5061#else
5062typedef int Py_ssize_t;
5063#endif
Thomas Wouters477c8d52006-05-27 19:21:47 +00005064
Christian Heimes2c181612007-12-17 20:04:13 +00005065int main()
5066{
5067 char buffer[256];
5068
Thomas Wouters477c8d52006-05-27 19:21:47 +00005069 if(sprintf(buffer, "%zd", (size_t)123) < 0)
5070 return 1;
5071
Thomas Wouters89f507f2006-12-13 04:49:30 +00005072 if (strcmp(buffer, "123"))
Thomas Wouters477c8d52006-05-27 19:21:47 +00005073 return 1;
Thomas Wouters89f507f2006-12-13 04:49:30 +00005074
5075 if (sprintf(buffer, "%zd", (Py_ssize_t)-123) < 0)
5076 return 1;
5077
5078 if (strcmp(buffer, "-123"))
5079 return 1;
5080
Thomas Wouters477c8d52006-05-27 19:21:47 +00005081 return 0;
Alexandre Vassalotti7b0c1c72009-07-17 06:00:34 +00005082}
Matthias Kloseb159a552010-04-25 21:00:44 +00005083]])],
5084 [ac_cv_have_size_t_format=yes],
5085 [ac_cv_have_size_t_format=no],
5086 [ac_cv_have_size_t_format="cross -- assuming yes"
5087])])
Benjamin Peterson8f326b22009-12-13 02:10:36 +00005088if test "$ac_cv_have_size_t_format" != no ; then
Alexandre Vassalotti7b0c1c72009-07-17 06:00:34 +00005089 AC_DEFINE(PY_FORMAT_SIZE_T, "z",
5090 [Define to printf format modifier for Py_ssize_t])
5091fi
Thomas Wouters477c8d52006-05-27 19:21:47 +00005092
Martin v. Löwis01c04012002-11-11 14:58:44 +00005093AC_CHECK_TYPE(socklen_t,,
5094 AC_DEFINE(socklen_t,int,
Matthias Klosec80c93f2010-04-24 17:04:35 +00005095 [Define to `int' if <sys/socket.h> does not define.]),[
Martin v. Löwis01c04012002-11-11 14:58:44 +00005096#ifdef HAVE_SYS_TYPES_H
5097#include <sys/types.h>
5098#endif
Guido van Rossum95713eb2000-05-18 20:53:31 +00005099#ifdef HAVE_SYS_SOCKET_H
5100#include <sys/socket.h>
5101#endif
Martin v. Löwis01c04012002-11-11 14:58:44 +00005102])
Neil Schemenauer55f0cf32001-01-24 17:24:33 +00005103
Antoine Pitroufff95302008-09-03 18:58:51 +00005104AC_MSG_CHECKING(for broken mbstowcs)
Alexandre Vassalotti7b0c1c72009-07-17 06:00:34 +00005105AC_CACHE_VAL(ac_cv_broken_mbstowcs,
Matthias Kloseb159a552010-04-25 21:00:44 +00005106AC_RUN_IFELSE([AC_LANG_SOURCE([[
Stefan Krah19c21392012-11-22 23:47:32 +01005107#include <stdio.h>
Antoine Pitroufff95302008-09-03 18:58:51 +00005108#include<stdlib.h>
5109int main() {
5110 size_t len = -1;
5111 const char *str = "text";
5112 len = mbstowcs(NULL, str, 0);
5113 return (len != 4);
5114}
Matthias Kloseb159a552010-04-25 21:00:44 +00005115]])],
5116[ac_cv_broken_mbstowcs=no],
5117[ac_cv_broken_mbstowcs=yes],
5118[ac_cv_broken_mbstowcs=no]))
Antoine Pitroufff95302008-09-03 18:58:51 +00005119AC_MSG_RESULT($ac_cv_broken_mbstowcs)
5120if test "$ac_cv_broken_mbstowcs" = yes
5121then
5122 AC_DEFINE(HAVE_BROKEN_MBSTOWCS, 1,
Victor Stinner1b80b242016-04-12 22:34:58 +02005123 [Define if mbstowcs(NULL, "text", 0) does not return the number of
Antoine Pitroufff95302008-09-03 18:58:51 +00005124 wide chars that would be converted.])
5125fi
5126
Antoine Pitroub52ec782009-01-25 16:34:23 +00005127# Check for --with-computed-gotos
5128AC_MSG_CHECKING(for --with-computed-gotos)
5129AC_ARG_WITH(computed-gotos,
Antoine Pitrou042b1282010-08-13 21:15:58 +00005130 AS_HELP_STRING([--with(out)-computed-gotos],
5131 [Use computed gotos in evaluation loop (enabled by default on supported compilers)]),
Antoine Pitroub52ec782009-01-25 16:34:23 +00005132[
Antoine Pitrou042b1282010-08-13 21:15:58 +00005133if test "$withval" = yes
Victor Stinner1b80b242016-04-12 22:34:58 +02005134then
Antoine Pitroub52ec782009-01-25 16:34:23 +00005135 AC_DEFINE(USE_COMPUTED_GOTOS, 1,
Victor Stinner1b80b242016-04-12 22:34:58 +02005136 [Define if you want to use computed gotos in ceval.c.])
Antoine Pitroub52ec782009-01-25 16:34:23 +00005137 AC_MSG_RESULT(yes)
Antoine Pitrou042b1282010-08-13 21:15:58 +00005138fi
5139if test "$withval" = no
Victor Stinner1b80b242016-04-12 22:34:58 +02005140then
Antoine Pitrou042b1282010-08-13 21:15:58 +00005141 AC_DEFINE(USE_COMPUTED_GOTOS, 0,
Victor Stinner1b80b242016-04-12 22:34:58 +02005142 [Define if you want to use computed gotos in ceval.c.])
Antoine Pitrou042b1282010-08-13 21:15:58 +00005143 AC_MSG_RESULT(no)
5144fi
5145],
5146[AC_MSG_RESULT(no value specified)])
Antoine Pitroub52ec782009-01-25 16:34:23 +00005147
Matthias Kloseb17289e2012-03-15 19:51:34 +01005148AC_MSG_CHECKING(whether $CC supports computed gotos)
5149AC_CACHE_VAL(ac_cv_computed_gotos,
5150AC_RUN_IFELSE([AC_LANG_SOURCE([[[
5151int main(int argc, char **argv)
5152{
5153 static void *targets[1] = { &&LABEL1 };
5154 goto LABEL2;
5155LABEL1:
5156 return 0;
5157LABEL2:
5158 goto *targets[0];
5159 return 1;
5160}
5161]]])],
5162[ac_cv_computed_gotos=yes],
5163[ac_cv_computed_gotos=no],
5164[if test "${with_computed_gotos+set}" = set; then
5165 ac_cv_computed_gotos="$with_computed_gotos -- configured --with(out)-computed-gotos"
5166 else
5167 ac_cv_computed_gotos=no
5168 fi]))
5169AC_MSG_RESULT($ac_cv_computed_gotos)
5170case "$ac_cv_computed_gotos" in yes*)
5171 AC_DEFINE(HAVE_COMPUTED_GOTOS, 1,
5172 [Define if the C compiler supports computed gotos.])
5173esac
5174
R. David Murraye16cda92010-10-15 23:12:57 +00005175case $ac_sys_system in
Victor Stinner1b80b242016-04-12 22:34:58 +02005176AIX*)
R. David Murraye16cda92010-10-15 23:12:57 +00005177 AC_DEFINE(HAVE_BROKEN_PIPE_BUF, 1, [Define if the system reports an invalid PIPE_BUF value.]) ;;
5178esac
Antoine Pitroub52ec782009-01-25 16:34:23 +00005179
Jesus Cea6a792292010-05-03 21:18:48 +00005180
Martin v. Löwis06f15bb2001-12-02 13:02:32 +00005181AC_SUBST(THREADHEADERS)
5182
5183for h in `(cd $srcdir;echo Python/thread_*.h)`
5184do
5185 THREADHEADERS="$THREADHEADERS \$(srcdir)/$h"
5186done
5187
Neil Schemenauer55f0cf32001-01-24 17:24:33 +00005188AC_SUBST(SRCDIRS)
Ned Deily0db50cf2014-07-25 12:41:31 -07005189SRCDIRS="Parser Grammar Objects Python Modules Mac Programs"
Andrew M. Kuchling8abedde2001-01-26 22:55:24 +00005190AC_MSG_CHECKING(for build directories)
Neil Schemenauer55f0cf32001-01-24 17:24:33 +00005191for dir in $SRCDIRS; do
5192 if test ! -d $dir; then
5193 mkdir $dir
Fred Drake884d3ba2000-11-02 17:52:56 +00005194 fi
Neil Schemenauer55f0cf32001-01-24 17:24:33 +00005195done
5196AC_MSG_RESULT(done)
Fred Drake036144d2000-10-26 17:09:35 +00005197
Stefan Krah1919b7e2012-03-21 18:25:23 +01005198# Availability of -O2:
5199AC_MSG_CHECKING(for -O2)
5200saved_cflags="$CFLAGS"
5201CFLAGS="-O2"
5202AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[]], [[
5203]])],[have_O2=yes],[have_O2=no])
5204AC_MSG_RESULT($have_O2)
5205CFLAGS="$saved_cflags"
5206
5207# _FORTIFY_SOURCE wrappers for memmove and bcopy are incorrect:
5208# http://sourceware.org/ml/libc-alpha/2010-12/msg00009.html
5209AC_MSG_CHECKING(for glibc _FORTIFY_SOURCE/memmove bug)
5210saved_cflags="$CFLAGS"
5211CFLAGS="-O2 -D_FORTIFY_SOURCE=2"
5212if test "$have_O2" = no; then
5213 CFLAGS=""
5214fi
5215AC_RUN_IFELSE([AC_LANG_SOURCE([[
5216#include <stdio.h>
5217#include <stdlib.h>
5218#include <string.h>
5219void foo(void *p, void *q) { memmove(p, q, 19); }
5220int main() {
5221 char a[32] = "123456789000000000";
5222 foo(&a[9], a);
5223 if (strcmp(a, "123456789123456789000000000") != 0)
5224 return 1;
5225 foo(a, &a[9]);
5226 if (strcmp(a, "123456789000000000") != 0)
5227 return 1;
5228 return 0;
5229}
5230]])],
5231[have_glibc_memmove_bug=no],
5232[have_glibc_memmove_bug=yes],
5233[have_glibc_memmove_bug=undefined])
5234CFLAGS="$saved_cflags"
5235AC_MSG_RESULT($have_glibc_memmove_bug)
5236if test "$have_glibc_memmove_bug" = yes; then
5237 AC_DEFINE(HAVE_GLIBC_MEMMOVE_BUG, 1,
5238 [Define if glibc has incorrect _FORTIFY_SOURCE wrappers
5239 for memmove and bcopy.])
5240fi
5241
5242if test "$have_gcc_asm_for_x87" = yes; then
5243 # Some versions of gcc miscompile inline asm:
5244 # http://gcc.gnu.org/bugzilla/show_bug.cgi?id=46491
5245 # http://gcc.gnu.org/ml/gcc/2010-11/msg00366.html
5246 case $CC in
5247 *gcc*)
5248 AC_MSG_CHECKING(for gcc ipa-pure-const bug)
5249 saved_cflags="$CFLAGS"
5250 CFLAGS="-O2"
5251 AC_RUN_IFELSE([AC_LANG_SOURCE([[
5252 __attribute__((noinline)) int
5253 foo(int *p) {
5254 int r;
5255 asm ( "movl \$6, (%1)\n\t"
5256 "xorl %0, %0\n\t"
5257 : "=r" (r) : "r" (p) : "memory"
5258 );
5259 return r;
5260 }
5261 int main() {
5262 int p = 8;
5263 if ((foo(&p) ? : p) != 6)
5264 return 1;
5265 return 0;
5266 }
5267 ]])],
5268 [have_ipa_pure_const_bug=no],
5269 [have_ipa_pure_const_bug=yes],
5270 [have_ipa_pure_const_bug=undefined])
5271 CFLAGS="$saved_cflags"
5272 AC_MSG_RESULT($have_ipa_pure_const_bug)
5273 if test "$have_ipa_pure_const_bug" = yes; then
5274 AC_DEFINE(HAVE_IPA_PURE_CONST_BUG, 1,
5275 [Define if gcc has the ipa-pure-const bug.])
5276 fi
5277 ;;
5278 esac
5279fi
5280
Victor Stinner4f5366e2015-01-09 02:13:19 +01005281# Check for stdatomic.h
5282AC_MSG_CHECKING(for stdatomic.h)
5283AC_LINK_IFELSE(
5284[
5285 AC_LANG_SOURCE([[
5286 #include <stdatomic.h>
Victor Stinner923e06f2015-01-14 16:01:46 +01005287 atomic_int value = ATOMIC_VAR_INIT(1);
5288 _Atomic void *py_atomic_address = (void*) &value;
Victor Stinner4f5366e2015-01-09 02:13:19 +01005289 int main() {
5290 int loaded_value = atomic_load(&value);
5291 return 0;
5292 }
5293 ]])
5294],[have_stdatomic_h=yes],[have_stdatomic_h=no])
5295
5296AC_MSG_RESULT($have_stdatomic_h)
5297
5298if test "$have_stdatomic_h" = yes; then
Victor Stinner923e06f2015-01-14 16:01:46 +01005299 AC_DEFINE(HAVE_STD_ATOMIC, 1,
5300 [Has stdatomic.h, atomic_int and _Atomic void* types work])
Victor Stinner4f5366e2015-01-09 02:13:19 +01005301fi
5302
5303# Check for GCC >= 4.7 __atomic builtins
5304AC_MSG_CHECKING(for GCC >= 4.7 __atomic builtins)
5305AC_LINK_IFELSE(
5306[
5307 AC_LANG_SOURCE([[
5308 volatile int val = 1;
5309 int main() {
5310 __atomic_load_n(&val, __ATOMIC_SEQ_CST);
5311 return 0;
5312 }
5313 ]])
5314],[have_builtin_atomic=yes],[have_builtin_atomic=no])
5315
5316AC_MSG_RESULT($have_builtin_atomic)
5317
5318if test "$have_builtin_atomic" = yes; then
5319 AC_DEFINE(HAVE_BUILTIN_ATOMIC, 1, [Has builtin atomics])
5320fi
5321
Ned Deily322f5ba2013-11-21 23:01:59 -08005322# ensurepip option
5323AC_MSG_CHECKING(for ensurepip)
5324AC_ARG_WITH(ensurepip,
5325 [AS_HELP_STRING([--with(out)-ensurepip=@<:@=upgrade@:>@],
5326 ["install" or "upgrade" using bundled pip])],
5327 [],
5328 [with_ensurepip=upgrade])
5329AS_CASE($with_ensurepip,
5330 [yes|upgrade],[ENSUREPIP=upgrade],
5331 [install],[ENSUREPIP=install],
5332 [no],[ENSUREPIP=no],
5333 [AC_MSG_ERROR([--with-ensurepip=upgrade|install|no])])
5334AC_MSG_RESULT($ENSUREPIP)
5335AC_SUBST(ENSUREPIP)
5336
Victor Stinner35a97c02015-03-08 02:59:09 +01005337# check if the dirent structure of a d_type field and DT_UNKNOWN is defined
5338AC_MSG_CHECKING(if the dirent structure of a d_type field)
5339AC_LINK_IFELSE(
5340[
5341 AC_LANG_SOURCE([[
5342 #include <dirent.h>
5343
5344 int main() {
5345 struct dirent entry;
5346 return entry.d_type == DT_UNKNOWN;
5347 }
5348 ]])
5349],[have_dirent_d_type=yes],[have_dirent_d_type=no])
5350AC_MSG_RESULT($have_dirent_d_type)
5351
5352if test "$have_dirent_d_type" = yes; then
5353 AC_DEFINE(HAVE_DIRENT_D_TYPE, 1,
5354 [Define to 1 if the dirent structure has a d_type field])
5355fi
5356
Victor Stinner9eb57c52015-03-19 22:21:49 +01005357# check if the Linux getrandom() syscall is available
5358AC_MSG_CHECKING(for the Linux getrandom() syscall)
5359AC_LINK_IFELSE(
5360[
5361 AC_LANG_SOURCE([[
Victor Stinner1b80b242016-04-12 22:34:58 +02005362 #include <unistd.h>
Victor Stinner9eb57c52015-03-19 22:21:49 +01005363 #include <sys/syscall.h>
Victor Stinnerdddf4842016-06-07 11:21:42 +02005364 #include <linux/random.h>
Victor Stinner9eb57c52015-03-19 22:21:49 +01005365
5366 int main() {
Victor Stinner9eb57c52015-03-19 22:21:49 +01005367 char buffer[1];
Victor Stinner3abf44e2015-09-18 15:38:37 +02005368 const size_t buflen = sizeof(buffer);
Victor Stinnerdddf4842016-06-07 11:21:42 +02005369 const int flags = GRND_NONBLOCK;
5370 /* ignore the result, Python checks for ENOSYS and EAGAIN at runtime */
Victor Stinner3abf44e2015-09-18 15:38:37 +02005371 (void)syscall(SYS_getrandom, buffer, buflen, flags);
Victor Stinner9eb57c52015-03-19 22:21:49 +01005372 return 0;
5373 }
5374 ]])
5375],[have_getrandom_syscall=yes],[have_getrandom_syscall=no])
5376AC_MSG_RESULT($have_getrandom_syscall)
5377
5378if test "$have_getrandom_syscall" = yes; then
5379 AC_DEFINE(HAVE_GETRANDOM_SYSCALL, 1,
5380 [Define to 1 if the Linux getrandom() syscall is available])
5381fi
5382
Victor Stinner3abf44e2015-09-18 15:38:37 +02005383# check if the getrandom() function is available
5384# the test was written for the Solaris function of <sys/random.h>
5385AC_MSG_CHECKING(for the getrandom() function)
5386AC_LINK_IFELSE(
5387[
5388 AC_LANG_SOURCE([[
5389 #include <sys/random.h>
5390
5391 int main() {
5392 char buffer[1];
5393 const size_t buflen = sizeof(buffer);
5394 const int flags = 0;
5395 /* ignore the result, Python checks for ENOSYS at runtime */
5396 (void)getrandom(buffer, buflen, flags);
5397 return 0;
5398 }
5399 ]])
5400],[have_getrandom=yes],[have_getrandom=no])
5401AC_MSG_RESULT($have_getrandom)
5402
5403if test "$have_getrandom" = yes; then
5404 AC_DEFINE(HAVE_GETRANDOM, 1,
5405 [Define to 1 if the getrandom() function is available])
5406fi
5407
Guido van Rossum627b2d71993-12-24 10:39:16 +00005408# generate output files
doko@python.org87421192013-01-26 11:39:31 +01005409AC_CONFIG_FILES(Makefile.pre Modules/Setup.config Misc/python.pc Misc/python-config.sh)
Antoine Pitrou8e6b4072010-09-10 19:44:44 +00005410AC_CONFIG_FILES([Modules/ld_so_aix], [chmod +x Modules/ld_so_aix])
Martin v. Löwis88afe662002-10-26 13:47:44 +00005411AC_OUTPUT
Neil Schemenauer61c51152001-01-26 16:18:16 +00005412
Christian Heimes75ed8902013-11-20 01:11:18 +01005413echo "creating Modules/Setup" >&AS_MESSAGE_FD
Neil Schemenauer61c51152001-01-26 16:18:16 +00005414if test ! -f Modules/Setup
5415then
5416 cp $srcdir/Modules/Setup.dist Modules/Setup
5417fi
5418
Christian Heimes75ed8902013-11-20 01:11:18 +01005419echo "creating Modules/Setup.local" >&AS_MESSAGE_FD
Neil Schemenauer61c51152001-01-26 16:18:16 +00005420if test ! -f Modules/Setup.local
5421then
5422 echo "# Edit this file for local setup changes" >Modules/Setup.local
5423fi
5424
Christian Heimes75ed8902013-11-20 01:11:18 +01005425echo "creating Makefile" >&AS_MESSAGE_FD
Neil Schemenauer61c51152001-01-26 16:18:16 +00005426$SHELL $srcdir/Modules/makesetup -c $srcdir/Modules/config.c.in \
5427 -s Modules Modules/Setup.config \
Neil Schemenauerf8b71c52001-04-21 17:41:16 +00005428 Modules/Setup.local Modules/Setup
Neil Schemenauer66252162001-02-19 04:47:42 +00005429mv config.c Modules
Brett Cannon63d98bc2016-09-06 17:12:40 -07005430
5431if test "$Py_OPT" = 'false' -a "$Py_DEBUG" != 'true'; then
5432 echo "" >&AS_MESSAGE_FD
5433 echo "" >&AS_MESSAGE_FD
Christian Heimes938da642016-09-24 12:34:25 +02005434 echo "If you want a release build with all optimizations active (LTO, PGO, etc)," >&AS_MESSAGE_FD
Gregory P. Smith ext:(%20%5BGoogle%20Inc.%5D)1016b2f2016-11-20 21:07:42 +00005435 echo "please run ./configure --enable-optimizations" >&AS_MESSAGE_FD
Brett Cannon63d98bc2016-09-06 17:12:40 -07005436 echo "" >&AS_MESSAGE_FD
5437 echo "" >&AS_MESSAGE_FD
5438fi
5439