blob: 1f5a008388a1e3f5b02fd181ecc40863ef6a0636 [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)
Pablo Galindod4fe0982020-05-19 03:33:01 +01006m4_define(PYTHON_VERSION, 3.10)
Martin v. Löwis88afe662002-10-26 13:47:44 +00007
Eitan Adler24f68462018-09-14 15:55:20 -07008AC_PREREQ([2.69])
Alexandre Vassalottib89910f2009-07-18 00:33:23 +00009
Eitan Adler24f68462018-09-14 15:55:20 -070010AC_INIT([python],[PYTHON_VERSION],[https://bugs.python.org/])
Benjamin Peterson8c6f88e2011-05-31 20:52:17 -050011
Christian Heimesff5be6e2018-01-20 13:19:21 +010012AC_CONFIG_MACRO_DIR(m4)
13
Trent Nelson4d4ec652012-10-16 08:51:24 -040014AC_SUBST(BASECPPFLAGS)
Martin Panterc5ee3ca2016-09-12 01:32:03 +000015if test "$srcdir" != . -a "$srcdir" != "$(pwd)"; then
Trent Nelson4d4ec652012-10-16 08:51:24 -040016 # If we're building out-of-tree, we need to make sure the following
17 # resources get picked up before their $srcdir counterparts.
18 # Objects/ -> typeslots.inc
Lysandros Nikolaou314858e2020-06-20 21:07:25 +030019 # Include/ -> Python-ast.h
Trent Nelson4d4ec652012-10-16 08:51:24 -040020 # Python/ -> importlib.h
21 # (A side effect of this is that these resources will automatically be
22 # regenerated when building out-of-tree, regardless of whether or not
23 # the $srcdir counterpart is up-to-date. This is an acceptable trade
24 # off.)
25 BASECPPFLAGS="-IObjects -IInclude -IPython"
26else
27 BASECPPFLAGS=""
28fi
29
Ned Deily5c4b0d02017-03-04 00:19:55 -050030AC_SUBST(GITVERSION)
31AC_SUBST(GITTAG)
32AC_SUBST(GITBRANCH)
Benjamin Peterson8c6f88e2011-05-31 20:52:17 -050033
Victor Stinner5facdbb2017-05-02 21:42:48 +020034if test -e $srcdir/.git
Benjamin Peterson8c6f88e2011-05-31 20:52:17 -050035then
Ned Deily5c4b0d02017-03-04 00:19:55 -050036AC_CHECK_PROG(HAS_GIT, git, found, not-found)
Benjamin Peterson8c6f88e2011-05-31 20:52:17 -050037else
Ned Deily5c4b0d02017-03-04 00:19:55 -050038HAS_GIT=no-repository
Benjamin Peterson8c6f88e2011-05-31 20:52:17 -050039fi
Ned Deily5c4b0d02017-03-04 00:19:55 -050040if test $HAS_GIT = found
Benjamin Peterson8c6f88e2011-05-31 20:52:17 -050041then
Xiang Zhang4c855572018-08-20 22:36:19 +080042 GITVERSION="git --git-dir \$(srcdir)/.git rev-parse --short HEAD"
43 GITTAG="git --git-dir \$(srcdir)/.git describe --all --always --dirty"
44 GITBRANCH="git --git-dir \$(srcdir)/.git name-rev --name-only HEAD"
Benjamin Peterson8c6f88e2011-05-31 20:52:17 -050045else
Ned Deily5c4b0d02017-03-04 00:19:55 -050046 GITVERSION=""
47 GITTAG=""
48 GITBRANCH=""
Benjamin Peterson8c6f88e2011-05-31 20:52:17 -050049fi
50
Martin v. Löwis88afe662002-10-26 13:47:44 +000051AC_CONFIG_SRCDIR([Include/object.h])
Martin v. Löwis4f1cd8b2001-07-26 13:41:06 +000052AC_CONFIG_HEADER(pyconfig.h)
Guido van Rossum627b2d71993-12-24 10:39:16 +000053
Matthias Kloseca2f6ec2012-03-15 21:30:11 +010054AC_CANONICAL_HOST
doko@python.orga10e4a92013-01-25 18:45:12 +010055AC_SUBST(build)
56AC_SUBST(host)
Matthias Kloseca2f6ec2012-03-15 21:30:11 +010057
Ned Deilyfcbc2462014-08-22 13:32:49 -070058# pybuilddir.txt will be created by --generate-posix-vars in the Makefile
59rm -f pybuilddir.txt
60
Victor Stinnera5c62a82017-05-03 18:21:48 +020061AC_CHECK_PROGS(PYTHON_FOR_REGEN, python$PACKAGE_VERSION python3 python, python3)
62AC_SUBST(PYTHON_FOR_REGEN)
Xavier de Gayefd0d5932016-07-26 12:48:08 +020063
doko@ubuntu.com1abe1c52012-06-30 20:42:45 +020064if test "$cross_compiling" = yes; then
65 AC_MSG_CHECKING([for python interpreter for cross build])
66 if test -z "$PYTHON_FOR_BUILD"; then
67 for interp in python$PACKAGE_VERSION python3 python; do
68 which $interp >/dev/null 2>&1 || continue
Xavier de Gaye4afd1432016-07-07 18:00:22 +020069 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 +020070 break
71 fi
72 interp=
73 done
74 if test x$interp = x; then
75 AC_MSG_ERROR([python$PACKAGE_VERSION interpreter not found])
76 fi
77 AC_MSG_RESULT($interp)
Xavier de Gaye92dec542016-09-11 22:22:24 +020078 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 +020079 fi
Christian Heimes954ac032012-12-12 13:10:21 +010080elif test "$cross_compiling" = maybe; then
81 AC_MSG_ERROR([Cross compiling required --host=HOST-TUPLE and --build=ARCH])
doko@ubuntu.com1abe1c52012-06-30 20:42:45 +020082else
83 PYTHON_FOR_BUILD='./$(BUILDPYTHON) -E'
84fi
85AC_SUBST(PYTHON_FOR_BUILD)
86
Benjamin Petersond23f8222009-04-05 19:13:16 +000087dnl Ensure that if prefix is specified, it does not end in a slash. If
88dnl it does, we get path names containing '//' which is both ugly and
89dnl can cause trouble.
90
91dnl Last slash shouldn't be stripped if prefix=/
92if test "$prefix" != "/"; then
93 prefix=`echo "$prefix" | sed -e 's/\/$//g'`
Victor Stinner1b80b242016-04-12 22:34:58 +020094fi
Benjamin Petersond23f8222009-04-05 19:13:16 +000095
Martin v. Löwis8316feb2003-06-14 07:48:07 +000096dnl This is for stuff that absolutely must end up in pyconfig.h.
97dnl Please use pyport.h instead, if possible.
Martin v. Löwisbddf5a52002-11-11 13:37:28 +000098AH_TOP([
99#ifndef Py_PYCONFIG_H
100#define Py_PYCONFIG_H
101])
Martin v. Löwis11437992002-04-12 09:54:03 +0000102AH_BOTTOM([
Martin v. Löwis11437992002-04-12 09:54:03 +0000103/* Define the macros needed if on a UnixWare 7.x system. */
104#if defined(__USLC__) && defined(__SCO_VERSION__)
105#define STRICT_SYSV_CURSES /* Don't use ncurses extensions */
106#endif
Martin v. Löwisbddf5a52002-11-11 13:37:28 +0000107
108#endif /*Py_PYCONFIG_H*/
Martin v. Löwis11437992002-04-12 09:54:03 +0000109])
110
Martin v. Löwis8316feb2003-06-14 07:48:07 +0000111# We don't use PACKAGE_ variables, and they cause conflicts
112# with other autoconf-based packages that include Python.h
113grep -v 'define PACKAGE_' <confdefs.h >confdefs.h.new
114rm confdefs.h
115mv confdefs.h.new confdefs.h
116
Guido van Rossum642b6781997-07-19 19:35:41 +0000117AC_SUBST(VERSION)
Martin v. Löwis88afe662002-10-26 13:47:44 +0000118VERSION=PYTHON_VERSION
Guido van Rossum642b6781997-07-19 19:35:41 +0000119
Georg Brandlde7d8342010-09-03 22:19:07 +0000120# Version number of Python's own shared library file.
Martin v. Löwis1142de32002-03-29 16:28:31 +0000121AC_SUBST(SOVERSION)
122SOVERSION=1.0
123
Martin v. Löwis6f18a3c2002-07-20 08:51:52 +0000124# The later defininition of _XOPEN_SOURCE disables certain features
125# on Linux, so we need _GNU_SOURCE to re-enable them (makedev, tm_zone).
126AC_DEFINE(_GNU_SOURCE, 1, [Define on Linux to activate all library features])
127
Martin v. Löwisbcd93962003-05-03 10:32:18 +0000128# The later defininition of _XOPEN_SOURCE and _POSIX_C_SOURCE disables
129# certain features on NetBSD, so we need _NETBSD_SOURCE to re-enable
130# them.
131AC_DEFINE(_NETBSD_SOURCE, 1, [Define on NetBSD to activate all library features])
132
Andrew MacIntyreabccf412003-07-02 13:53:25 +0000133# The later defininition of _XOPEN_SOURCE and _POSIX_C_SOURCE disables
134# certain features on FreeBSD, so we need __BSD_VISIBLE to re-enable
135# them.
136AC_DEFINE(__BSD_VISIBLE, 1, [Define on FreeBSD to activate all library features])
137
Martin v. Löwisd6320502004-08-12 13:45:08 +0000138# The later defininition of _XOPEN_SOURCE and _POSIX_C_SOURCE disables
Georg Brandlfcaf9102008-07-16 02:17:56 +0000139# certain features on Mac OS X, so we need _DARWIN_C_SOURCE to re-enable
140# them.
141AC_DEFINE(_DARWIN_C_SOURCE, 1, [Define on Darwin to activate all library features])
142
143
Martin v. Löwise981a4e2002-11-11 13:26:51 +0000144define_xopen_source=yes
Martin v. Löwis6f18a3c2002-07-20 08:51:52 +0000145
Neil Schemenauer4edbc2a2001-03-22 00:34:03 +0000146# Arguments passed to configure.
147AC_SUBST(CONFIG_ARGS)
148CONFIG_ARGS="$ac_configure_args"
149
Ronald Oussoren8af24c12010-02-07 12:03:42 +0000150AC_MSG_CHECKING([for --enable-universalsdk])
Thomas Wouters477c8d52006-05-27 19:21:47 +0000151AC_ARG_ENABLE(universalsdk,
Anthony Shaw2de064e2020-01-14 17:40:10 +1100152 AS_HELP_STRING([--enable-universalsdk@<:@=SDKDIR@:>@],
153 [create a universal binary build.
154 SDKDIR specifies which macOS SDK should be used to perform the build,
155 see Mac/README.rst. (default is no)]),
Thomas Wouters477c8d52006-05-27 19:21:47 +0000156[
157 case $enableval in
158 yes)
Eitan Adlerb5c246f2018-06-02 07:16:19 -0700159 # Locate the best usable SDK, see Mac/README for more
Ned Deilycbfb9a52012-06-23 16:02:19 -0700160 # information
161 enableval="`/usr/bin/xcodebuild -version -sdk macosx Path 2>/dev/null`"
Ned Deily87adb6e2013-10-18 21:09:56 -0700162 if ! ( echo $enableval | grep -E '\.sdk' 1>/dev/null )
Ronald Oussoren8af24c12010-02-07 12:03:42 +0000163 then
Ned Deilycbfb9a52012-06-23 16:02:19 -0700164 enableval=/Developer/SDKs/MacOSX10.4u.sdk
165 if test ! -d "${enableval}"
166 then
167 enableval=/
168 fi
Ronald Oussoren8af24c12010-02-07 12:03:42 +0000169 fi
Thomas Wouters477c8d52006-05-27 19:21:47 +0000170 ;;
171 esac
172 case $enableval in
173 no)
174 UNIVERSALSDK=
175 enable_universalsdk=
176 ;;
177 *)
178 UNIVERSALSDK=$enableval
Ronald Oussoren8af24c12010-02-07 12:03:42 +0000179 if test ! -d "${UNIVERSALSDK}"
180 then
181 AC_MSG_ERROR([--enable-universalsdk specifies non-existing SDK: ${UNIVERSALSDK}])
182 fi
Thomas Wouters477c8d52006-05-27 19:21:47 +0000183 ;;
184 esac
Victor Stinner1b80b242016-04-12 22:34:58 +0200185
Thomas Wouters477c8d52006-05-27 19:21:47 +0000186],[
187 UNIVERSALSDK=
188 enable_universalsdk=
189])
Ronald Oussoren8af24c12010-02-07 12:03:42 +0000190if test -n "${UNIVERSALSDK}"
191then
192 AC_MSG_RESULT(${UNIVERSALSDK})
193else
194 AC_MSG_RESULT(no)
195fi
Thomas Wouters477c8d52006-05-27 19:21:47 +0000196AC_SUBST(UNIVERSALSDK)
197
Benjamin Peterson6794aa32008-07-16 20:33:37 +0000198AC_SUBST(ARCH_RUN_32BIT)
Ned Deily87adb6e2013-10-18 21:09:56 -0700199ARCH_RUN_32BIT=""
Benjamin Peterson6794aa32008-07-16 20:33:37 +0000200
Ned Deilycbfb9a52012-06-23 16:02:19 -0700201# For backward compatibility reasons we prefer to select '32-bit' if available,
202# otherwise use 'intel'
Georg Brandlfcaf9102008-07-16 02:17:56 +0000203UNIVERSAL_ARCHS="32-bit"
Ned Deilycbfb9a52012-06-23 16:02:19 -0700204if test "`uname -s`" = "Darwin"
205then
206 if test -n "${UNIVERSALSDK}"
207 then
Ned Deily87adb6e2013-10-18 21:09:56 -0700208 if test -z "`/usr/bin/file -L "${UNIVERSALSDK}/usr/lib/libSystem.dylib" | grep ppc`"
Ned Deilycbfb9a52012-06-23 16:02:19 -0700209 then
210 UNIVERSAL_ARCHS="intel"
211 fi
212 fi
213fi
214
Ronald Oussoren6f6c5622009-12-24 14:03:19 +0000215AC_SUBST(LIPO_32BIT_FLAGS)
Georg Brandlfcaf9102008-07-16 02:17:56 +0000216AC_MSG_CHECKING(for --with-universal-archs)
217AC_ARG_WITH(universal-archs,
Anthony Shaw2de064e2020-01-14 17:40:10 +1100218 AS_HELP_STRING([--with-universal-archs=ARCH],
219 [specify the kind of universal binary that should be created. this option is
220 only valid when --enable-universalsdk is set; options are:
Ronald Oussoren41761932020-11-08 10:05:27 +0100221 ("universal2", "32-bit", "64-bit", "3-way", "intel", "intel-32", "intel-64", or "all")
Anthony Shaw2de064e2020-01-14 17:40:10 +1100222 see Mac/README.rst]),
Georg Brandlfcaf9102008-07-16 02:17:56 +0000223[
Georg Brandlfcaf9102008-07-16 02:17:56 +0000224 UNIVERSAL_ARCHS="$withval"
225],
Ned Deily87adb6e2013-10-18 21:09:56 -0700226[])
227if test -n "${UNIVERSALSDK}"
228then
229 AC_MSG_RESULT(${UNIVERSAL_ARCHS})
230else
231 AC_MSG_RESULT(no)
232fi
Georg Brandlfcaf9102008-07-16 02:17:56 +0000233
Christian Heimes81ee3ef2008-05-04 22:42:01 +0000234AC_ARG_WITH(framework-name,
Matthias Klose2b8733f2010-04-25 18:34:36 +0000235 AS_HELP_STRING([--with-framework-name=FRAMEWORK],
Anthony Shaw2de064e2020-01-14 17:40:10 +1100236 [specify the name for the python framework on macOS
237 only valid when --enable-framework is set. see Mac/README.rst
238 (default is 'Python')]),
Christian Heimes81ee3ef2008-05-04 22:42:01 +0000239[
240 PYTHONFRAMEWORK=${withval}
241 PYTHONFRAMEWORKDIR=${withval}.framework
242 PYTHONFRAMEWORKIDENTIFIER=org.python.`echo $withval | tr '[A-Z]' '[a-z]'`
243 ],[
244 PYTHONFRAMEWORK=Python
245 PYTHONFRAMEWORKDIR=Python.framework
246 PYTHONFRAMEWORKIDENTIFIER=org.python.python
247])
Martin v. Löwis3e2c6322002-10-29 10:07:43 +0000248dnl quadrigraphs "@<:@" and "@:>@" produce "[" and "]" in the output
Jack Jansenb6e9cad2001-08-15 01:26:28 +0000249AC_ARG_ENABLE(framework,
Anthony Shaw2de064e2020-01-14 17:40:10 +1100250 AS_HELP_STRING([--enable-framework@<:@=INSTALLDIR@:>@],
251 [create a Python.framework rather than a traditional Unix install.
252 optional INSTALLDIR specifies the installation path. see Mac/README.rst
253 (default is no)]),
Martin v. Löwis3e2c6322002-10-29 10:07:43 +0000254[
Jack Jansenb6e9cad2001-08-15 01:26:28 +0000255 case $enableval in
Victor Stinner1b80b242016-04-12 22:34:58 +0200256 yes)
Jack Jansenb6e9cad2001-08-15 01:26:28 +0000257 enableval=/Library/Frameworks
Jack Jansen127e56e2001-09-11 14:41:54 +0000258 esac
259 case $enableval in
260 no)
261 PYTHONFRAMEWORK=
262 PYTHONFRAMEWORKDIR=no-framework
263 PYTHONFRAMEWORKPREFIX=
264 PYTHONFRAMEWORKINSTALLDIR=
Thomas Wouters477c8d52006-05-27 19:21:47 +0000265 FRAMEWORKINSTALLFIRST=
266 FRAMEWORKINSTALLLAST=
Thomas Wouters73e5a5b2006-06-08 15:35:45 +0000267 FRAMEWORKALTINSTALLFIRST=
268 FRAMEWORKALTINSTALLLAST=
Ned Deilyb8f944f2013-11-21 22:42:25 -0800269 FRAMEWORKPYTHONW=
Thomas Wouters73e5a5b2006-06-08 15:35:45 +0000270 if test "x${prefix}" = "xNONE"; then
271 FRAMEWORKUNIXTOOLSPREFIX="${ac_default_prefix}"
272 else
273 FRAMEWORKUNIXTOOLSPREFIX="${prefix}"
274 fi
Jack Jansen127e56e2001-09-11 14:41:54 +0000275 enable_framework=
Jack Jansenb6e9cad2001-08-15 01:26:28 +0000276 ;;
277 *)
Ronald Oussoren86b33c82010-04-30 11:41:56 +0000278 PYTHONFRAMEWORKPREFIX="${enableval}"
Jack Jansen127e56e2001-09-11 14:41:54 +0000279 PYTHONFRAMEWORKINSTALLDIR=$PYTHONFRAMEWORKPREFIX/$PYTHONFRAMEWORKDIR
Thomas Wouters477c8d52006-05-27 19:21:47 +0000280 FRAMEWORKINSTALLFIRST="frameworkinstallstructure"
Ronald Oussorenf6ccbf62009-06-02 10:55:56 +0000281 FRAMEWORKALTINSTALLFIRST="frameworkinstallstructure "
Ronald Oussoren6f6c5622009-12-24 14:03:19 +0000282 FRAMEWORKINSTALLLAST="frameworkinstallmaclib frameworkinstallapps frameworkinstallunixtools"
283 FRAMEWORKALTINSTALLLAST="frameworkinstallmaclib frameworkinstallapps frameworkaltinstallunixtools"
Ned Deilyb8f944f2013-11-21 22:42:25 -0800284 FRAMEWORKPYTHONW="frameworkpythonw"
Ronald Oussoren86b33c82010-04-30 11:41:56 +0000285 FRAMEWORKINSTALLAPPSPREFIX="/Applications"
Georg Brandlfcaf9102008-07-16 02:17:56 +0000286
Thomas Wouters73e5a5b2006-06-08 15:35:45 +0000287 if test "x${prefix}" = "xNONE" ; then
288 FRAMEWORKUNIXTOOLSPREFIX="${ac_default_prefix}"
Ronald Oussoren86b33c82010-04-30 11:41:56 +0000289
Thomas Wouters73e5a5b2006-06-08 15:35:45 +0000290 else
291 FRAMEWORKUNIXTOOLSPREFIX="${prefix}"
292 fi
Ronald Oussoren86b33c82010-04-30 11:41:56 +0000293
294 case "${enableval}" in
295 /System*)
296 FRAMEWORKINSTALLAPPSPREFIX="/Applications"
297 if test "${prefix}" = "NONE" ; then
298 # See below
299 FRAMEWORKUNIXTOOLSPREFIX="/usr"
300 fi
301 ;;
302
303 /Library*)
304 FRAMEWORKINSTALLAPPSPREFIX="/Applications"
305 ;;
306
307 */Library/Frameworks)
308 MDIR="`dirname "${enableval}"`"
309 MDIR="`dirname "${MDIR}"`"
310 FRAMEWORKINSTALLAPPSPREFIX="${MDIR}/Applications"
311
312 if test "${prefix}" = "NONE"; then
Victor Stinner1b80b242016-04-12 22:34:58 +0200313 # User hasn't specified the
Ronald Oussoren86b33c82010-04-30 11:41:56 +0000314 # --prefix option, but wants to install
315 # the framework in a non-default location,
316 # ensure that the compatibility links get
317 # installed relative to that prefix as well
318 # instead of in /usr/local.
319 FRAMEWORKUNIXTOOLSPREFIX="${MDIR}"
320 fi
321 ;;
322
323 *)
324 FRAMEWORKINSTALLAPPSPREFIX="/Applications"
325 ;;
326 esac
327
Jack Jansen127e56e2001-09-11 14:41:54 +0000328 prefix=$PYTHONFRAMEWORKINSTALLDIR/Versions/$VERSION
Thomas Wouters477c8d52006-05-27 19:21:47 +0000329
Christian Heimes81ee3ef2008-05-04 22:42:01 +0000330 # Add files for Mac specific code to the list of output
Thomas Wouters477c8d52006-05-27 19:21:47 +0000331 # files:
Thomas Wouters73e5a5b2006-06-08 15:35:45 +0000332 AC_CONFIG_FILES(Mac/Makefile)
333 AC_CONFIG_FILES(Mac/PythonLauncher/Makefile)
Christian Heimes81ee3ef2008-05-04 22:42:01 +0000334 AC_CONFIG_FILES(Mac/Resources/framework/Info.plist)
335 AC_CONFIG_FILES(Mac/Resources/app/Info.plist)
Jack Jansenb6e9cad2001-08-15 01:26:28 +0000336 esac
Jack Jansenb6e9cad2001-08-15 01:26:28 +0000337 ],[
338 PYTHONFRAMEWORK=
Jack Jansen127e56e2001-09-11 14:41:54 +0000339 PYTHONFRAMEWORKDIR=no-framework
Jack Jansenb6e9cad2001-08-15 01:26:28 +0000340 PYTHONFRAMEWORKPREFIX=
341 PYTHONFRAMEWORKINSTALLDIR=
Thomas Wouters477c8d52006-05-27 19:21:47 +0000342 FRAMEWORKINSTALLFIRST=
343 FRAMEWORKINSTALLLAST=
Thomas Wouters73e5a5b2006-06-08 15:35:45 +0000344 FRAMEWORKALTINSTALLFIRST=
345 FRAMEWORKALTINSTALLLAST=
Ned Deilyb8f944f2013-11-21 22:42:25 -0800346 FRAMEWORKPYTHONW=
Thomas Wouters73e5a5b2006-06-08 15:35:45 +0000347 if test "x${prefix}" = "xNONE" ; then
348 FRAMEWORKUNIXTOOLSPREFIX="${ac_default_prefix}"
349 else
350 FRAMEWORKUNIXTOOLSPREFIX="${prefix}"
351 fi
Jack Jansenb6e9cad2001-08-15 01:26:28 +0000352 enable_framework=
Georg Brandlfcaf9102008-07-16 02:17:56 +0000353
Jack Jansenb6e9cad2001-08-15 01:26:28 +0000354])
355AC_SUBST(PYTHONFRAMEWORK)
Christian Heimes81ee3ef2008-05-04 22:42:01 +0000356AC_SUBST(PYTHONFRAMEWORKIDENTIFIER)
Jack Jansenb6e9cad2001-08-15 01:26:28 +0000357AC_SUBST(PYTHONFRAMEWORKDIR)
358AC_SUBST(PYTHONFRAMEWORKPREFIX)
359AC_SUBST(PYTHONFRAMEWORKINSTALLDIR)
Thomas Wouters477c8d52006-05-27 19:21:47 +0000360AC_SUBST(FRAMEWORKINSTALLFIRST)
361AC_SUBST(FRAMEWORKINSTALLLAST)
Thomas Wouters73e5a5b2006-06-08 15:35:45 +0000362AC_SUBST(FRAMEWORKALTINSTALLFIRST)
363AC_SUBST(FRAMEWORKALTINSTALLLAST)
Ned Deilyb8f944f2013-11-21 22:42:25 -0800364AC_SUBST(FRAMEWORKPYTHONW)
Thomas Wouters73e5a5b2006-06-08 15:35:45 +0000365AC_SUBST(FRAMEWORKUNIXTOOLSPREFIX)
Ronald Oussoren86b33c82010-04-30 11:41:56 +0000366AC_SUBST(FRAMEWORKINSTALLAPPSPREFIX)
Guido van Rossum4b6b5791996-09-09 20:09:34 +0000367
INADA Naoki6b42eb12017-06-29 15:31:38 +0900368AC_DEFINE_UNQUOTED(_PYTHONFRAMEWORK, "${PYTHONFRAMEWORK}", [framework name])
INADA Naokia8f8d5b2017-06-29 00:31:53 +0900369
Jack Jansenb6e9cad2001-08-15 01:26:28 +0000370##AC_ARG_WITH(dyld,
Matthias Klose2b8733f2010-04-25 18:34:36 +0000371## AS_HELP_STRING([--with-dyld],
Anthony Shaw2de064e2020-01-14 17:40:10 +1100372## [use (OpenStep|Rhapsody) dynamic linker]))
Jack Jansenb6e9cad2001-08-15 01:26:28 +0000373##
Guido van Rossumb418f891996-07-30 18:06:02 +0000374# Set name for machine-dependent library files
doko@python.orgeab42bf2013-01-26 18:57:19 +0100375AC_ARG_VAR([MACHDEP], [name for machine-dependent library files])
Guido van Rossumb418f891996-07-30 18:06:02 +0000376AC_MSG_CHECKING(MACHDEP)
377if test -z "$MACHDEP"
378then
Matthias Klosedf2aecb2012-03-15 22:19:28 +0100379 # avoid using uname for cross builds
380 if test "$cross_compiling" = yes; then
doko@python.org44bbbda2013-01-25 14:44:00 +0100381 # ac_sys_system and ac_sys_release are used for setting
382 # a lot of different things including 'define_xopen_source'
383 # in the case statement below.
Matthias Klosedf2aecb2012-03-15 22:19:28 +0100384 case "$host" in
Xavier de Gaye2a352b62017-01-04 21:51:16 +0100385 *-*-linux-android*)
386 ac_sys_system=Linux-android
387 ;;
Matthias Klosedf2aecb2012-03-15 22:19:28 +0100388 *-*-linux*)
389 ac_sys_system=Linux
390 ;;
391 *-*-cygwin*)
392 ac_sys_system=Cygwin
393 ;;
pxinwr32f5fdd2019-02-27 19:09:28 +0800394 *-*-vxworks*)
395 ac_sys_system=VxWorks
396 ;;
Matthias Klosedf2aecb2012-03-15 22:19:28 +0100397 *)
398 # for now, limit cross builds to known configurations
399 MACHDEP="unknown"
400 AC_MSG_ERROR([cross build not supported for $host])
401 esac
402 ac_sys_release=
403 else
Guido van Rossum4b6b5791996-09-09 20:09:34 +0000404 ac_sys_system=`uname -s`
Benjamin Peterson8719ad52009-09-11 22:24:02 +0000405 if test "$ac_sys_system" = "AIX" \
Martin v. Löwis21ee4092002-09-30 16:19:48 +0000406 -o "$ac_sys_system" = "UnixWare" -o "$ac_sys_system" = "OpenUNIX"; then
Guido van Rossum4b6b5791996-09-09 20:09:34 +0000407 ac_sys_release=`uname -v`
Guido van Rossumb418f891996-07-30 18:06:02 +0000408 else
Guido van Rossum4b6b5791996-09-09 20:09:34 +0000409 ac_sys_release=`uname -r`
Guido van Rossumb418f891996-07-30 18:06:02 +0000410 fi
Matthias Klosedf2aecb2012-03-15 22:19:28 +0100411 fi
412 ac_md_system=`echo $ac_sys_system |
413 tr -d '[/ ]' | tr '[[A-Z]]' '[[a-z]]'`
414 ac_md_release=`echo $ac_sys_release |
415 tr -d '[/ ]' | sed 's/^[[A-Z]]\.//' | sed 's/\..*//'`
416 MACHDEP="$ac_md_system$ac_md_release"
Guido van Rossum4b6b5791996-09-09 20:09:34 +0000417
Matthias Klosedf2aecb2012-03-15 22:19:28 +0100418 case $MACHDEP in
Michael Felt9d949f72019-04-12 16:15:32 +0200419 aix*) MACHDEP="aix";;
Victor Stinner7209ff22011-08-21 00:00:16 +0200420 linux*) MACHDEP="linux";;
Andrew M. Kuchling5a3e4cb2001-07-20 19:29:04 +0000421 cygwin*) MACHDEP="cygwin";;
Jack Jansen8a97f4a2001-12-05 23:27:32 +0000422 darwin*) MACHDEP="darwin";;
Guido van Rossumb97ef171997-09-28 05:44:03 +0000423 '') MACHDEP="unknown";;
Matthias Klosedf2aecb2012-03-15 22:19:28 +0100424 esac
Guido van Rossumb418f891996-07-30 18:06:02 +0000425fi
E. M. Brayb1fc4172019-05-24 18:39:39 +0200426AC_MSG_RESULT("$MACHDEP")
doko@ubuntu.com1abe1c52012-06-30 20:42:45 +0200427
428AC_SUBST(_PYTHON_HOST_PLATFORM)
429if test "$cross_compiling" = yes; then
430 case "$host" in
431 *-*-linux*)
432 case "$host_cpu" in
433 arm*)
434 _host_cpu=arm
435 ;;
436 *)
437 _host_cpu=$host_cpu
438 esac
439 ;;
440 *-*-cygwin*)
441 _host_cpu=
442 ;;
pxinwr32f5fdd2019-02-27 19:09:28 +0800443 *-*-vxworks*)
444 _host_cpu=$host_cpu
445 ;;
doko@ubuntu.com1abe1c52012-06-30 20:42:45 +0200446 *)
447 # for now, limit cross builds to known configurations
448 MACHDEP="unknown"
449 AC_MSG_ERROR([cross build not supported for $host])
450 esac
451 _PYTHON_HOST_PLATFORM="$MACHDEP${_host_cpu:+-$_host_cpu}"
452fi
doko@ubuntu.comd3899c12015-04-15 20:23:14 +0200453
Martin v. Löwise981a4e2002-11-11 13:26:51 +0000454# Some systems cannot stand _XOPEN_SOURCE being defined at all; they
455# disable features if it is defined, without any means to access these
456# features as extensions. For these systems, we skip the definition of
457# _XOPEN_SOURCE. Before adding a system to the list to gain access to
458# some feature, make sure there is no alternative way to access this
459# feature. Also, when using wildcards, make sure you have verified the
460# need for not defining _XOPEN_SOURCE on all systems matching the
461# wildcard, and that the wildcard does not include future systems
462# (which may remove their limitations).
463dnl quadrigraphs "@<:@" and "@:>@" produce "[" and "]" in the output
464case $ac_sys_system/$ac_sys_release in
465 # On OpenBSD, select(2) is not available if _XOPEN_SOURCE is defined,
466 # even though select is a POSIX function. Reported by J. Ribbens.
Martin v. Löwis76bafc62003-10-03 13:47:44 +0000467 # Reconfirmed for OpenBSD 3.3 by Zachary Hamm, for 3.4 by Jason Ish.
Martin v. Löwis19ed3c82010-02-15 21:45:06 +0000468 # In addition, Stefan Krah confirms that issue #1244610 exists through
469 # OpenBSD 4.6, but is fixed in 4.7.
Victor Stinner1b80b242016-04-12 22:34:58 +0200470 OpenBSD/2.* | OpenBSD/3.* | OpenBSD/4.@<:@0123456@:>@)
Christian Heimes5b5e81c2007-12-31 16:14:33 +0000471 define_xopen_source=no
472 # OpenBSD undoes our definition of __BSD_VISIBLE if _XOPEN_SOURCE is
473 # also defined. This can be overridden by defining _BSD_SOURCE
474 # As this has a different meaning on Linux, only define it on OpenBSD
475 AC_DEFINE(_BSD_SOURCE, 1, [Define on OpenBSD to activate all library features])
476 ;;
Charles-François Natali54ef40b2011-07-22 23:52:02 +0200477 OpenBSD/*)
Martin v. Löwis7671efc2010-02-15 08:35:16 +0000478 # OpenBSD undoes our definition of __BSD_VISIBLE if _XOPEN_SOURCE is
479 # also defined. This can be overridden by defining _BSD_SOURCE
480 # As this has a different meaning on Linux, only define it on OpenBSD
481 AC_DEFINE(_BSD_SOURCE, 1, [Define on OpenBSD to activate all library features])
482 ;;
Thomas Wouters89f507f2006-12-13 04:49:30 +0000483 # Defining _XOPEN_SOURCE on NetBSD version prior to the introduction of
484 # _NETBSD_SOURCE disables certain features (eg. setgroups). Reported by
485 # Marc Recht
Benjamin Petersonf608c612008-11-16 18:33:53 +0000486 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 +0000487 define_xopen_source=no;;
Martin v. Löwis1a415762010-05-28 15:44:20 +0000488 # From the perspective of Solaris, _XOPEN_SOURCE is not so much a
489 # request to enable features supported by the standard as a request
490 # to disable features not supported by the standard. The best way
491 # for Python to use Solaris is simply to leave _XOPEN_SOURCE out
492 # entirely and define __EXTENSIONS__ instead.
493 SunOS/*)
Martin v. Löwisa9d71422003-03-28 18:43:31 +0000494 define_xopen_source=no;;
Martin v. Löwisc2409b42003-05-11 05:53:41 +0000495 # On UnixWare 7, u_long is never defined with _XOPEN_SOURCE,
496 # but used in /usr/include/netinet/tcp.h. Reported by Tim Rice.
Martin v. Löwis253d1f42004-05-07 19:14:14 +0000497 # Reconfirmed for 7.1.4 by Martin v. Loewis.
498 OpenUNIX/8.0.0| UnixWare/7.1.@<:@0-4@:>@)
Martin v. Löwisc2409b42003-05-11 05:53:41 +0000499 define_xopen_source=no;;
500 # On OpenServer 5, u_short is never defined with _XOPEN_SOURCE,
Martin v. Löwis53e73c32003-05-05 05:13:18 +0000501 # but used in struct sockaddr.sa_family. Reported by Tim Rice.
Martin v. Löwisc2409b42003-05-11 05:53:41 +0000502 SCO_SV/3.2)
Martin v. Löwis53e73c32003-05-05 05:13:18 +0000503 define_xopen_source=no;;
Victor Stinner1b80b242016-04-12 22:34:58 +0200504 # 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 +0000505 # _XOPEN_EXTENDED_SOURCE is defined. Apparently, this is fixed in 10.3, which
506 # identifies itself as Darwin/7.*
507 # On Mac OS X 10.4, defining _POSIX_C_SOURCE or _XOPEN_SOURCE
508 # disables platform specific features beyond repair.
Victor Stinner1b80b242016-04-12 22:34:58 +0200509 # On Mac OS X 10.3, defining _POSIX_C_SOURCE or _XOPEN_SOURCE
Martin v. Löwisb37509b2008-11-04 20:45:29 +0000510 # has no effect, don't bother defining them
511 Darwin/@<:@6789@:>@.*)
Anthony Baxter6169c6b2003-10-04 07:46:23 +0000512 define_xopen_source=no;;
Ronald Oussoren8ea63532020-06-25 16:55:48 +0200513 Darwin/@<:@[12]@:>@@<:@0-9@:>@.*)
Ronald Oussorenb8f11a62010-03-08 07:02:03 +0000514 define_xopen_source=no;;
Georg Brandlf78e02b2008-06-10 17:40:04 +0000515 # On QNX 6.3.2, defining _XOPEN_SOURCE prevents netdb.h from
516 # defining NI_NUMERICHOST.
517 QNX/6.3.2)
518 define_xopen_source=no
519 ;;
pxinwr32f5fdd2019-02-27 19:09:28 +0800520 # On VxWorks, defining _XOPEN_SOURCE causes compile failures
521 # in network headers still using system V types.
522 VxWorks/*)
523 define_xopen_source=no
524 ;;
Bob Ippolito7026a0a2005-03-28 23:23:47 +0000525
Ian Nortona9edf442020-02-14 03:09:11 +0000526 # On HP-UX, defining _XOPEN_SOURCE to 600 or greater hides
527 # chroot() and other functions
528 hp*|HP*)
529 define_xopen_source=no
530 ;;
531
Martin v. Löwise981a4e2002-11-11 13:26:51 +0000532esac
533
534if test $define_xopen_source = yes
535then
Victor Stinner14d098d2011-09-07 22:29:43 +0200536 # X/Open 7, incorporating POSIX.1-2008
537 AC_DEFINE(_XOPEN_SOURCE, 700,
Martin v. Löwis1a415762010-05-28 15:44:20 +0000538 Define to the level of X/Open that your system supports)
Martin v. Löwis678fc1e2002-11-12 06:04:39 +0000539
540 # On Tru64 Unix 4.0F, defining _XOPEN_SOURCE also requires
541 # definition of _XOPEN_SOURCE_EXTENDED and _POSIX_C_SOURCE, or else
542 # several APIs are not declared. Since this is also needed in some
543 # cases for HP-UX, we define it globally.
Martin v. Löwis1a415762010-05-28 15:44:20 +0000544 AC_DEFINE(_XOPEN_SOURCE_EXTENDED, 1,
545 Define to activate Unix95-and-earlier features)
Martin v. Löwis678fc1e2002-11-12 06:04:39 +0000546
Victor Stinnerd169fdc2011-09-08 00:56:17 +0200547 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 +0000548fi
549
Christian Heimes647cd872013-12-07 23:39:33 +0100550# On HP-UX mbstate_t requires _INCLUDE__STDC_A1_SOURCE
551case $ac_sys_system in
Christian Heimesb02bcae2013-12-08 15:21:08 +0100552 hp*|HP*)
553 define_stdc_a1=yes;;
554 *)
555 define_stdc_a1=no;;
Christian Heimes647cd872013-12-07 23:39:33 +0100556esac
557
Christian Heimesb02bcae2013-12-08 15:21:08 +0100558if test $define_stdc_a1 = yes
559then
560 AC_DEFINE(_INCLUDE__STDC_A1_SOURCE, 1, Define to include mbstate_t for mbrtowc)
561fi
562
Jack Jansen6b08a402004-06-03 12:41:45 +0000563# Record the configure-time value of MACOSX_DEPLOYMENT_TARGET,
564# it may influence the way we can build extensions, so distutils
565# needs to check it
566AC_SUBST(CONFIGURE_MACOSX_DEPLOYMENT_TARGET)
Thomas Wouters477c8d52006-05-27 19:21:47 +0000567AC_SUBST(EXPORT_MACOSX_DEPLOYMENT_TARGET)
Jack Jansen6b08a402004-06-03 12:41:45 +0000568CONFIGURE_MACOSX_DEPLOYMENT_TARGET=
Thomas Wouters477c8d52006-05-27 19:21:47 +0000569EXPORT_MACOSX_DEPLOYMENT_TARGET='#'
Jack Jansen6b08a402004-06-03 12:41:45 +0000570
Guido van Rossum627b2d71993-12-24 10:39:16 +0000571# checks for alternative programs
Skip Montanarodecc6a42003-01-01 20:07:49 +0000572
573# compiler flags are generated in two sets, BASECFLAGS and OPT. OPT is just
574# for debug/optimization stuff. BASECFLAGS is for flags that are required
575# just to get things to compile and link. Users are free to override OPT
576# when running configure or make. The build should not break if they do.
577# BASECFLAGS should generally not be messed with, however.
578
Guido van Rossum03ad99f1995-03-09 14:09:54 +0000579# If the user switches compilers, we can't believe the cache
580if test ! -z "$ac_cv_prog_CC" -a ! -z "$CC" -a "$CC" != "$ac_cv_prog_CC"
581then
Martin v. Löwis3e2c6322002-10-29 10:07:43 +0000582 AC_MSG_ERROR([cached CC is different -- throw away $cache_file
583(it is also a good idea to do 'make clean' before compiling)])
Guido van Rossum03ad99f1995-03-09 14:09:54 +0000584fi
585
Jeffrey Yasskind4fcdb12010-07-09 16:30:58 +0000586# Don't let AC_PROG_CC set the default CFLAGS. It normally sets -g -O2
587# when the compiler supports them, but we don't always want -O2, and
588# we set -g later.
589if test -z "$CFLAGS"; then
590 CFLAGS=
Marc-André Lemburgdf700f02010-04-30 17:29:56 +0000591fi
Ned Deilycbfb9a52012-06-23 16:02:19 -0700592
593if test "$ac_sys_system" = "Darwin"
594then
595 # Compiler selection on MacOSX is more complicated than
Eitan Adlerb5c246f2018-06-02 07:16:19 -0700596 # AC_PROG_CC can handle, see Mac/README for more
Ned Deilycbfb9a52012-06-23 16:02:19 -0700597 # information
598 if test -z "${CC}"
599 then
600 found_gcc=
601 found_clang=
602 as_save_IFS=$IFS; IFS=:
603 for as_dir in $PATH
604 do
605 IFS=$as_save_IFS
Ned Deily14aa00b2017-10-09 13:53:27 -0400606 if test -x "${as_dir}/gcc"; then
Ned Deilycbfb9a52012-06-23 16:02:19 -0700607 if test -z "${found_gcc}"; then
Ned Deily14aa00b2017-10-09 13:53:27 -0400608 found_gcc="${as_dir}/gcc"
Ned Deilycbfb9a52012-06-23 16:02:19 -0700609 fi
610 fi
Ned Deily14aa00b2017-10-09 13:53:27 -0400611 if test -x "${as_dir}/clang"; then
Ned Deilycbfb9a52012-06-23 16:02:19 -0700612 if test -z "${found_clang}"; then
Ned Deily14aa00b2017-10-09 13:53:27 -0400613 found_clang="${as_dir}/clang"
Ned Deilycbfb9a52012-06-23 16:02:19 -0700614 fi
615 fi
616 done
617 IFS=$as_save_IFS
618
619 if test -n "$found_gcc" -a -n "$found_clang"
620 then
621 if test -n "`"$found_gcc" --version | grep llvm-gcc`"
622 then
623 AC_MSG_NOTICE([Detected llvm-gcc, falling back to clang])
624 CC="$found_clang"
625 CXX="$found_clang++"
626 fi
627
628
629 elif test -z "$found_gcc" -a -n "$found_clang"
630 then
631 AC_MSG_NOTICE([No GCC found, use CLANG])
632 CC="$found_clang"
633 CXX="$found_clang++"
634
635 elif test -z "$found_gcc" -a -z "$found_clang"
636 then
637 found_clang=`/usr/bin/xcrun -find clang 2>/dev/null`
638 if test -n "${found_clang}"
639 then
640 AC_MSG_NOTICE([Using clang from Xcode.app])
641 CC="${found_clang}"
642 CXX="`/usr/bin/xcrun -find clang++`"
643
644 # else: use default behaviour
645 fi
646 fi
647 fi
648fi
Jeffrey Yasskind4fcdb12010-07-09 16:30:58 +0000649AC_PROG_CC
doko@ubuntu.comd3899c12015-04-15 20:23:14 +0200650AC_PROG_CPP
651AC_PROG_GREP
Łukasz Langaa785c872016-09-09 17:37:37 -0700652AC_PROG_SED
Martin v. Löwis1d5ecb72001-08-09 10:29:44 +0000653
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000654AC_SUBST(CXX)
655AC_SUBST(MAINCC)
656AC_MSG_CHECKING(for --with-cxx-main=<compiler>)
657AC_ARG_WITH(cxx_main,
Anthony Shaw2de064e2020-01-14 17:40:10 +1100658 AS_HELP_STRING([--with-cxx-main@<:@=COMPILER@:>@],
659 [compile main() and link Python executable with C++ compiler specified in COMPILER (default is $CXX)]),
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000660[
Victor Stinner1b80b242016-04-12 22:34:58 +0200661
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000662 case $withval in
663 no) with_cxx_main=no
664 MAINCC='$(CC)';;
665 yes) with_cxx_main=yes
666 MAINCC='$(CXX)';;
667 *) with_cxx_main=yes
668 MAINCC=$withval
669 if test -z "$CXX"
670 then
671 CXX=$withval
672 fi;;
673 esac], [
674 with_cxx_main=no
675 MAINCC='$(CC)'
676])
677AC_MSG_RESULT($with_cxx_main)
678
679preset_cxx="$CXX"
680if test -z "$CXX"
681then
682 case "$CC" in
doko@ubuntu.com51f65942012-06-30 14:42:46 +0200683 gcc) AC_PATH_TOOL(CXX, [g++], [g++], [notfound]) ;;
684 cc) AC_PATH_TOOL(CXX, [c++], [c++], [notfound]) ;;
685 clang|*/clang) AC_PATH_TOOL(CXX, [clang++], [clang++], [notfound]) ;;
Zachary Ware5af85642015-12-21 12:09:17 -0600686 icc|*/icc) AC_PATH_TOOL(CXX, [icpc], [icpc], [notfound]) ;;
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000687 esac
688 if test "$CXX" = "notfound"
689 then
690 CXX=""
691 fi
692fi
693if test -z "$CXX"
694then
doko@ubuntu.com51f65942012-06-30 14:42:46 +0200695 AC_CHECK_TOOLS(CXX, $CCC c++ g++ gcc CC cxx cc++ cl, notfound)
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000696 if test "$CXX" = "notfound"
697 then
698 CXX=""
699 fi
700fi
701if test "$preset_cxx" != "$CXX"
702then
Christian Heimesfe32aec2013-11-20 01:18:26 +0100703 AC_MSG_NOTICE([
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000704
705 By default, distutils will build C++ extension modules with "$CXX".
706 If this is not intended, then set CXX on the configure command line.
707 ])
708fi
709
710
doko@ubuntu.comd3899c12015-04-15 20:23:14 +0200711MULTIARCH=$($CC --print-multiarch 2>/dev/null)
712AC_SUBST(MULTIARCH)
713
714AC_MSG_CHECKING([for the platform triplet based on compiler characteristics])
715cat >> conftest.c <<EOF
doko@ubuntu.com5cc9c4f2015-04-19 14:44:05 +0200716#undef bfin
717#undef cris
718#undef fr30
doko@ubuntu.comd3899c12015-04-15 20:23:14 +0200719#undef linux
doko@ubuntu.com5cc9c4f2015-04-19 14:44:05 +0200720#undef hppa
721#undef hpux
doko@ubuntu.comd3899c12015-04-15 20:23:14 +0200722#undef i386
doko@ubuntu.com5cc9c4f2015-04-19 14:44:05 +0200723#undef mips
doko@ubuntu.com9abe0492015-04-15 23:31:02 +0200724#undef powerpc
doko@ubuntu.com5cc9c4f2015-04-19 14:44:05 +0200725#undef sparc
doko@ubuntu.comd3899c12015-04-15 20:23:14 +0200726#undef unix
doko@ubuntu.com5c38cb22016-09-01 22:05:20 +0200727#if defined(__ANDROID__)
Xavier de Gaye32cf1ac2016-12-10 17:31:28 +0100728 # Android is not a multiarch system.
doko@ubuntu.com5c38cb22016-09-01 22:05:20 +0200729#elif defined(__linux__)
doko@ubuntu.comd3899c12015-04-15 20:23:14 +0200730# if defined(__x86_64__) && defined(__LP64__)
731 x86_64-linux-gnu
732# elif defined(__x86_64__) && defined(__ILP32__)
733 x86_64-linux-gnux32
734# elif defined(__i386__)
735 i386-linux-gnu
736# elif defined(__aarch64__) && defined(__AARCH64EL__)
737# if defined(__ILP32__)
738 aarch64_ilp32-linux-gnu
739# else
740 aarch64-linux-gnu
741# endif
742# elif defined(__aarch64__) && defined(__AARCH64EB__)
743# if defined(__ILP32__)
744 aarch64_be_ilp32-linux-gnu
745# else
746 aarch64_be-linux-gnu
747# endif
748# elif defined(__alpha__)
749 alpha-linux-gnu
750# elif defined(__ARM_EABI__) && defined(__ARM_PCS_VFP)
751# if defined(__ARMEL__)
752 arm-linux-gnueabihf
753# else
754 armeb-linux-gnueabihf
755# endif
756# elif defined(__ARM_EABI__) && !defined(__ARM_PCS_VFP)
757# if defined(__ARMEL__)
758 arm-linux-gnueabi
759# else
760 armeb-linux-gnueabi
761# endif
762# elif defined(__hppa__)
763 hppa-linux-gnu
764# elif defined(__ia64__)
765 ia64-linux-gnu
766# elif defined(__m68k__) && !defined(__mcoldfire__)
767 m68k-linux-gnu
Matthias Kloseddbe9762018-04-30 19:22:16 +0200768# elif defined(__mips_hard_float) && defined(__mips_isa_rev) && (__mips_isa_rev >=6) && defined(_MIPSEL)
769# if _MIPS_SIM == _ABIO32
770 mipsisa32r6el-linux-gnu
771# elif _MIPS_SIM == _ABIN32
772 mipsisa64r6el-linux-gnuabin32
773# elif _MIPS_SIM == _ABI64
774 mipsisa64r6el-linux-gnuabi64
775# else
776# error unknown platform triplet
777# endif
778# elif defined(__mips_hard_float) && defined(__mips_isa_rev) && (__mips_isa_rev >=6)
779# if _MIPS_SIM == _ABIO32
780 mipsisa32r6-linux-gnu
781# elif _MIPS_SIM == _ABIN32
782 mipsisa64r6-linux-gnuabin32
783# elif _MIPS_SIM == _ABI64
784 mipsisa64r6-linux-gnuabi64
785# else
786# error unknown platform triplet
787# endif
doko@ubuntu.comd3899c12015-04-15 20:23:14 +0200788# elif defined(__mips_hard_float) && defined(_MIPSEL)
789# if _MIPS_SIM == _ABIO32
790 mipsel-linux-gnu
791# elif _MIPS_SIM == _ABIN32
792 mips64el-linux-gnuabin32
793# elif _MIPS_SIM == _ABI64
794 mips64el-linux-gnuabi64
795# else
796# error unknown platform triplet
797# endif
798# elif defined(__mips_hard_float)
799# if _MIPS_SIM == _ABIO32
800 mips-linux-gnu
801# elif _MIPS_SIM == _ABIN32
802 mips64-linux-gnuabin32
803# elif _MIPS_SIM == _ABI64
804 mips64-linux-gnuabi64
805# else
806# error unknown platform triplet
807# endif
808# elif defined(__or1k__)
809 or1k-linux-gnu
810# elif defined(__powerpc__) && defined(__SPE__)
811 powerpc-linux-gnuspe
812# elif defined(__powerpc64__)
813# if defined(__LITTLE_ENDIAN__)
814 powerpc64le-linux-gnu
815# else
816 powerpc64-linux-gnu
817# endif
818# elif defined(__powerpc__)
819 powerpc-linux-gnu
820# elif defined(__s390x__)
821 s390x-linux-gnu
822# elif defined(__s390__)
823 s390-linux-gnu
824# elif defined(__sh__) && defined(__LITTLE_ENDIAN__)
825 sh4-linux-gnu
826# elif defined(__sparc__) && defined(__arch64__)
827 sparc64-linux-gnu
828# elif defined(__sparc__)
829 sparc-linux-gnu
Matthias Kloseddbe9762018-04-30 19:22:16 +0200830# elif defined(__riscv)
831# if __riscv_xlen == 32
832 riscv32-linux-gnu
833# elif __riscv_xlen == 64
834 riscv64-linux-gnu
835# else
836# error unknown platform triplet
837# endif
doko@ubuntu.comd3899c12015-04-15 20:23:14 +0200838# else
839# error unknown platform triplet
840# endif
841#elif defined(__FreeBSD_kernel__)
842# if defined(__LP64__)
843 x86_64-kfreebsd-gnu
844# elif defined(__i386__)
845 i386-kfreebsd-gnu
846# else
847# error unknown platform triplet
848# endif
849#elif defined(__gnu_hurd__)
850 i386-gnu
Ned Deily3b812482015-04-15 17:11:47 -0700851#elif defined(__APPLE__)
852 darwin
pxinwr32f5fdd2019-02-27 19:09:28 +0800853#elif defined(__VXWORKS__)
854 vxworks
doko@ubuntu.comd3899c12015-04-15 20:23:14 +0200855#else
856# error unknown platform triplet
857#endif
858
859EOF
860
Xavier de Gaye3a32bdf2016-07-30 11:28:35 +0200861if $CPP $CPPFLAGS conftest.c >conftest.out 2>/dev/null; then
doko@ubuntu.comd3899c12015-04-15 20:23:14 +0200862 PLATFORM_TRIPLET=`grep -v '^#' conftest.out | grep -v '^ *$' | tr -d ' '`
863 AC_MSG_RESULT([$PLATFORM_TRIPLET])
864else
865 AC_MSG_RESULT([none])
866fi
867rm -f conftest.c conftest.out
868
869if test x$PLATFORM_TRIPLET != x && test x$MULTIARCH != x; then
870 if test x$PLATFORM_TRIPLET != x$MULTIARCH; then
871 AC_MSG_ERROR([internal configure error for the platform triplet, please file a bug report])
872 fi
doko@ubuntu.com75b1cb12016-08-29 20:03:25 +0200873elif test x$PLATFORM_TRIPLET != x && test x$MULTIARCH = x; then
874 MULTIARCH=$PLATFORM_TRIPLET
Victor Stinner1b80b242016-04-12 22:34:58 +0200875fi
doko@ubuntu.comd3899c12015-04-15 20:23:14 +0200876AC_SUBST(PLATFORM_TRIPLET)
doko@ubuntu.com55532312016-06-14 08:55:19 +0200877if test x$MULTIARCH != x; then
878 MULTIARCH_CPPFLAGS="-DMULTIARCH=\\\"$MULTIARCH\\\""
879fi
880AC_SUBST(MULTIARCH_CPPFLAGS)
doko@ubuntu.comd3899c12015-04-15 20:23:14 +0200881
Martin v. Löwis48e14d32011-05-09 07:37:45 +0200882AC_MSG_CHECKING([for -Wl,--no-as-needed])
883save_LDFLAGS="$LDFLAGS"
884LDFLAGS="$LDFLAGS -Wl,--no-as-needed"
885AC_LINK_IFELSE([AC_LANG_PROGRAM([[]], [[]])],
886 [NO_AS_NEEDED="-Wl,--no-as-needed"
887 AC_MSG_RESULT([yes])],
888 [NO_AS_NEEDED=""
889 AC_MSG_RESULT([no])])
890LDFLAGS="$save_LDFLAGS"
891AC_SUBST(NO_AS_NEEDED)
892
893
Martin v. Löwis1d5ecb72001-08-09 10:29:44 +0000894# checks for UNIX variants that set C preprocessor variables
Matthias Kloseaf30c5d2010-04-25 18:43:42 +0000895AC_USE_SYSTEM_EXTENSIONS
Martin v. Löwis1d5ecb72001-08-09 10:29:44 +0000896
Xavier de Gaye95750b12016-07-09 11:05:42 +0200897AC_MSG_CHECKING([for the Android API level])
898cat >> conftest.c <<EOF
899#ifdef __ANDROID__
Xavier de Gaye2a352b62017-01-04 21:51:16 +0100900android_api = __ANDROID_API__
901arm_arch = __ARM_ARCH
Xavier de Gaye95750b12016-07-09 11:05:42 +0200902#else
903#error not Android
904#endif
905EOF
906
907if $CPP $CPPFLAGS conftest.c >conftest.out 2>/dev/null; then
Xavier de Gaye2a352b62017-01-04 21:51:16 +0100908 ANDROID_API_LEVEL=`sed -n -e '/__ANDROID_API__/d' -e 's/^android_api = //p' conftest.out`
909 _arm_arch=`sed -n -e '/__ARM_ARCH/d' -e 's/^arm_arch = //p' conftest.out`
Xavier de Gaye95750b12016-07-09 11:05:42 +0200910 AC_MSG_RESULT([$ANDROID_API_LEVEL])
xdegayec06c22e2017-11-23 11:44:38 +0100911 if test -z "$ANDROID_API_LEVEL"; then
912 echo 'Fatal: you must define __ANDROID_API__'
913 exit 1
914 fi
Xavier de Gaye95750b12016-07-09 11:05:42 +0200915 AC_DEFINE_UNQUOTED(ANDROID_API_LEVEL, $ANDROID_API_LEVEL, [The Android API level.])
Xavier de Gaye2a352b62017-01-04 21:51:16 +0100916
917 AC_MSG_CHECKING([for the Android arm ABI])
918 AC_MSG_RESULT([$_arm_arch])
919 if test "$_arm_arch" = 7; then
920 BASECFLAGS="${BASECFLAGS} -mfloat-abi=softfp -mfpu=vfpv3-d16"
921 LDFLAGS="${LDFLAGS} -march=armv7-a -Wl,--fix-cortex-a8"
922 fi
Xavier de Gaye95750b12016-07-09 11:05:42 +0200923else
924 AC_MSG_RESULT([not Android])
925fi
926rm -f conftest.c conftest.out
927
Martin v. Löwis779ffc02002-12-02 22:17:01 +0000928# Check for unsupported systems
929case $ac_sys_system/$ac_sys_release in
Guido van Rossumcd16bf62007-06-13 18:07:49 +0000930atheos*|Linux*/1*)
Martin v. Löwis779ffc02002-12-02 22:17:01 +0000931 echo This system \($ac_sys_system/$ac_sys_release\) is no longer supported.
932 echo See README for details.
933 exit 1;;
934esac
935
Neil Schemenauer55f0cf32001-01-24 17:24:33 +0000936AC_EXEEXT
Neil Schemenauer3ae1d0a2001-01-27 06:54:42 +0000937AC_MSG_CHECKING(for --with-suffix)
Martin v. Löwis3e2c6322002-10-29 10:07:43 +0000938AC_ARG_WITH(suffix,
Anthony Shaw2de064e2020-01-14 17:40:10 +1100939 AS_HELP_STRING([--with-suffix=SUFFIX], [set executable suffix to SUFFIX (default is '.exe')]),
Martin v. Löwis3e2c6322002-10-29 10:07:43 +0000940[
Neil Schemenauer3ae1d0a2001-01-27 06:54:42 +0000941 case $withval in
942 no) EXEEXT=;;
943 yes) EXEEXT=.exe;;
944 *) EXEEXT=$withval;;
945 esac])
946AC_MSG_RESULT($EXEEXT)
Jack Jansen1999ef42001-12-06 21:47:20 +0000947
Jack Jansen9a66b6d2001-08-08 13:56:14 +0000948# Test whether we're running on a non-case-sensitive system, in which
949# case we give a warning if no ext is given
Jack Jansen1999ef42001-12-06 21:47:20 +0000950AC_SUBST(BUILDEXEEXT)
951AC_MSG_CHECKING(for case-insensitive build directory)
Jack Jansen3c2c4332002-11-06 13:33:32 +0000952if test ! -d CaseSensitiveTestDir; then
953mkdir CaseSensitiveTestDir
954fi
955
956if test -d casesensitivetestdir
Jack Jansen9a66b6d2001-08-08 13:56:14 +0000957then
Jack Jansen1999ef42001-12-06 21:47:20 +0000958 AC_MSG_RESULT(yes)
959 BUILDEXEEXT=.exe
960else
961 AC_MSG_RESULT(no)
Jack Jansendd19cf82001-12-06 22:36:17 +0000962 BUILDEXEEXT=$EXEEXT
Jack Jansen9a66b6d2001-08-08 13:56:14 +0000963fi
Jack Jansen3c2c4332002-11-06 13:33:32 +0000964rmdir CaseSensitiveTestDir
Guido van Rossumfb842551997-08-06 23:42:07 +0000965
Guido van Rossum84561611997-08-21 00:08:11 +0000966case $ac_sys_system in
967hp*|HP*)
968 case $CC in
Guido van Rossumcd5ff9f2000-09-22 16:15:54 +0000969 cc|*/cc) CC="$CC -Ae";;
Guido van Rossum84561611997-08-21 00:08:11 +0000970 esac;;
971esac
972
Neil Schemenauer61c51152001-01-26 16:18:16 +0000973AC_SUBST(LIBRARY)
974AC_MSG_CHECKING(LIBRARY)
975if test -z "$LIBRARY"
976then
Barry Warsawf040d7d2010-10-18 17:09:07 +0000977 LIBRARY='libpython$(VERSION)$(ABIFLAGS).a'
Neil Schemenauer61c51152001-01-26 16:18:16 +0000978fi
979AC_MSG_RESULT($LIBRARY)
980
Guido van Rossum54ecc3d1999-01-27 17:53:11 +0000981# LDLIBRARY is the name of the library to link against (as opposed to the
Jack Jansenb6e9cad2001-08-15 01:26:28 +0000982# name of the library into which to insert object files). BLDLIBRARY is also
983# the library to link against, usually. On Mac OS X frameworks, BLDLIBRARY
984# is blank as the main program is not linked directly against LDLIBRARY.
985# LDLIBRARYDIR is the path to LDLIBRARY, which is made in a subdirectory. On
986# systems without shared libraries, LDLIBRARY is the same as LIBRARY
987# (defined in the Makefiles). On Cygwin LDLIBRARY is the import library,
988# DLLLIBRARY is the shared (i.e., DLL) library.
Victor Stinner1b80b242016-04-12 22:34:58 +0200989#
Martin v. Löwis1142de32002-03-29 16:28:31 +0000990# RUNSHARED is used to run shared python without installed libraries
991#
992# INSTSONAME is the name of the shared library that will be use to install
993# on the system - some systems like version suffix, others don't
Barry Warsaw8cf4eae2010-10-16 01:04:07 +0000994#
995# LDVERSION is the shared library version number, normally the Python version
996# with the ABI build flags appended.
Guido van Rossum54ecc3d1999-01-27 17:53:11 +0000997AC_SUBST(LDLIBRARY)
Guido van Rossum27552902001-01-23 01:52:26 +0000998AC_SUBST(DLLLIBRARY)
Jack Jansenb6e9cad2001-08-15 01:26:28 +0000999AC_SUBST(BLDLIBRARY)
Martin v. Löwisd1fc34d2010-12-30 14:55:47 +00001000AC_SUBST(PY3LIBRARY)
Jack Jansenb6e9cad2001-08-15 01:26:28 +00001001AC_SUBST(LDLIBRARYDIR)
Martin v. Löwis1142de32002-03-29 16:28:31 +00001002AC_SUBST(INSTSONAME)
1003AC_SUBST(RUNSHARED)
Barry Warsaw8cf4eae2010-10-16 01:04:07 +00001004AC_SUBST(LDVERSION)
Neil Schemenauer61c51152001-01-26 16:18:16 +00001005LDLIBRARY="$LIBRARY"
Jack Jansenb6e9cad2001-08-15 01:26:28 +00001006BLDLIBRARY='$(LDLIBRARY)'
Martin v. Löwis09bdf722002-05-08 08:51:29 +00001007INSTSONAME='$(LDLIBRARY)'
Guido van Rossum27552902001-01-23 01:52:26 +00001008DLLLIBRARY=''
Jack Jansenb6e9cad2001-08-15 01:26:28 +00001009LDLIBRARYDIR=''
Martin v. Löwis1142de32002-03-29 16:28:31 +00001010RUNSHARED=''
Barry Warsaw14d98ac2010-11-24 19:43:47 +00001011LDVERSION="$VERSION"
Guido van Rossum54ecc3d1999-01-27 17:53:11 +00001012
Guido van Rossumfb842551997-08-06 23:42:07 +00001013# LINKCC is the command that links the python executable -- default is $(CC).
Martin v. Löwisb7da67a2001-10-18 15:35:38 +00001014# If CXX is set, and if it is needed to link a main function that was
1015# compiled with CXX, LINKCC is CXX instead. Always using CXX is undesirable:
1016# python might then depend on the C++ runtime
Guido van Rossumfb842551997-08-06 23:42:07 +00001017AC_SUBST(LINKCC)
1018AC_MSG_CHECKING(LINKCC)
1019if test -z "$LINKCC"
1020then
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00001021 LINKCC='$(PURIFY) $(MAINCC)'
Guido van Rossumfb842551997-08-06 23:42:07 +00001022 case $ac_sys_system in
Georg Brandlf78e02b2008-06-10 17:40:04 +00001023 QNX*)
1024 # qcc must be used because the other compilers do not
1025 # support -N.
1026 LINKCC=qcc;;
Guido van Rossumfb842551997-08-06 23:42:07 +00001027 esac
1028fi
1029AC_MSG_RESULT($LINKCC)
1030
Stefan Krahe6dcd372020-08-29 17:00:08 +02001031# EXPORTSYMS holds the list of exported symbols for AIX.
1032# EXPORTSFROM holds the module name exporting symbols on AIX.
1033EXPORTSYMS=
1034EXPORTSFROM=
1035AC_SUBST(EXPORTSYMS)
1036AC_SUBST(EXPORTSFROM)
1037AC_MSG_CHECKING(EXPORTSYMS)
1038case $ac_sys_system in
1039AIX*)
1040 EXPORTSYMS="Modules/python.exp"
Kevin Adlerc79667f2020-11-16 09:16:10 -06001041 EXPORTSFROM=. # the main executable
Stefan Krahe6dcd372020-08-29 17:00:08 +02001042 ;;
1043esac
1044AC_MSG_RESULT($EXPORTSYMS)
1045
Tarek Ziadébe720e02009-05-09 11:55:12 +00001046# GNULD is set to "yes" if the GNU linker is used. If this goes wrong
1047# make sure we default having it set to "no": this is used by
1048# distutils.unixccompiler to know if it should add --enable-new-dtags
1049# to linker command lines, and failing to detect GNU ld simply results
1050# in the same bahaviour as before.
1051AC_SUBST(GNULD)
1052AC_MSG_CHECKING(for GNU ld)
1053ac_prog=ld
1054if test "$GCC" = yes; then
1055 ac_prog=`$CC -print-prog-name=ld`
1056fi
1057case `"$ac_prog" -V 2>&1 < /dev/null` in
1058 *GNU*)
1059 GNULD=yes;;
1060 *)
1061 GNULD=no;;
1062esac
1063AC_MSG_RESULT($GNULD)
1064
Martin v. Löwis1142de32002-03-29 16:28:31 +00001065AC_MSG_CHECKING(for --enable-shared)
1066AC_ARG_ENABLE(shared,
Anthony Shaw2de064e2020-01-14 17:40:10 +11001067 AS_HELP_STRING([--enable-shared], [enable building a shared Python library (default is no)]))
Guido van Rossum54ecc3d1999-01-27 17:53:11 +00001068
Martin v. Löwis1142de32002-03-29 16:28:31 +00001069if test -z "$enable_shared"
Victor Stinner1b80b242016-04-12 22:34:58 +02001070then
Martin v. Löwisb51033d2002-05-03 05:53:15 +00001071 case $ac_sys_system in
Antoine Pitrou6103ab12009-10-24 20:11:21 +00001072 CYGWIN*)
Martin v. Löwisb51033d2002-05-03 05:53:15 +00001073 enable_shared="yes";;
1074 *)
1075 enable_shared="no";;
1076 esac
Martin v. Löwis1142de32002-03-29 16:28:31 +00001077fi
1078AC_MSG_RESULT($enable_shared)
1079
Skip Montanaro56f6a4f2004-06-18 02:47:22 +00001080AC_MSG_CHECKING(for --enable-profiling)
1081AC_ARG_ENABLE(profiling,
Anthony Shaw2de064e2020-01-14 17:40:10 +11001082 AS_HELP_STRING([--enable-profiling], [enable C-level code profiling with gprof (default is no)]))
doko@ubuntu.comba015832012-06-30 16:52:05 +02001083if test "x$enable_profiling" = xyes; then
1084 ac_save_cc="$CC"
Benjamin Peterson615ea1a2013-03-26 08:55:37 -04001085 CC="$CC -pg"
doko@ubuntu.comba015832012-06-30 16:52:05 +02001086 AC_LINK_IFELSE([AC_LANG_SOURCE([[int main() { return 0; }]])],
1087 [],
1088 [enable_profiling=no])
1089 CC="$ac_save_cc"
1090else
1091 enable_profiling=no
1092fi
1093AC_MSG_RESULT($enable_profiling)
Skip Montanaro56f6a4f2004-06-18 02:47:22 +00001094
doko@ubuntu.comba015832012-06-30 16:52:05 +02001095if test "x$enable_profiling" = xyes; then
1096 BASECFLAGS="-pg $BASECFLAGS"
1097 LDFLAGS="-pg $LDFLAGS"
1098fi
Martin v. Löwis1142de32002-03-29 16:28:31 +00001099
1100AC_MSG_CHECKING(LDLIBRARY)
Jack Jansenb6e9cad2001-08-15 01:26:28 +00001101
Guido van Rossumb8552162001-09-05 14:58:11 +00001102# MacOSX framework builds need more magic. LDLIBRARY is the dynamic
1103# library that we build, but we do not want to link against it (we
1104# will find it with a -framework option). For this reason there is an
1105# extra variable BLDLIBRARY against which Python and the extension
1106# modules are linked, BLDLIBRARY. This is normally the same as
1107# LDLIBRARY, but empty for MacOSX framework builds.
Jack Jansenb6e9cad2001-08-15 01:26:28 +00001108if test "$enable_framework"
1109then
1110 LDLIBRARY='$(PYTHONFRAMEWORKDIR)/Versions/$(VERSION)/$(PYTHONFRAMEWORK)'
doko@ubuntu.come5de66e2014-05-07 12:57:44 +02001111 RUNSHARED=DYLD_FRAMEWORK_PATH=`pwd`${DYLD_FRAMEWORK_PATH:+:${DYLD_FRAMEWORK_PATH}}
Jack Jansenb6e9cad2001-08-15 01:26:28 +00001112 BLDLIBRARY=''
1113else
1114 BLDLIBRARY='$(LDLIBRARY)'
Victor Stinner1b80b242016-04-12 22:34:58 +02001115fi
Jack Jansenb6e9cad2001-08-15 01:26:28 +00001116
Martin v. Löwis1142de32002-03-29 16:28:31 +00001117# Other platforms follow
1118if test $enable_shared = "yes"; then
doko@python.org87421192013-01-26 11:39:31 +01001119 PY_ENABLE_SHARED=1
Mark Hammond8235ea12002-07-19 06:55:41 +00001120 AC_DEFINE(Py_ENABLE_SHARED, 1, [Defined if Python is built as a shared library.])
Martin v. Löwis1142de32002-03-29 16:28:31 +00001121 case $ac_sys_system in
Martin v. Löwis1142de32002-03-29 16:28:31 +00001122 CYGWIN*)
Barry Warsaw8cf4eae2010-10-16 01:04:07 +00001123 LDLIBRARY='libpython$(LDVERSION).dll.a'
1124 DLLLIBRARY='libpython$(LDVERSION).dll'
Martin v. Löwis1142de32002-03-29 16:28:31 +00001125 ;;
1126 SunOS*)
Barry Warsaw8cf4eae2010-10-16 01:04:07 +00001127 LDLIBRARY='libpython$(LDVERSION).so'
1128 BLDLIBRARY='-Wl,-R,$(LIBDIR) -L. -lpython$(LDVERSION)'
doko@ubuntu.come5de66e2014-05-07 12:57:44 +02001129 RUNSHARED=LD_LIBRARY_PATH=`pwd`${LD_LIBRARY_PATH:+:${LD_LIBRARY_PATH}}
Martin v. Löwis2389c412003-10-31 15:42:07 +00001130 INSTSONAME="$LDLIBRARY".$SOVERSION
Martin v. Löwis9b142aa2011-02-05 20:26:52 +00001131 if test "$with_pydebug" != yes
Martin v. Löwisd1fc34d2010-12-30 14:55:47 +00001132 then
1133 PY3LIBRARY=libpython3.so
1134 fi
Martin v. Löwis1142de32002-03-29 16:28:31 +00001135 ;;
pxinwrc1174262020-12-15 06:14:43 +08001136 Linux*|GNU*|NetBSD*|FreeBSD*|DragonFly*|OpenBSD*|VxWorks*)
Barry Warsaw8cf4eae2010-10-16 01:04:07 +00001137 LDLIBRARY='libpython$(LDVERSION).so'
1138 BLDLIBRARY='-L. -lpython$(LDVERSION)'
doko@ubuntu.come5de66e2014-05-07 12:57:44 +02001139 RUNSHARED=LD_LIBRARY_PATH=`pwd`${LD_LIBRARY_PATH:+:${LD_LIBRARY_PATH}}
Martin v. Löwis1142de32002-03-29 16:28:31 +00001140 INSTSONAME="$LDLIBRARY".$SOVERSION
Martin v. Löwis9b142aa2011-02-05 20:26:52 +00001141 if test "$with_pydebug" != yes
Martin v. Löwisd1fc34d2010-12-30 14:55:47 +00001142 then
1143 PY3LIBRARY=libpython3.so
1144 fi
Martin v. Löwis1142de32002-03-29 16:28:31 +00001145 ;;
1146 hp*|HP*)
Thomas Wouters477c8d52006-05-27 19:21:47 +00001147 case `uname -m` in
1148 ia64)
Barry Warsaw8cf4eae2010-10-16 01:04:07 +00001149 LDLIBRARY='libpython$(LDVERSION).so'
Thomas Wouters477c8d52006-05-27 19:21:47 +00001150 ;;
1151 *)
Barry Warsaw8cf4eae2010-10-16 01:04:07 +00001152 LDLIBRARY='libpython$(LDVERSION).sl'
Thomas Wouters477c8d52006-05-27 19:21:47 +00001153 ;;
1154 esac
Barry Warsaw8cf4eae2010-10-16 01:04:07 +00001155 BLDLIBRARY='-Wl,+b,$(LIBDIR) -L. -lpython$(LDVERSION)'
doko@ubuntu.come5de66e2014-05-07 12:57:44 +02001156 RUNSHARED=SHLIB_PATH=`pwd`${SHLIB_PATH:+:${SHLIB_PATH}}
Martin v. Löwis1142de32002-03-29 16:28:31 +00001157 ;;
Georg Brandlb1441c72009-01-03 22:33:39 +00001158 Darwin*)
Barry Warsaw8cf4eae2010-10-16 01:04:07 +00001159 LDLIBRARY='libpython$(LDVERSION).dylib'
1160 BLDLIBRARY='-L. -lpython$(LDVERSION)'
doko@ubuntu.come5de66e2014-05-07 12:57:44 +02001161 RUNSHARED=DYLD_LIBRARY_PATH=`pwd`${DYLD_LIBRARY_PATH:+:${DYLD_LIBRARY_PATH}}
Georg Brandlb1441c72009-01-03 22:33:39 +00001162 ;;
Antoine Pitrou8e6b4072010-09-10 19:44:44 +00001163 AIX*)
Barry Warsaw8cf4eae2010-10-16 01:04:07 +00001164 LDLIBRARY='libpython$(LDVERSION).so'
doko@ubuntu.come5de66e2014-05-07 12:57:44 +02001165 RUNSHARED=LIBPATH=`pwd`${LIBPATH:+:${LIBPATH}}
Antoine Pitrou8e6b4072010-09-10 19:44:44 +00001166 ;;
Georg Brandlb1441c72009-01-03 22:33:39 +00001167
Martin v. Löwis1142de32002-03-29 16:28:31 +00001168 esac
Jason Tishler30765592003-09-04 11:04:06 +00001169else # shared is disabled
doko@python.org87421192013-01-26 11:39:31 +01001170 PY_ENABLE_SHARED=0
Jason Tishler30765592003-09-04 11:04:06 +00001171 case $ac_sys_system in
1172 CYGWIN*)
1173 BLDLIBRARY='$(LIBRARY)'
Barry Warsaw8cf4eae2010-10-16 01:04:07 +00001174 LDLIBRARY='libpython$(LDVERSION).dll.a'
Jason Tishler30765592003-09-04 11:04:06 +00001175 ;;
1176 esac
Martin v. Löwis1142de32002-03-29 16:28:31 +00001177fi
1178
doko@ubuntu.com1abe1c52012-06-30 20:42:45 +02001179if test "$cross_compiling" = yes; then
1180 RUNSHARED=
1181fi
1182
Guido van Rossum54ecc3d1999-01-27 17:53:11 +00001183AC_MSG_RESULT($LDLIBRARY)
1184
Guido van Rossum433c8ad1994-08-01 12:07:07 +00001185AC_SUBST(AR)
doko@ubuntu.com51f65942012-06-30 14:42:46 +02001186AC_CHECK_TOOLS(AR, ar aal, ar)
Neil Schemenauera42c8272001-03-31 00:01:55 +00001187
Tarek Ziadé5662d3e2009-05-07 21:24:43 +00001188# tweak ARFLAGS only if the user didn't set it on the command line
1189AC_SUBST(ARFLAGS)
1190if test -z "$ARFLAGS"
1191then
Benjamin Petersond15108a2017-09-29 08:42:41 -07001192 ARFLAGS="rcs"
Tarek Ziadé5662d3e2009-05-07 21:24:43 +00001193fi
1194
doko@ubuntu.com58844492012-06-30 18:25:32 +02001195AC_CHECK_TOOLS([READELF], [readelf], [:])
1196if test "$cross_compiling" = yes; then
1197 case "$READELF" in
1198 readelf|:)
1199 AC_MSG_ERROR([readelf for the host is required for cross builds])
1200 ;;
1201 esac
1202fi
1203AC_SUBST(READELF)
1204
Ralf Schmitt023f3a72011-05-31 17:10:03 -05001205
Neil Schemenauera42c8272001-03-31 00:01:55 +00001206case $MACHDEP in
Benjamin Peterson288d1da2017-09-28 22:44:27 -07001207hp*|HP*)
1208 # install -d does not work on HP-UX
Neil Schemenauera42c8272001-03-31 00:01:55 +00001209 if test -z "$INSTALL"
1210 then
1211 INSTALL="${srcdir}/install-sh -c"
1212 fi
1213esac
Neil Schemenauer55f0cf32001-01-24 17:24:33 +00001214AC_PROG_INSTALL
Matthias Klose93a0ef12012-03-15 18:08:34 +01001215AC_PROG_MKDIR_P
Guido van Rossumb418f891996-07-30 18:06:02 +00001216
Guido van Rossumec95c7b1998-08-04 17:59:56 +00001217# Not every filesystem supports hard links
1218AC_SUBST(LN)
1219if test -z "$LN" ; then
1220 case $ac_sys_system in
Guido van Rossumaef734b2001-01-10 21:09:12 +00001221 CYGWIN*) LN="ln -s";;
Guido van Rossumec95c7b1998-08-04 17:59:56 +00001222 *) LN=ln;;
1223 esac
1224fi
1225
Barry Warsaw35f3a2c2010-09-03 18:30:30 +00001226# For calculating the .so ABI tag.
Barry Warsaw8cf4eae2010-10-16 01:04:07 +00001227AC_SUBST(ABIFLAGS)
1228ABIFLAGS=""
Barry Warsaw35f3a2c2010-09-03 18:30:30 +00001229
Fred Drake9f715822001-07-11 06:27:00 +00001230# Check for --with-pydebug
1231AC_MSG_CHECKING(for --with-pydebug)
Victor Stinner1b80b242016-04-12 22:34:58 +02001232AC_ARG_WITH(pydebug,
Anthony Shaw2de064e2020-01-14 17:40:10 +11001233 AS_HELP_STRING([--with-pydebug], [build with Py_DEBUG defined (default is no)]),
Martin v. Löwis3e2c6322002-10-29 10:07:43 +00001234[
Fred Drake9f715822001-07-11 06:27:00 +00001235if test "$withval" != no
Victor Stinner1b80b242016-04-12 22:34:58 +02001236then
1237 AC_DEFINE(Py_DEBUG, 1,
1238 [Define if you want to build an interpreter with many run-time checks.])
1239 AC_MSG_RESULT(yes);
Martin v. Löwisc45929e2002-04-06 10:10:49 +00001240 Py_DEBUG='true'
Barry Warsaw8cf4eae2010-10-16 01:04:07 +00001241 ABIFLAGS="${ABIFLAGS}d"
Fred Drake9f715822001-07-11 06:27:00 +00001242else AC_MSG_RESULT(no); Py_DEBUG='false'
1243fi],
1244[AC_MSG_RESULT(no)])
1245
Victor Stinnerf4e47032019-04-25 00:56:28 +02001246# Check for --with-trace-refs
1247# --with-trace-refs
1248AC_MSG_CHECKING(for --with-trace-refs)
1249AC_ARG_WITH(trace-refs,
Anthony Shaw2de064e2020-01-14 17:40:10 +11001250 AS_HELP_STRING(
1251 [--with-trace-refs],
1252 [enable tracing references for debugging purpose (default is no)]),,
Victor Stinnerf4e47032019-04-25 00:56:28 +02001253 with_trace_refs=no)
1254AC_MSG_RESULT($with_trace_refs)
1255
1256if test "$with_trace_refs" = "yes"
1257then
1258 AC_DEFINE(Py_TRACE_REFS, 1, [Define if you want to enable tracing references for debugging purpose])
1259fi
1260
1261# Check for --with-assertions.
1262# This allows enabling assertions without Py_DEBUG.
T. Woutersddbfa2c2017-05-23 01:30:49 +02001263assertions='false'
1264AC_MSG_CHECKING(for --with-assertions)
1265AC_ARG_WITH(assertions,
Anthony Shaw2de064e2020-01-14 17:40:10 +11001266 AS_HELP_STRING([--with-assertions],[build with C assertions enabled (default is no)]),
T. Woutersddbfa2c2017-05-23 01:30:49 +02001267[
1268if test "$withval" != no
1269then
1270 assertions='true'
1271fi],
1272[])
1273if test "$assertions" = 'true'; then
1274 AC_MSG_RESULT(yes)
1275elif test "$Py_DEBUG" = 'true'; then
1276 assertions='true'
1277 AC_MSG_RESULT(implied by --with-pydebug)
1278else
1279 AC_MSG_RESULT(no)
1280fi
1281
Brett Cannon63d98bc2016-09-06 17:12:40 -07001282# Enable optimization flags
1283AC_SUBST(DEF_MAKE_ALL_RULE)
1284AC_SUBST(DEF_MAKE_RULE)
1285Py_OPT='false'
Gregory P. Smith ext:(%20%5BGoogle%20Inc.%5D)1016b2f2016-11-20 21:07:42 +00001286AC_MSG_CHECKING(for --enable-optimizations)
Anthony Shaw2de064e2020-01-14 17:40:10 +11001287AC_ARG_ENABLE(optimizations, AS_HELP_STRING(
1288 [--enable-optimizations],
1289 [enable expensive, stable optimizations (PGO, etc.) (default is no)]),
Brett Cannon63d98bc2016-09-06 17:12:40 -07001290[
Alex Wang8cea5922017-03-28 08:50:51 -04001291if test "$enableval" != no
Brett Cannon63d98bc2016-09-06 17:12:40 -07001292then
1293 Py_OPT='true'
1294 AC_MSG_RESULT(yes);
1295else
1296 Py_OPT='false'
1297 AC_MSG_RESULT(no);
1298fi],
1299[AC_MSG_RESULT(no)])
1300if test "$Py_OPT" = 'true' ; then
Gregory P. Smith ext:(%20%5BGoogle%20Inc.%5D)14c7f712016-09-08 22:38:46 +00001301 # Intentionally not forcing Py_LTO='true' here. Too many toolchains do not
1302 # compile working code using it and both test_distutils and test_gdb are
Brett Cannon1d8f7552016-11-03 16:20:00 -07001303 # 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 +00001304 # who want LTO need to use --with-lto themselves.
Brett Cannon63d98bc2016-09-06 17:12:40 -07001305 DEF_MAKE_ALL_RULE="profile-opt"
Gregory P. Smith799520c2016-09-07 16:10:00 -07001306 REQUIRE_PGO="yes"
Brett Cannon63d98bc2016-09-06 17:12:40 -07001307 DEF_MAKE_RULE="build_all"
Pablo Galindob451b0e2020-10-21 22:46:52 +01001308 case $CC in
1309 *gcc*)
Petr Viktorinc6d7e822020-10-22 18:11:53 +02001310 AX_CHECK_COMPILE_FLAG([-fno-semantic-interposition],[
Pablo Galindob451b0e2020-10-21 22:46:52 +01001311 CFLAGS_NODIST="$CFLAGS_NODIST -fno-semantic-interposition"
1312 LDFLAGS_NODIST="$LDFLAGS_NODIST -fno-semantic-interposition"
Petr Viktorinc6d7e822020-10-22 18:11:53 +02001313 ])
Pablo Galindob451b0e2020-10-21 22:46:52 +01001314 ;;
1315 esac
1316
1317
Brett Cannon63d98bc2016-09-06 17:12:40 -07001318else
1319 DEF_MAKE_ALL_RULE="build_all"
Gregory P. Smith799520c2016-09-07 16:10:00 -07001320 REQUIRE_PGO="no"
Brett Cannon63d98bc2016-09-06 17:12:40 -07001321 DEF_MAKE_RULE="all"
1322fi
1323
Neil Schemenauer4e16a4a2019-07-22 12:54:25 -07001324AC_ARG_VAR(PROFILE_TASK, Python args for PGO generation task)
1325AC_MSG_CHECKING(PROFILE_TASK)
1326if test -z "$PROFILE_TASK"
1327then
Victor Stinner67900052021-01-27 11:16:15 +01001328 PROFILE_TASK='-m test --pgo --timeout=$(TESTTIMEOUT)'
Neil Schemenauer4e16a4a2019-07-22 12:54:25 -07001329fi
1330AC_MSG_RESULT($PROFILE_TASK)
1331
serge-sans-paille5ad36f92018-10-25 01:54:22 +02001332# Make llvm-relatec checks work on systems where llvm tools are not installed with their
1333# normal names in the default $PATH (ie: Ubuntu). They exist under the
1334# non-suffixed name in their versioned llvm directory.
1335
1336llvm_bin_dir=''
1337llvm_path="${PATH}"
1338if test "${CC}" = "clang"
1339then
1340 clang_bin=`which clang`
1341 # Some systems install clang elsewhere as a symlink to the real path
1342 # which is where the related llvm tools are located.
1343 if test -L "${clang_bin}"
1344 then
1345 clang_dir=`dirname "${clang_bin}"`
1346 clang_bin=`readlink "${clang_bin}"`
1347 llvm_bin_dir="${clang_dir}/"`dirname "${clang_bin}"`
1348 llvm_path="${llvm_path}${PATH_SEPARATOR}${llvm_bin_dir}"
1349 fi
1350fi
1351
Gregory P. Smithd82da9f2016-04-15 16:57:04 -07001352# Enable LTO flags
Gregory P. Smithd82da9f2016-04-15 16:57:04 -07001353AC_MSG_CHECKING(for --with-lto)
Anthony Shaw2de064e2020-01-14 17:40:10 +11001354AC_ARG_WITH(lto, AS_HELP_STRING([--with-lto], [enable Link-Time-Optimization in any build (default is no)]),
Gregory P. Smithd82da9f2016-04-15 16:57:04 -07001355[
1356if test "$withval" != no
1357then
1358 Py_LTO='true'
1359 AC_MSG_RESULT(yes);
1360else
1361 Py_LTO='false'
1362 AC_MSG_RESULT(no);
1363fi],
1364[AC_MSG_RESULT(no)])
1365if test "$Py_LTO" = 'true' ; then
1366 case $CC in
1367 *clang*)
serge-sans-paille5ad36f92018-10-25 01:54:22 +02001368 AC_SUBST(LLVM_AR)
Doyle Rowland0519d492019-09-13 09:38:07 -04001369 AC_PATH_TOOL(LLVM_AR, llvm-ar, '', ${llvm_path})
serge-sans-paille5ad36f92018-10-25 01:54:22 +02001370 AC_SUBST(LLVM_AR_FOUND)
1371 if test -n "${LLVM_AR}" -a -x "${LLVM_AR}"
1372 then
1373 LLVM_AR_FOUND="found"
1374 else
1375 LLVM_AR_FOUND="not-found"
1376 fi
1377 if test "$ac_sys_system" = "Darwin" -a "${LLVM_AR_FOUND}" = "not-found"
1378 then
1379 found_llvm_ar=`/usr/bin/xcrun -find llvm-ar 2>/dev/null`
1380 if test -n "${found_llvm_ar}"
1381 then
1382 LLVM_AR='/usr/bin/xcrun llvm-ar'
1383 LLVM_AR_FOUND=found
1384 AC_MSG_NOTICE([llvm-ar found via xcrun: ${LLVM_AR}])
1385 fi
1386 fi
1387 if test $LLVM_AR_FOUND = not-found
1388 then
1389 LLVM_PROFR_ERR=yes
1390 AC_MSG_ERROR([llvm-ar is required for a --with-lto build with clang but could not be found.])
1391 else
1392 LLVM_AR_ERR=no
1393 fi
1394 AR="${LLVM_AR}"
Ned Deily8482ce42016-09-06 15:09:20 -07001395 case $ac_sys_system in
1396 Darwin*)
1397 # Any changes made here should be reflected in the GCC+Darwin case below
1398 LTOFLAGS="-flto -Wl,-export_dynamic"
1399 ;;
1400 *)
1401 LTOFLAGS="-flto"
1402 ;;
1403 esac
Gregory P. Smithd82da9f2016-04-15 16:57:04 -07001404 ;;
1405 *gcc*)
1406 case $ac_sys_system in
1407 Darwin*)
Ned Deily8482ce42016-09-06 15:09:20 -07001408 LTOFLAGS="-flto -Wl,-export_dynamic"
Gregory P. Smithd82da9f2016-04-15 16:57:04 -07001409 ;;
1410 *)
1411 LTOFLAGS="-flto -fuse-linker-plugin -ffat-lto-objects -flto-partition=none"
1412 ;;
1413 esac
1414 ;;
1415 esac
Victor Stinner06fe77a2018-06-19 18:24:58 +02001416
1417 if test "$ac_cv_prog_cc_g" = "yes"
1418 then
1419 # bpo-30345: Add -g to LDFLAGS when compiling with LTO
1420 # to get debug symbols.
1421 LTOFLAGS="$LTOFLAGS -g"
1422 fi
1423
stratakisf92c7aa2018-12-04 15:54:01 +01001424 CFLAGS_NODIST="$CFLAGS_NODIST $LTOFLAGS"
stratakiscf10a752018-12-19 18:19:01 +01001425 LDFLAGS_NODIST="$LDFLAGS_NODIST $LTOFLAGS"
Gregory P. Smithd82da9f2016-04-15 16:57:04 -07001426fi
1427
Brett Cannon7188a3e2015-09-18 15:13:44 -07001428# Enable PGO flags.
1429AC_SUBST(PGO_PROF_GEN_FLAG)
1430AC_SUBST(PGO_PROF_USE_FLAG)
1431AC_SUBST(LLVM_PROF_MERGER)
1432AC_SUBST(LLVM_PROF_FILE)
1433AC_SUBST(LLVM_PROF_ERR)
Gregory P. Smith799520c2016-09-07 16:10:00 -07001434AC_SUBST(LLVM_PROFDATA)
Doyle Rowland0519d492019-09-13 09:38:07 -04001435AC_PATH_TOOL(LLVM_PROFDATA, llvm-profdata, '', ${llvm_path})
Brett Cannon7188a3e2015-09-18 15:13:44 -07001436AC_SUBST(LLVM_PROF_FOUND)
Gregory P. Smith799520c2016-09-07 16:10:00 -07001437if test -n "${LLVM_PROFDATA}" -a -x "${LLVM_PROFDATA}"
1438then
1439 LLVM_PROF_FOUND="found"
1440else
1441 LLVM_PROF_FOUND="not-found"
1442fi
1443if test "$ac_sys_system" = "Darwin" -a "${LLVM_PROF_FOUND}" = "not-found"
1444then
1445 found_llvm_profdata=`/usr/bin/xcrun -find llvm-profdata 2>/dev/null`
1446 if test -n "${found_llvm_profdata}"
1447 then
1448 # llvm-profdata isn't directly in $PATH in some cases.
1449 # https://apple.stackexchange.com/questions/197053/
1450 LLVM_PROFDATA='/usr/bin/xcrun llvm-profdata'
1451 LLVM_PROF_FOUND=found
1452 AC_MSG_NOTICE([llvm-profdata found via xcrun: ${LLVM_PROFDATA}])
1453 fi
1454fi
Brett Cannon7188a3e2015-09-18 15:13:44 -07001455LLVM_PROF_ERR=no
1456case $CC in
1457 *clang*)
1458 # Any changes made here should be reflected in the GCC+Darwin case below
1459 PGO_PROF_GEN_FLAG="-fprofile-instr-generate"
1460 PGO_PROF_USE_FLAG="-fprofile-instr-use=code.profclangd"
Gregory P. Smith799520c2016-09-07 16:10:00 -07001461 LLVM_PROF_MERGER="${LLVM_PROFDATA} merge -output=code.profclangd *.profclangr"
Brett Cannon7188a3e2015-09-18 15:13:44 -07001462 LLVM_PROF_FILE="LLVM_PROFILE_FILE=\"code-%p.profclangr\""
1463 if test $LLVM_PROF_FOUND = not-found
1464 then
1465 LLVM_PROF_ERR=yes
Gregory P. Smith799520c2016-09-07 16:10:00 -07001466 if test "${REQUIRE_PGO}" = "yes"
1467 then
Gregory P. Smith ext:(%20%5BGoogle%20Inc.%5D)1016b2f2016-11-20 21:07:42 +00001468 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 -07001469 fi
Brett Cannon7188a3e2015-09-18 15:13:44 -07001470 fi
1471 ;;
1472 *gcc*)
1473 case $ac_sys_system in
1474 Darwin*)
1475 PGO_PROF_GEN_FLAG="-fprofile-instr-generate"
1476 PGO_PROF_USE_FLAG="-fprofile-instr-use=code.profclangd"
Gregory P. Smith799520c2016-09-07 16:10:00 -07001477 LLVM_PROF_MERGER="${LLVM_PROFDATA} merge -output=code.profclangd *.profclangr"
Brett Cannon7188a3e2015-09-18 15:13:44 -07001478 LLVM_PROF_FILE="LLVM_PROFILE_FILE=\"code-%p.profclangr\""
Gregory P. Smith799520c2016-09-07 16:10:00 -07001479 if test "${LLVM_PROF_FOUND}" = "not-found"
Brett Cannon7188a3e2015-09-18 15:13:44 -07001480 then
1481 LLVM_PROF_ERR=yes
Gregory P. Smith799520c2016-09-07 16:10:00 -07001482 if test "${REQUIRE_PGO}" = "yes"
1483 then
Gregory P. Smith ext:(%20%5BGoogle%20Inc.%5D)1016b2f2016-11-20 21:07:42 +00001484 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 -07001485 fi
Brett Cannon7188a3e2015-09-18 15:13:44 -07001486 fi
1487 ;;
1488 *)
1489 PGO_PROF_GEN_FLAG="-fprofile-generate"
1490 PGO_PROF_USE_FLAG="-fprofile-use -fprofile-correction"
1491 LLVM_PROF_MERGER="true"
1492 LLVM_PROF_FILE=""
1493 ;;
1494 esac
1495 ;;
Zachary Ware5af85642015-12-21 12:09:17 -06001496 *icc*)
1497 PGO_PROF_GEN_FLAG="-prof-gen"
1498 PGO_PROF_USE_FLAG="-prof-use"
1499 LLVM_PROF_MERGER="true"
1500 LLVM_PROF_FILE=""
1501 ;;
Brett Cannon7188a3e2015-09-18 15:13:44 -07001502esac
1503
Skip Montanarodecc6a42003-01-01 20:07:49 +00001504# XXX Shouldn't the code above that fiddles with BASECFLAGS and OPT be
1505# merged with this chunk of code?
1506
Neil Schemenauer55f0cf32001-01-24 17:24:33 +00001507# Optimizer/debugger flags
Skip Montanarodecc6a42003-01-01 20:07:49 +00001508# ------------------------
1509# (The following bit of code is complicated enough - please keep things
1510# indented properly. Just pretend you're editing Python code. ;-)
1511
1512# There are two parallel sets of case statements below, one that checks to
1513# see if OPT was set and one that does BASECFLAGS setting based upon
1514# compiler and platform. BASECFLAGS tweaks need to be made even if the
1515# user set OPT.
1516
Victor Stinner23a683a2019-04-12 21:27:37 +02001517case $CC in
1518 *clang*)
1519 cc_is_clang=1
1520 ;;
1521 *)
1522 if $CC --version 2>&1 | grep -q clang
1523 then
1524 cc_is_clang=1
1525 else
1526 cc_is_clang=
1527 fi
1528esac
1529
Skip Montanarodecc6a42003-01-01 20:07:49 +00001530# tweak OPT based on compiler and platform, only if the user didn't set
1531# it on the command line
Guido van Rossumb418f891996-07-30 18:06:02 +00001532AC_SUBST(OPT)
Victor Stinner826f83f2017-04-28 15:07:10 +02001533AC_SUBST(CFLAGS_ALIASING)
Benjamin Peterson65b4ec52010-03-23 21:02:34 +00001534if test "${OPT-unset}" = "unset"
Guido van Rossumb418f891996-07-30 18:06:02 +00001535then
Skip Montanarodecc6a42003-01-01 20:07:49 +00001536 case $GCC in
1537 yes)
Christian Heimes38053212007-12-14 01:24:44 +00001538 # For gcc 4.x we need to use -fwrapv so lets check if its supported
1539 if "$CC" -v --help 2>/dev/null |grep -- -fwrapv > /dev/null; then
1540 WRAP="-fwrapv"
1541 fi
Stefan Krah962055d2011-09-14 15:14:08 +02001542
Victor Stinner35f3d242017-04-21 12:35:24 +02001543 if test -n "${cc_is_clang}"
1544 then
1545 # Clang also needs -fwrapv
1546 WRAP="-fwrapv"
Victor Stinner826f83f2017-04-28 15:07:10 +02001547 # bpo-30104: disable strict aliasing to compile correctly dtoa.c,
1548 # see Makefile.pre.in for more information
1549 CFLAGS_ALIASING="-fno-strict-aliasing"
Victor Stinner35f3d242017-04-21 12:35:24 +02001550 fi
1551
Skip Montanarodecc6a42003-01-01 20:07:49 +00001552 case $ac_cv_prog_cc_g in
Guido van Rossum2242f2f2001-04-11 20:58:20 +00001553 yes)
Fred Drake9f715822001-07-11 06:27:00 +00001554 if test "$Py_DEBUG" = 'true' ; then
1555 # Optimization messes up debuggers, so turn it off for
1556 # debug builds.
Antoine Pitrou3d6c7842015-02-11 19:39:16 +01001557 if "$CC" -v --help 2>/dev/null |grep -- -Og > /dev/null; then
Victor Stinner28205b22017-04-21 11:24:34 +02001558 OPT="-g -Og -Wall"
Antoine Pitrou3d6c7842015-02-11 19:39:16 +01001559 else
Victor Stinner28205b22017-04-21 11:24:34 +02001560 OPT="-g -O0 -Wall"
Antoine Pitrou3d6c7842015-02-11 19:39:16 +01001561 fi
Fred Drake9f715822001-07-11 06:27:00 +00001562 else
Victor Stinner28205b22017-04-21 11:24:34 +02001563 OPT="-g $WRAP -O3 -Wall"
Skip Montanarodecc6a42003-01-01 20:07:49 +00001564 fi
1565 ;;
Guido van Rossum2242f2f2001-04-11 20:58:20 +00001566 *)
Victor Stinner28205b22017-04-21 11:24:34 +02001567 OPT="-O3 -Wall"
Skip Montanarodecc6a42003-01-01 20:07:49 +00001568 ;;
Fred Drake9f715822001-07-11 06:27:00 +00001569 esac
Victor Stinner28205b22017-04-21 11:24:34 +02001570
Martin v. Löwis21ee4092002-09-30 16:19:48 +00001571 case $ac_sys_system in
Skip Montanarodecc6a42003-01-01 20:07:49 +00001572 SCO_SV*) OPT="$OPT -m486 -DSCO5"
1573 ;;
1574 esac
Fred Drake9f715822001-07-11 06:27:00 +00001575 ;;
Skip Montanarodecc6a42003-01-01 20:07:49 +00001576
Guido van Rossum2242f2f2001-04-11 20:58:20 +00001577 *)
Skip Montanarodecc6a42003-01-01 20:07:49 +00001578 OPT="-O"
1579 ;;
Guido van Rossum2242f2f2001-04-11 20:58:20 +00001580 esac
Guido van Rossum4e8af441994-08-19 15:33:54 +00001581fi
Guido van Rossum627b2d71993-12-24 10:39:16 +00001582
Skip Montanarodecc6a42003-01-01 20:07:49 +00001583AC_SUBST(BASECFLAGS)
Benjamin Petersonacb8c522014-08-09 20:01:49 -07001584AC_SUBST(CFLAGS_NODIST)
stratakiscf10a752018-12-19 18:19:01 +01001585AC_SUBST(LDFLAGS_NODIST)
Georg Brandlfcaf9102008-07-16 02:17:56 +00001586
Ronald Oussoren41761932020-11-08 10:05:27 +01001587# The -arch flags for universal builds on macOS
Georg Brandlfcaf9102008-07-16 02:17:56 +00001588UNIVERSAL_ARCH_FLAGS=
1589AC_SUBST(UNIVERSAL_ARCH_FLAGS)
1590
Skip Montanarodecc6a42003-01-01 20:07:49 +00001591# tweak BASECFLAGS based on compiler and platform
1592case $GCC in
1593yes)
Benjamin Peterson050af5d2016-09-10 17:53:13 -07001594 CFLAGS_NODIST="$CFLAGS_NODIST -std=c99"
Benjamin Petersond1702562016-09-07 12:00:06 -07001595
Serhiy Storchakaea80ffb2016-09-11 21:56:32 +03001596 AC_MSG_CHECKING(for -Wextra)
1597 ac_save_cc="$CC"
1598 CC="$CC -Wextra -Werror"
1599 AC_CACHE_VAL(ac_cv_extra_warnings,
1600 AC_COMPILE_IFELSE(
1601 [
1602 AC_LANG_PROGRAM([[]], [[]])
1603 ],[
1604 ac_cv_extra_warnings=yes
1605 ],[
1606 ac_cv_extra_warnings=no
1607 ]))
1608 CC="$ac_save_cc"
1609 AC_MSG_RESULT($ac_cv_extra_warnings)
1610
1611 if test $ac_cv_extra_warnings = yes
1612 then
1613 CFLAGS_NODIST="$CFLAGS_NODIST -Wextra"
1614 fi
1615
Benjamin Petersone6c9d242010-03-30 17:34:47 +00001616 # Python doesn't violate C99 aliasing rules, but older versions of
1617 # GCC produce warnings for legal Python code. Enable
1618 # -fno-strict-aliasing on versions of GCC that support but produce
1619 # warnings. See Issue3326
1620 AC_MSG_CHECKING(whether $CC accepts and needs -fno-strict-aliasing)
Martin v. Löwis70fedcd2003-07-07 21:26:19 +00001621 ac_save_cc="$CC"
1622 CC="$CC -fno-strict-aliasing"
Benjamin Petersone6c9d242010-03-30 17:34:47 +00001623 save_CFLAGS="$CFLAGS"
1624 AC_CACHE_VAL(ac_cv_no_strict_aliasing,
Matthias Kloseb159a552010-04-25 21:00:44 +00001625 AC_COMPILE_IFELSE(
1626 [
Mark Dickinson8c2b6f12010-05-11 09:23:07 +00001627 AC_LANG_PROGRAM([[]], [[]])
Matthias Kloseb159a552010-04-25 21:00:44 +00001628 ],[
1629 CC="$ac_save_cc -fstrict-aliasing"
1630 CFLAGS="$CFLAGS -Werror -Wstrict-aliasing"
1631 AC_COMPILE_IFELSE(
1632 [
Mark Dickinson8c2b6f12010-05-11 09:23:07 +00001633 AC_LANG_PROGRAM([[void f(int **x) {}]],
1634 [[double *x; f((int **) &x);]])
Matthias Kloseb159a552010-04-25 21:00:44 +00001635 ],[
1636 ac_cv_no_strict_aliasing=no
1637 ],[
1638 ac_cv_no_strict_aliasing=yes
1639 ])
1640 ],[
1641 ac_cv_no_strict_aliasing=no
1642 ]))
Benjamin Petersone6c9d242010-03-30 17:34:47 +00001643 CFLAGS="$save_CFLAGS"
Martin v. Löwis70fedcd2003-07-07 21:26:19 +00001644 CC="$ac_save_cc"
Benjamin Petersone6c9d242010-03-30 17:34:47 +00001645 AC_MSG_RESULT($ac_cv_no_strict_aliasing)
1646 if test $ac_cv_no_strict_aliasing = yes
Martin v. Löwis70fedcd2003-07-07 21:26:19 +00001647 then
1648 BASECFLAGS="$BASECFLAGS -fno-strict-aliasing"
1649 fi
Mark Dickinsonb0e2b4c2008-04-26 20:48:56 +00001650
Zachary Ware5af85642015-12-21 12:09:17 -06001651 # ICC doesn't recognize the option, but only emits a warning
1652 ## XXX does it emit an unused result warning and can it be disabled?
1653 case "$CC" in
1654 *icc*)
1655 ac_cv_disable_unused_result_warning=no
1656 ;;
1657 *)
Benjamin Peterson7ddbf102011-09-23 13:23:22 -04001658 AC_MSG_CHECKING(if we can turn off $CC unused result warning)
1659 ac_save_cc="$CC"
1660 CC="$CC -Wunused-result -Werror"
1661 save_CFLAGS="$CFLAGS"
1662 AC_CACHE_VAL(ac_cv_disable_unused_result_warning,
1663 AC_COMPILE_IFELSE(
1664 [
1665 AC_LANG_PROGRAM([[]], [[]])
1666 ],[
1667 ac_cv_disable_unused_result_warning=yes
1668 ],[
1669 ac_cv_disable_unused_result_warning=no
1670 ]))
1671 CFLAGS="$save_CFLAGS"
1672 CC="$ac_save_cc"
1673 AC_MSG_RESULT($ac_cv_disable_unused_result_warning)
Zachary Ware5af85642015-12-21 12:09:17 -06001674 ;;
1675 esac
Benjamin Peterson7ddbf102011-09-23 13:23:22 -04001676
1677 if test $ac_cv_disable_unused_result_warning = yes
1678 then
1679 BASECFLAGS="$BASECFLAGS -Wno-unused-result"
Serhiy Storchakaea80ffb2016-09-11 21:56:32 +03001680 CFLAGS_NODIST="$CFLAGS_NODIST -Wno-unused-result"
1681 fi
1682
1683 AC_MSG_CHECKING(if we can turn off $CC unused parameter warning)
1684 ac_save_cc="$CC"
1685 CC="$CC -Wunused-parameter -Werror"
1686 AC_CACHE_VAL(ac_cv_disable_unused_parameter_warning,
1687 AC_COMPILE_IFELSE(
1688 [
1689 AC_LANG_PROGRAM([[]], [[]])
1690 ],[
1691 ac_cv_disable_unused_parameter_warning=yes
1692 ],[
1693 ac_cv_disable_unused_parameter_warning=no
1694 ]))
1695 CC="$ac_save_cc"
1696 AC_MSG_RESULT($ac_cv_disable_unused_parameter_warning)
1697
1698 if test $ac_cv_disable_unused_parameter_warning = yes
1699 then
1700 CFLAGS_NODIST="$CFLAGS_NODIST -Wno-unused-parameter"
1701 fi
1702
1703 AC_MSG_CHECKING(if we can turn off $CC missing field initializers warning)
1704 ac_save_cc="$CC"
1705 CC="$CC -Wmissing-field-initializers -Werror"
1706 AC_CACHE_VAL(ac_cv_disable_missing_field_initializers,
1707 AC_COMPILE_IFELSE(
1708 [
1709 AC_LANG_PROGRAM([[]], [[]])
1710 ],[
1711 ac_cv_disable_missing_field_initializers=yes
1712 ],[
1713 ac_cv_disable_missing_field_initializers=no
1714 ]))
1715 CC="$ac_save_cc"
1716 AC_MSG_RESULT($ac_cv_disable_missing_field_initializers)
1717
1718 if test $ac_cv_disable_missing_field_initializers = yes
1719 then
1720 CFLAGS_NODIST="$CFLAGS_NODIST -Wno-missing-field-initializers"
Benjamin Peterson7ddbf102011-09-23 13:23:22 -04001721 fi
1722
Charles-François Natali7f9cc932014-08-01 21:57:49 +01001723 AC_MSG_CHECKING(if we can turn on $CC mixed sign comparison warning)
1724 ac_save_cc="$CC"
1725 CC="$CC -Wsign-compare"
1726 save_CFLAGS="$CFLAGS"
1727 AC_CACHE_VAL(ac_cv_enable_sign_compare_warning,
1728 AC_COMPILE_IFELSE(
1729 [
1730 AC_LANG_PROGRAM([[]], [[]])
1731 ],[
1732 ac_cv_enable_sign_compare_warning=yes
1733 ],[
1734 ac_cv_enable_sign_compare_warning=no
1735 ]))
1736 CFLAGS="$save_CFLAGS"
1737 CC="$ac_save_cc"
1738 AC_MSG_RESULT($ac_cv_enable_sign_compare_warning)
1739
1740 if test $ac_cv_enable_sign_compare_warning = yes
1741 then
1742 BASECFLAGS="$BASECFLAGS -Wsign-compare"
1743 fi
1744
1745 AC_MSG_CHECKING(if we can turn on $CC unreachable code warning)
1746 ac_save_cc="$CC"
1747 CC="$CC -Wunreachable-code"
1748 save_CFLAGS="$CFLAGS"
1749 AC_CACHE_VAL(ac_cv_enable_unreachable_code_warning,
1750 AC_COMPILE_IFELSE(
1751 [
1752 AC_LANG_PROGRAM([[]], [[]])
1753 ],[
1754 ac_cv_enable_unreachable_code_warning=yes
1755 ],[
1756 ac_cv_enable_unreachable_code_warning=no
1757 ]))
1758 CFLAGS="$save_CFLAGS"
1759 CC="$ac_save_cc"
Charles-François Natali7f9cc932014-08-01 21:57:49 +01001760
1761 # Don't enable unreachable code warning in debug mode, since it usually
1762 # results in non-standard code paths.
Ned Deilybec699e2016-03-08 00:28:37 -05001763 # Issue #24324: Unfortunately, the unreachable code warning does not work
1764 # correctly on gcc and has been silently removed from the compiler.
1765 # It is supported on clang but on OS X systems gcc may be an alias
1766 # for clang. Try to determine if the compiler is not really gcc and,
1767 # if so, only then enable the warning.
1768 if test $ac_cv_enable_unreachable_code_warning = yes && \
1769 test "$Py_DEBUG" != "true" && \
1770 test -z "`$CC --version 2>/dev/null | grep 'Free Software Foundation'`"
Charles-François Natali7f9cc932014-08-01 21:57:49 +01001771 then
1772 BASECFLAGS="$BASECFLAGS -Wunreachable-code"
Ned Deilybec699e2016-03-08 00:28:37 -05001773 else
1774 ac_cv_enable_unreachable_code_warning=no
Charles-François Natali7f9cc932014-08-01 21:57:49 +01001775 fi
Ned Deilybec699e2016-03-08 00:28:37 -05001776 AC_MSG_RESULT($ac_cv_enable_unreachable_code_warning)
Charles-François Natali7f9cc932014-08-01 21:57:49 +01001777
INADA Naokie3364842018-06-05 20:40:53 +09001778 AC_MSG_CHECKING(if we can turn on $CC strict-prototypes warning)
1779 ac_save_cc="$CC"
1780 CC="$CC -Werror -Wstrict-prototypes"
1781 AC_CACHE_VAL(ac_cv_enable_enable_strict_prototypes_warning,
1782 AC_COMPILE_IFELSE(
1783 [
1784 AC_LANG_PROGRAM([[]], [[]])
1785 ],[
1786 ac_cv_enable_strict_prototypes_warning=yes
1787 ],[
1788 ac_cv_enable_strict_prototypes_warning=no
1789 ]))
1790 CC="$ac_save_cc"
1791 AC_MSG_RESULT($ac_cv_enable_strict_prototypes_warning)
1792
1793 if test $ac_cv_enable_strict_prototypes_warning = yes
1794 then
1795 CFLAGS_NODIST="$CFLAGS_NODIST -Wstrict-prototypes"
1796 fi
1797
Victor Stinner193ee0a2017-02-06 14:24:00 +01001798 AC_MSG_CHECKING(if we can make implicit function declaration an error in $CC)
1799 ac_save_cc="$CC"
1800 CC="$CC -Werror=implicit-function-declaration"
1801 AC_CACHE_VAL(ac_cv_enable_implicit_function_declaration_error,
1802 AC_COMPILE_IFELSE(
1803 [
1804 AC_LANG_PROGRAM([[]], [[]])
1805 ],[
1806 ac_cv_enable_implicit_function_declaration_error=yes
1807 ],[
1808 ac_cv_enable_implicit_function_declaration_error=no
1809 ]))
1810 CC="$ac_save_cc"
1811 AC_MSG_RESULT($ac_cv_enable_implicit_function_declaration_error)
1812
1813 if test $ac_cv_enable_implicit_function_declaration_error = yes
1814 then
1815 CFLAGS_NODIST="$CFLAGS_NODIST -Werror=implicit-function-declaration"
1816 fi
1817
Vinay Sajip0b60f642019-10-15 08:26:12 +01001818 AC_MSG_CHECKING(if we can use visibility in $CC)
1819 ac_save_cc="$CC"
1820 CC="$CC -fvisibility=hidden"
1821 AC_CACHE_VAL(ac_cv_enable_visibility,
1822 AC_COMPILE_IFELSE(
1823 [
1824 AC_LANG_PROGRAM([[]], [[]])
1825 ],[
1826 ac_cv_enable_visibility=yes
1827 ],[
1828 ac_cv_enable_visibility=no
1829 ]))
1830 CC="$ac_save_cc"
1831 AC_MSG_RESULT($ac_cv_enable_visibility)
1832
1833 if test $ac_cv_enable_visibility = yes
1834 then
1835 CFLAGS_NODIST="$CFLAGS_NODIST -fvisibility=hidden"
1836 fi
1837
Mark Dickinsonb0e2b4c2008-04-26 20:48:56 +00001838 # if using gcc on alpha, use -mieee to get (near) full IEEE 754
1839 # support. Without this, treatment of subnormals doesn't follow
1840 # the standard.
Matthias Klosedf2aecb2012-03-15 22:19:28 +01001841 case $host in
Mark Dickinsonb0e2b4c2008-04-26 20:48:56 +00001842 alpha*)
1843 BASECFLAGS="$BASECFLAGS -mieee"
1844 ;;
1845 esac
1846
Skip Montanarodecc6a42003-01-01 20:07:49 +00001847 case $ac_sys_system in
1848 SCO_SV*)
1849 BASECFLAGS="$BASECFLAGS -m486 -DSCO5"
1850 ;;
Benjamin Peterson67c38e22008-07-17 16:10:34 +00001851
Ned Deily87adb6e2013-10-18 21:09:56 -07001852 Darwin*)
1853 # -Wno-long-double, -no-cpp-precomp, and -mno-fused-madd
1854 # used to be here, but non-Apple gcc doesn't accept them.
1855 if test "${CC}" = gcc
1856 then
1857 AC_MSG_CHECKING(which compiler should be used)
1858 case "${UNIVERSALSDK}" in
1859 */MacOSX10.4u.sdk)
1860 # Build using 10.4 SDK, force usage of gcc when the
1861 # compiler is gcc, otherwise the user will get very
1862 # confusing error messages when building on OSX 10.6
1863 CC=gcc-4.0
1864 CPP=cpp-4.0
1865 ;;
1866 esac
1867 AC_MSG_RESULT($CC)
1868 fi
Benjamin Peterson67c38e22008-07-17 16:10:34 +00001869
Ned Deily87adb6e2013-10-18 21:09:56 -07001870 if test "${enable_universalsdk}"
1871 then
1872 case "$UNIVERSAL_ARCHS" in
1873 32-bit)
1874 UNIVERSAL_ARCH_FLAGS="-arch ppc -arch i386"
1875 LIPO_32BIT_FLAGS=""
1876 ARCH_RUN_32BIT=""
1877 ;;
1878 64-bit)
1879 UNIVERSAL_ARCH_FLAGS="-arch ppc64 -arch x86_64"
1880 LIPO_32BIT_FLAGS=""
1881 ARCH_RUN_32BIT="true"
1882 ;;
1883 all)
1884 UNIVERSAL_ARCH_FLAGS="-arch i386 -arch ppc -arch ppc64 -arch x86_64"
1885 LIPO_32BIT_FLAGS="-extract ppc7400 -extract i386"
1886 ARCH_RUN_32BIT="/usr/bin/arch -i386 -ppc"
1887 ;;
Ronald Oussoren41761932020-11-08 10:05:27 +01001888 universal2)
1889 UNIVERSAL_ARCH_FLAGS="-arch arm64 -arch x86_64"
1890 LIPO_32BIT_FLAGS=""
1891 ARCH_RUN_32BIT="true"
1892 ;;
Ned Deily87adb6e2013-10-18 21:09:56 -07001893 intel)
1894 UNIVERSAL_ARCH_FLAGS="-arch i386 -arch x86_64"
1895 LIPO_32BIT_FLAGS="-extract i386"
1896 ARCH_RUN_32BIT="/usr/bin/arch -i386"
1897 ;;
1898 intel-32)
1899 UNIVERSAL_ARCH_FLAGS="-arch i386"
1900 LIPO_32BIT_FLAGS=""
1901 ARCH_RUN_32BIT=""
1902 ;;
Ned Deily8c9bb722018-01-30 07:42:14 -05001903 intel-64)
1904 UNIVERSAL_ARCH_FLAGS="-arch x86_64"
1905 LIPO_32BIT_FLAGS=""
1906 ARCH_RUN_32BIT="true"
1907 ;;
Ned Deily87adb6e2013-10-18 21:09:56 -07001908 3-way)
1909 UNIVERSAL_ARCH_FLAGS="-arch i386 -arch ppc -arch x86_64"
1910 LIPO_32BIT_FLAGS="-extract ppc7400 -extract i386"
1911 ARCH_RUN_32BIT="/usr/bin/arch -i386 -ppc"
1912 ;;
1913 *)
Ronald Oussoren41761932020-11-08 10:05:27 +01001914 AC_MSG_ERROR([proper usage is --with-universal-arch=universal2|32-bit|64-bit|all|intel|3-way])
Ned Deily87adb6e2013-10-18 21:09:56 -07001915 ;;
1916 esac
Georg Brandlfcaf9102008-07-16 02:17:56 +00001917
Ned Deily87adb6e2013-10-18 21:09:56 -07001918 if test "${UNIVERSALSDK}" != "/"
1919 then
Ned Deily8c9bb722018-01-30 07:42:14 -05001920 CFLAGS="${UNIVERSAL_ARCH_FLAGS} -isysroot ${UNIVERSALSDK} ${CFLAGS}"
1921 LDFLAGS="${UNIVERSAL_ARCH_FLAGS} -isysroot ${UNIVERSALSDK} ${LDFLAGS}"
Ned Deily87adb6e2013-10-18 21:09:56 -07001922 CPPFLAGS="-isysroot ${UNIVERSALSDK} ${CPPFLAGS}"
Ned Deily8c9bb722018-01-30 07:42:14 -05001923 else
1924 CFLAGS="${UNIVERSAL_ARCH_FLAGS} ${CFLAGS}"
1925 LDFLAGS="${UNIVERSAL_ARCH_FLAGS} ${LDFLAGS}"
Ned Deily87adb6e2013-10-18 21:09:56 -07001926 fi
1927 fi
Georg Brandlfcaf9102008-07-16 02:17:56 +00001928
Ned Deily87adb6e2013-10-18 21:09:56 -07001929 # Calculate an appropriate deployment target for this build:
1930 # The deployment target value is used explicitly to enable certain
1931 # features are enabled (such as builtin libedit support for readline)
Raymond Hettinger15f44ab2016-08-30 10:47:49 -07001932 # through the use of Apple's Availability Macros and is used as a
Ned Deily87adb6e2013-10-18 21:09:56 -07001933 # component of the string returned by distutils.get_platform().
1934 #
1935 # Use the value from:
1936 # 1. the MACOSX_DEPLOYMENT_TARGET environment variable if specified
1937 # 2. the operating system version of the build machine if >= 10.6
1938 # 3. If running on OS X 10.3 through 10.5, use the legacy tests
1939 # below to pick either 10.3, 10.4, or 10.5 as the target.
1940 # 4. If we are running on OS X 10.2 or earlier, good luck!
Ronald Oussoren3c064c12009-09-08 07:12:42 +00001941
Ned Deily87adb6e2013-10-18 21:09:56 -07001942 AC_MSG_CHECKING(which MACOSX_DEPLOYMENT_TARGET to use)
Ned Deily36820b62014-06-25 13:44:22 -07001943 cur_target_major=`sw_vers -productVersion | \
1944 sed 's/\([[0-9]]*\)\.\([[0-9]]*\).*/\1/'`
1945 cur_target_minor=`sw_vers -productVersion | \
1946 sed 's/\([[0-9]]*\)\.\([[0-9]]*\).*/\2/'`
1947 cur_target="${cur_target_major}.${cur_target_minor}"
1948 if test ${cur_target_major} -eq 10 && \
1949 test ${cur_target_minor} -ge 3 && \
1950 test ${cur_target_minor} -le 5
Ned Deily87adb6e2013-10-18 21:09:56 -07001951 then
Ned Deily36820b62014-06-25 13:44:22 -07001952 # OS X 10.3 through 10.5
Ned Deily87adb6e2013-10-18 21:09:56 -07001953 cur_target=10.3
1954 if test ${enable_universalsdk}
1955 then
1956 case "$UNIVERSAL_ARCHS" in
1957 all|3-way|intel|64-bit)
1958 # These configurations were first supported in 10.5
1959 cur_target='10.5'
1960 ;;
1961 esac
1962 else
1963 if test `/usr/bin/arch` = "i386"
1964 then
1965 # 10.4 was the first release to support Intel archs
1966 cur_target="10.4"
1967 fi
1968 fi
1969 fi
1970 CONFIGURE_MACOSX_DEPLOYMENT_TARGET=${MACOSX_DEPLOYMENT_TARGET-${cur_target}}
Ronald Oussoren3c064c12009-09-08 07:12:42 +00001971
Ned Deily87adb6e2013-10-18 21:09:56 -07001972 # Make sure that MACOSX_DEPLOYMENT_TARGET is set in the
1973 # environment with a value that is the same as what we'll use
1974 # in the Makefile to ensure that we'll get the same compiler
1975 # environment during configure and build time.
1976 MACOSX_DEPLOYMENT_TARGET="$CONFIGURE_MACOSX_DEPLOYMENT_TARGET"
1977 export MACOSX_DEPLOYMENT_TARGET
1978 EXPORT_MACOSX_DEPLOYMENT_TARGET=''
1979 AC_MSG_RESULT($MACOSX_DEPLOYMENT_TARGET)
Georg Brandlfcaf9102008-07-16 02:17:56 +00001980
Ronald Oussoren0f20bd92020-11-22 02:13:11 +01001981 AC_MSG_CHECKING(if specified universal architectures work)
1982 AC_LINK_IFELSE([AC_LANG_PROGRAM([[#include <stdio.h>]], [[printf("%d", 42);]])],
1983 [AC_MSG_RESULT(yes)],
1984 [AC_MSG_RESULT(no)
1985 AC_MSG_ERROR(check config.log and use the '--with-universal-archs' option)
1986 ])
1987
Ned Deily87adb6e2013-10-18 21:09:56 -07001988 # end of Darwin* tests
1989 ;;
Skip Montanarodecc6a42003-01-01 20:07:49 +00001990 esac
1991 ;;
1992
1993*)
1994 case $ac_sys_system in
1995 OpenUNIX*|UnixWare*)
1996 BASECFLAGS="$BASECFLAGS -K pentium,host,inline,loop_unroll,alloca "
1997 ;;
1998 SCO_SV*)
1999 BASECFLAGS="$BASECFLAGS -belf -Ki486 -DSCO5"
2000 ;;
2001 esac
2002 ;;
2003esac
2004
Zachary Ware5af85642015-12-21 12:09:17 -06002005case "$CC" in
2006*icc*)
Stefan Krah84a79172020-09-04 22:33:17 +02002007 # ICC needs -fp-model strict or floats behave badly
Zachary Ware5af85642015-12-21 12:09:17 -06002008 CFLAGS_NODIST="$CFLAGS_NODIST -fp-model strict"
2009 ;;
Stefan Krah84a79172020-09-04 22:33:17 +02002010*xlc*)
2011 CFLAGS_NODIST="$CFLAGS_NODIST -qalias=noansi -qmaxmem=-1"
2012 ;;
Zachary Ware5af85642015-12-21 12:09:17 -06002013esac
2014
T. Woutersddbfa2c2017-05-23 01:30:49 +02002015if test "$assertions" = 'true'; then
Fred Drakee1ceaa02001-12-04 20:55:47 +00002016 :
2017else
2018 OPT="-DNDEBUG $OPT"
2019fi
2020
Guido van Rossum6f2260e1996-09-09 16:21:03 +00002021if test "$ac_arch_flags"
Guido van Rossumc5a39031996-07-31 17:35:03 +00002022then
Skip Montanarodecc6a42003-01-01 20:07:49 +00002023 BASECFLAGS="$BASECFLAGS $ac_arch_flags"
Guido van Rossumc5a39031996-07-31 17:35:03 +00002024fi
Guido van Rossum5739e7e1995-01-20 16:50:53 +00002025
Martin v. Löwisa5f73f92001-10-15 08:06:29 +00002026# On some compilers, pthreads are available without further options
2027# (e.g. MacOS X). On some of these systems, the compiler will not
2028# complain if unaccepted options are passed (e.g. gcc on Mac OS X).
2029# So we have to see first whether pthreads are available without
2030# options before we can check whether -Kpthread improves anything.
2031AC_MSG_CHECKING(whether pthreads are available without options)
2032AC_CACHE_VAL(ac_cv_pthread_is_default,
Matthias Kloseb159a552010-04-25 21:00:44 +00002033[AC_RUN_IFELSE([AC_LANG_SOURCE([[
Stefan Krah7dba5942012-11-22 22:49:11 +01002034#include <stdio.h>
Martin v. Löwisa5f73f92001-10-15 08:06:29 +00002035#include <pthread.h>
2036
2037void* routine(void* p){return NULL;}
2038
2039int main(){
2040 pthread_t p;
2041 if(pthread_create(&p,NULL,routine,NULL)!=0)
2042 return 1;
Jack Jansen4f8d0542002-03-08 13:43:01 +00002043 (void)pthread_detach(p);
Martin v. Löwisa5f73f92001-10-15 08:06:29 +00002044 return 0;
2045}
Matthias Kloseb159a552010-04-25 21:00:44 +00002046]])],[
Skip Montanarod8d39a02003-07-10 20:44:10 +00002047 ac_cv_pthread_is_default=yes
2048 ac_cv_kthread=no
2049 ac_cv_pthread=no
Matthias Kloseb159a552010-04-25 21:00:44 +00002050],[ac_cv_pthread_is_default=no],[ac_cv_pthread_is_default=no])
Martin v. Löwisa5f73f92001-10-15 08:06:29 +00002051])
2052AC_MSG_RESULT($ac_cv_pthread_is_default)
2053
2054
Victor Stinner1b80b242016-04-12 22:34:58 +02002055if test $ac_cv_pthread_is_default = yes
Martin v. Löwisa5f73f92001-10-15 08:06:29 +00002056then
2057 ac_cv_kpthread=no
2058else
Martin v. Löwis130fb172001-07-19 11:00:41 +00002059# -Kpthread, if available, provides the right #defines
2060# and linker options to make pthread_create available
Martin v. Löwis260aecc2001-10-07 08:14:41 +00002061# Some compilers won't report that they do not support -Kpthread,
2062# so we need to run a program to see whether it really made the
2063# function available.
Martin v. Löwis130fb172001-07-19 11:00:41 +00002064AC_MSG_CHECKING(whether $CC accepts -Kpthread)
2065AC_CACHE_VAL(ac_cv_kpthread,
2066[ac_save_cc="$CC"
2067CC="$CC -Kpthread"
Matthias Kloseb159a552010-04-25 21:00:44 +00002068AC_RUN_IFELSE([AC_LANG_SOURCE([[
Stefan Krah7dba5942012-11-22 22:49:11 +01002069#include <stdio.h>
Martin v. Löwis260aecc2001-10-07 08:14:41 +00002070#include <pthread.h>
2071
2072void* routine(void* p){return NULL;}
2073
2074int main(){
2075 pthread_t p;
2076 if(pthread_create(&p,NULL,routine,NULL)!=0)
2077 return 1;
Jack Jansen4f8d0542002-03-08 13:43:01 +00002078 (void)pthread_detach(p);
Martin v. Löwis260aecc2001-10-07 08:14:41 +00002079 return 0;
2080}
Matthias Kloseb159a552010-04-25 21:00:44 +00002081]])],[ac_cv_kpthread=yes],[ac_cv_kpthread=no],[ac_cv_kpthread=no])
Martin v. Löwis130fb172001-07-19 11:00:41 +00002082CC="$ac_save_cc"])
Martin v. Löwis130fb172001-07-19 11:00:41 +00002083AC_MSG_RESULT($ac_cv_kpthread)
Martin v. Löwisa5f73f92001-10-15 08:06:29 +00002084fi
Martin v. Löwis130fb172001-07-19 11:00:41 +00002085
Skip Montanarod8d39a02003-07-10 20:44:10 +00002086if test $ac_cv_kpthread = no -a $ac_cv_pthread_is_default = no
Martin v. Löwis5f433f02003-05-05 05:05:30 +00002087then
2088# -Kthread, if available, provides the right #defines
2089# and linker options to make pthread_create available
2090# Some compilers won't report that they do not support -Kthread,
2091# so we need to run a program to see whether it really made the
2092# function available.
2093AC_MSG_CHECKING(whether $CC accepts -Kthread)
2094AC_CACHE_VAL(ac_cv_kthread,
2095[ac_save_cc="$CC"
2096CC="$CC -Kthread"
Matthias Kloseb159a552010-04-25 21:00:44 +00002097AC_RUN_IFELSE([AC_LANG_SOURCE([[
Stefan Krah7dba5942012-11-22 22:49:11 +01002098#include <stdio.h>
Martin v. Löwis5f433f02003-05-05 05:05:30 +00002099#include <pthread.h>
2100
2101void* routine(void* p){return NULL;}
2102
2103int main(){
2104 pthread_t p;
2105 if(pthread_create(&p,NULL,routine,NULL)!=0)
2106 return 1;
2107 (void)pthread_detach(p);
2108 return 0;
2109}
Matthias Kloseb159a552010-04-25 21:00:44 +00002110]])],[ac_cv_kthread=yes],[ac_cv_kthread=no],[ac_cv_kthread=no])
Martin v. Löwis5f433f02003-05-05 05:05:30 +00002111CC="$ac_save_cc"])
2112AC_MSG_RESULT($ac_cv_kthread)
2113fi
2114
Skip Montanarod8d39a02003-07-10 20:44:10 +00002115if test $ac_cv_kthread = no -a $ac_cv_pthread_is_default = no
Martin v. Löwis4ee6eef2003-05-26 05:37:51 +00002116then
2117# -pthread, if available, provides the right #defines
2118# and linker options to make pthread_create available
2119# Some compilers won't report that they do not support -pthread,
2120# so we need to run a program to see whether it really made the
2121# function available.
2122AC_MSG_CHECKING(whether $CC accepts -pthread)
doko@python.org7981f202013-01-25 15:33:25 +01002123AC_CACHE_VAL(ac_cv_pthread,
Martin v. Löwis4ee6eef2003-05-26 05:37:51 +00002124[ac_save_cc="$CC"
2125CC="$CC -pthread"
Matthias Kloseb159a552010-04-25 21:00:44 +00002126AC_RUN_IFELSE([AC_LANG_SOURCE([[
Stefan Krah7dba5942012-11-22 22:49:11 +01002127#include <stdio.h>
Martin v. Löwis4ee6eef2003-05-26 05:37:51 +00002128#include <pthread.h>
2129
2130void* routine(void* p){return NULL;}
2131
2132int main(){
2133 pthread_t p;
2134 if(pthread_create(&p,NULL,routine,NULL)!=0)
2135 return 1;
2136 (void)pthread_detach(p);
2137 return 0;
2138}
Matthias Kloseb159a552010-04-25 21:00:44 +00002139]])],[ac_cv_pthread=yes],[ac_cv_pthread=no],[ac_cv_pthread=no])
Martin v. Löwis4ee6eef2003-05-26 05:37:51 +00002140CC="$ac_save_cc"])
2141AC_MSG_RESULT($ac_cv_pthread)
2142fi
2143
Martin v. Löwisab1e5852003-06-28 07:46:38 +00002144# If we have set a CC compiler flag for thread support then
2145# check if it works for CXX, too.
2146ac_cv_cxx_thread=no
2147if test ! -z "$CXX"
2148then
2149AC_MSG_CHECKING(whether $CXX also accepts flags for thread support)
2150ac_save_cxx="$CXX"
2151
2152if test "$ac_cv_kpthread" = "yes"
2153then
Victor Stinner1b80b242016-04-12 22:34:58 +02002154 CXX="$CXX -Kpthread"
Martin v. Löwisab1e5852003-06-28 07:46:38 +00002155 ac_cv_cxx_thread=yes
2156elif test "$ac_cv_kthread" = "yes"
2157then
2158 CXX="$CXX -Kthread"
2159 ac_cv_cxx_thread=yes
2160elif test "$ac_cv_pthread" = "yes"
Victor Stinner1b80b242016-04-12 22:34:58 +02002161then
Martin v. Löwisab1e5852003-06-28 07:46:38 +00002162 CXX="$CXX -pthread"
2163 ac_cv_cxx_thread=yes
2164fi
2165
2166if test $ac_cv_cxx_thread = yes
2167then
2168 echo 'void foo();int main(){foo();}void foo(){}' > conftest.$ac_ext
2169 $CXX -c conftest.$ac_ext 2>&5
2170 if $CXX -o conftest$ac_exeext conftest.$ac_objext 2>&5 \
2171 && test -s conftest$ac_exeext && ./conftest$ac_exeext
2172 then
2173 ac_cv_cxx_thread=yes
2174 else
2175 ac_cv_cxx_thread=no
Martin v. Löwisab1e5852003-06-28 07:46:38 +00002176 fi
2177 rm -fr conftest*
Martin v. Löwisab1e5852003-06-28 07:46:38 +00002178fi
Brett Cannonc601e0f2004-11-07 01:24:12 +00002179AC_MSG_RESULT($ac_cv_cxx_thread)
Martin v. Löwisab1e5852003-06-28 07:46:38 +00002180fi
Martin v. Löwis519adae2003-09-20 10:47:47 +00002181CXX="$ac_save_cxx"
Martin v. Löwisab1e5852003-06-28 07:46:38 +00002182
Fred Drakece81d592000-07-09 14:39:29 +00002183dnl # check for ANSI or K&R ("traditional") preprocessor
2184dnl AC_MSG_CHECKING(for C preprocessor type)
Matthias Kloseb159a552010-04-25 21:00:44 +00002185dnl AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
Fred Drakece81d592000-07-09 14:39:29 +00002186dnl #define spam(name, doc) {#name, &name, #name "() -- " doc}
2187dnl int foo;
2188dnl struct {char *name; int *addr; char *doc;} desc = spam(foo, "something");
Matthias Kloseb159a552010-04-25 21:00:44 +00002189dnl ]], [[;]])],[cpp_type=ansi],[AC_DEFINE(HAVE_OLD_CPP) cpp_type=traditional])
Fred Drakece81d592000-07-09 14:39:29 +00002190dnl AC_MSG_RESULT($cpp_type)
Guido van Rossum300fda71996-08-19 21:58:16 +00002191
Guido van Rossum627b2d71993-12-24 10:39:16 +00002192# checks for header files
Guido van Rossum76be6ed1995-01-02 18:33:54 +00002193AC_HEADER_STDC
stratakise768c862018-01-23 16:11:24 +01002194AC_CHECK_HEADERS(asm/types.h crypt.h conio.h direct.h dlfcn.h errno.h \
Thomas Wouters0e3f5912006-08-11 14:57:12 +00002195fcntl.h grp.h \
doko@ubuntu.com1a4f5612014-04-17 20:13:44 +02002196ieeefp.h io.h langinfo.h libintl.h process.h pthread.h \
Benjamin Peterson4fe55102016-09-06 11:58:01 -07002197sched.h shadow.h signal.h stropts.h termios.h \
Benjamin Petersonea137402018-09-13 21:57:31 -07002198utime.h \
Jesus Cead8b9ae62011-11-14 19:07:41 +01002199poll.h sys/devpoll.h sys/epoll.h sys/poll.h \
Antoine Pitroubcf2b592012-02-08 23:28:36 +01002200sys/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 +01002201sys/kern_control.h sys/loadavg.h sys/lock.h sys/mkdev.h sys/modem.h \
Benjamin Petersonfb2ae152016-12-19 23:54:25 -08002202sys/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 +01002203sys/stat.h sys/syscall.h sys/sys_domain.h sys/termio.h sys/time.h \
Giampaolo Rodolàc9c2c8b2011-02-25 14:39:16 +00002204sys/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 -07002205libutil.h sys/resource.h netpacket/packet.h sysexits.h bluetooth.h \
Benjamin Peterson93b2dee2016-09-09 10:22:45 -07002206linux/tipc.h linux/random.h spawn.h util.h alloca.h endian.h \
Christian Heimescd9fed62020-11-13 19:48:52 +01002207sys/endian.h sys/sysmacros.h linux/memfd.h linux/wait.h sys/memfd.h \
2208sys/mman.h sys/eventfd.h)
Guido van Rossum76be6ed1995-01-02 18:33:54 +00002209AC_HEADER_DIRENT
Martin v. Löwisdbe3f762002-10-10 14:27:30 +00002210AC_HEADER_MAJOR
Guido van Rossum627b2d71993-12-24 10:39:16 +00002211
Benjamin Peterson93b2dee2016-09-09 10:22:45 -07002212# bluetooth/bluetooth.h has been known to not compile with -std=c99.
2213# http://permalink.gmane.org/gmane.linux.bluez.kernel/22294
2214SAVE_CFLAGS=$CFLAGS
2215CFLAGS="-std=c99 $CFLAGS"
2216AC_CHECK_HEADERS(bluetooth/bluetooth.h)
2217CFLAGS=$SAVE_CFLAGS
2218
Gregory P. Smith3b1f2c32011-05-15 12:18:23 -07002219# On Darwin (OS X) net/if.h requires sys/socket.h to be imported first.
2220AC_CHECK_HEADERS([net/if.h], [], [],
2221[#include <stdio.h>
2222#ifdef STDC_HEADERS
2223# include <stdlib.h>
2224# include <stddef.h>
2225#else
2226# ifdef HAVE_STDLIB_H
2227# include <stdlib.h>
2228# endif
2229#endif
2230#ifdef HAVE_SYS_SOCKET_H
2231# include <sys/socket.h>
2232#endif
2233])
2234
Martin v. Löwis11017b12006-01-14 18:12:57 +00002235# On Linux, netlink.h requires asm/types.h
2236AC_CHECK_HEADERS(linux/netlink.h,,,[
2237#ifdef HAVE_ASM_TYPES_H
2238#include <asm/types.h>
2239#endif
2240#ifdef HAVE_SYS_SOCKET_H
2241#include <sys/socket.h>
2242#endif
2243])
2244
Bjorn Anderssonbb816512018-09-26 06:47:52 -07002245# On Linux, qrtr.h requires asm/types.h
2246AC_CHECK_HEADERS(linux/qrtr.h,,,[
2247#ifdef HAVE_ASM_TYPES_H
2248#include <asm/types.h>
2249#endif
2250#ifdef HAVE_SYS_SOCKET_H
2251#include <sys/socket.h>
2252#endif
2253])
2254
caaveryeffc12f2017-09-06 18:18:10 -04002255AC_CHECK_HEADERS(linux/vm_sockets.h,,,[
2256#ifdef HAVE_SYS_SOCKET_H
2257#include <sys/socket.h>
2258#endif
2259])
2260
karl ding360371f2020-04-29 15:31:19 -07002261# On Linux, can.h, can/bcm.h, can/j1939.h, can/raw.h require sys/socket.h
2262AC_CHECK_HEADERS(linux/can.h linux/can/bcm.h linux/can/j1939.h linux/can/raw.h,,,[
Charles-François Natali47413c12011-10-06 19:47:44 +02002263#ifdef HAVE_SYS_SOCKET_H
2264#include <sys/socket.h>
2265#endif
2266])
2267
Guido van Rossum627b2d71993-12-24 10:39:16 +00002268# checks for typedefs
Guido van Rossum5739e7e1995-01-20 16:50:53 +00002269was_it_defined=no
2270AC_MSG_CHECKING(for clock_t in time.h)
Martin v. Löwisc45929e2002-04-06 10:10:49 +00002271AC_EGREP_HEADER(clock_t, time.h, was_it_defined=yes, [
2272 AC_DEFINE(clock_t, long, [Define to 'long' if <time.h> doesn't define.])
2273])
Guido van Rossum5739e7e1995-01-20 16:50:53 +00002274AC_MSG_RESULT($was_it_defined)
2275
Neal Norwitz11690112002-07-30 01:08:28 +00002276AC_MSG_CHECKING(for makedev)
Jesus Cea740f53a2010-04-28 11:35:30 +00002277AC_LINK_IFELSE([AC_LANG_PROGRAM([[
2278#if defined(MAJOR_IN_MKDEV)
2279#include <sys/mkdev.h>
2280#elif defined(MAJOR_IN_SYSMACROS)
2281#include <sys/sysmacros.h>
2282#else
2283#include <sys/types.h>
2284#endif
2285]], [[
2286 makedev(0, 0) ]])
Matthias Kloseb159a552010-04-25 21:00:44 +00002287],[ac_cv_has_makedev=yes],[ac_cv_has_makedev=no])
Neal Norwitz11690112002-07-30 01:08:28 +00002288AC_MSG_RESULT($ac_cv_has_makedev)
2289if test "$ac_cv_has_makedev" = "yes"; then
2290 AC_DEFINE(HAVE_MAKEDEV, 1, [Define this if you have the makedev macro.])
2291fi
2292
Christian Heimes985ecdc2013-11-20 11:46:18 +01002293# byte swapping
2294AC_MSG_CHECKING(for le64toh)
2295AC_LINK_IFELSE([AC_LANG_PROGRAM([[
2296#ifdef HAVE_ENDIAN_H
2297#include <endian.h>
2298#elif defined(HAVE_SYS_ENDIAN_H)
2299#include <sys/endian.h>
2300#endif
2301]], [[
2302 le64toh(1) ]])
2303],[ac_cv_has_le64toh=yes],[ac_cv_has_le64toh=no])
2304AC_MSG_RESULT($ac_cv_has_le64toh)
2305if test "$ac_cv_has_le64toh" = "yes"; then
2306 AC_DEFINE(HAVE_HTOLE64, 1, [Define this if you have le64toh()])
2307fi
2308
Martin v. Löwis399a6892002-10-04 10:22:02 +00002309use_lfs=yes
doko@ubuntu.com006a56c2016-06-14 10:15:25 +02002310# Don't use largefile support for GNU/Hurd
2311case $ac_sys_system in GNU*)
2312 use_lfs=no
2313esac
2314
Martin v. Löwis399a6892002-10-04 10:22:02 +00002315if test "$use_lfs" = "yes"; then
Guido van Rossum810cc512001-09-09 23:51:39 +00002316# Two defines needed to enable largefile support on various platforms
2317# These may affect some typedefs
Georg Brandl216e4042011-02-19 08:58:23 +00002318case $ac_sys_system/$ac_sys_release in
2319AIX*)
Victor Stinner1b80b242016-04-12 22:34:58 +02002320 AC_DEFINE(_LARGE_FILES, 1,
Georg Brandl216e4042011-02-19 08:58:23 +00002321 [This must be defined on AIX systems to enable large file support.])
2322 ;;
2323esac
Victor Stinner1b80b242016-04-12 22:34:58 +02002324AC_DEFINE(_LARGEFILE_SOURCE, 1,
Martin v. Löwisc45929e2002-04-06 10:10:49 +00002325[This must be defined on some systems to enable large file support.])
2326AC_DEFINE(_FILE_OFFSET_BITS, 64,
2327[This must be set to 64 on some systems to enable large file support.])
Martin v. Löwis399a6892002-10-04 10:22:02 +00002328fi
Guido van Rossum810cc512001-09-09 23:51:39 +00002329
Guido van Rossum300fda71996-08-19 21:58:16 +00002330# Add some code to confdefs.h so that the test for off_t works on SCO
2331cat >> confdefs.h <<\EOF
2332#if defined(SCO_DS)
2333#undef _OFF_T
2334#endif
2335EOF
2336
Guido van Rossumef2255b2000-03-10 22:30:29 +00002337# Type availability checks
Guido van Rossum76be6ed1995-01-02 18:33:54 +00002338AC_TYPE_MODE_T
2339AC_TYPE_OFF_T
2340AC_TYPE_PID_T
Matthias Klosebada4c32010-04-25 21:18:48 +00002341AC_DEFINE_UNQUOTED([RETSIGTYPE],[void],[assume C89 semantics that RETSIGTYPE is always void])
Guido van Rossum76be6ed1995-01-02 18:33:54 +00002342AC_TYPE_SIZE_T
2343AC_TYPE_UID_T
Mark Dickinson983bc162012-12-02 12:11:38 +00002344
Christian Heimes400adb02008-02-01 08:12:03 +00002345AC_CHECK_TYPE(ssize_t,
Matthias Klosec80c93f2010-04-24 17:04:35 +00002346 AC_DEFINE(HAVE_SSIZE_T, 1, [Define if your compiler provides ssize_t]),,)
Stefan Krah1919b7e2012-03-21 18:25:23 +01002347AC_CHECK_TYPE(__uint128_t,
2348 AC_DEFINE(HAVE_GCC_UINT128_T, 1, [Define if your compiler provides __uint128_t]),,)
Guido van Rossum627b2d71993-12-24 10:39:16 +00002349
Guido van Rossumef2255b2000-03-10 22:30:29 +00002350# Sizes of various common basic types
Skip Montanarob9820a32004-01-17 00:16:12 +00002351# ANSI C requires sizeof(char) == 1, so no need to check it
Guido van Rossum3065c942001-09-17 04:03:14 +00002352AC_CHECK_SIZEOF(int, 4)
2353AC_CHECK_SIZEOF(long, 4)
Benjamin Petersoned4aa832016-09-05 17:44:18 -07002354AC_CHECK_SIZEOF(long long, 8)
Guido van Rossum3065c942001-09-17 04:03:14 +00002355AC_CHECK_SIZEOF(void *, 4)
Guido van Rossum3065c942001-09-17 04:03:14 +00002356AC_CHECK_SIZEOF(short, 2)
2357AC_CHECK_SIZEOF(float, 4)
2358AC_CHECK_SIZEOF(double, 8)
2359AC_CHECK_SIZEOF(fpos_t, 4)
Martin v. Löwis18e16552006-02-15 17:27:45 +00002360AC_CHECK_SIZEOF(size_t, 4)
Christian Heimes400adb02008-02-01 08:12:03 +00002361AC_CHECK_SIZEOF(pid_t, 4)
Benjamin Petersondf6ff7b2016-09-06 13:53:14 -07002362AC_CHECK_SIZEOF(uintptr_t)
Guido van Rossumac405f61994-09-12 10:56:06 +00002363
Eitan Adler3055c942018-05-15 22:58:09 -07002364AC_TYPE_LONG_DOUBLE
Travis E. Oliphant9b307842007-10-12 22:06:37 +00002365AC_CHECK_SIZEOF(long double, 16)
Travis E. Oliphant9b307842007-10-12 22:06:37 +00002366
Thomas Woutersb2137042007-02-01 18:02:27 +00002367AC_CHECK_SIZEOF(_Bool, 1)
Thomas Woutersb2137042007-02-01 18:02:27 +00002368
Alexandre Vassalotti0805b4a2009-07-17 05:47:33 +00002369AC_CHECK_SIZEOF(off_t, [], [
2370#ifdef HAVE_SYS_TYPES_H
Guido van Rossum00f0f6e1999-01-06 18:52:29 +00002371#include <sys/types.h>
Alexandre Vassalotti0805b4a2009-07-17 05:47:33 +00002372#endif
Guido van Rossum00f0f6e1999-01-06 18:52:29 +00002373])
Guido van Rossum00f0f6e1999-01-06 18:52:29 +00002374
2375AC_MSG_CHECKING(whether to enable large file support)
Mark Dickinson2df5d282009-12-31 21:22:50 +00002376if test "$ac_cv_sizeof_off_t" -gt "$ac_cv_sizeof_long" -a \
Guido van Rossum8bc1dfd1999-04-10 16:01:48 +00002377 "$ac_cv_sizeof_long_long" -ge "$ac_cv_sizeof_off_t"; then
Victor Stinner1b80b242016-04-12 22:34:58 +02002378 AC_DEFINE(HAVE_LARGEFILE_SUPPORT, 1,
Martin v. Löwisc45929e2002-04-06 10:10:49 +00002379 [Defined to enable large file support when an off_t is bigger than a long
Sergey Fedoseev52c1a6a2019-08-26 20:12:47 +05002380 and long long is at least as big as an off_t. You may need
Martin v. Löwisc45929e2002-04-06 10:10:49 +00002381 to add some flags for configuration and compilation to enable this mode.
2382 (For Solaris and Linux, the necessary defines are already defined.)])
Guido van Rossum00f0f6e1999-01-06 18:52:29 +00002383 AC_MSG_RESULT(yes)
2384else
2385 AC_MSG_RESULT(no)
2386fi
2387
Alexandre Vassalotti0805b4a2009-07-17 05:47:33 +00002388AC_CHECK_SIZEOF(time_t, [], [
2389#ifdef HAVE_SYS_TYPES_H
2390#include <sys/types.h>
2391#endif
2392#ifdef HAVE_TIME_H
Fred Drakea3f6e912000-06-29 20:44:47 +00002393#include <time.h>
Alexandre Vassalotti0805b4a2009-07-17 05:47:33 +00002394#endif
Fred Drakea3f6e912000-06-29 20:44:47 +00002395])
Guido van Rossum00f0f6e1999-01-06 18:52:29 +00002396
Trent Mick635f6fb2000-08-23 21:33:05 +00002397# if have pthread_t then define SIZEOF_PTHREAD_T
Martin v. Löwis123cbd22001-07-19 14:21:10 +00002398ac_save_cc="$CC"
2399if test "$ac_cv_kpthread" = "yes"
2400then CC="$CC -Kpthread"
Martin v. Löwis5f433f02003-05-05 05:05:30 +00002401elif test "$ac_cv_kthread" = "yes"
2402then CC="$CC -Kthread"
Martin v. Löwis4ee6eef2003-05-26 05:37:51 +00002403elif test "$ac_cv_pthread" = "yes"
2404then CC="$CC -pthread"
Martin v. Löwis123cbd22001-07-19 14:21:10 +00002405fi
Alexandre Vassalotti0805b4a2009-07-17 05:47:33 +00002406
Trent Mick635f6fb2000-08-23 21:33:05 +00002407AC_MSG_CHECKING(for pthread_t)
2408have_pthread_t=no
Matthias Kloseb159a552010-04-25 21:00:44 +00002409AC_COMPILE_IFELSE([
2410 AC_LANG_PROGRAM([[#include <pthread.h>]], [[pthread_t x; x = *(pthread_t*)0;]])
2411],[have_pthread_t=yes],[])
Trent Mick635f6fb2000-08-23 21:33:05 +00002412AC_MSG_RESULT($have_pthread_t)
2413if test "$have_pthread_t" = yes ; then
Alexandre Vassalotti0805b4a2009-07-17 05:47:33 +00002414 AC_CHECK_SIZEOF(pthread_t, [], [
2415#ifdef HAVE_PTHREAD_H
Neal Norwitz6eb37f02003-02-23 23:28:15 +00002416#include <pthread.h>
Alexandre Vassalotti0805b4a2009-07-17 05:47:33 +00002417#endif
Trent Mick635f6fb2000-08-23 21:33:05 +00002418 ])
Trent Mick635f6fb2000-08-23 21:33:05 +00002419fi
Masayuki Yamamoto731e1892017-10-06 19:41:34 +09002420
2421# Issue #25658: POSIX hasn't defined that pthread_key_t is compatible with int.
2422# This checking will be unnecessary after removing deprecated TLS API.
2423AC_CHECK_SIZEOF(pthread_key_t, [], [[#include <pthread.h>]])
2424AC_MSG_CHECKING(whether pthread_key_t is compatible with int)
2425if test "$ac_cv_sizeof_pthread_key_t" -eq "$ac_cv_sizeof_int" ; then
2426 AC_COMPILE_IFELSE(
2427 [AC_LANG_PROGRAM([[#include <pthread.h>]], [[pthread_key_t k; k * 1;]])],
2428 [ac_pthread_key_t_is_arithmetic_type=yes],
2429 [ac_pthread_key_t_is_arithmetic_type=no]
2430 )
2431 AC_MSG_RESULT($ac_pthread_key_t_is_arithmetic_type)
2432 if test "$ac_pthread_key_t_is_arithmetic_type" = yes ; then
2433 AC_DEFINE(PTHREAD_KEY_T_IS_COMPATIBLE_WITH_INT, 1,
2434 [Define if pthread_key_t is compatible with int.])
2435 fi
2436else
2437 AC_MSG_RESULT(no)
2438fi
Martin v. Löwis123cbd22001-07-19 14:21:10 +00002439CC="$ac_save_cc"
Trent Mick635f6fb2000-08-23 21:33:05 +00002440
Bob Ippolito7026a0a2005-03-28 23:23:47 +00002441AC_SUBST(OTHER_LIBTOOL_OPT)
2442case $ac_sys_system/$ac_sys_release in
Victor Stinner1b80b242016-04-12 22:34:58 +02002443 Darwin/@<:@01567@:>@\..*)
Bob Ippolito7026a0a2005-03-28 23:23:47 +00002444 OTHER_LIBTOOL_OPT="-prebind -seg1addr 0x10000000"
2445 ;;
2446 Darwin/*)
2447 OTHER_LIBTOOL_OPT=""
2448 ;;
2449esac
2450
Ronald Oussoren5bbab3e2009-09-06 11:01:15 +00002451
Guido van Rossum54ecc3d1999-01-27 17:53:11 +00002452AC_SUBST(LIBTOOL_CRUFT)
2453case $ac_sys_system/$ac_sys_release in
Victor Stinner1b80b242016-04-12 22:34:58 +02002454 Darwin/@<:@01567@:>@\..*)
Thomas Wouters477c8d52006-05-27 19:21:47 +00002455 LIBTOOL_CRUFT="-framework System -lcc_dynamic"
2456 if test "${enable_universalsdk}"; then
2457 :
2458 else
Ronald Oussorene3da75a2010-02-11 13:38:58 +00002459 LIBTOOL_CRUFT="${LIBTOOL_CRUFT} -arch_only `/usr/bin/arch`"
Thomas Wouters477c8d52006-05-27 19:21:47 +00002460 fi
Jack Jansenb36687a2004-07-16 08:43:47 +00002461 LIBTOOL_CRUFT=$LIBTOOL_CRUFT' -install_name $(PYTHONFRAMEWORKINSTALLDIR)/Versions/$(VERSION)/$(PYTHONFRAMEWORK)'
Jack Jansena3891ea2001-09-07 14:25:12 +00002462 LIBTOOL_CRUFT=$LIBTOOL_CRUFT' -compatibility_version $(VERSION) -current_version $(VERSION)';;
Guido van Rossum5839e582000-10-09 19:52:35 +00002463 Darwin/*)
Ronald Oussoren9812a6c2010-02-07 11:53:18 +00002464 gcc_version=`gcc -dumpversion`
Bob Ippolito7026a0a2005-03-28 23:23:47 +00002465 if test ${gcc_version} '<' 4.0
2466 then
2467 LIBTOOL_CRUFT="-lcc_dynamic"
Victor Stinner1b80b242016-04-12 22:34:58 +02002468 else
Bob Ippolito7026a0a2005-03-28 23:23:47 +00002469 LIBTOOL_CRUFT=""
2470 fi
Matthias Kloseb159a552010-04-25 21:00:44 +00002471 AC_RUN_IFELSE([AC_LANG_SOURCE([[
Ronald Oussoren5bbab3e2009-09-06 11:01:15 +00002472 #include <unistd.h>
2473 int main(int argc, char*argv[])
2474 {
2475 if (sizeof(long) == 4) {
2476 return 0;
2477 } else {
2478 return 1;
2479 }
Ronald Oussoren3c064c12009-09-08 07:12:42 +00002480 }
Matthias Kloseb159a552010-04-25 21:00:44 +00002481 ]])],[ac_osx_32bit=yes],[ac_osx_32bit=no],[ac_osx_32bit=yes])
Victor Stinner1b80b242016-04-12 22:34:58 +02002482
Ronald Oussoren5bbab3e2009-09-06 11:01:15 +00002483 if test "${ac_osx_32bit}" = "yes"; then
Ronald Oussorene3da75a2010-02-11 13:38:58 +00002484 case `/usr/bin/arch` in
Victor Stinner1b80b242016-04-12 22:34:58 +02002485 i386)
2486 MACOSX_DEFAULT_ARCH="i386"
Ronald Oussoren5bbab3e2009-09-06 11:01:15 +00002487 ;;
Victor Stinner1b80b242016-04-12 22:34:58 +02002488 ppc)
2489 MACOSX_DEFAULT_ARCH="ppc"
Ronald Oussoren5bbab3e2009-09-06 11:01:15 +00002490 ;;
2491 *)
Ronald Oussoren41761932020-11-08 10:05:27 +01002492 AC_MSG_ERROR([Unexpected output of 'arch' on macOS])
Ronald Oussoren5bbab3e2009-09-06 11:01:15 +00002493 ;;
2494 esac
2495 else
Ronald Oussorene3da75a2010-02-11 13:38:58 +00002496 case `/usr/bin/arch` in
Victor Stinner1b80b242016-04-12 22:34:58 +02002497 i386)
2498 MACOSX_DEFAULT_ARCH="x86_64"
Ronald Oussoren5bbab3e2009-09-06 11:01:15 +00002499 ;;
Victor Stinner1b80b242016-04-12 22:34:58 +02002500 ppc)
2501 MACOSX_DEFAULT_ARCH="ppc64"
Ronald Oussoren41761932020-11-08 10:05:27 +01002502 ;;
2503 arm64)
2504 MACOSX_DEFAULT_ARCH="arm64"
Ronald Oussoren5bbab3e2009-09-06 11:01:15 +00002505 ;;
2506 *)
Ronald Oussoren41761932020-11-08 10:05:27 +01002507 AC_MSG_ERROR([Unexpected output of 'arch' on macOS])
Ronald Oussoren5bbab3e2009-09-06 11:01:15 +00002508 ;;
2509 esac
2510
Ronald Oussoren5bbab3e2009-09-06 11:01:15 +00002511 fi
2512
2513 LIBTOOL_CRUFT=$LIBTOOL_CRUFT" -lSystem -lSystemStubs -arch_only ${MACOSX_DEFAULT_ARCH}"
Jack Jansenb36687a2004-07-16 08:43:47 +00002514 LIBTOOL_CRUFT=$LIBTOOL_CRUFT' -install_name $(PYTHONFRAMEWORKINSTALLDIR)/Versions/$(VERSION)/$(PYTHONFRAMEWORK)'
Jack Jansenb6e9cad2001-08-15 01:26:28 +00002515 LIBTOOL_CRUFT=$LIBTOOL_CRUFT' -compatibility_version $(VERSION) -current_version $(VERSION)';;
Guido van Rossum54ecc3d1999-01-27 17:53:11 +00002516esac
Jack Jansenb6e9cad2001-08-15 01:26:28 +00002517AC_MSG_CHECKING(for --enable-framework)
2518if test "$enable_framework"
Guido van Rossum54ecc3d1999-01-27 17:53:11 +00002519then
Skip Montanarodecc6a42003-01-01 20:07:49 +00002520 BASECFLAGS="$BASECFLAGS -fno-common -dynamic"
Victor Stinner1b80b242016-04-12 22:34:58 +02002521 # -F. is needed to allow linking to the framework while
Jack Jansenb6e9cad2001-08-15 01:26:28 +00002522 # in the build location.
Victor Stinner1b80b242016-04-12 22:34:58 +02002523 AC_DEFINE(WITH_NEXT_FRAMEWORK, 1,
Martin v. Löwisc45929e2002-04-06 10:10:49 +00002524 [Define if you want to produce an OpenStep/Rhapsody framework
2525 (shared library plus accessory files).])
Guido van Rossum54ecc3d1999-01-27 17:53:11 +00002526 AC_MSG_RESULT(yes)
Ronald Oussoren99aab652009-06-08 21:22:57 +00002527 if test $enable_shared = "yes"
2528 then
2529 AC_MSG_ERROR([Specifying both --enable-shared and --enable-framework is not supported, use only --enable-framework instead])
2530 fi
Guido van Rossum54ecc3d1999-01-27 17:53:11 +00002531else
2532 AC_MSG_RESULT(no)
2533fi
2534
Jack Jansenb6e9cad2001-08-15 01:26:28 +00002535AC_MSG_CHECKING(for dyld)
Jack Jansen9a66b6d2001-08-08 13:56:14 +00002536case $ac_sys_system/$ac_sys_release in
2537 Darwin/*)
Victor Stinner1b80b242016-04-12 22:34:58 +02002538 AC_DEFINE(WITH_DYLD, 1,
Martin v. Löwisc45929e2002-04-06 10:10:49 +00002539 [Define if you want to use the new-style (Openstep, Rhapsody, MacOS)
2540 dynamic linker (dyld) instead of the old-style (NextStep) dynamic
2541 linker (rld). Dyld is necessary to support frameworks.])
Jack Jansen9a66b6d2001-08-08 13:56:14 +00002542 AC_MSG_RESULT(always on for Darwin)
2543 ;;
2544 *)
Jack Jansenb6e9cad2001-08-15 01:26:28 +00002545 AC_MSG_RESULT(no)
2546 ;;
Jack Jansen9a66b6d2001-08-08 13:56:14 +00002547esac
Guido van Rossum54ecc3d1999-01-27 17:53:11 +00002548
Guido van Rossumac405f61994-09-12 10:56:06 +00002549# Set info about shared libraries.
doko@ubuntu.comd5537d02013-03-21 13:21:49 -07002550AC_SUBST(SHLIB_SUFFIX)
Guido van Rossumac405f61994-09-12 10:56:06 +00002551AC_SUBST(LDSHARED)
Tarek Ziadé03d788d2010-04-03 08:46:49 +00002552AC_SUBST(LDCXXSHARED)
Neil Schemenauerb3531b82001-02-16 04:09:05 +00002553AC_SUBST(BLDSHARED)
Guido van Rossumac405f61994-09-12 10:56:06 +00002554AC_SUBST(CCSHARED)
2555AC_SUBST(LINKFORSHARED)
Georg Brandlb1441c72009-01-03 22:33:39 +00002556
doko@ubuntu.comd5537d02013-03-21 13:21:49 -07002557# SHLIB_SUFFIX is the extension of shared libraries `(including the dot!)
2558# -- usually .so, .sl on HP-UX, .dll on Cygwin
2559AC_MSG_CHECKING(the extension of shared libraries)
2560if test -z "$SHLIB_SUFFIX"; then
2561 case $ac_sys_system in
2562 hp*|HP*)
2563 case `uname -m` in
2564 ia64) SHLIB_SUFFIX=.so;;
2565 *) SHLIB_SUFFIX=.sl;;
2566 esac
2567 ;;
2568 CYGWIN*) SHLIB_SUFFIX=.dll;;
2569 *) SHLIB_SUFFIX=.so;;
2570 esac
2571fi
2572AC_MSG_RESULT($SHLIB_SUFFIX)
2573
Guido van Rossumac405f61994-09-12 10:56:06 +00002574# LDSHARED is the ld *command* used to create shared library
Benjamin Peterson06930632017-09-04 16:36:05 -07002575# -- "cc -G" on SunOS 5.x.
Guido van Rossum54ecc3d1999-01-27 17:53:11 +00002576# (Shared libraries in this instance are shared modules to be loaded into
2577# Python, as opposed to building Python itself as a shared library.)
Guido van Rossum76be6ed1995-01-02 18:33:54 +00002578AC_MSG_CHECKING(LDSHARED)
Guido van Rossumac405f61994-09-12 10:56:06 +00002579if test -z "$LDSHARED"
2580then
Guido van Rossum76be6ed1995-01-02 18:33:54 +00002581 case $ac_sys_system/$ac_sys_release in
Neil Schemenauerb3531b82001-02-16 04:09:05 +00002582 AIX*)
Martin Panter395733d2016-11-20 07:56:37 +00002583 BLDSHARED="Modules/ld_so_aix \$(CC) -bI:Modules/python.exp"
Martin Panter5de141f2016-08-27 04:00:19 +00002584 LDSHARED="\$(LIBPL)/ld_so_aix \$(CC) -bI:\$(LIBPL)/python.exp"
Neil Schemenauerb3531b82001-02-16 04:09:05 +00002585 ;;
Victor Stinner1b80b242016-04-12 22:34:58 +02002586 SunOS/5*)
Tarek Ziadé03d788d2010-04-03 08:46:49 +00002587 if test "$GCC" = "yes" ; then
2588 LDSHARED='$(CC) -shared'
2589 LDCXXSHARED='$(CXX) -shared'
2590 else
2591 LDSHARED='$(CC) -G'
2592 LDCXXSHARED='$(CXX) -G'
Greg Ward57c9a6632000-05-26 12:22:54 +00002593 fi ;;
Thomas Hellerf44b9a12008-04-04 10:18:23 +00002594 hp*|HP*)
Tarek Ziadé03d788d2010-04-03 08:46:49 +00002595 if test "$GCC" = "yes" ; then
2596 LDSHARED='$(CC) -shared'
2597 LDCXXSHARED='$(CXX) -shared'
2598 else
Rob Boehne9d25bd12017-12-06 11:58:17 -06002599 LDSHARED='$(CC) -b'
2600 LDCXXSHARED='$(CXX) -b'
Thomas Hellerf44b9a12008-04-04 10:18:23 +00002601 fi ;;
Jack Jansen418c3b12001-11-14 10:59:57 +00002602 Darwin/1.3*)
Antoine Pitroud4958c22010-10-13 17:01:10 +00002603 LDSHARED='$(CC) -bundle'
2604 LDCXXSHARED='$(CXX) -bundle'
Jack Jansena3891ea2001-09-07 14:25:12 +00002605 if test "$enable_framework" ; then
2606 # Link against the framework. All externals should be defined.
Jack Jansenda49e192005-01-07 13:08:22 +00002607 BLDSHARED="$LDSHARED "'$(PYTHONFRAMEWORKDIR)/Versions/$(VERSION)/$(PYTHONFRAMEWORK)'
2608 LDSHARED="$LDSHARED "'$(PYTHONFRAMEWORKPREFIX)/$(PYTHONFRAMEWORKDIR)/Versions/$(VERSION)/$(PYTHONFRAMEWORK)'
Tarek Ziadé03d788d2010-04-03 08:46:49 +00002609 LDCXXSHARED="$LDCXXSHARED "'$(PYTHONFRAMEWORKPREFIX)/$(PYTHONFRAMEWORKDIR)/Versions/$(VERSION)/$(PYTHONFRAMEWORK)'
Jack Jansena3891ea2001-09-07 14:25:12 +00002610 else
2611 # No framework. Ignore undefined symbols, assuming they come from Python
Jack Jansen418c3b12001-11-14 10:59:57 +00002612 LDSHARED="$LDSHARED -undefined suppress"
Tarek Ziadé03d788d2010-04-03 08:46:49 +00002613 LDCXXSHARED="$LDCXXSHARED -undefined suppress"
Jack Jansena3891ea2001-09-07 14:25:12 +00002614 fi ;;
Jack Jansen6b08a402004-06-03 12:41:45 +00002615 Darwin/1.4*|Darwin/5.*|Darwin/6.*)
Antoine Pitroud4958c22010-10-13 17:01:10 +00002616 LDSHARED='$(CC) -bundle'
2617 LDCXXSHARED='$(CXX) -bundle'
Jack Jansenb6e9cad2001-08-15 01:26:28 +00002618 if test "$enable_framework" ; then
2619 # Link against the framework. All externals should be defined.
Jack Jansenda49e192005-01-07 13:08:22 +00002620 BLDSHARED="$LDSHARED "'$(PYTHONFRAMEWORKDIR)/Versions/$(VERSION)/$(PYTHONFRAMEWORK)'
2621 LDSHARED="$LDSHARED "'$(PYTHONFRAMEWORKPREFIX)/$(PYTHONFRAMEWORKDIR)/Versions/$(VERSION)/$(PYTHONFRAMEWORK)'
Tarek Ziadé03d788d2010-04-03 08:46:49 +00002622 LDCXXSHARED="$LDCXXSHARED "'$(PYTHONFRAMEWORKPREFIX)/$(PYTHONFRAMEWORKDIR)/Versions/$(VERSION)/$(PYTHONFRAMEWORK)'
Jack Jansenb6e9cad2001-08-15 01:26:28 +00002623 else
Michael W. Hudson0c46c0c2002-03-07 09:58:56 +00002624 # No framework, use the Python app as bundle-loader
2625 BLDSHARED="$LDSHARED "'-bundle_loader $(BUILDPYTHON)'
Jack Jansenc28fc372003-02-25 13:14:43 +00002626 LDSHARED="$LDSHARED "'-bundle_loader $(BINDIR)/python$(VERSION)$(EXE)'
Tarek Ziadé03d788d2010-04-03 08:46:49 +00002627 LDCXXSHARED="$LDCXXSHARED "'-bundle_loader $(BINDIR)/python$(VERSION)$(EXE)'
Guido van Rossum54ecc3d1999-01-27 17:53:11 +00002628 fi ;;
Jack Jansen6b08a402004-06-03 12:41:45 +00002629 Darwin/*)
2630 # Use -undefined dynamic_lookup whenever possible (10.3 and later).
2631 # This allows an extension to be used in any Python
Thomas Wouters89d996e2007-09-08 17:39:28 +00002632
Ned Deily36820b62014-06-25 13:44:22 -07002633 dep_target_major=`echo ${MACOSX_DEPLOYMENT_TARGET} | \
2634 sed 's/\([[0-9]]*\)\.\([[0-9]]*\).*/\1/'`
2635 dep_target_minor=`echo ${MACOSX_DEPLOYMENT_TARGET} | \
2636 sed 's/\([[0-9]]*\)\.\([[0-9]]*\).*/\2/'`
2637 if test ${dep_target_major} -eq 10 && \
2638 test ${dep_target_minor} -le 2
Jack Jansen6b08a402004-06-03 12:41:45 +00002639 then
Ned Deily36820b62014-06-25 13:44:22 -07002640 # building for OS X 10.0 through 10.2
Antoine Pitroud4958c22010-10-13 17:01:10 +00002641 LDSHARED='$(CC) -bundle'
2642 LDCXXSHARED='$(CXX) -bundle'
Jack Jansen6b08a402004-06-03 12:41:45 +00002643 if test "$enable_framework" ; then
2644 # Link against the framework. All externals should be defined.
Jack Jansenda49e192005-01-07 13:08:22 +00002645 BLDSHARED="$LDSHARED "'$(PYTHONFRAMEWORKDIR)/Versions/$(VERSION)/$(PYTHONFRAMEWORK)'
2646 LDSHARED="$LDSHARED "'$(PYTHONFRAMEWORKPREFIX)/$(PYTHONFRAMEWORKDIR)/Versions/$(VERSION)/$(PYTHONFRAMEWORK)'
Tarek Ziadé03d788d2010-04-03 08:46:49 +00002647 LDCXXSHARED="$LDCXXSHARED "'$(PYTHONFRAMEWORKPREFIX)/$(PYTHONFRAMEWORKDIR)/Versions/$(VERSION)/$(PYTHONFRAMEWORK)'
Jack Jansen6b08a402004-06-03 12:41:45 +00002648 else
2649 # No framework, use the Python app as bundle-loader
2650 BLDSHARED="$LDSHARED "'-bundle_loader $(BUILDPYTHON)'
2651 LDSHARED="$LDSHARED "'-bundle_loader $(BINDIR)/python$(VERSION)$(EXE)'
Tarek Ziadé03d788d2010-04-03 08:46:49 +00002652 LDCXXSHARED="$LDCXXSHARED "'-bundle_loader $(BINDIR)/python$(VERSION)$(EXE)'
Jack Jansen6b08a402004-06-03 12:41:45 +00002653 fi
Ned Deily36820b62014-06-25 13:44:22 -07002654 else
2655 # building for OS X 10.3 and later
2656 LDSHARED='$(CC) -bundle -undefined dynamic_lookup'
2657 LDCXXSHARED='$(CXX) -bundle -undefined dynamic_lookup'
2658 BLDSHARED="$LDSHARED"
Jack Jansen6b08a402004-06-03 12:41:45 +00002659 fi
2660 ;;
pxinwr32f5fdd2019-02-27 19:09:28 +08002661 Linux*|GNU*|QNX*|VxWorks*)
Tarek Ziadé03d788d2010-04-03 08:46:49 +00002662 LDSHARED='$(CC) -shared'
2663 LDCXXSHARED='$(CXX) -shared';;
Thomas Wouters1ba5b3b2006-06-08 14:52:47 +00002664 FreeBSD*)
Jeremy Hylton4bcc7c52000-08-31 17:45:35 +00002665 if [[ "`$CC -dM -E - </dev/null | grep __ELF__`" != "" ]]
Guido van Rossum0286ae82000-08-29 15:06:49 +00002666 then
Antoine Pitroud4958c22010-10-13 17:01:10 +00002667 LDSHARED='$(CC) -shared'
2668 LDCXXSHARED='$(CXX) -shared'
Guido van Rossum0286ae82000-08-29 15:06:49 +00002669 else
Antoine Pitroud4958c22010-10-13 17:01:10 +00002670 LDSHARED="ld -Bshareable"
Guido van Rossum0286ae82000-08-29 15:06:49 +00002671 fi;;
Thomas Wouters1ba5b3b2006-06-08 14:52:47 +00002672 OpenBSD*)
2673 if [[ "`$CC -dM -E - </dev/null | grep __ELF__`" != "" ]]
2674 then
Antoine Pitroud4958c22010-10-13 17:01:10 +00002675 LDSHARED='$(CC) -shared $(CCSHARED)'
2676 LDCXXSHARED='$(CXX) -shared $(CCSHARED)'
Thomas Wouters1ba5b3b2006-06-08 14:52:47 +00002677 else
2678 case `uname -r` in
2679 [[01]].* | 2.[[0-7]] | 2.[[0-7]].*)
2680 LDSHARED="ld -Bshareable ${LDFLAGS}"
2681 ;;
2682 *)
Antoine Pitroud4958c22010-10-13 17:01:10 +00002683 LDSHARED='$(CC) -shared $(CCSHARED)'
2684 LDCXXSHARED='$(CXX) -shared $(CCSHARED)'
Thomas Wouters1ba5b3b2006-06-08 14:52:47 +00002685 ;;
2686 esac
2687 fi;;
Tarek Ziadé03d788d2010-04-03 08:46:49 +00002688 NetBSD*|DragonFly*)
Antoine Pitrouece919e2011-01-02 20:45:21 +00002689 LDSHARED='$(CC) -shared'
2690 LDCXXSHARED='$(CXX) -shared';;
Martin v. Löwis25ae43b2001-10-07 08:39:18 +00002691 OpenUNIX*|UnixWare*)
Tarek Ziadé03d788d2010-04-03 08:46:49 +00002692 if test "$GCC" = "yes" ; then
2693 LDSHARED='$(CC) -shared'
2694 LDCXXSHARED='$(CXX) -shared'
2695 else
2696 LDSHARED='$(CC) -G'
2697 LDCXXSHARED='$(CXX) -G'
Martin v. Löwisbec19582001-03-21 15:57:54 +00002698 fi;;
Tarek Ziadé03d788d2010-04-03 08:46:49 +00002699 SCO_SV*)
2700 LDSHARED='$(CC) -Wl,-G,-Bexport'
2701 LDCXXSHARED='$(CXX) -Wl,-G,-Bexport';;
2702 CYGWIN*)
2703 LDSHARED="gcc -shared -Wl,--enable-auto-image-base"
2704 LDCXXSHARED="g++ -shared -Wl,--enable-auto-image-base";;
Guido van Rossumac405f61994-09-12 10:56:06 +00002705 *) LDSHARED="ld";;
2706 esac
Guido van Rossumac405f61994-09-12 10:56:06 +00002707fi
Guido van Rossum76be6ed1995-01-02 18:33:54 +00002708AC_MSG_RESULT($LDSHARED)
Tarek Ziadé03d788d2010-04-03 08:46:49 +00002709LDCXXSHARED=${LDCXXSHARED-$LDSHARED}
Neil Schemenauerb3531b82001-02-16 04:09:05 +00002710BLDSHARED=${BLDSHARED-$LDSHARED}
Guido van Rossumac405f61994-09-12 10:56:06 +00002711# CCSHARED are the C *flags* used to create objects to go into a shared
Guido van Rossum54ecc3d1999-01-27 17:53:11 +00002712# library (module) -- this is only needed for a few systems
Guido van Rossum76be6ed1995-01-02 18:33:54 +00002713AC_MSG_CHECKING(CCSHARED)
Guido van Rossumac405f61994-09-12 10:56:06 +00002714if test -z "$CCSHARED"
2715then
Guido van Rossum6100aaf1997-04-29 21:48:51 +00002716 case $ac_sys_system/$ac_sys_release in
Neil Schemenauer66252162001-02-19 04:47:42 +00002717 SunOS*) if test "$GCC" = yes;
Guido van Rossumd8faa362007-04-27 19:54:29 +00002718 then CCSHARED="-fPIC";
2719 elif test `uname -p` = sparc;
2720 then CCSHARED="-xcode=pic32";
2721 else CCSHARED="-Kpic";
2722 fi;;
Guido van Rossumaf07a441995-02-13 19:45:27 +00002723 hp*|HP*) if test "$GCC" = yes;
Martin v. Löwis703ad702001-09-05 08:36:52 +00002724 then CCSHARED="-fPIC";
Guido van Rossumaf07a441995-02-13 19:45:27 +00002725 else CCSHARED="+z";
2726 fi;;
Xavier de Gaye2a352b62017-01-04 21:51:16 +01002727 Linux-android*) ;;
Martin v. Löwisa6e97582002-01-01 18:41:33 +00002728 Linux*|GNU*) CCSHARED="-fPIC";;
Martin v. Löwis86d66262006-02-17 08:40:11 +00002729 FreeBSD*|NetBSD*|OpenBSD*|DragonFly*) CCSHARED="-fPIC";;
Martin v. Löwis25ae43b2001-10-07 08:39:18 +00002730 OpenUNIX*|UnixWare*)
Martin v. Löwisbec19582001-03-21 15:57:54 +00002731 if test "$GCC" = "yes"
2732 then CCSHARED="-fPIC"
Martin v. Löwis130fb172001-07-19 11:00:41 +00002733 else CCSHARED="-KPIC"
Martin v. Löwisbec19582001-03-21 15:57:54 +00002734 fi;;
Martin v. Löwis21ee4092002-09-30 16:19:48 +00002735 SCO_SV*)
2736 if test "$GCC" = "yes"
2737 then CCSHARED="-fPIC"
2738 else CCSHARED="-Kpic -belf"
2739 fi;;
pxinwr32f5fdd2019-02-27 19:09:28 +08002740 VxWorks*)
2741 CCSHARED="-fpic -D__SO_PICABILINUX__ -ftls-model=global-dynamic"
Guido van Rossumac405f61994-09-12 10:56:06 +00002742 esac
Guido van Rossumac405f61994-09-12 10:56:06 +00002743fi
Guido van Rossum76be6ed1995-01-02 18:33:54 +00002744AC_MSG_RESULT($CCSHARED)
Guido van Rossumac405f61994-09-12 10:56:06 +00002745# LINKFORSHARED are the flags passed to the $(CC) command that links
Guido van Rossumb65a48e1995-06-14 18:21:23 +00002746# the python executable -- this is only needed for a few systems
Guido van Rossum76be6ed1995-01-02 18:33:54 +00002747AC_MSG_CHECKING(LINKFORSHARED)
Guido van Rossumac405f61994-09-12 10:56:06 +00002748if test -z "$LINKFORSHARED"
2749then
Guido van Rossum6100aaf1997-04-29 21:48:51 +00002750 case $ac_sys_system/$ac_sys_release in
Neil Schemenauerb3531b82001-02-16 04:09:05 +00002751 AIX*) LINKFORSHARED='-Wl,-bE:Modules/python.exp -lld';;
Guido van Rossum5dab3d81996-12-06 21:18:18 +00002752 hp*|HP*)
Martin v. Löwis1142de32002-03-29 16:28:31 +00002753 LINKFORSHARED="-Wl,-E -Wl,+s";;
2754# LINKFORSHARED="-Wl,-E -Wl,+s -Wl,+b\$(BINLIBDEST)/lib-dynload";;
Xavier de Gaye2a352b62017-01-04 21:51:16 +01002755 Linux-android*) LINKFORSHARED="-pie -Xlinker -export-dynamic";;
Martin v. Löwisa6e97582002-01-01 18:41:33 +00002756 Linux*|GNU*) LINKFORSHARED="-Xlinker -export-dynamic";;
Guido van Rossum54ecc3d1999-01-27 17:53:11 +00002757 # -u libsys_s pulls in all symbols in libsys
Victor Stinner1b80b242016-04-12 22:34:58 +02002758 Darwin/*)
Benjamin Peterson9c80cac2009-05-23 16:34:23 +00002759 LINKFORSHARED="$extra_undefs -framework CoreFoundation"
Ned Deily5bbbc732019-07-02 03:12:18 -04002760
2761 # Issue #18075: the default maximum stack size (8MBytes) is too
2762 # small for the default recursion limit. Increase the stack size
2763 # to ensure that tests don't crash
Ronald Oussoren1a057ba2019-08-01 07:43:07 +02002764 # Note: This matches the value of THREAD_STACK_SIZE in
2765 # thread_pthread.h
Ned Deily5bbbc732019-07-02 03:12:18 -04002766 LINKFORSHARED="-Wl,-stack_size,1000000 $LINKFORSHARED"
2767
Jack Jansenb6e9cad2001-08-15 01:26:28 +00002768 if test "$enable_framework"
2769 then
Jack Jansenda49e192005-01-07 13:08:22 +00002770 LINKFORSHARED="$LINKFORSHARED "'$(PYTHONFRAMEWORKDIR)/Versions/$(VERSION)/$(PYTHONFRAMEWORK)'
Jack Jansenb6e9cad2001-08-15 01:26:28 +00002771 fi
Raymond Hettingerec6eb362004-11-05 07:02:59 +00002772 LINKFORSHARED="$LINKFORSHARED";;
Martin v. Löwis25ae43b2001-10-07 08:39:18 +00002773 OpenUNIX*|UnixWare*) LINKFORSHARED="-Wl,-Bexport";;
Martin v. Löwis21ee4092002-09-30 16:19:48 +00002774 SCO_SV*) LINKFORSHARED="-Wl,-Bexport";;
Fred Drake02706f52000-09-25 15:08:46 +00002775 ReliantUNIX*) LINKFORSHARED="-W1 -Blargedynsym";;
Victor Stinner1b80b242016-04-12 22:34:58 +02002776 FreeBSD*|NetBSD*|OpenBSD*|DragonFly*)
Guido van Rossumdf693651999-01-07 21:50:41 +00002777 if [[ "`$CC -dM -E - </dev/null | grep __ELF__`" != "" ]]
2778 then
2779 LINKFORSHARED="-Wl,--export-dynamic"
2780 fi;;
Guido van Rossum2b5ca001998-03-05 15:41:09 +00002781 SunOS/5*) case $CC in
2782 *gcc*)
Martin v. Löwisa4548572002-04-18 14:51:36 +00002783 if $CC -Xlinker --help 2>&1 | grep export-dynamic >/dev/null
Guido van Rossum8f4ceb11997-12-18 23:42:19 +00002784 then
2785 LINKFORSHARED="-Xlinker --export-dynamic"
Guido van Rossum2b5ca001998-03-05 15:41:09 +00002786 fi;;
2787 esac;;
Jason Tishler30765592003-09-04 11:04:06 +00002788 CYGWIN*)
2789 if test $enable_shared = "no"
2790 then
2791 LINKFORSHARED='-Wl,--out-implib=$(LDLIBRARY)'
2792 fi;;
Georg Brandlf78e02b2008-06-10 17:40:04 +00002793 QNX*)
2794 # -Wl,-E causes the symbols to be added to the dynamic
2795 # symbol table so that they can be found when a module
2796 # is loaded. -N 2048K causes the stack size to be set
2797 # to 2048 kilobytes so that the stack doesn't overflow
2798 # when running test_compile.py.
2799 LINKFORSHARED='-Wl,-E -N 2048K';;
pxinwr32f5fdd2019-02-27 19:09:28 +08002800 VxWorks*)
pxinwrc1174262020-12-15 06:14:43 +08002801 LINKFORSHARED='-Wl,-export-dynamic';;
Guido van Rossumac405f61994-09-12 10:56:06 +00002802 esac
Guido van Rossumac405f61994-09-12 10:56:06 +00002803fi
Guido van Rossum76be6ed1995-01-02 18:33:54 +00002804AC_MSG_RESULT($LINKFORSHARED)
Guido van Rossumac405f61994-09-12 10:56:06 +00002805
Georg Brandl93de2162008-07-16 02:21:06 +00002806
Neil Schemenauer61c51152001-01-26 16:18:16 +00002807AC_SUBST(CFLAGSFORSHARED)
2808AC_MSG_CHECKING(CFLAGSFORSHARED)
2809if test ! "$LIBRARY" = "$LDLIBRARY"
2810then
Neil Schemenauerd9cf41c2001-01-27 21:39:17 +00002811 case $ac_sys_system in
2812 CYGWIN*)
2813 # Cygwin needs CCSHARED when building extension DLLs
2814 # but not when building the interpreter DLL.
2815 CFLAGSFORSHARED='';;
2816 *)
2817 CFLAGSFORSHARED='$(CCSHARED)'
2818 esac
Neil Schemenauer61c51152001-01-26 16:18:16 +00002819fi
2820AC_MSG_RESULT($CFLAGSFORSHARED)
2821
Martin v. Löwisf90ae202002-06-11 06:22:31 +00002822# SHLIBS are libraries (except -lc and -lm) to link to the python shared
2823# library (with --enable-shared).
2824# For platforms on which shared libraries are not allowed to have unresolved
Martin v. Löwisd6359c52002-08-04 12:38:50 +00002825# symbols, this must be set to $(LIBS) (expanded by make). We do this even
2826# if it is not required, since it creates a dependency of the shared library
2827# to LIBS. This, in turn, means that applications linking the shared libpython
2828# don't need to link LIBS explicitly. The default should be only changed
2829# on systems where this approach causes problems.
Martin v. Löwisf90ae202002-06-11 06:22:31 +00002830AC_SUBST(SHLIBS)
2831AC_MSG_CHECKING(SHLIBS)
2832case "$ac_sys_system" in
Martin v. Löwisf90ae202002-06-11 06:22:31 +00002833 *)
Martin v. Löwisd6359c52002-08-04 12:38:50 +00002834 SHLIBS='$(LIBS)';;
Martin v. Löwisf90ae202002-06-11 06:22:31 +00002835esac
2836AC_MSG_RESULT($SHLIBS)
2837
2838
Guido van Rossum627b2d71993-12-24 10:39:16 +00002839# checks for libraries
Giampaolo Rodolàc9c2c8b2011-02-25 14:39:16 +00002840AC_CHECK_LIB(sendfile, sendfile)
Guido van Rossum76be6ed1995-01-02 18:33:54 +00002841AC_CHECK_LIB(dl, dlopen) # Dynamic linking for SunOS/Solaris and SYSV
2842AC_CHECK_LIB(dld, shl_load) # Dynamic linking for HP-UX
Martin v. Löwis519adae2003-09-20 10:47:47 +00002843
Michael Felt0d3ccb42017-12-30 22:39:20 +01002844# checks for uuid.h location
2845AC_CHECK_HEADERS([uuid/uuid.h uuid.h])
2846
Berker Peksag9a10ff42017-11-08 23:09:16 +03002847AC_MSG_CHECKING(for uuid_generate_time_safe)
2848AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#include <uuid/uuid.h>]], [[
2849#ifndef uuid_generate_time_safe
Berker Peksag0e163d22017-11-09 00:43:14 +03002850void *x = uuid_generate_time_safe
Berker Peksag9a10ff42017-11-08 23:09:16 +03002851#endif
2852]])],
2853 [AC_DEFINE(HAVE_UUID_GENERATE_TIME_SAFE, 1, Define if uuid_generate_time_safe() exists.)
2854 AC_MSG_RESULT(yes)],
2855 [AC_MSG_RESULT(no)]
2856)
2857
Michael Felt0d3ccb42017-12-30 22:39:20 +01002858# AIX provides support for RFC4122 (uuid) in libc.a starting with AIX 6.1 (anno 2007)
David Carlierb4ebaa72018-01-09 19:38:07 +00002859# FreeBSD and OpenBSD provides support as well
2860AC_MSG_CHECKING(for uuid_create)
Michael Felt0d3ccb42017-12-30 22:39:20 +01002861AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#include <uuid.h>]], [[
2862#ifndef uuid_create
2863void *x = uuid_create
2864#endif
2865]])],
David Carlierb4ebaa72018-01-09 19:38:07 +00002866 [AC_DEFINE(HAVE_UUID_CREATE, 1, Define if uuid_create() exists.)
Michael Felt0d3ccb42017-12-30 22:39:20 +01002867 AC_MSG_RESULT(yes)],
2868 [AC_MSG_RESULT(no)]
2869)
2870
Serhiy Storchaka17d88302018-05-25 01:45:09 +03002871# Little-endian FreeBSD, OpenBSD and NetBSD needs encoding into an octet
2872# stream in big-endian byte-order
2873AC_MSG_CHECKING(for uuid_enc_be)
2874AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#include <uuid.h>]], [[
2875#ifndef uuid_enc_be
Ned Deilyced0adb2018-06-09 18:19:57 -04002876void *x = uuid_enc_be
Serhiy Storchaka17d88302018-05-25 01:45:09 +03002877#endif
2878]])],
2879 [AC_DEFINE(HAVE_UUID_ENC_BE, 1, Define if uuid_enc_be() exists.)
2880 AC_MSG_RESULT(yes)],
2881 [AC_MSG_RESULT(no)]
2882)
2883
Serhiy Storchaka9e78dc22017-11-11 19:18:28 +02002884# 'Real Time' functions on Solaris
2885# posix4 on Solaris 2.6
2886# pthread (first!) on Linux
2887AC_SEARCH_LIBS(sem_init, pthread rt posix4)
Martin v. Löwis519adae2003-09-20 10:47:47 +00002888
Martin v. Löwis19d17342003-06-14 21:03:05 +00002889# check if we need libintl for locale functions
2890AC_CHECK_LIB(intl, textdomain,
Brett Cannonc6d936e2009-06-07 20:09:53 +00002891 [AC_DEFINE(WITH_LIBINTL, 1,
2892 [Define to 1 if libintl is needed for locale functions.])
2893 LIBS="-lintl $LIBS"])
Guido van Rossum0eefa3f1999-11-16 15:57:37 +00002894
2895# checks for system dependent C++ extensions support
2896case "$ac_sys_system" in
2897 AIX*) AC_MSG_CHECKING(for genuine AIX C++ extensions support)
Matthias Kloseb159a552010-04-25 21:00:44 +00002898 AC_LINK_IFELSE([
Georg Brandl59e87bd2011-02-15 19:48:59 +00002899 AC_LANG_PROGRAM([[#include <load.h>]],
Matthias Kloseb159a552010-04-25 21:00:44 +00002900 [[loadAndInit("", 0, "")]])
2901 ],[
2902 AC_DEFINE(AIX_GENUINE_CPLUSPLUS, 1,
Martin v. Löwisc45929e2002-04-06 10:10:49 +00002903 [Define for AIX if your compiler is a genuine IBM xlC/xlC_r
2904 and you want support for AIX C++ shared extension modules.])
Matthias Kloseb159a552010-04-25 21:00:44 +00002905 AC_MSG_RESULT(yes)
2906 ],[
2907 AC_MSG_RESULT(no)
Michael Felt39afa2d2019-12-15 15:17:53 +01002908 ])
2909dnl The AIX_BUILDDATE is obtained from the kernel fileset - bos.mp64
2910# BUILD_GNU_TYPE + AIX_BUILDDATE are used to construct the platform_tag
2911# of the AIX system used to build/package Python executable. This tag serves
2912# as a baseline for bdist module packages
2913 AC_MSG_CHECKING(for the system builddate)
2914 AIX_BUILDDATE=$(lslpp -Lcq bos.mp64 | awk -F: '{ print $NF }')
2915 AC_DEFINE_UNQUOTED([AIX_BUILDDATE], [$AIX_BUILDDATE],
2916 [BUILD_GNU_TYPE + AIX_BUILDDATE are used to construct the PEP425 tag of the build system.])
2917 AC_MSG_RESULT($AIX_BUILDDATE)
2918 ;;
Guido van Rossum0eefa3f1999-11-16 15:57:37 +00002919 *) ;;
2920esac
2921
Christian Heimes985ecdc2013-11-20 11:46:18 +01002922# check for systems that require aligned memory access
2923AC_MSG_CHECKING(aligned memory access is required)
Benjamin Petersone4f961b2017-04-14 09:36:45 -07002924AC_CACHE_VAL(ac_cv_aligned_required,
2925[AC_RUN_IFELSE([AC_LANG_SOURCE([[
Christian Heimes985ecdc2013-11-20 11:46:18 +01002926int main()
2927{
2928 char s[16];
2929 int i, *p1, *p2;
2930 for (i=0; i < 16; i++)
2931 s[i] = i;
2932 p1 = (int*)(s+1);
2933 p2 = (int*)(s+2);
2934 if (*p1 == *p2)
2935 return 1;
2936 return 0;
Benjamin Petersone4f961b2017-04-14 09:36:45 -07002937}]])],
2938[ac_cv_aligned_required=no],
2939[ac_cv_aligned_required=yes],
2940[ac_cv_aligned_required=yes])
2941])
2942AC_MSG_RESULT($ac_cv_aligned_required)
2943if test "$ac_cv_aligned_required" = yes ; then
Christian Heimes985ecdc2013-11-20 11:46:18 +01002944 AC_DEFINE([HAVE_ALIGNED_REQUIRED], [1],
2945 [Define if aligned memory access is required])
2946fi
Christian Heimes985ecdc2013-11-20 11:46:18 +01002947
2948# str, bytes and memoryview hash algorithm
2949AH_TEMPLATE(Py_HASH_ALGORITHM,
2950 [Define hash algorithm for str, bytes and memoryview.
2951 SipHash24: 1, FNV: 2, externally defined: 0])
2952
2953AC_MSG_CHECKING(for --with-hash-algorithm)
2954dnl quadrigraphs "@<:@" and "@:>@" produce "[" and "]" in the output
2955AC_ARG_WITH(hash_algorithm,
2956 AS_HELP_STRING([--with-hash-algorithm=@<:@fnv|siphash24@:>@],
Anthony Shaw2de064e2020-01-14 17:40:10 +11002957 [select hash algorithm for use in Python/pyhash.c (default is SipHash24)]),
Christian Heimes985ecdc2013-11-20 11:46:18 +01002958[
2959AC_MSG_RESULT($withval)
2960case "$withval" in
2961 siphash24)
2962 AC_DEFINE(Py_HASH_ALGORITHM, 1)
2963 ;;
2964 fnv)
2965 AC_DEFINE(Py_HASH_ALGORITHM, 2)
2966 ;;
2967 *)
2968 AC_MSG_ERROR([unknown hash algorithm '$withval'])
2969 ;;
2970esac
2971],
2972[AC_MSG_RESULT(default)])
2973
Paul Ganssle62972d92020-05-16 04:20:06 -04002974validate_tzpath() {
2975 # Checks that each element of hte path is an absolute path
2976 if test -z "$1"; then
2977 # Empty string is allowed: it indicates no system TZPATH
2978 return 0
2979 fi
2980
2981 # Bad paths are those that don't start with /
2982 dnl quadrigraphs "@<:@" and "@:>@" produce "[" and "]" in the output
Paul Ganssle0f664982021-01-12 13:17:52 -05002983 if ( echo $1 | grep '\(^\|:\)\(@<:@^/@:>@\|$\)' > /dev/null); then
Paul Ganssle62972d92020-05-16 04:20:06 -04002984 AC_MSG_ERROR([--with-tzpath must contain only absolute paths, not $1])
2985 return 1;
2986 fi
2987}
2988
2989TZPATH="/usr/share/zoneinfo:/usr/lib/zoneinfo:/usr/share/lib/zoneinfo:/etc/zoneinfo"
2990AC_MSG_CHECKING(for --with-tzpath)
2991AC_ARG_WITH(tzpath,
2992 AS_HELP_STRING([--with-tzpath=<list of absolute paths separated by pathsep>]
2993 [Select the default time zone search path for zoneinfo.TZPATH]),
2994[
2995case "$withval" in
2996 yes)
2997 AC_MSG_ERROR([--with-tzpath requires a value])
2998 ;;
2999 *)
3000 validate_tzpath "$withval"
3001 TZPATH="$withval"
3002 AC_MSG_RESULT("$withval")
3003 ;;
3004esac
3005],
3006[validate_tzpath "$TZPATH"
3007 AC_MSG_RESULT("$TZPATH")])
3008AC_SUBST(TZPATH)
3009
Charles-François Natalid30b0222014-05-08 23:08:51 +01003010AC_MSG_CHECKING(for --with-address-sanitizer)
3011AC_ARG_WITH(address_sanitizer,
3012 AS_HELP_STRING([--with-address-sanitizer],
Anthony Shaw2de064e2020-01-14 17:40:10 +11003013 [enable AddressSanitizer memory error detector, 'asan' (default is no)]),
Charles-François Natalid30b0222014-05-08 23:08:51 +01003014[
3015AC_MSG_RESULT($withval)
3016BASECFLAGS="-fsanitize=address -fno-omit-frame-pointer $BASECFLAGS"
3017LDFLAGS="-fsanitize=address $LDFLAGS"
Gregory P. Smith1584a002018-11-12 12:07:14 -08003018# ASan works by controlling memory allocation, our own malloc interferes.
3019with_pymalloc="no"
3020],
3021[AC_MSG_RESULT(no)])
3022
3023AC_MSG_CHECKING(for --with-memory-sanitizer)
3024AC_ARG_WITH(memory_sanitizer,
3025 AS_HELP_STRING([--with-memory-sanitizer],
Anthony Shaw2de064e2020-01-14 17:40:10 +11003026 [enable MemorySanitizer allocation error detector, 'msan' (default is no)]),
Gregory P. Smith1584a002018-11-12 12:07:14 -08003027[
3028AC_MSG_RESULT($withval)
3029BASECFLAGS="-fsanitize=memory -fsanitize-memory-track-origins=2 -fno-omit-frame-pointer $BASECFLAGS"
3030LDFLAGS="-fsanitize=memory -fsanitize-memory-track-origins=2 $LDFLAGS"
3031# MSan works by controlling memory allocation, our own malloc interferes.
3032with_pymalloc="no"
3033],
3034[AC_MSG_RESULT(no)])
3035
3036AC_MSG_CHECKING(for --with-undefined-behavior-sanitizer)
3037AC_ARG_WITH(undefined_behavior_sanitizer,
3038 AS_HELP_STRING([--with-undefined-behavior-sanitizer],
Anthony Shaw2de064e2020-01-14 17:40:10 +11003039 [enable UndefinedBehaviorSanitizer undefined behaviour detector, 'ubsan' (default is no)]),
Gregory P. Smith1584a002018-11-12 12:07:14 -08003040[
3041AC_MSG_RESULT($withval)
3042BASECFLAGS="-fsanitize=undefined $BASECFLAGS"
3043LDFLAGS="-fsanitize=undefined $LDFLAGS"
Charles-François Natalid30b0222014-05-08 23:08:51 +01003044],
3045[AC_MSG_RESULT(no)])
3046
Guido van Rossum70c7f481998-03-26 18:44:10 +00003047# Most SVR4 platforms (e.g. Solaris) need -lsocket and -lnsl.
Guido van Rossumf618d2c1995-01-17 16:36:13 +00003048AC_CHECK_LIB(nsl, t_open, [LIBS="-lnsl $LIBS"]) # SVR4
Guido van Rossumf618d2c1995-01-17 16:36:13 +00003049AC_CHECK_LIB(socket, socket, [LIBS="-lsocket $LIBS"], [], $LIBS) # SVR4 sockets
Skip Montanarob9949db2004-01-17 04:04:13 +00003050
Guido van Rossumc5a39031996-07-31 17:35:03 +00003051AC_MSG_CHECKING(for --with-libs)
Barry Warsawc0d24d8b2000-06-29 16:12:00 +00003052AC_ARG_WITH(libs,
Anthony Shaw2de064e2020-01-14 17:40:10 +11003053 AS_HELP_STRING([--with-libs='lib1 ...'], [link against additional libs (default is no)]),
Martin v. Löwis3e2c6322002-10-29 10:07:43 +00003054[
Guido van Rossumc5a39031996-07-31 17:35:03 +00003055AC_MSG_RESULT($withval)
3056LIBS="$withval $LIBS"
Martin v. Löwis3e2c6322002-10-29 10:07:43 +00003057],
3058[AC_MSG_RESULT(no)])
Guido van Rossum627b2d71993-12-24 10:39:16 +00003059
Benjamin Peterson0f3cde12014-12-15 00:00:23 -05003060PKG_PROG_PKG_CONFIG
Benjamin Peterson0f64b0b2010-03-09 21:49:52 +00003061
Benjamin Petersonb2d90462009-12-31 03:23:10 +00003062# Check for use of the system expat library
3063AC_MSG_CHECKING(for --with-system-expat)
3064AC_ARG_WITH(system_expat,
Anthony Shaw2de064e2020-01-14 17:40:10 +11003065 AS_HELP_STRING([--with-system-expat], [build pyexpat module using an installed expat library, see Doc/library/pyexpat.rst (default is no)]),
Benjamin Peterson79263252010-10-31 16:50:44 +00003066 [],
3067 [with_system_expat="no"])
Benjamin Petersonb2d90462009-12-31 03:23:10 +00003068
3069AC_MSG_RESULT($with_system_expat)
3070
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00003071# Check for use of the system libffi library
3072AC_MSG_CHECKING(for --with-system-ffi)
3073AC_ARG_WITH(system_ffi,
Anthony Shaw2de064e2020-01-14 17:40:10 +11003074 AS_HELP_STRING([--with-system-ffi], [build _ctypes module using an installed ffi library, see Doc/library/ctypes.rst (default is system-dependent)]),,,)
Zachary Ware935043d2016-09-09 17:01:21 -07003075
Zachary Waref40d4dd2016-09-17 01:25:24 -05003076if test "$ac_sys_system" = "Darwin"
3077then
3078 case "$with_system_ffi" in
3079 "")
3080 with_system_ffi="no"
3081 ;;
3082 yes|no)
3083 ;;
3084 *)
3085 AC_MSG_ERROR([--with-system-ffi accepts no arguments])
3086 ;;
3087 esac
3088 AC_MSG_RESULT($with_system_ffi)
3089else
3090 AC_MSG_RESULT(yes)
3091 if test "$with_system_ffi" != ""
3092 then
3093 AC_MSG_WARN([--with(out)-system-ffi is ignored on this platform])
3094 fi
3095 with_system_ffi="yes"
3096fi
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00003097
Benjamin Peterson0f64b0b2010-03-09 21:49:52 +00003098if test "$with_system_ffi" = "yes" && test -n "$PKG_CONFIG"; then
Benjamin Petersond78735d2010-01-01 16:04:23 +00003099 LIBFFI_INCLUDEDIR="`"$PKG_CONFIG" libffi --cflags-only-I 2>/dev/null | sed -e 's/^-I//;s/ *$//'`"
3100else
3101 LIBFFI_INCLUDEDIR=""
3102fi
3103AC_SUBST(LIBFFI_INCLUDEDIR)
3104
Stefan Krah60187b52012-03-23 19:06:27 +01003105# Check for use of the system libmpdec library
3106AC_MSG_CHECKING(for --with-system-libmpdec)
3107AC_ARG_WITH(system_libmpdec,
Anthony Shaw2de064e2020-01-14 17:40:10 +11003108 AS_HELP_STRING([--with-system-libmpdec], [build _decimal module using an installed libmpdec library, see Doc/library/decimal.rst (default is no)]),
Stefan Krah60187b52012-03-23 19:06:27 +01003109 [],
3110 [with_system_libmpdec="no"])
3111
3112AC_MSG_RESULT($with_system_libmpdec)
3113
Stefan Krah815280e2020-02-29 19:43:42 +01003114# Check whether _decimal should use a coroutine-local or thread-local context
3115AC_MSG_CHECKING(for --with-decimal-contextvar)
3116AC_ARG_WITH(decimal_contextvar,
3117 AS_HELP_STRING([--with-decimal-contextvar], [build _decimal module using a coroutine-local rather than a thread-local context (default is yes)]),
3118 [],
3119 [with_decimal_contextvar="yes"])
3120
3121if test "$with_decimal_contextvar" != "no"
3122then
3123 AC_DEFINE(WITH_DECIMAL_CONTEXTVAR, 1,
3124 [Define if you want build the _decimal module using a coroutine-local rather than a thread-local context])
3125fi
3126
3127AC_MSG_RESULT($with_decimal_contextvar)
3128
Benjamin Peterson076ed002010-10-31 17:11:02 +00003129# Check for support for loadable sqlite extensions
3130AC_MSG_CHECKING(for --enable-loadable-sqlite-extensions)
3131AC_ARG_ENABLE(loadable-sqlite-extensions,
Anthony Shaw2de064e2020-01-14 17:40:10 +11003132 AS_HELP_STRING([--enable-loadable-sqlite-extensions],
3133 [support loadable extensions in _sqlite module, see Doc/library/sqlite3.rst (default is no)]),
Benjamin Peterson076ed002010-10-31 17:11:02 +00003134 [],
3135 [enable_loadable_sqlite_extensions="no"])
3136
3137AC_MSG_RESULT($enable_loadable_sqlite_extensions)
3138
Ned Deilyd819b932013-09-06 01:07:05 -07003139# Check for --with-tcltk-includes=path and --with-tcltk-libs=path
3140AC_SUBST(TCLTK_INCLUDES)
3141AC_SUBST(TCLTK_LIBS)
3142AC_MSG_CHECKING(for --with-tcltk-includes)
3143AC_ARG_WITH(tcltk-includes,
3144 AS_HELP_STRING([--with-tcltk-includes='-I...'], [override search for Tcl and Tk include files]),
3145 [],
3146 [with_tcltk_includes="default"])
3147AC_MSG_RESULT($with_tcltk_includes)
3148AC_MSG_CHECKING(for --with-tcltk-libs)
3149AC_ARG_WITH(tcltk-libs,
3150 AS_HELP_STRING([--with-tcltk-libs='-L...'], [override search for Tcl and Tk libs]),
3151 [],
3152 [with_tcltk_libs="default"])
3153AC_MSG_RESULT($with_tcltk_libs)
3154if test "x$with_tcltk_includes" = xdefault || test "x$with_tcltk_libs" = xdefault
3155then
3156 if test "x$with_tcltk_includes" != "x$with_tcltk_libs"
3157 then
3158 AC_MSG_ERROR([use both --with-tcltk-includes='...' and --with-tcltk-libs='...' or neither])
3159 fi
3160 TCLTK_INCLUDES=""
3161 TCLTK_LIBS=""
3162else
3163 TCLTK_INCLUDES="$with_tcltk_includes"
3164 TCLTK_LIBS="$with_tcltk_libs"
3165fi
3166
Matthias Klose55708cc2009-04-30 08:06:49 +00003167# Check for --with-dbmliborder
3168AC_MSG_CHECKING(for --with-dbmliborder)
3169AC_ARG_WITH(dbmliborder,
Anthony Shaw2de064e2020-01-14 17:40:10 +11003170 AS_HELP_STRING([--with-dbmliborder=db1:db2:...], [override order to check db backends for dbm; a valid value is a colon separated string with the backend names `ndbm', `gdbm' and `bdb'.]),
Matthias Klose55708cc2009-04-30 08:06:49 +00003171[
3172if test x$with_dbmliborder = xyes
3173then
3174AC_MSG_ERROR([proper usage is --with-dbmliborder=db1:db2:...])
3175else
3176 for db in `echo $with_dbmliborder | sed 's/:/ /g'`; do
3177 if test x$db != xndbm && test x$db != xgdbm && test x$db != xbdb
3178 then
3179 AC_MSG_ERROR([proper usage is --with-dbmliborder=db1:db2:...])
3180 fi
3181 done
3182fi])
3183AC_MSG_RESULT($with_dbmliborder)
3184
Martin v. Löwis11437992002-04-12 09:54:03 +00003185# Templates for things AC_DEFINEd more than once.
3186# For a single AC_DEFINE, no template is needed.
Martin v. Löwis11437992002-04-12 09:54:03 +00003187AH_TEMPLATE(_REENTRANT,
3188 [Define to force use of thread-safe errno, h_errno, and other functions])
Martin v. Löwis11437992002-04-12 09:54:03 +00003189
Antoine Pitroua6a4dc82017-09-07 18:56:24 +02003190if test "$ac_cv_pthread_is_default" = yes
Barry Warsawc0d24d8b2000-06-29 16:12:00 +00003191then
Martin v. Löwisa5f73f92001-10-15 08:06:29 +00003192 # Defining _REENTRANT on system with POSIX threads should not hurt.
3193 AC_DEFINE(_REENTRANT)
3194 posix_threads=yes
Jesús Cea52d1b862019-09-28 03:44:32 +02003195 if test "$ac_sys_system" = "SunOS"; then
3196 CFLAGS="$CFLAGS -D_REENTRANT"
3197 fi
Martin v. Löwis130fb172001-07-19 11:00:41 +00003198elif test "$ac_cv_kpthread" = "yes"
3199then
3200 CC="$CC -Kpthread"
Martin v. Löwis519adae2003-09-20 10:47:47 +00003201 if test "$ac_cv_cxx_thread" = "yes"; then
3202 CXX="$CXX -Kpthread"
3203 fi
Guido van Rossumd0b69ec2001-09-10 14:10:54 +00003204 posix_threads=yes
Martin v. Löwis5f433f02003-05-05 05:05:30 +00003205elif test "$ac_cv_kthread" = "yes"
3206then
3207 CC="$CC -Kthread"
Martin v. Löwis519adae2003-09-20 10:47:47 +00003208 if test "$ac_cv_cxx_thread" = "yes"; then
3209 CXX="$CXX -Kthread"
3210 fi
Martin v. Löwis5f433f02003-05-05 05:05:30 +00003211 posix_threads=yes
Martin v. Löwis4ee6eef2003-05-26 05:37:51 +00003212elif test "$ac_cv_pthread" = "yes"
3213then
3214 CC="$CC -pthread"
Martin v. Löwis519adae2003-09-20 10:47:47 +00003215 if test "$ac_cv_cxx_thread" = "yes"; then
3216 CXX="$CXX -pthread"
3217 fi
Martin v. Löwis4ee6eef2003-05-26 05:37:51 +00003218 posix_threads=yes
Barry Warsawc0d24d8b2000-06-29 16:12:00 +00003219else
Martin v. Löwis130fb172001-07-19 11:00:41 +00003220 if test ! -z "$withval" -a -d "$withval"
3221 then LDFLAGS="$LDFLAGS -L$withval"
3222 fi
Martin v. Löwis69c0ff32001-10-15 14:34:42 +00003223
3224 # According to the POSIX spec, a pthreads implementation must
Matthias Klosea2542be2004-08-16 11:35:51 +00003225 # define _POSIX_THREADS in unistd.h. Some apparently don't
3226 # (e.g. gnu pth with pthread emulation)
Martin v. Löwis69c0ff32001-10-15 14:34:42 +00003227 AC_MSG_CHECKING(for _POSIX_THREADS in unistd.h)
3228 AC_EGREP_CPP(yes,
Neal Norwitz6eb37f02003-02-23 23:28:15 +00003229 [
3230#include <unistd.h>
3231#ifdef _POSIX_THREADS
3232yes
3233#endif
Martin v. Löwis69c0ff32001-10-15 14:34:42 +00003234 ], unistd_defines_pthreads=yes, unistd_defines_pthreads=no)
3235 AC_MSG_RESULT($unistd_defines_pthreads)
3236
Martin v. Löwis130fb172001-07-19 11:00:41 +00003237 AC_DEFINE(_REENTRANT)
Martin v. Löwis8158b5a2001-10-08 13:17:28 +00003238 # Just looking for pthread_create in libpthread is not enough:
3239 # on HP/UX, pthread.h renames pthread_create to a different symbol name.
3240 # So we really have to include pthread.h, and then link.
3241 _libs=$LIBS
3242 LIBS="$LIBS -lpthread"
3243 AC_MSG_CHECKING([for pthread_create in -lpthread])
Stefan Krah7dba5942012-11-22 22:49:11 +01003244 AC_LINK_IFELSE([AC_LANG_PROGRAM([[
3245#include <stdio.h>
3246#include <pthread.h>
Martin v. Löwis8158b5a2001-10-08 13:17:28 +00003247
Matthias Kloseb159a552010-04-25 21:00:44 +00003248void * start_routine (void *arg) { exit (0); }]], [[
3249pthread_create (NULL, NULL, start_routine, NULL)]])],[
Martin v. Löwis8158b5a2001-10-08 13:17:28 +00003250 AC_MSG_RESULT(yes)
Martin v. Löwis69c0ff32001-10-15 14:34:42 +00003251 posix_threads=yes
Antoine Pitroua6a4dc82017-09-07 18:56:24 +02003252 ],[
Martin v. Löwis8158b5a2001-10-08 13:17:28 +00003253 LIBS=$_libs
Antoine Pitroua6a4dc82017-09-07 18:56:24 +02003254 AC_CHECK_FUNC(pthread_detach, [
Martin v. Löwis69c0ff32001-10-15 14:34:42 +00003255 posix_threads=yes
Antoine Pitroua6a4dc82017-09-07 18:56:24 +02003256 ],[
3257 AC_CHECK_LIB(pthreads, pthread_create, [
Guido van Rossumd0b69ec2001-09-10 14:10:54 +00003258 posix_threads=yes
Martin v. Löwis130fb172001-07-19 11:00:41 +00003259 LIBS="$LIBS -lpthreads"
Antoine Pitroua6a4dc82017-09-07 18:56:24 +02003260 ], [
3261 AC_CHECK_LIB(c_r, pthread_create, [
Guido van Rossumd0b69ec2001-09-10 14:10:54 +00003262 posix_threads=yes
Martin v. Löwis130fb172001-07-19 11:00:41 +00003263 LIBS="$LIBS -lc_r"
Antoine Pitroua6a4dc82017-09-07 18:56:24 +02003264 ], [
3265 AC_CHECK_LIB(pthread, __pthread_create_system, [
Guido van Rossumd0b69ec2001-09-10 14:10:54 +00003266 posix_threads=yes
Martin v. Löwis130fb172001-07-19 11:00:41 +00003267 LIBS="$LIBS -lpthread"
Antoine Pitroua6a4dc82017-09-07 18:56:24 +02003268 ], [
3269 AC_CHECK_LIB(cma, pthread_create, [
Guido van Rossumd0b69ec2001-09-10 14:10:54 +00003270 posix_threads=yes
Martin v. Löwis130fb172001-07-19 11:00:41 +00003271 LIBS="$LIBS -lcma"
Antoine Pitroua6a4dc82017-09-07 18:56:24 +02003272 ],[
3273 AC_MSG_ERROR([could not find pthreads on your system])
3274 ])
Antoine Pitrou37009202011-07-08 23:47:50 +02003275 ])])])])])
Barry Warsawc0d24d8b2000-06-29 16:12:00 +00003276
Antoine Pitroua6a4dc82017-09-07 18:56:24 +02003277 AC_CHECK_LIB(mpc, usconfig, [
Martin v. Löwis4ee6eef2003-05-26 05:37:51 +00003278 LIBS="$LIBS -lmpc"
Antoine Pitroua6a4dc82017-09-07 18:56:24 +02003279 ])
Martin v. Löwis4ee6eef2003-05-26 05:37:51 +00003280
Martin v. Löwis4ee6eef2003-05-26 05:37:51 +00003281fi
3282
3283if test "$posix_threads" = "yes"; then
Martin v. Löwis69c0ff32001-10-15 14:34:42 +00003284 if test "$unistd_defines_pthreads" = "no"; then
Martin v. Löwisc45929e2002-04-06 10:10:49 +00003285 AC_DEFINE(_POSIX_THREADS, 1,
Victor Stinner1b80b242016-04-12 22:34:58 +02003286 [Define if you have POSIX threads,
Martin v. Löwisc45929e2002-04-06 10:10:49 +00003287 and your system does not define that.])
Martin v. Löwis69c0ff32001-10-15 14:34:42 +00003288 fi
3289
Martin v. Löwisdfc33fd2003-01-21 10:14:41 +00003290 # Bug 662787: Using semaphores causes unexplicable hangs on Solaris 8.
3291 case $ac_sys_system/$ac_sys_release in
Charles-François Natali996f6062011-07-21 19:45:31 +02003292 SunOS/5.6) AC_DEFINE(HAVE_PTHREAD_DESTRUCTOR, 1,
Matthias Klosec80c93f2010-04-24 17:04:35 +00003293 [Defined for Solaris 2.6 bug in pthread header.])
Martin v. Löwis4ee6eef2003-05-26 05:37:51 +00003294 ;;
Martin v. Löwisdfc33fd2003-01-21 10:14:41 +00003295 SunOS/5.8) AC_DEFINE(HAVE_BROKEN_POSIX_SEMAPHORES, 1,
Matthias Klosec80c93f2010-04-24 17:04:35 +00003296 [Define if the Posix semaphores do not work on your system])
Martin v. Löwis4ee6eef2003-05-26 05:37:51 +00003297 ;;
Charles-François Natali996f6062011-07-21 19:45:31 +02003298 AIX/*) AC_DEFINE(HAVE_BROKEN_POSIX_SEMAPHORES, 1,
Matthias Klosec80c93f2010-04-24 17:04:35 +00003299 [Define if the Posix semaphores do not work on your system])
Christian Heimes7b3ce6a2008-01-31 14:31:45 +00003300 ;;
Martin v. Löwisdfc33fd2003-01-21 10:14:41 +00003301 esac
3302
Guido van Rossumd0b69ec2001-09-10 14:10:54 +00003303 AC_MSG_CHECKING(if PTHREAD_SCOPE_SYSTEM is supported)
3304 AC_CACHE_VAL(ac_cv_pthread_system_supported,
Stefan Krah7dba5942012-11-22 22:49:11 +01003305 [AC_RUN_IFELSE([AC_LANG_SOURCE([[
3306 #include <stdio.h>
3307 #include <pthread.h>
Guido van Rossumd0b69ec2001-09-10 14:10:54 +00003308 void *foo(void *parm) {
3309 return NULL;
3310 }
3311 main() {
3312 pthread_attr_t attr;
Martin v. Löwisa82d3472002-02-24 16:05:05 +00003313 pthread_t id;
Joshua Root674fa0a2020-12-14 07:56:34 +11003314 if (pthread_attr_init(&attr)) return (-1);
3315 if (pthread_attr_setscope(&attr, PTHREAD_SCOPE_SYSTEM)) return (-1);
3316 if (pthread_create(&id, &attr, foo, NULL)) return (-1);
3317 return (0);
Matthias Kloseb159a552010-04-25 21:00:44 +00003318 }]])],
3319 [ac_cv_pthread_system_supported=yes],
3320 [ac_cv_pthread_system_supported=no],
3321 [ac_cv_pthread_system_supported=no])
Guido van Rossumd0b69ec2001-09-10 14:10:54 +00003322 ])
3323 AC_MSG_RESULT($ac_cv_pthread_system_supported)
3324 if test "$ac_cv_pthread_system_supported" = "yes"; then
Martin v. Löwisc45929e2002-04-06 10:10:49 +00003325 AC_DEFINE(PTHREAD_SYSTEM_SCHED_SUPPORTED, 1, [Defined if PTHREAD_SCOPE_SYSTEM supported.])
Guido van Rossumd0b69ec2001-09-10 14:10:54 +00003326 fi
Jason Tishlerfac083d2003-07-22 15:20:49 +00003327 AC_CHECK_FUNCS(pthread_sigmask,
3328 [case $ac_sys_system in
3329 CYGWIN*)
3330 AC_DEFINE(HAVE_BROKEN_PTHREAD_SIGMASK, 1,
3331 [Define if pthread_sigmask() does not work on your system.])
3332 ;;
3333 esac])
pdoxe14679c2017-10-05 00:01:56 -07003334 AC_CHECK_FUNCS(pthread_getcpuclockid)
Barry Warsawc0d24d8b2000-06-29 16:12:00 +00003335fi
Guido van Rossum433c8ad1994-08-01 12:07:07 +00003336
Martin v. Löwis4ee6eef2003-05-26 05:37:51 +00003337
Martin v. Löwisa2ac6022001-08-09 11:40:14 +00003338# Check for enable-ipv6
Martin v. Löwis11437992002-04-12 09:54:03 +00003339AH_TEMPLATE(ENABLE_IPV6, [Define if --enable-ipv6 is specified])
Martin v. Löwisa5f8bb52001-09-05 08:22:34 +00003340AC_MSG_CHECKING([if --enable-ipv6 is specified])
Martin v. Löwisa2ac6022001-08-09 11:40:14 +00003341AC_ARG_ENABLE(ipv6,
Anthony Shaw2de064e2020-01-14 17:40:10 +11003342 AS_HELP_STRING([--enable-ipv6],
3343 [enable ipv6 (with ipv4) support, see Doc/library/socket.rst (default is yes if supported)]),
Martin v. Löwisa2ac6022001-08-09 11:40:14 +00003344[ case "$enableval" in
3345 no)
3346 AC_MSG_RESULT(no)
3347 ipv6=no
3348 ;;
3349 *) AC_MSG_RESULT(yes)
3350 AC_DEFINE(ENABLE_IPV6)
3351 ipv6=yes
3352 ;;
3353 esac ],
3354
Martin v. Löwisa5f8bb52001-09-05 08:22:34 +00003355[
3356dnl the check does not work on cross compilation case...
Charles-François Natalif6fd7942013-01-08 19:49:42 +01003357 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[ /* AF_INET6 available check */
Martin v. Löwisa2ac6022001-08-09 11:40:14 +00003358#include <sys/types.h>
Charles-François Natalif6fd7942013-01-08 19:49:42 +01003359#include <sys/socket.h>]],
3360[[int domain = AF_INET6;]])],[
Martin v. Löwisa2ac6022001-08-09 11:40:14 +00003361 AC_MSG_RESULT(yes)
Matthias Kloseb159a552010-04-25 21:00:44 +00003362 ipv6=yes
3363],[
Martin v. Löwisa2ac6022001-08-09 11:40:14 +00003364 AC_MSG_RESULT(no)
3365 ipv6=no
Matthias Kloseb159a552010-04-25 21:00:44 +00003366])
Martin v. Löwisa5f8bb52001-09-05 08:22:34 +00003367
3368if test "$ipv6" = "yes"; then
3369 AC_MSG_CHECKING(if RFC2553 API is available)
Matthias Kloseb159a552010-04-25 21:00:44 +00003370 AC_COMPILE_IFELSE([
3371 AC_LANG_PROGRAM([[#include <sys/types.h>
3372#include <netinet/in.h>]],
3373 [[struct sockaddr_in6 x;
3374 x.sin6_scope_id;]])
3375 ],[
3376 AC_MSG_RESULT(yes)
3377 ipv6=yes
3378 ],[
3379 AC_MSG_RESULT(no, IPv6 disabled)
3380 ipv6=no
3381 ])
Martin v. Löwisa5f8bb52001-09-05 08:22:34 +00003382fi
3383
3384if test "$ipv6" = "yes"; then
3385 AC_DEFINE(ENABLE_IPV6)
3386fi
3387])
Martin v. Löwisa2ac6022001-08-09 11:40:14 +00003388
3389ipv6type=unknown
3390ipv6lib=none
3391ipv6trylibc=no
3392
3393if test "$ipv6" = "yes"; then
3394 AC_MSG_CHECKING([ipv6 stack type])
Guido van Rossumb8552162001-09-05 14:58:11 +00003395 for i in inria kame linux-glibc linux-inet6 solaris toshiba v6d zeta;
3396 do
Martin v. Löwisa2ac6022001-08-09 11:40:14 +00003397 case $i in
3398 inria)
3399 dnl http://www.kame.net/
Martin v. Löwisa5f73f92001-10-15 08:06:29 +00003400 AC_EGREP_CPP(yes, [
Martin v. Löwisa2ac6022001-08-09 11:40:14 +00003401#include <netinet/in.h>
3402#ifdef IPV6_INRIA_VERSION
3403yes
3404#endif],
Martin v. Löwis44ddbde2001-12-02 10:15:37 +00003405 [ipv6type=$i])
Martin v. Löwisa2ac6022001-08-09 11:40:14 +00003406 ;;
3407 kame)
3408 dnl http://www.kame.net/
Martin v. Löwisa5f73f92001-10-15 08:06:29 +00003409 AC_EGREP_CPP(yes, [
Martin v. Löwisa2ac6022001-08-09 11:40:14 +00003410#include <netinet/in.h>
3411#ifdef __KAME__
3412yes
3413#endif],
3414 [ipv6type=$i;
3415 ipv6lib=inet6
3416 ipv6libdir=/usr/local/v6/lib
Martin v. Löwis44ddbde2001-12-02 10:15:37 +00003417 ipv6trylibc=yes])
Martin v. Löwisa2ac6022001-08-09 11:40:14 +00003418 ;;
3419 linux-glibc)
3420 dnl http://www.v6.linux.or.jp/
Martin v. Löwisa5f73f92001-10-15 08:06:29 +00003421 AC_EGREP_CPP(yes, [
Martin v. Löwisa2ac6022001-08-09 11:40:14 +00003422#include <features.h>
3423#if defined(__GLIBC__) && ((__GLIBC__ == 2 && __GLIBC_MINOR__ >= 1) || (__GLIBC__ > 2))
3424yes
3425#endif],
3426 [ipv6type=$i;
Martin v. Löwis44ddbde2001-12-02 10:15:37 +00003427 ipv6trylibc=yes])
Martin v. Löwisa2ac6022001-08-09 11:40:14 +00003428 ;;
3429 linux-inet6)
3430 dnl http://www.v6.linux.or.jp/
3431 if test -d /usr/inet6; then
3432 ipv6type=$i
3433 ipv6lib=inet6
3434 ipv6libdir=/usr/inet6/lib
Skip Montanarodecc6a42003-01-01 20:07:49 +00003435 BASECFLAGS="-I/usr/inet6/include $BASECFLAGS"
Martin v. Löwisa2ac6022001-08-09 11:40:14 +00003436 fi
3437 ;;
3438 solaris)
3439 if test -f /etc/netconfig; then
Antoine Pitrouf3fcd9f2011-01-03 18:53:50 +00003440 if $GREP -q tcp6 /etc/netconfig; then
Martin v. Löwisa2ac6022001-08-09 11:40:14 +00003441 ipv6type=$i
3442 ipv6trylibc=yes
Martin v. Löwisa2ac6022001-08-09 11:40:14 +00003443 fi
3444 fi
3445 ;;
3446 toshiba)
Martin v. Löwisa5f73f92001-10-15 08:06:29 +00003447 AC_EGREP_CPP(yes, [
Martin v. Löwisa2ac6022001-08-09 11:40:14 +00003448#include <sys/param.h>
3449#ifdef _TOSHIBA_INET6
3450yes
3451#endif],
3452 [ipv6type=$i;
3453 ipv6lib=inet6;
Martin v. Löwis44ddbde2001-12-02 10:15:37 +00003454 ipv6libdir=/usr/local/v6/lib])
Martin v. Löwisa2ac6022001-08-09 11:40:14 +00003455 ;;
3456 v6d)
Martin v. Löwisa5f73f92001-10-15 08:06:29 +00003457 AC_EGREP_CPP(yes, [
Martin v. Löwisa2ac6022001-08-09 11:40:14 +00003458#include </usr/local/v6/include/sys/v6config.h>
3459#ifdef __V6D__
3460yes
3461#endif],
3462 [ipv6type=$i;
3463 ipv6lib=v6;
3464 ipv6libdir=/usr/local/v6/lib;
Skip Montanarodecc6a42003-01-01 20:07:49 +00003465 BASECFLAGS="-I/usr/local/v6/include $BASECFLAGS"])
Martin v. Löwisa2ac6022001-08-09 11:40:14 +00003466 ;;
3467 zeta)
Martin v. Löwisa5f73f92001-10-15 08:06:29 +00003468 AC_EGREP_CPP(yes, [
Martin v. Löwisa2ac6022001-08-09 11:40:14 +00003469#include <sys/param.h>
3470#ifdef _ZETA_MINAMI_INET6
3471yes
3472#endif],
3473 [ipv6type=$i;
3474 ipv6lib=inet6;
Martin v. Löwis44ddbde2001-12-02 10:15:37 +00003475 ipv6libdir=/usr/local/v6/lib])
Martin v. Löwisa2ac6022001-08-09 11:40:14 +00003476 ;;
3477 esac
3478 if test "$ipv6type" != "unknown"; then
3479 break
3480 fi
3481 done
3482 AC_MSG_RESULT($ipv6type)
3483fi
3484
3485if test "$ipv6" = "yes" -a "$ipv6lib" != "none"; then
3486 if test -d $ipv6libdir -a -f $ipv6libdir/lib$ipv6lib.a; then
3487 LIBS="-L$ipv6libdir -l$ipv6lib $LIBS"
3488 echo "using lib$ipv6lib"
3489 else
3490 if test $ipv6trylibc = "yes"; then
3491 echo "using libc"
3492 else
3493 echo 'Fatal: no $ipv6lib library found. cannot continue.'
3494 echo "You need to fetch lib$ipv6lib.a from appropriate"
3495 echo 'ipv6 kit and compile beforehand.'
3496 exit 1
3497 fi
3498 fi
3499fi
3500
Larry Hastingsa6cc5512015-04-13 17:48:40 -04003501AC_MSG_CHECKING(for CAN_RAW_FD_FRAMES)
3502AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[ /* CAN_RAW_FD_FRAMES available check */
3503#include <linux/can/raw.h>]],
3504[[int can_raw_fd_frames = CAN_RAW_FD_FRAMES;]])],[
3505 AC_DEFINE(HAVE_LINUX_CAN_RAW_FD_FRAMES, 1, [Define if compiling using Linux 3.6 or later.])
3506 AC_MSG_RESULT(yes)
3507],[
3508 AC_MSG_RESULT(no)
3509])
3510
Zackery Spytz97e0de02020-04-09 06:03:49 -06003511AC_MSG_CHECKING(for CAN_RAW_JOIN_FILTERS)
3512AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
3513#include <linux/can/raw.h>]],
3514[[int can_raw_join_filters = CAN_RAW_JOIN_FILTERS;]])],[
3515 AC_DEFINE(HAVE_LINUX_CAN_RAW_JOIN_FILTERS, 1, [Define if compiling using Linux 4.1 or later.])
3516 AC_MSG_RESULT(yes)
3517],[
3518 AC_MSG_RESULT(no)
3519])
3520
Martin v. Löwisa3fb4f72002-06-09 13:33:54 +00003521# Check for --with-doc-strings
3522AC_MSG_CHECKING(for --with-doc-strings)
3523AC_ARG_WITH(doc-strings,
Anthony Shaw2de064e2020-01-14 17:40:10 +11003524 AS_HELP_STRING([--with-doc-strings], [enable documentation strings (default is yes)]))
Martin v. Löwisa3fb4f72002-06-09 13:33:54 +00003525
3526if test -z "$with_doc_strings"
3527then with_doc_strings="yes"
3528fi
3529if test "$with_doc_strings" != "no"
3530then
3531 AC_DEFINE(WITH_DOC_STRINGS, 1,
3532 [Define if you want documentation strings in extension modules])
3533fi
3534AC_MSG_RESULT($with_doc_strings)
3535
Martin v. Löwisf30d60e2004-06-08 08:17:44 +00003536# Check for Python-specific malloc support
Neil Schemenauera35c6882001-02-27 04:45:05 +00003537AC_MSG_CHECKING(for --with-pymalloc)
3538AC_ARG_WITH(pymalloc,
Anthony Shaw2de064e2020-01-14 17:40:10 +11003539 AS_HELP_STRING([--with-pymalloc], [enable specialized mallocs (default is yes)]))
Neil Schemenauer16c22972002-03-22 15:34:49 +00003540
3541if test -z "$with_pymalloc"
Barry Warsaw35f3a2c2010-09-03 18:30:30 +00003542then
3543 with_pymalloc="yes"
Neil Schemenauer16c22972002-03-22 15:34:49 +00003544fi
3545if test "$with_pymalloc" != "no"
3546then
Victor Stinner1b80b242016-04-12 22:34:58 +02003547 AC_DEFINE(WITH_PYMALLOC, 1,
Martin v. Löwisc45929e2002-04-06 10:10:49 +00003548 [Define if you want to compile in Python-specific mallocs])
Neil Schemenauer16c22972002-03-22 15:34:49 +00003549fi
3550AC_MSG_RESULT($with_pymalloc)
Neil Schemenauera35c6882001-02-27 04:45:05 +00003551
Nick Coghlan6ea41862017-06-11 13:16:15 +10003552# Check for --with-c-locale-coercion
3553AC_MSG_CHECKING(for --with-c-locale-coercion)
3554AC_ARG_WITH(c-locale-coercion,
Anthony Shaw2de064e2020-01-14 17:40:10 +11003555 AS_HELP_STRING([--with-c-locale-coercion],
3556 [enable C locale coercion to a UTF-8 based locale (default is yes)]))
Nick Coghlan6ea41862017-06-11 13:16:15 +10003557
3558if test -z "$with_c_locale_coercion"
3559then
3560 with_c_locale_coercion="yes"
3561fi
3562if test "$with_c_locale_coercion" != "no"
3563then
3564 AC_DEFINE(PY_COERCE_C_LOCALE, 1,
3565 [Define if you want to coerce the C locale to a UTF-8 based locale])
3566fi
3567AC_MSG_RESULT($with_c_locale_coercion)
3568
Benjamin Peterson05159c42009-12-03 03:01:27 +00003569# Check for Valgrind support
3570AC_MSG_CHECKING([for --with-valgrind])
3571AC_ARG_WITH([valgrind],
Anthony Shaw2de064e2020-01-14 17:40:10 +11003572 AS_HELP_STRING([--with-valgrind], [enable Valgrind support (default is no)]),,
Benjamin Peterson05159c42009-12-03 03:01:27 +00003573 with_valgrind=no)
3574AC_MSG_RESULT([$with_valgrind])
3575if test "$with_valgrind" != no; then
3576 AC_CHECK_HEADER([valgrind/valgrind.h],
3577 [AC_DEFINE([WITH_VALGRIND], 1, [Define if you want pymalloc to be disabled when running under valgrind])],
3578 [AC_MSG_ERROR([Valgrind support requested but headers not available])]
3579 )
Jeffrey Yasskin39370832010-05-03 19:29:34 +00003580 OPT="-DDYNAMIC_ANNOTATIONS_ENABLED=1 $OPT"
Benjamin Peterson05159c42009-12-03 03:01:27 +00003581fi
3582
Łukasz Langaa785c872016-09-09 17:37:37 -07003583# Check for DTrace support
3584AC_MSG_CHECKING(for --with-dtrace)
3585AC_ARG_WITH(dtrace,
Anthony Shaw2de064e2020-01-14 17:40:10 +11003586 AS_HELP_STRING([--with-dtrace],[enable DTrace support (default is no)]),,
Łukasz Langaa785c872016-09-09 17:37:37 -07003587 with_dtrace=no)
3588AC_MSG_RESULT($with_dtrace)
3589
3590AC_SUBST(DTRACE)
3591AC_SUBST(DFLAGS)
3592AC_SUBST(DTRACE_HEADERS)
3593AC_SUBST(DTRACE_OBJS)
3594DTRACE=
Łukasz Langaa785c872016-09-09 17:37:37 -07003595DTRACE_HEADERS=
3596DTRACE_OBJS=
3597
3598if test "$with_dtrace" = "yes"
3599then
3600 AC_PATH_PROG(DTRACE, [dtrace], [not found])
3601 if test "$DTRACE" = "not found"; then
3602 AC_MSG_ERROR([dtrace command not found on \$PATH])
3603 fi
3604 AC_DEFINE(WITH_DTRACE, 1, [Define if you want to compile in DTrace support])
3605 DTRACE_HEADERS="Include/pydtrace_probes.h"
3606
3607 # On OS X, DTrace providers do not need to be explicitly compiled and
3608 # linked into the binary. Correspondingly, dtrace(1) is missing the ELF
3609 # generation flag '-G'. We check for presence of this flag, rather than
3610 # hardcoding support by OS, in the interest of robustness.
3611 AC_CACHE_CHECK([whether DTrace probes require linking],
3612 [ac_cv_dtrace_link], [dnl
3613 ac_cv_dtrace_link=no
Jakub Kulík5c8f5372019-01-24 18:29:48 +01003614 echo 'BEGIN{}' > conftest.d
Petr Viktorin3c97e1e2020-03-11 14:27:42 +01003615 "$DTRACE" $DFLAGS -G -s conftest.d -o conftest.o > /dev/null 2>&1 && \
Łukasz Langaa785c872016-09-09 17:37:37 -07003616 ac_cv_dtrace_link=yes
3617 ])
3618 if test "$ac_cv_dtrace_link" = "yes"; then
3619 DTRACE_OBJS="Python/pydtrace.o"
3620 fi
3621fi
3622
Guido van Rossum68242b51996-05-28 22:53:03 +00003623# -I${DLINCLDIR} is added to the compile rule for importdl.o
Guido van Rossum433c8ad1994-08-01 12:07:07 +00003624AC_SUBST(DLINCLDIR)
Guido van Rossum98935bf2001-09-05 19:13:16 +00003625DLINCLDIR=.
Guido van Rossum433c8ad1994-08-01 12:07:07 +00003626
Guido van Rossume97ee181999-12-20 21:27:22 +00003627# the dlopen() function means we might want to use dynload_shlib.o. some
Kevin Adlerc79667f2020-11-16 09:16:10 -06003628# platforms have dlopen(), but don't want to use it.
Thomas Wouters3a584202000-08-05 23:28:51 +00003629AC_CHECK_FUNCS(dlopen)
Guido van Rossume97ee181999-12-20 21:27:22 +00003630
3631# DYNLOADFILE specifies which dynload_*.o file we will use for dynamic
3632# loading of modules.
3633AC_SUBST(DYNLOADFILE)
3634AC_MSG_CHECKING(DYNLOADFILE)
3635if test -z "$DYNLOADFILE"
3636then
3637 case $ac_sys_system/$ac_sys_release in
Guido van Rossume97ee181999-12-20 21:27:22 +00003638 hp*|HP*) DYNLOADFILE="dynload_hpux.o";;
Guido van Rossume97ee181999-12-20 21:27:22 +00003639 *)
3640 # use dynload_shlib.c and dlopen() if we have it; otherwise stub
3641 # out any dynamic loading
3642 if test "$ac_cv_func_dlopen" = yes
3643 then DYNLOADFILE="dynload_shlib.o"
3644 else DYNLOADFILE="dynload_stub.o"
3645 fi
3646 ;;
3647 esac
3648fi
3649AC_MSG_RESULT($DYNLOADFILE)
3650if test "$DYNLOADFILE" != "dynload_stub.o"
3651then
Martin v. Löwisc45929e2002-04-06 10:10:49 +00003652 AC_DEFINE(HAVE_DYNAMIC_LOADING, 1,
3653 [Defined when any dynamic module loading is enabled.])
Guido van Rossume97ee181999-12-20 21:27:22 +00003654fi
3655
Jack Jansenc49e5b72001-06-19 15:00:23 +00003656# MACHDEP_OBJS can be set to platform-specific object files needed by Python
3657
3658AC_SUBST(MACHDEP_OBJS)
3659AC_MSG_CHECKING(MACHDEP_OBJS)
3660if test -z "$MACHDEP_OBJS"
3661then
Jack Jansenb6e9cad2001-08-15 01:26:28 +00003662 MACHDEP_OBJS=$extra_machdep_objs
3663else
3664 MACHDEP_OBJS="$MACHDEP_OBJS $extra_machdep_objs"
Jack Jansenc49e5b72001-06-19 15:00:23 +00003665fi
doko@ubuntu.com9c7817e2012-06-30 17:05:13 +02003666if test -z "$MACHDEP_OBJS"; then
3667 AC_MSG_RESULT([none])
3668else
3669 AC_MSG_RESULT([$MACHDEP_OBJS])
3670fi
Jack Jansenc49e5b72001-06-19 15:00:23 +00003671
Guido van Rossum627b2d71993-12-24 10:39:16 +00003672# checks for library functions
Antoine Pitroub1c54962010-10-14 15:05:38 +00003673AC_CHECK_FUNCS(alarm accept4 setitimer getitimer bind_textdomain_codeset chown \
Kyle Evans1800c602020-10-11 15:18:53 -05003674 clock confstr close_range copy_file_range ctermid dup3 execv explicit_bzero \
3675 explicit_memset faccessat fchmod fchmodat fchown fchownat \
Jakub Kulíke20134f2019-09-11 17:11:57 +02003676 fdwalk fexecve fdopendir fork fpathconf fstatat ftime ftruncate futimesat \
Victor Stinner4d6a3d62014-12-21 01:16:38 +01003677 futimens futimes gai_strerror getentropy \
William Grzybowski23e65b22018-09-07 09:06:15 -03003678 getgrgid_r getgrnam_r \
Ross Lagerwallb0ae53d2011-06-10 07:30:30 +02003679 getgrouplist getgroups getlogin getloadavg getpeername getpgid getpid \
William Grzybowski23e65b22018-09-07 09:06:15 -03003680 getpriority getresuid getresgid getpwent getpwnam_r getpwuid_r getspnam getspent getsid getwd \
xdegaye5ad7ef82017-11-23 11:13:22 +01003681 if_nameindex \
Benjamin Petersonbed04b62019-09-09 05:13:00 -07003682 initgroups kill killpg lchown lockf linkat lstat lutimes mmap \
David Carlierd8b75512019-05-29 11:58:11 +01003683 memrchr mbrtowc mkdirat mkfifo \
Zackery Spytz02db6962019-05-27 10:48:17 -06003684 madvise mkfifoat mknod mknodat mktime mremap nice openat pathconf pause pipe2 plock poll \
Joannah Nanjekye92b83222019-01-16 16:29:26 +03003685 posix_fallocate posix_fadvise posix_spawn posix_spawnp pread preadv preadv2 \
Victor Stinnerb8d12622020-01-24 14:05:48 +01003686 pthread_condattr_setclock pthread_init pthread_kill pwrite pwritev pwritev2 \
Inada Naoki001fee12019-02-20 10:00:09 +09003687 readlink readlinkat readv realpath renameat \
Victor Stinnerb8d12622020-01-24 14:05:48 +01003688 sem_open sem_timedwait sem_getvalue sem_unlink sendfile setegid seteuid \
Antoine Pitrou061cfb52011-02-28 22:25:22 +00003689 setgid sethostname \
Giampaolo Rodolà18e8bcb2011-02-25 20:57:54 +00003690 setlocale setregid setreuid setresuid setresgid setsid setpgid setpgrp setpriority setuid setvbuf \
Charles-François Nataliea0d5fc2011-09-06 19:03:35 +02003691 sched_get_priority_max sched_setaffinity sched_setscheduler sched_setparam \
3692 sched_rr_get_interval \
Antoine Pitrou9d3627e2018-05-04 13:00:50 +02003693 sigaction sigaltstack sigfillset siginterrupt sigpending sigrelse \
Pablo Galindoa57b3d32020-11-17 00:00:38 +00003694 sigtimedwait sigwait sigwaitinfo snprintf splice strftime strlcpy strsignal symlinkat sync \
Michael W. Hudson34f20ea2002-05-27 15:08:24 +00003695 sysconf tcgetpgrp tcsetpgrp tempnam timegm times tmpfile tmpnam tmpnam_r \
Alexey Izbyshev976da902020-10-24 03:47:01 +03003696 truncate uname unlinkat utimensat utimes vfork waitid waitpid wait3 wait4 \
pxinwrf2d7ac72019-05-21 18:46:37 +08003697 wcscoll wcsftime wcsxfrm wmemcmp writev _getpty rtpSpawn)
Guido van Rossum00f0f6e1999-01-06 18:52:29 +00003698
Benjamin Peterson40caa052018-09-12 15:52:40 -07003699# Force lchmod off for Linux. Linux disallows changing the mode of symbolic
3700# links. Some libc implementations have a stub lchmod implementation that always
3701# returns an error.
3702if test "$MACHDEP" != linux; then
Benjamin Petersoned709d52018-09-12 17:22:11 -07003703 AC_CHECK_FUNCS(lchmod)
Benjamin Peterson40caa052018-09-12 15:52:40 -07003704fi
3705
Gregory P. Smithdf300d52012-01-21 18:20:15 -08003706AC_CHECK_DECL(dirfd,
3707 AC_DEFINE(HAVE_DIRFD, 1,
3708 Define if you have the 'dirfd' function or macro.), ,
3709 [#include <sys/types.h>
3710 #include <dirent.h>])
3711
Martin v. Löwisc8ad7cc2002-11-11 13:23:45 +00003712# For some functions, having a definition is not sufficient, since
3713# we want to take their address.
3714AC_MSG_CHECKING(for chroot)
Matthias Kloseb159a552010-04-25 21:00:44 +00003715AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#include <unistd.h>]], [[void *x=chroot]])],
3716 [AC_DEFINE(HAVE_CHROOT, 1, Define if you have the 'chroot' function.)
3717 AC_MSG_RESULT(yes)],
3718 [AC_MSG_RESULT(no)
3719])
Martin v. Löwisc8ad7cc2002-11-11 13:23:45 +00003720AC_MSG_CHECKING(for link)
Matthias Kloseb159a552010-04-25 21:00:44 +00003721AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#include <unistd.h>]], [[void *x=link]])],
3722 [AC_DEFINE(HAVE_LINK, 1, Define if you have the 'link' function.)
3723 AC_MSG_RESULT(yes)],
3724 [AC_MSG_RESULT(no)
3725])
Martin v. Löwisc8ad7cc2002-11-11 13:23:45 +00003726AC_MSG_CHECKING(for symlink)
Matthias Kloseb159a552010-04-25 21:00:44 +00003727AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#include <unistd.h>]], [[void *x=symlink]])],
3728 [AC_DEFINE(HAVE_SYMLINK, 1, Define if you have the 'symlink' function.)
3729 AC_MSG_RESULT(yes)],
3730 [AC_MSG_RESULT(no)
3731])
Martin v. Löwisa64988c2003-09-20 15:30:20 +00003732AC_MSG_CHECKING(for fchdir)
Matthias Kloseb159a552010-04-25 21:00:44 +00003733AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#include <unistd.h>]], [[void *x=fchdir]])],
3734 [AC_DEFINE(HAVE_FCHDIR, 1, Define if you have the 'fchdir' function.)
3735 AC_MSG_RESULT(yes)],
3736 [AC_MSG_RESULT(no)
3737])
Martin v. Löwisa64988c2003-09-20 15:30:20 +00003738AC_MSG_CHECKING(for fsync)
Matthias Kloseb159a552010-04-25 21:00:44 +00003739AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#include <unistd.h>]], [[void *x=fsync]])],
3740 [AC_DEFINE(HAVE_FSYNC, 1, Define if you have the 'fsync' function.)
3741 AC_MSG_RESULT(yes)],
3742 [AC_MSG_RESULT(no)
3743])
Martin v. Löwisa64988c2003-09-20 15:30:20 +00003744AC_MSG_CHECKING(for fdatasync)
Matthias Kloseb159a552010-04-25 21:00:44 +00003745AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#include <unistd.h>]], [[void *x=fdatasync]])],
3746 [AC_DEFINE(HAVE_FDATASYNC, 1, Define if you have the 'fdatasync' function.)
3747 AC_MSG_RESULT(yes)],
3748 [AC_MSG_RESULT(no)
3749])
Christian Heimes4fbc72b2008-03-22 00:47:35 +00003750AC_MSG_CHECKING(for epoll)
Matthias Kloseb159a552010-04-25 21:00:44 +00003751AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#include <sys/epoll.h>]], [[void *x=epoll_create]])],
3752 [AC_DEFINE(HAVE_EPOLL, 1, Define if you have the 'epoll' functions.)
3753 AC_MSG_RESULT(yes)],
3754 [AC_MSG_RESULT(no)
3755])
Benjamin Peterson95c16622011-12-27 15:36:32 -06003756AC_MSG_CHECKING(for epoll_create1)
3757AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#include <sys/epoll.h>]], [[void *x=epoll_create1]])],
3758 [AC_DEFINE(HAVE_EPOLL_CREATE1, 1, Define if you have the 'epoll_create1' function.)
3759 AC_MSG_RESULT(yes)],
3760 [AC_MSG_RESULT(no)
3761])
Christian Heimes4fbc72b2008-03-22 00:47:35 +00003762AC_MSG_CHECKING(for kqueue)
Matthias Kloseb159a552010-04-25 21:00:44 +00003763AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
Christian Heimes4fbc72b2008-03-22 00:47:35 +00003764#include <sys/types.h>
3765#include <sys/event.h>
Matthias Kloseb159a552010-04-25 21:00:44 +00003766 ]], [[int x=kqueue()]])],
3767 [AC_DEFINE(HAVE_KQUEUE, 1, Define if you have the 'kqueue' functions.)
3768 AC_MSG_RESULT(yes)],
3769 [AC_MSG_RESULT(no)
3770])
Christian Heimesb7bd5df2013-10-22 11:21:54 +02003771AC_MSG_CHECKING(for prlimit)
3772AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
3773#include <sys/time.h>
3774#include <sys/resource.h>
3775 ]], [[void *x=prlimit]])],
3776 [AC_DEFINE(HAVE_PRLIMIT, 1, Define if you have the 'prlimit' functions.)
3777 AC_MSG_RESULT(yes)],
3778 [AC_MSG_RESULT(no)
3779])
Ronald Oussoren41761932020-11-08 10:05:27 +01003780AC_MSG_CHECKING(for _dyld_shared_cache_contains_path)
3781AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#include <mach-o/dyld.h>]], [[void *x=_dyld_shared_cache_contains_path]])],
3782 [AC_DEFINE(HAVE_DYLD_SHARED_CACHE_CONTAINS_PATH, 1, Define if you have the '_dyld_shared_cache_contains_path' function.)
3783 AC_MSG_RESULT(yes)],
3784 [AC_MSG_RESULT(no)
3785])
Christian Heimesb7bd5df2013-10-22 11:21:54 +02003786
Zackery Spytz43fdbd22019-05-29 13:57:07 -06003787AC_MSG_CHECKING(for memfd_create)
3788AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
3789#ifdef HAVE_SYS_MMAN_H
3790#include <sys/mman.h>
3791#endif
3792#ifdef HAVE_SYS_MEMFD_H
3793#include <sys/memfd.h>
3794#endif
3795]], [[void *x=memfd_create]])],
3796 [AC_DEFINE(HAVE_MEMFD_CREATE, 1, Define if you have the 'memfd_create' function.)
3797 AC_MSG_RESULT(yes)],
3798 [AC_MSG_RESULT(no)
3799])
3800
Christian Heimescd9fed62020-11-13 19:48:52 +01003801AC_MSG_CHECKING(for eventfd)
3802AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
3803#ifdef HAVE_SYS_EVENTFD_H
3804#include <sys/eventfd.h>
3805#endif
3806]], [[int x = eventfd(0, EFD_CLOEXEC)]])],
3807 [AC_DEFINE(HAVE_EVENTFD, 1, Define if you have the 'eventfd' function.)
3808 AC_MSG_RESULT(yes)],
3809 [AC_MSG_RESULT(no)
3810])
3811
Martin v. Löwisd5843682002-11-21 20:41:28 +00003812# On some systems (eg. FreeBSD 5), we would find a definition of the
3813# functions ctermid_r, setgroups in the library, but no prototype
3814# (e.g. because we use _XOPEN_SOURCE). See whether we can take their
3815# address to avoid compiler warnings and potential miscompilations
3816# because of the missing prototypes.
3817
3818AC_MSG_CHECKING(for ctermid_r)
Matthias Kloseb159a552010-04-25 21:00:44 +00003819AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
Martin v. Löwisd5843682002-11-21 20:41:28 +00003820#include <stdio.h>
Matthias Kloseb159a552010-04-25 21:00:44 +00003821]], [[void* p = ctermid_r]])],
3822 [AC_DEFINE(HAVE_CTERMID_R, 1, Define if you have the 'ctermid_r' function.)
3823 AC_MSG_RESULT(yes)],
3824 [AC_MSG_RESULT(no)
3825])
Martin v. Löwisd5843682002-11-21 20:41:28 +00003826
Antoine Pitroua4e4ae22010-09-10 18:39:00 +00003827AC_CACHE_CHECK([for flock declaration], [ac_cv_flock_decl],
3828 [AC_COMPILE_IFELSE(
3829 [AC_LANG_PROGRAM(
3830 [#include <sys/file.h>],
3831 [void* p = flock]
3832 )],
3833 [ac_cv_flock_decl=yes],
3834 [ac_cv_flock_decl=no]
3835 )
Matthias Kloseb159a552010-04-25 21:00:44 +00003836])
Antoine Pitroua4e4ae22010-09-10 18:39:00 +00003837if test "x${ac_cv_flock_decl}" = xyes; then
3838 AC_CHECK_FUNCS(flock,,
3839 AC_CHECK_LIB(bsd,flock,
3840 [AC_DEFINE(HAVE_FLOCK)
3841 AC_DEFINE(FLOCK_NEEDS_LIBBSD, 1, Define if flock needs to be linked with bsd library.)
3842 ])
3843 )
Antoine Pitroua3000072010-09-07 14:52:42 +00003844fi
Martin v. Löwisf26d63b2003-03-30 17:23:49 +00003845
3846AC_MSG_CHECKING(for getpagesize)
Matthias Kloseb159a552010-04-25 21:00:44 +00003847AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
Martin v. Löwisf26d63b2003-03-30 17:23:49 +00003848#include <unistd.h>
Matthias Kloseb159a552010-04-25 21:00:44 +00003849]], [[void* p = getpagesize]])],
3850 [AC_DEFINE(HAVE_GETPAGESIZE, 1, Define if you have the 'getpagesize' function.)
3851 AC_MSG_RESULT(yes)],
3852 [AC_MSG_RESULT(no)
3853])
Martin v. Löwisf26d63b2003-03-30 17:23:49 +00003854
Victor Stinner984890f2011-11-24 13:53:38 +01003855AC_MSG_CHECKING(for broken unsetenv)
3856AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
3857#include <stdlib.h>
3858]], [[int res = unsetenv("DUMMY")]])],
3859 [AC_MSG_RESULT(no)],
3860 [AC_DEFINE(HAVE_BROKEN_UNSETENV, 1, Define if `unsetenv` does not return an int.)
3861 AC_MSG_RESULT(yes)
3862])
3863
Martin v. Löwis4ee6eef2003-05-26 05:37:51 +00003864dnl check for true
3865AC_CHECK_PROGS(TRUE, true, /bin/true)
3866
Martin v. Löwis95c419b2003-05-03 12:10:48 +00003867dnl On some systems (e.g. Solaris 9), hstrerror and inet_aton are in -lresolv
3868dnl On others, they are in the C library, so we to take no action
Martin v. Löwis4ee6eef2003-05-26 05:37:51 +00003869AC_CHECK_LIB(c, inet_aton, [$ac_cv_prog_TRUE],
Martin v. Löwis95c419b2003-05-03 12:10:48 +00003870 AC_CHECK_LIB(resolv, inet_aton)
3871)
3872
Christian Heimesd0764e22007-12-04 15:00:33 +00003873# On Tru64, chflags seems to be present, but calling it will
3874# exit Python
Benjamin Petersoned68afa2010-01-30 19:36:43 +00003875AC_CACHE_CHECK([for chflags], [ac_cv_have_chflags], [dnl
Ned Deily3eb67d52011-06-28 00:00:28 -07003876AC_RUN_IFELSE([AC_LANG_SOURCE([[
Christian Heimesd0764e22007-12-04 15:00:33 +00003877#include <sys/stat.h>
3878#include <unistd.h>
3879int main(int argc, char*argv[])
3880{
3881 if(chflags(argv[0], 0) != 0)
3882 return 1;
3883 return 0;
3884}
Ned Deily3eb67d52011-06-28 00:00:28 -07003885]])],
Matthias Kloseb159a552010-04-25 21:00:44 +00003886[ac_cv_have_chflags=yes],
3887[ac_cv_have_chflags=no],
3888[ac_cv_have_chflags=cross])
Benjamin Petersoned68afa2010-01-30 19:36:43 +00003889])
3890if test "$ac_cv_have_chflags" = cross ; then
3891 AC_CHECK_FUNC([chflags], [ac_cv_have_chflags="yes"], [ac_cv_have_chflags="no"])
3892fi
3893if test "$ac_cv_have_chflags" = yes ; then
Ned Deily3eb67d52011-06-28 00:00:28 -07003894 AC_DEFINE(HAVE_CHFLAGS, 1, [Define to 1 if you have the 'chflags' function.])
Alexandre Vassalotti7b0c1c72009-07-17 06:00:34 +00003895fi
Christian Heimesd0764e22007-12-04 15:00:33 +00003896
Benjamin Petersoned68afa2010-01-30 19:36:43 +00003897AC_CACHE_CHECK([for lchflags], [ac_cv_have_lchflags], [dnl
Ned Deily3eb67d52011-06-28 00:00:28 -07003898AC_RUN_IFELSE([AC_LANG_SOURCE([[
Christian Heimesd0764e22007-12-04 15:00:33 +00003899#include <sys/stat.h>
3900#include <unistd.h>
3901int main(int argc, char*argv[])
3902{
3903 if(lchflags(argv[0], 0) != 0)
3904 return 1;
3905 return 0;
3906}
Ned Deily3eb67d52011-06-28 00:00:28 -07003907]])],[ac_cv_have_lchflags=yes],[ac_cv_have_lchflags=no],[ac_cv_have_lchflags=cross])
Benjamin Petersoned68afa2010-01-30 19:36:43 +00003908])
3909if test "$ac_cv_have_lchflags" = cross ; then
3910 AC_CHECK_FUNC([lchflags], [ac_cv_have_lchflags="yes"], [ac_cv_have_lchflags="no"])
3911fi
3912if test "$ac_cv_have_lchflags" = yes ; then
Ned Deily3eb67d52011-06-28 00:00:28 -07003913 AC_DEFINE(HAVE_LCHFLAGS, 1, [Define to 1 if you have the 'lchflags' function.])
Alexandre Vassalotti7b0c1c72009-07-17 06:00:34 +00003914fi
Christian Heimesd0764e22007-12-04 15:00:33 +00003915
Thomas Wouters0e3f5912006-08-11 14:57:12 +00003916dnl Check if system zlib has *Copy() functions
3917dnl
3918dnl On MacOSX the linker will search for dylibs on the entire linker path
3919dnl before searching for static libraries. setup.py adds -Wl,-search_paths_first
3920dnl to revert to a more traditional unix behaviour and make it possible to
3921dnl override the system libz with a local static library of libz. Temporarily
3922dnl add that flag to our CFLAGS as well to ensure that we check the version
Victor Stinner1b80b242016-04-12 22:34:58 +02003923dnl of libz that will be used by setup.py.
3924dnl The -L/usr/local/lib is needed as wel to get the same compilation
Thomas Wouters0e3f5912006-08-11 14:57:12 +00003925dnl environment as setup.py (and leaving it out can cause configure to use the
3926dnl wrong version of the library)
3927case $ac_sys_system/$ac_sys_release in
Victor Stinner1b80b242016-04-12 22:34:58 +02003928Darwin/*)
Thomas Wouters0e3f5912006-08-11 14:57:12 +00003929 _CUR_CFLAGS="${CFLAGS}"
3930 _CUR_LDFLAGS="${LDFLAGS}"
3931 CFLAGS="${CFLAGS} -Wl,-search_paths_first"
3932 LDFLAGS="${LDFLAGS} -Wl,-search_paths_first -L/usr/local/lib"
3933 ;;
3934esac
3935
Matthias Klosec80c93f2010-04-24 17:04:35 +00003936AC_CHECK_LIB(z, inflateCopy, AC_DEFINE(HAVE_ZLIB_COPY, 1, [Define if the zlib library has inflateCopy]))
Thomas Wouters0e3f5912006-08-11 14:57:12 +00003937
3938case $ac_sys_system/$ac_sys_release in
Victor Stinner1b80b242016-04-12 22:34:58 +02003939Darwin/*)
Thomas Wouters0e3f5912006-08-11 14:57:12 +00003940 CFLAGS="${_CUR_CFLAGS}"
3941 LDFLAGS="${_CUR_LDFLAGS}"
3942 ;;
3943esac
3944
Martin v. Löwise9416172003-05-03 10:12:45 +00003945AC_MSG_CHECKING(for hstrerror)
Matthias Kloseb159a552010-04-25 21:00:44 +00003946AC_LINK_IFELSE([AC_LANG_PROGRAM([[
Martin v. Löwise9416172003-05-03 10:12:45 +00003947#include <netdb.h>
Matthias Kloseb159a552010-04-25 21:00:44 +00003948]], [[void* p = hstrerror; hstrerror(0)]])],
3949 [AC_DEFINE(HAVE_HSTRERROR, 1, Define if you have the 'hstrerror' function.)
3950 AC_MSG_RESULT(yes)],
3951 [AC_MSG_RESULT(no)
3952])
Martin v. Löwise9416172003-05-03 10:12:45 +00003953
3954AC_MSG_CHECKING(for inet_aton)
Matthias Kloseb159a552010-04-25 21:00:44 +00003955AC_LINK_IFELSE([AC_LANG_PROGRAM([[
Martin v. Löwis86d66262006-02-17 08:40:11 +00003956#include <sys/types.h>
Martin v. Löwise9416172003-05-03 10:12:45 +00003957#include <sys/socket.h>
3958#include <netinet/in.h>
3959#include <arpa/inet.h>
Matthias Kloseb159a552010-04-25 21:00:44 +00003960]], [[void* p = inet_aton;inet_aton(0,0)]])],
3961 [AC_DEFINE(HAVE_INET_ATON, 1, Define if you have the 'inet_aton' function.)
3962 AC_MSG_RESULT(yes)],
3963 [AC_MSG_RESULT(no)
3964])
Martin v. Löwise9416172003-05-03 10:12:45 +00003965
3966AC_MSG_CHECKING(for inet_pton)
Matthias Kloseb159a552010-04-25 21:00:44 +00003967AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
Martin v. Löwisf2e488d2003-05-05 22:00:11 +00003968#include <sys/types.h>
Martin v. Löwise9416172003-05-03 10:12:45 +00003969#include <sys/socket.h>
3970#include <netinet/in.h>
3971#include <arpa/inet.h>
Matthias Kloseb159a552010-04-25 21:00:44 +00003972]], [[void* p = inet_pton]])],
3973 [AC_DEFINE(HAVE_INET_PTON, 1, Define if you have the 'inet_pton' function.)
3974 AC_MSG_RESULT(yes)],
3975 [AC_MSG_RESULT(no)
3976])
Martin v. Löwise9416172003-05-03 10:12:45 +00003977
Martin v. Löwisd6640d42003-07-06 09:29:52 +00003978# On some systems, setgroups is in unistd.h, on others, in grp.h
Martin v. Löwisd5843682002-11-21 20:41:28 +00003979AC_MSG_CHECKING(for setgroups)
Matthias Kloseb159a552010-04-25 21:00:44 +00003980AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
Martin v. Löwisf2e488d2003-05-05 22:00:11 +00003981#include <unistd.h>
Martin v. Löwisd6640d42003-07-06 09:29:52 +00003982#ifdef HAVE_GRP_H
3983#include <grp.h>
3984#endif
Matthias Kloseb159a552010-04-25 21:00:44 +00003985]], [[void* p = setgroups]])],
3986 [AC_DEFINE(HAVE_SETGROUPS, 1, Define if you have the 'setgroups' function.)
3987 AC_MSG_RESULT(yes)],
3988 [AC_MSG_RESULT(no)
3989])
Martin v. Löwisd5843682002-11-21 20:41:28 +00003990
Fred Drake8cef4cf2000-06-28 16:40:38 +00003991# check for openpty and forkpty
3992
Victor Stinner1b80b242016-04-12 22:34:58 +02003993AC_CHECK_FUNCS(openpty,,
Martin v. Löwisfd9a72a2006-01-08 10:07:33 +00003994 AC_CHECK_LIB(util,openpty,
3995 [AC_DEFINE(HAVE_OPENPTY) LIBS="$LIBS -lutil"],
3996 AC_CHECK_LIB(bsd,openpty, [AC_DEFINE(HAVE_OPENPTY) LIBS="$LIBS -lbsd"])
3997 )
3998)
Victor Stinner1b80b242016-04-12 22:34:58 +02003999AC_CHECK_FUNCS(forkpty,,
4000 AC_CHECK_LIB(util,forkpty,
Martin v. Löwisfd9a72a2006-01-08 10:07:33 +00004001 [AC_DEFINE(HAVE_FORKPTY) LIBS="$LIBS -lutil"],
4002 AC_CHECK_LIB(bsd,forkpty, [AC_DEFINE(HAVE_FORKPTY) LIBS="$LIBS -lbsd"])
4003 )
4004)
Fred Drake8cef4cf2000-06-28 16:40:38 +00004005
Guido van Rossum00f0f6e1999-01-06 18:52:29 +00004006# check for long file support functions
4007AC_CHECK_FUNCS(fseek64 fseeko fstatvfs ftell64 ftello statvfs)
4008
wasiher5798f782020-07-27 12:28:45 +09004009AC_REPLACE_FUNCS(dup2)
Victor Stinner1b80b242016-04-12 22:34:58 +02004010AC_CHECK_FUNCS(getpgrp,
Matthias Kloseb159a552010-04-25 21:00:44 +00004011 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#include <unistd.h>]], [[getpgrp(0);]])],
4012 [AC_DEFINE(GETPGRP_HAVE_ARG, 1, [Define if getpgrp() must be called as getpgrp(0).])],
4013 [])
Martin v. Löwisc45929e2002-04-06 10:10:49 +00004014)
Jack Jansen150753c2003-03-29 22:07:47 +00004015AC_CHECK_FUNCS(setpgrp,
Matthias Kloseb159a552010-04-25 21:00:44 +00004016 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#include <unistd.h>]], [[setpgrp(0,0);]])],
4017 [AC_DEFINE(SETPGRP_HAVE_ARG, 1, [Define if setpgrp() must be called as setpgrp(0, 0).])],
4018 [])
Martin v. Löwisc45929e2002-04-06 10:10:49 +00004019)
Guido van Rossum627b2d71993-12-24 10:39:16 +00004020
Gregory P. Smith387512c2018-12-30 15:42:32 -08004021# We search for both crypt and crypt_r as one or the other may be defined
4022# This gets us our -lcrypt in LIBS when required on the target platform.
4023AC_SEARCH_LIBS(crypt, crypt)
4024AC_SEARCH_LIBS(crypt_r, crypt)
4025
4026AC_CHECK_FUNC(crypt_r,
4027 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
4028#define _GNU_SOURCE /* Required for crypt_r()'s prototype in glibc. */
4029#include <crypt.h>
4030]], [[
4031struct crypt_data d;
4032char *r = crypt_r("", "", &d);
4033]])],
4034 [AC_DEFINE(HAVE_CRYPT_R, 1, [Define if you have the crypt_r() function.])],
4035 [])
4036)
4037
Victor Stinnere0be4232011-10-25 13:06:09 +02004038AC_CHECK_FUNCS(clock_gettime, [], [
4039 AC_CHECK_LIB(rt, clock_gettime, [
Victor Stinner7efb8332014-08-29 15:41:08 +02004040 LIBS="$LIBS -lrt"
Victor Stinnere0be4232011-10-25 13:06:09 +02004041 AC_DEFINE(HAVE_CLOCK_GETTIME, 1)
4042 AC_DEFINE(TIMEMODULE_LIB, [rt],
4043 [Library needed by timemodule.c: librt may be needed for clock_gettime()])
4044 ])
4045])
4046
4047AC_CHECK_FUNCS(clock_getres, [], [
4048 AC_CHECK_LIB(rt, clock_getres, [
4049 AC_DEFINE(HAVE_CLOCK_GETRES, 1)
4050 ])
4051])
4052
Benjamin Peterson37098cd2016-09-13 22:55:09 -07004053AC_CHECK_FUNCS(clock_settime, [], [
4054 AC_CHECK_LIB(rt, clock_settime, [
4055 AC_DEFINE(HAVE_CLOCK_SETTIME, 1)
4056 ])
4057])
4058
Martin v. Löwisdbe3f762002-10-10 14:27:30 +00004059AC_MSG_CHECKING(for major, minor, and makedev)
Matthias Kloseb159a552010-04-25 21:00:44 +00004060AC_LINK_IFELSE([AC_LANG_PROGRAM([[
Neal Norwitz6eb37f02003-02-23 23:28:15 +00004061#if defined(MAJOR_IN_MKDEV)
4062#include <sys/mkdev.h>
4063#elif defined(MAJOR_IN_SYSMACROS)
4064#include <sys/sysmacros.h>
4065#else
4066#include <sys/types.h>
4067#endif
Matthias Kloseb159a552010-04-25 21:00:44 +00004068]], [[
Martin v. Löwisdbe3f762002-10-10 14:27:30 +00004069 makedev(major(0),minor(0));
Matthias Kloseb159a552010-04-25 21:00:44 +00004070]])],[
Martin v. Löwisdbe3f762002-10-10 14:27:30 +00004071 AC_DEFINE(HAVE_DEVICE_MACROS, 1,
4072 [Define to 1 if you have the device macros.])
4073 AC_MSG_RESULT(yes)
4074],[
4075 AC_MSG_RESULT(no)
4076])
Martin v. Löwis861a65b2001-10-24 14:36:00 +00004077
4078# On OSF/1 V5.1, getaddrinfo is available, but a define
Victor Stinner1b80b242016-04-12 22:34:58 +02004079# for [no]getaddrinfo in netdb.h.
Martin v. Löwis861a65b2001-10-24 14:36:00 +00004080AC_MSG_CHECKING(for getaddrinfo)
Matthias Kloseb159a552010-04-25 21:00:44 +00004081AC_LINK_IFELSE([AC_LANG_PROGRAM([[
Martin v. Löwisc010b6d2001-11-09 17:50:52 +00004082#include <sys/types.h>
Martin v. Löwis861a65b2001-10-24 14:36:00 +00004083#include <sys/socket.h>
4084#include <netdb.h>
Martin v. Löwisc010b6d2001-11-09 17:50:52 +00004085#include <stdio.h>
Matthias Kloseb159a552010-04-25 21:00:44 +00004086]], [[getaddrinfo(NULL, NULL, NULL, NULL);]])],
4087[have_getaddrinfo=yes],
4088[have_getaddrinfo=no])
Alexandre Vassalotti7b0c1c72009-07-17 06:00:34 +00004089AC_MSG_RESULT($have_getaddrinfo)
4090if test $have_getaddrinfo = yes
4091then
4092 AC_MSG_CHECKING(getaddrinfo bug)
4093 AC_CACHE_VAL(ac_cv_buggy_getaddrinfo,
Matthias Kloseb159a552010-04-25 21:00:44 +00004094 AC_RUN_IFELSE([AC_LANG_SOURCE([[[
Stefan Krah19c21392012-11-22 23:47:32 +01004095#include <stdio.h>
Martin v. Löwis01dfdb32001-06-23 16:30:13 +00004096#include <sys/types.h>
4097#include <netdb.h>
4098#include <string.h>
4099#include <sys/socket.h>
4100#include <netinet/in.h>
4101
Alexandre Vassalotti7b0c1c72009-07-17 06:00:34 +00004102int main()
Martin v. Löwis01dfdb32001-06-23 16:30:13 +00004103{
4104 int passive, gaierr, inet4 = 0, inet6 = 0;
4105 struct addrinfo hints, *ai, *aitop;
4106 char straddr[INET6_ADDRSTRLEN], strport[16];
4107
4108 for (passive = 0; passive <= 1; passive++) {
4109 memset(&hints, 0, sizeof(hints));
4110 hints.ai_family = AF_UNSPEC;
4111 hints.ai_flags = passive ? AI_PASSIVE : 0;
4112 hints.ai_socktype = SOCK_STREAM;
Hye-Shik Chang54f94392004-04-14 07:55:31 +00004113 hints.ai_protocol = IPPROTO_TCP;
Martin v. Löwis01dfdb32001-06-23 16:30:13 +00004114 if ((gaierr = getaddrinfo(NULL, "54321", &hints, &aitop)) != 0) {
4115 (void)gai_strerror(gaierr);
4116 goto bad;
4117 }
4118 for (ai = aitop; ai; ai = ai->ai_next) {
4119 if (ai->ai_addr == NULL ||
4120 ai->ai_addrlen == 0 ||
4121 getnameinfo(ai->ai_addr, ai->ai_addrlen,
4122 straddr, sizeof(straddr), strport, sizeof(strport),
4123 NI_NUMERICHOST|NI_NUMERICSERV) != 0) {
4124 goto bad;
4125 }
4126 switch (ai->ai_family) {
4127 case AF_INET:
4128 if (strcmp(strport, "54321") != 0) {
4129 goto bad;
4130 }
4131 if (passive) {
4132 if (strcmp(straddr, "0.0.0.0") != 0) {
4133 goto bad;
4134 }
4135 } else {
4136 if (strcmp(straddr, "127.0.0.1") != 0) {
4137 goto bad;
4138 }
4139 }
4140 inet4++;
4141 break;
4142 case AF_INET6:
4143 if (strcmp(strport, "54321") != 0) {
4144 goto bad;
4145 }
4146 if (passive) {
4147 if (strcmp(straddr, "::") != 0) {
4148 goto bad;
4149 }
4150 } else {
4151 if (strcmp(straddr, "::1") != 0) {
4152 goto bad;
4153 }
4154 }
4155 inet6++;
4156 break;
4157 case AF_UNSPEC:
4158 goto bad;
4159 break;
4160 default:
4161 /* another family support? */
4162 break;
4163 }
4164 }
Benjamin Peterson01c340d2016-09-06 15:54:24 -07004165 freeaddrinfo(aitop);
4166 aitop = NULL;
Martin v. Löwis01dfdb32001-06-23 16:30:13 +00004167 }
4168
4169 if (!(inet4 == 0 || inet4 == 2))
4170 goto bad;
4171 if (!(inet6 == 0 || inet6 == 2))
4172 goto bad;
4173
4174 if (aitop)
4175 freeaddrinfo(aitop);
Alexandre Vassalotti7b0c1c72009-07-17 06:00:34 +00004176 return 0;
Martin v. Löwis01dfdb32001-06-23 16:30:13 +00004177
4178 bad:
4179 if (aitop)
4180 freeaddrinfo(aitop);
Alexandre Vassalotti7b0c1c72009-07-17 06:00:34 +00004181 return 1;
Martin v. Löwis01dfdb32001-06-23 16:30:13 +00004182}
Matthias Kloseb159a552010-04-25 21:00:44 +00004183]]])],
4184[ac_cv_buggy_getaddrinfo=no],
4185[ac_cv_buggy_getaddrinfo=yes],
Matthias Klose96350132012-03-15 20:42:23 +01004186[
4187if test "${enable_ipv6+set}" = set; then
4188 ac_cv_buggy_getaddrinfo="no -- configured with --(en|dis)able-ipv6"
4189else
4190 ac_cv_buggy_getaddrinfo=yes
4191fi]))
Alexandre Vassalotti7b0c1c72009-07-17 06:00:34 +00004192fi
Martin v. Löwis01dfdb32001-06-23 16:30:13 +00004193
Benjamin Petersond4694ed2010-11-01 01:44:30 +00004194AC_MSG_RESULT($ac_cv_buggy_getaddrinfo)
4195
doko@ubuntu.com9c7817e2012-06-30 17:05:13 +02004196if test $have_getaddrinfo = no || test "$ac_cv_buggy_getaddrinfo" = yes
Alexandre Vassalotti7b0c1c72009-07-17 06:00:34 +00004197then
4198 if test $ipv6 = yes
4199 then
Martin v. Löwis01dfdb32001-06-23 16:30:13 +00004200 echo 'Fatal: You must get working getaddrinfo() function.'
4201 echo ' or you can specify "--disable-ipv6"'.
4202 exit 1
4203 fi
Martin v. Löwis861a65b2001-10-24 14:36:00 +00004204else
Martin v. Löwisc45929e2002-04-06 10:10:49 +00004205 AC_DEFINE(HAVE_GETADDRINFO, 1, [Define if you have the getaddrinfo function.])
Martin v. Löwis01dfdb32001-06-23 16:30:13 +00004206fi
Benjamin Petersond4694ed2010-11-01 01:44:30 +00004207
Thomas Woutersb0db85a2001-08-08 10:39:03 +00004208AC_CHECK_FUNCS(getnameinfo)
Martin v. Löwis01dfdb32001-06-23 16:30:13 +00004209
Guido van Rossum627b2d71993-12-24 10:39:16 +00004210# checks for structures
Guido van Rossum76be6ed1995-01-02 18:33:54 +00004211AC_HEADER_TIME
Guido van Rossum627b2d71993-12-24 10:39:16 +00004212AC_STRUCT_TM
Guido van Rossum76be6ed1995-01-02 18:33:54 +00004213AC_STRUCT_TIMEZONE
Martin v. Löwis60a5d722002-10-16 20:28:25 +00004214AC_CHECK_MEMBERS([struct stat.st_rdev])
4215AC_CHECK_MEMBERS([struct stat.st_blksize])
Hye-Shik Chang5f937a72005-06-02 13:09:30 +00004216AC_CHECK_MEMBERS([struct stat.st_flags])
Martin v. Löwisebd9d5b2005-08-09 15:00:59 +00004217AC_CHECK_MEMBERS([struct stat.st_gen])
4218AC_CHECK_MEMBERS([struct stat.st_birthtime])
Martin Panterd887d1f2016-03-18 02:36:41 +00004219AC_CHECK_MEMBERS([struct stat.st_blocks])
Stefan Krah267b6392016-04-26 01:09:18 +02004220AC_CHECK_MEMBERS([struct passwd.pw_gecos, struct passwd.pw_passwd], [], [], [[
4221 #include <sys/types.h>
4222 #include <pwd.h>
4223]])
Zachary Waree999e962016-10-01 01:06:51 -05004224# Issue #21085: In Cygwin, siginfo_t does not have si_band field.
4225AC_CHECK_MEMBERS([siginfo_t.si_band], [], [], [[#include <signal.h>]])
Guido van Rossum76be6ed1995-01-02 18:33:54 +00004226
4227AC_MSG_CHECKING(for time.h that defines altzone)
Matthias Kloseb159a552010-04-25 21:00:44 +00004228AC_CACHE_VAL(ac_cv_header_time_altzone,[
4229 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#include <time.h>]], [[return altzone;]])],
4230 [ac_cv_header_time_altzone=yes],
4231 [ac_cv_header_time_altzone=no])
4232 ])
Guido van Rossum76be6ed1995-01-02 18:33:54 +00004233AC_MSG_RESULT($ac_cv_header_time_altzone)
4234if test $ac_cv_header_time_altzone = yes; then
Martin v. Löwisc45929e2002-04-06 10:10:49 +00004235 AC_DEFINE(HAVE_ALTZONE, 1, [Define this if your time.h defines altzone.])
Guido van Rossum76be6ed1995-01-02 18:33:54 +00004236fi
4237
Guido van Rossum5739e7e1995-01-20 16:50:53 +00004238was_it_defined=no
4239AC_MSG_CHECKING(whether sys/select.h and sys/time.h may both be included)
Matthias Kloseb159a552010-04-25 21:00:44 +00004240AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
Guido van Rossum433c8ad1994-08-01 12:07:07 +00004241#include <sys/types.h>
4242#include <sys/select.h>
4243#include <sys/time.h>
Matthias Kloseb159a552010-04-25 21:00:44 +00004244]], [[;]])],[
Martin v. Löwisc45929e2002-04-06 10:10:49 +00004245 AC_DEFINE(SYS_SELECT_WITH_SYS_TIME, 1,
4246 [Define if you can safely include both <sys/select.h> and <sys/time.h>
Victor Stinner1b80b242016-04-12 22:34:58 +02004247 (which you can't on SCO ODT 3.0).])
Martin v. Löwisc45929e2002-04-06 10:10:49 +00004248 was_it_defined=yes
Matthias Kloseb159a552010-04-25 21:00:44 +00004249],[])
Guido van Rossum5739e7e1995-01-20 16:50:53 +00004250AC_MSG_RESULT($was_it_defined)
Guido van Rossum627b2d71993-12-24 10:39:16 +00004251
Martin v. Löwis01dfdb32001-06-23 16:30:13 +00004252AC_MSG_CHECKING(for addrinfo)
4253AC_CACHE_VAL(ac_cv_struct_addrinfo,
Matthias Kloseb159a552010-04-25 21:00:44 +00004254AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#include <netdb.h>]], [[struct addrinfo a]])],
4255 [ac_cv_struct_addrinfo=yes],
4256 [ac_cv_struct_addrinfo=no]))
Martin v. Löwis01dfdb32001-06-23 16:30:13 +00004257AC_MSG_RESULT($ac_cv_struct_addrinfo)
4258if test $ac_cv_struct_addrinfo = yes; then
Martin v. Löwisc45929e2002-04-06 10:10:49 +00004259 AC_DEFINE(HAVE_ADDRINFO, 1, [struct addrinfo (netdb.h)])
Martin v. Löwis01dfdb32001-06-23 16:30:13 +00004260fi
4261
4262AC_MSG_CHECKING(for sockaddr_storage)
4263AC_CACHE_VAL(ac_cv_struct_sockaddr_storage,
Matthias Kloseb159a552010-04-25 21:00:44 +00004264AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
Martin v. Löwis01dfdb32001-06-23 16:30:13 +00004265# include <sys/types.h>
Matthias Kloseb159a552010-04-25 21:00:44 +00004266# include <sys/socket.h>]], [[struct sockaddr_storage s]])],
4267 [ac_cv_struct_sockaddr_storage=yes],
4268 [ac_cv_struct_sockaddr_storage=no]))
Martin v. Löwis01dfdb32001-06-23 16:30:13 +00004269AC_MSG_RESULT($ac_cv_struct_sockaddr_storage)
4270if test $ac_cv_struct_sockaddr_storage = yes; then
Martin v. Löwisc45929e2002-04-06 10:10:49 +00004271 AC_DEFINE(HAVE_SOCKADDR_STORAGE, 1, [struct sockaddr_storage (sys/socket.h)])
Martin v. Löwis01dfdb32001-06-23 16:30:13 +00004272fi
4273
Christian Heimesdffa3942016-09-05 23:54:41 +02004274AC_MSG_CHECKING(for sockaddr_alg)
4275AC_CACHE_VAL(ac_cv_struct_sockaddr_alg,
4276AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
4277# include <sys/types.h>
4278# include <sys/socket.h>
4279# include <linux/if_alg.h>]], [[struct sockaddr_alg s]])],
4280 [ac_cv_struct_sockaddr_alg=yes],
4281 [ac_cv_struct_sockaddr_alg=no]))
4282AC_MSG_RESULT($ac_cv_struct_sockaddr_alg)
4283if test $ac_cv_struct_sockaddr_alg = yes; then
4284 AC_DEFINE(HAVE_SOCKADDR_ALG, 1, [struct sockaddr_alg (linux/if_alg.h)])
4285fi
4286
Guido van Rossum627b2d71993-12-24 10:39:16 +00004287# checks for compiler characteristics
Guido van Rossum433c8ad1994-08-01 12:07:07 +00004288
Guido van Rossum76be6ed1995-01-02 18:33:54 +00004289AC_C_CHAR_UNSIGNED
Guido van Rossum76be6ed1995-01-02 18:33:54 +00004290AC_C_CONST
Guido van Rossum433c8ad1994-08-01 12:07:07 +00004291
Guido van Rossum5739e7e1995-01-20 16:50:53 +00004292works=no
Guido van Rossum5739e7e1995-01-20 16:50:53 +00004293AC_MSG_CHECKING(for working signed char)
Matthias Kloseb159a552010-04-25 21:00:44 +00004294AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[]], [[signed char c;]])],
4295 [works=yes],
4296 [AC_DEFINE(signed, , [Define to empty if the keyword does not work.])]
Martin v. Löwisc45929e2002-04-06 10:10:49 +00004297)
Guido van Rossum5739e7e1995-01-20 16:50:53 +00004298AC_MSG_RESULT($works)
Guido van Rossum433c8ad1994-08-01 12:07:07 +00004299
Guido van Rossum5739e7e1995-01-20 16:50:53 +00004300have_prototypes=no
4301AC_MSG_CHECKING(for prototypes)
Matthias Kloseb159a552010-04-25 21:00:44 +00004302AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[int foo(int x) { return 0; }]], [[return foo(10);]])],
Victor Stinner1b80b242016-04-12 22:34:58 +02004303 [AC_DEFINE(HAVE_PROTOTYPES, 1,
4304 [Define if your compiler supports function prototype])
Matthias Kloseb159a552010-04-25 21:00:44 +00004305 have_prototypes=yes],
4306 []
4307)
Guido van Rossum5739e7e1995-01-20 16:50:53 +00004308AC_MSG_RESULT($have_prototypes)
Guido van Rossum433c8ad1994-08-01 12:07:07 +00004309
Guido van Rossum5739e7e1995-01-20 16:50:53 +00004310works=no
4311AC_MSG_CHECKING(for variable length prototypes and stdarg.h)
Matthias Kloseb159a552010-04-25 21:00:44 +00004312AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
Guido van Rossum433c8ad1994-08-01 12:07:07 +00004313#include <stdarg.h>
Guido van Rossum3f13e481996-08-30 20:58:11 +00004314int foo(int x, ...) {
4315 va_list va;
4316 va_start(va, x);
4317 va_arg(va, int);
4318 va_arg(va, char *);
4319 va_arg(va, double);
4320 return 0;
4321}
Matthias Kloseb159a552010-04-25 21:00:44 +00004322]], [[return foo(10, "", 3.14);]])],[
Martin v. Löwisc45929e2002-04-06 10:10:49 +00004323 AC_DEFINE(HAVE_STDARG_PROTOTYPES, 1,
4324 [Define if your compiler supports variable length function prototypes
Victor Stinner1b80b242016-04-12 22:34:58 +02004325 (e.g. void fprintf(FILE *, char *, ...);) *and* <stdarg.h>])
Martin v. Löwisc45929e2002-04-06 10:10:49 +00004326 works=yes
Matthias Kloseb159a552010-04-25 21:00:44 +00004327],[])
Guido van Rossum5739e7e1995-01-20 16:50:53 +00004328AC_MSG_RESULT($works)
Guido van Rossum76be6ed1995-01-02 18:33:54 +00004329
Dave Cole331708b2004-08-09 04:51:41 +00004330# check for socketpair
4331AC_MSG_CHECKING(for socketpair)
Matthias Kloseb159a552010-04-25 21:00:44 +00004332AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
Dave Cole331708b2004-08-09 04:51:41 +00004333#include <sys/types.h>
4334#include <sys/socket.h>
Matthias Kloseb159a552010-04-25 21:00:44 +00004335]], [[void *x=socketpair]])],
4336 [AC_DEFINE(HAVE_SOCKETPAIR, 1, [Define if you have the 'socketpair' function.])
4337 AC_MSG_RESULT(yes)],
4338 [AC_MSG_RESULT(no)]
Dave Cole331708b2004-08-09 04:51:41 +00004339)
4340
Martin v. Löwis01dfdb32001-06-23 16:30:13 +00004341# check if sockaddr has sa_len member
4342AC_MSG_CHECKING(if sockaddr has sa_len member)
Matthias Kloseb159a552010-04-25 21:00:44 +00004343AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#include <sys/types.h>
4344#include <sys/socket.h>]], [[struct sockaddr x;
4345x.sa_len = 0;]])],
4346 [AC_MSG_RESULT(yes)
4347 AC_DEFINE(HAVE_SOCKADDR_SA_LEN, 1, [Define if sockaddr has sa_len member])],
4348 [AC_MSG_RESULT(no)]
4349)
Martin v. Löwis01dfdb32001-06-23 16:30:13 +00004350
Guido van Rossuma96f0ba1999-03-22 21:49:51 +00004351# sigh -- gethostbyname_r is a mess; it can have 3, 5 or 6 arguments :-(
Martin v. Löwis11437992002-04-12 09:54:03 +00004352AH_TEMPLATE(HAVE_GETHOSTBYNAME_R,
4353 [Define this if you have some version of gethostbyname_r()])
4354
Guido van Rossuma96f0ba1999-03-22 21:49:51 +00004355AC_CHECK_FUNC(gethostbyname_r, [
4356 AC_DEFINE(HAVE_GETHOSTBYNAME_R)
4357 AC_MSG_CHECKING([gethostbyname_r with 6 args])
4358 OLD_CFLAGS=$CFLAGS
4359 CFLAGS="$CFLAGS $MY_CPPFLAGS $MY_THREAD_CPPFLAGS $MY_CFLAGS"
Matthias Kloseb159a552010-04-25 21:00:44 +00004360 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
Guido van Rossuma96f0ba1999-03-22 21:49:51 +00004361# include <netdb.h>
Matthias Kloseb159a552010-04-25 21:00:44 +00004362 ]], [[
Guido van Rossuma96f0ba1999-03-22 21:49:51 +00004363 char *name;
4364 struct hostent *he, *res;
4365 char buffer[2048];
4366 int buflen = 2048;
4367 int h_errnop;
4368
4369 (void) gethostbyname_r(name, he, buffer, buflen, &res, &h_errnop)
Matthias Kloseb159a552010-04-25 21:00:44 +00004370 ]])],[
Guido van Rossum8db7d8b1999-03-23 16:40:33 +00004371 AC_DEFINE(HAVE_GETHOSTBYNAME_R)
Martin v. Löwisc45929e2002-04-06 10:10:49 +00004372 AC_DEFINE(HAVE_GETHOSTBYNAME_R_6_ARG, 1,
4373 [Define this if you have the 6-arg version of gethostbyname_r().])
Guido van Rossuma96f0ba1999-03-22 21:49:51 +00004374 AC_MSG_RESULT(yes)
Matthias Kloseb159a552010-04-25 21:00:44 +00004375 ],[
Guido van Rossuma96f0ba1999-03-22 21:49:51 +00004376 AC_MSG_RESULT(no)
4377 AC_MSG_CHECKING([gethostbyname_r with 5 args])
Matthias Kloseb159a552010-04-25 21:00:44 +00004378 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
Guido van Rossuma96f0ba1999-03-22 21:49:51 +00004379# include <netdb.h>
Matthias Kloseb159a552010-04-25 21:00:44 +00004380 ]], [[
Guido van Rossuma96f0ba1999-03-22 21:49:51 +00004381 char *name;
4382 struct hostent *he;
Matthias Kloseb159a552010-04-25 21:00:44 +00004383 char buffer[2048];
4384 int buflen = 2048;
4385 int h_errnop;
Guido van Rossuma96f0ba1999-03-22 21:49:51 +00004386
Matthias Kloseb159a552010-04-25 21:00:44 +00004387 (void) gethostbyname_r(name, he, buffer, buflen, &h_errnop)
4388 ]])],
4389 [
Guido van Rossum8db7d8b1999-03-23 16:40:33 +00004390 AC_DEFINE(HAVE_GETHOSTBYNAME_R)
Matthias Kloseb159a552010-04-25 21:00:44 +00004391 AC_DEFINE(HAVE_GETHOSTBYNAME_R_5_ARG, 1,
4392 [Define this if you have the 5-arg version of gethostbyname_r().])
Guido van Rossuma96f0ba1999-03-22 21:49:51 +00004393 AC_MSG_RESULT(yes)
4394 ], [
4395 AC_MSG_RESULT(no)
Matthias Kloseb159a552010-04-25 21:00:44 +00004396 AC_MSG_CHECKING([gethostbyname_r with 3 args])
4397 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
4398# include <netdb.h>
4399 ]], [[
4400 char *name;
4401 struct hostent *he;
4402 struct hostent_data data;
4403
4404 (void) gethostbyname_r(name, he, &data);
4405 ]])],
4406 [
4407 AC_DEFINE(HAVE_GETHOSTBYNAME_R)
4408 AC_DEFINE(HAVE_GETHOSTBYNAME_R_3_ARG, 1,
4409 [Define this if you have the 3-arg version of gethostbyname_r().])
4410 AC_MSG_RESULT(yes)
4411 ], [
4412 AC_MSG_RESULT(no)
4413 ])
Guido van Rossuma96f0ba1999-03-22 21:49:51 +00004414 ])
4415 ])
4416 CFLAGS=$OLD_CFLAGS
4417], [
Thomas Wouters3a584202000-08-05 23:28:51 +00004418 AC_CHECK_FUNCS(gethostbyname)
Guido van Rossuma96f0ba1999-03-22 21:49:51 +00004419])
4420AC_SUBST(HAVE_GETHOSTBYNAME_R_6_ARG)
4421AC_SUBST(HAVE_GETHOSTBYNAME_R_5_ARG)
4422AC_SUBST(HAVE_GETHOSTBYNAME_R_3_ARG)
Guido van Rossum8db7d8b1999-03-23 16:40:33 +00004423AC_SUBST(HAVE_GETHOSTBYNAME_R)
Guido van Rossuma96f0ba1999-03-22 21:49:51 +00004424AC_SUBST(HAVE_GETHOSTBYNAME)
4425
Guido van Rossum627b2d71993-12-24 10:39:16 +00004426# checks for system services
4427# (none yet)
4428
Guido van Rossum76be6ed1995-01-02 18:33:54 +00004429# Linux requires this for correct f.p. operations
Jeremy Hyltonbe28f5b2000-07-27 21:03:04 +00004430AC_CHECK_FUNC(__fpu_control,
4431 [],
4432 [AC_CHECK_LIB(ieee, __fpu_control)
4433])
Guido van Rossum627b2d71993-12-24 10:39:16 +00004434
Guido van Rossum433c8ad1994-08-01 12:07:07 +00004435# check for --with-libm=...
4436AC_SUBST(LIBM)
Guido van Rossum4b6b5791996-09-09 20:09:34 +00004437case $ac_sys_system in
Guido van Rossum3dc0a512000-10-05 18:00:06 +00004438Darwin) ;;
Guido van Rossum4b6b5791996-09-09 20:09:34 +00004439*) LIBM=-lm
4440esac
Guido van Rossum93274221997-05-09 02:42:00 +00004441AC_MSG_CHECKING(for --with-libm=STRING)
Martin v. Löwis3e2c6322002-10-29 10:07:43 +00004442AC_ARG_WITH(libm,
Anthony Shaw2de064e2020-01-14 17:40:10 +11004443 AS_HELP_STRING([--with-libm=STRING], [override libm math library to STRING (default is system-dependent)]),
Martin v. Löwis3e2c6322002-10-29 10:07:43 +00004444[
Guido van Rossum93274221997-05-09 02:42:00 +00004445if test "$withval" = no
4446then LIBM=
4447 AC_MSG_RESULT(force LIBM empty)
4448elif test "$withval" != yes
Guido van Rossum433c8ad1994-08-01 12:07:07 +00004449then LIBM=$withval
Martin v. Löwis3e2c6322002-10-29 10:07:43 +00004450 AC_MSG_RESULT(set LIBM="$withval")
4451else AC_MSG_ERROR([proper usage is --with-libm=STRING])
Guido van Rossum93274221997-05-09 02:42:00 +00004452fi],
Martin v. Löwis3e2c6322002-10-29 10:07:43 +00004453[AC_MSG_RESULT(default LIBM="$LIBM")])
Guido van Rossum433c8ad1994-08-01 12:07:07 +00004454
4455# check for --with-libc=...
4456AC_SUBST(LIBC)
Guido van Rossum93274221997-05-09 02:42:00 +00004457AC_MSG_CHECKING(for --with-libc=STRING)
Martin v. Löwis3e2c6322002-10-29 10:07:43 +00004458AC_ARG_WITH(libc,
Anthony Shaw2de064e2020-01-14 17:40:10 +11004459 AS_HELP_STRING([--with-libc=STRING], [override libc C library to STRING (default is system-dependent)]),
Martin v. Löwis3e2c6322002-10-29 10:07:43 +00004460[
Guido van Rossum93274221997-05-09 02:42:00 +00004461if test "$withval" = no
4462then LIBC=
4463 AC_MSG_RESULT(force LIBC empty)
4464elif test "$withval" != yes
Guido van Rossum433c8ad1994-08-01 12:07:07 +00004465then LIBC=$withval
Martin v. Löwis3e2c6322002-10-29 10:07:43 +00004466 AC_MSG_RESULT(set LIBC="$withval")
4467else AC_MSG_ERROR([proper usage is --with-libc=STRING])
Guido van Rossum93274221997-05-09 02:42:00 +00004468fi],
Martin v. Löwis3e2c6322002-10-29 10:07:43 +00004469[AC_MSG_RESULT(default LIBC="$LIBC")])
Guido van Rossum433c8ad1994-08-01 12:07:07 +00004470
Stefan Krah1919b7e2012-03-21 18:25:23 +01004471# **************************************
4472# * Check for gcc x64 inline assembler *
4473# **************************************
4474
4475AC_MSG_CHECKING(for x64 gcc inline assembler)
Stefan Krahe31db2a2015-07-02 20:27:56 +02004476AC_LINK_IFELSE( [AC_LANG_PROGRAM([[]], [[
Stefan Krah1919b7e2012-03-21 18:25:23 +01004477 __asm__ __volatile__ ("movq %rcx, %rax");
4478]])],[have_gcc_asm_for_x64=yes],[have_gcc_asm_for_x64=no])
4479AC_MSG_RESULT($have_gcc_asm_for_x64)
4480if test "$have_gcc_asm_for_x64" = yes
4481then
4482 AC_DEFINE(HAVE_GCC_ASM_FOR_X64, 1,
4483 [Define if we can use x64 gcc inline assembler])
4484fi
4485
Mark Dickinsonb08a53a2009-04-16 19:52:09 +00004486# **************************************************
4487# * Check for various properties of floating point *
4488# **************************************************
Christian Heimes81ee3ef2008-05-04 22:42:01 +00004489
Ross Burton2a9c3802018-09-19 07:25:48 +01004490AX_C_FLOAT_WORDS_BIGENDIAN
4491if test "$ax_cv_c_float_words_bigendian" = "yes"
Mark Dickinsonb08a53a2009-04-16 19:52:09 +00004492then
4493 AC_DEFINE(DOUBLE_IS_BIG_ENDIAN_IEEE754, 1,
4494 [Define if C doubles are 64-bit IEEE 754 binary format, stored
4495 with the most significant byte first])
Ross Burton2a9c3802018-09-19 07:25:48 +01004496elif test "$ax_cv_c_float_words_bigendian" = "no"
Mark Dickinsonb08a53a2009-04-16 19:52:09 +00004497then
Ross Burton2a9c3802018-09-19 07:25:48 +01004498 AC_DEFINE(DOUBLE_IS_LITTLE_ENDIAN_IEEE754, 1,
4499 [Define if C doubles are 64-bit IEEE 754 binary format, stored
4500 with the least significant byte first])
4501else
4502 # Some ARM platforms use a mixed-endian representation for doubles.
4503 # While Python doesn't currently have full support for these platforms
4504 # (see e.g., issue 1762561), we can at least make sure that float <-> string
4505 # conversions work.
4506 # FLOAT_WORDS_BIGENDIAN doesnt actually detect this case, but if it's not big
4507 # or little, then it must be this?
Mark Dickinsonb08a53a2009-04-16 19:52:09 +00004508 AC_DEFINE(DOUBLE_IS_ARM_MIXED_ENDIAN_IEEE754, 1,
4509 [Define if C doubles are 64-bit IEEE 754 binary format, stored
4510 in ARM mixed-endian order (byte order 45670123)])
4511fi
4512
Mark Dickinson7abf8d42009-04-18 20:17:52 +00004513# The short float repr introduced in Python 3.1 requires the
4514# correctly-rounded string <-> double conversion functions from
4515# Python/dtoa.c, which in turn require that the FPU uses 53-bit
4516# rounding; this is a problem on x86, where the x87 FPU has a default
Mark Dickinsonf4243f62009-11-15 13:47:27 +00004517# rounding precision of 64 bits. For gcc/x86, we can fix this by
Mark Dickinson7abf8d42009-04-18 20:17:52 +00004518# using inline assembler to get and set the x87 FPU control word.
Mark Dickinsonf4243f62009-11-15 13:47:27 +00004519
4520# This inline assembler syntax may also work for suncc and icc,
4521# so we try it on all platforms.
4522
4523AC_MSG_CHECKING(whether we can use gcc inline assembler to get and set x87 control word)
Stefan Krahe31db2a2015-07-02 20:27:56 +02004524AC_LINK_IFELSE( [AC_LANG_PROGRAM([[]], [[
Mark Dickinsonf4243f62009-11-15 13:47:27 +00004525 unsigned short cw;
4526 __asm__ __volatile__ ("fnstcw %0" : "=m" (cw));
4527 __asm__ __volatile__ ("fldcw %0" : : "m" (cw));
Matthias Kloseb159a552010-04-25 21:00:44 +00004528]])],[have_gcc_asm_for_x87=yes],[have_gcc_asm_for_x87=no])
Mark Dickinsonf4243f62009-11-15 13:47:27 +00004529AC_MSG_RESULT($have_gcc_asm_for_x87)
4530if test "$have_gcc_asm_for_x87" = yes
Mark Dickinsonb08a53a2009-04-16 19:52:09 +00004531then
Mark Dickinsonf4243f62009-11-15 13:47:27 +00004532 AC_DEFINE(HAVE_GCC_ASM_FOR_X87, 1,
4533 [Define if we can use gcc inline assembler to get and set x87 control word])
Mark Dickinsonb08a53a2009-04-16 19:52:09 +00004534fi
Christian Heimes81ee3ef2008-05-04 22:42:01 +00004535
Benjamin Peterson8bdeb162014-04-17 00:00:31 -04004536AC_MSG_CHECKING(whether we can use gcc inline assembler to get and set mc68881 fpcr)
Stefan Krahe31db2a2015-07-02 20:27:56 +02004537AC_LINK_IFELSE( [AC_LANG_PROGRAM([[]], [[
Benjamin Peterson8bdeb162014-04-17 00:00:31 -04004538 unsigned int fpcr;
4539 __asm__ __volatile__ ("fmove.l %%fpcr,%0" : "=g" (fpcr));
4540 __asm__ __volatile__ ("fmove.l %0,%%fpcr" : : "g" (fpcr));
4541]])],[have_gcc_asm_for_mc68881=yes],[have_gcc_asm_for_mc68881=no])
4542AC_MSG_RESULT($have_gcc_asm_for_mc68881)
4543if test "$have_gcc_asm_for_mc68881" = yes
4544then
4545 AC_DEFINE(HAVE_GCC_ASM_FOR_MC68881, 1,
4546 [Define if we can use gcc inline assembler to get and set mc68881 fpcr])
4547fi
4548
Mark Dickinson3dc7c6a2009-01-04 15:09:02 +00004549# Detect whether system arithmetic is subject to x87-style double
4550# rounding issues. The result of this test has little meaning on non
4551# IEEE 754 platforms. On IEEE 754, test should return 1 if rounding
4552# mode is round-to-nearest and double rounding issues are present, and
4553# 0 otherwise. See http://bugs.python.org/issue2937 for more info.
4554AC_MSG_CHECKING(for x87-style double rounding)
Mark Dickinsonb08a53a2009-04-16 19:52:09 +00004555# $BASECFLAGS may affect the result
4556ac_save_cc="$CC"
4557CC="$CC $BASECFLAGS"
Matthias Kloseb159a552010-04-25 21:00:44 +00004558AC_RUN_IFELSE([AC_LANG_SOURCE([[
Mark Dickinson3dc7c6a2009-01-04 15:09:02 +00004559#include <stdlib.h>
4560#include <math.h>
4561int main() {
4562 volatile double x, y, z;
4563 /* 1./(1-2**-53) -> 1+2**-52 (correct), 1.0 (double rounding) */
4564 x = 0.99999999999999989; /* 1-2**-53 */
4565 y = 1./x;
4566 if (y != 1.)
4567 exit(0);
4568 /* 1e16+2.99999 -> 1e16+2. (correct), 1e16+4. (double rounding) */
4569 x = 1e16;
4570 y = 2.99999;
4571 z = x + y;
4572 if (z != 1e16+4.)
4573 exit(0);
4574 /* both tests show evidence of double rounding */
4575 exit(1);
4576}
Matthias Kloseb159a552010-04-25 21:00:44 +00004577]])],
4578[ac_cv_x87_double_rounding=no],
4579[ac_cv_x87_double_rounding=yes],
4580[ac_cv_x87_double_rounding=no])
Mark Dickinsonb08a53a2009-04-16 19:52:09 +00004581CC="$ac_save_cc"
Mark Dickinson3dc7c6a2009-01-04 15:09:02 +00004582AC_MSG_RESULT($ac_cv_x87_double_rounding)
4583if test "$ac_cv_x87_double_rounding" = yes
4584then
4585 AC_DEFINE(X87_DOUBLE_ROUNDING, 1,
4586 [Define if arithmetic is subject to x87-style double rounding issue])
4587fi
4588
Mark Dickinsonb08a53a2009-04-16 19:52:09 +00004589# ************************************
4590# * Check for mathematical functions *
4591# ************************************
4592
4593LIBS_SAVE=$LIBS
4594LIBS="$LIBS $LIBM"
4595
Mark Dickinson7edecdd2010-11-20 10:09:56 +00004596AC_CHECK_FUNCS([acosh asinh atanh copysign erf erfc expm1 finite gamma])
Victor Stinner8f9f8d62011-05-09 12:45:41 +02004597AC_CHECK_FUNCS([hypot lgamma log1p log2 round tgamma])
Mark Dickinson7edecdd2010-11-20 10:09:56 +00004598AC_CHECK_DECLS([isinf, isnan, isfinite], [], [], [[#include <math.h>]])
4599
Mark Dickinsona614f042009-11-28 12:48:43 +00004600# For multiprocessing module, check that sem_open
4601# actually works. For FreeBSD versions <= 7.2,
4602# the kernel module that provides POSIX semaphores
4603# isn't loaded by default, so an attempt to call
4604# sem_open results in a 'Signal 12' error.
4605AC_MSG_CHECKING(whether POSIX semaphores are enabled)
4606AC_CACHE_VAL(ac_cv_posix_semaphores_enabled,
Matthias Kloseb159a552010-04-25 21:00:44 +00004607AC_RUN_IFELSE([AC_LANG_SOURCE([[
Mark Dickinsona614f042009-11-28 12:48:43 +00004608#include <unistd.h>
4609#include <fcntl.h>
4610#include <stdio.h>
4611#include <semaphore.h>
4612#include <sys/stat.h>
4613
4614int main(void) {
4615 sem_t *a = sem_open("/autoconf", O_CREAT, S_IRUSR|S_IWUSR, 0);
4616 if (a == SEM_FAILED) {
4617 perror("sem_open");
4618 return 1;
4619 }
4620 sem_close(a);
Mark Dickinsonba79b352009-12-13 21:10:57 +00004621 sem_unlink("/autoconf");
Mark Dickinsona614f042009-11-28 12:48:43 +00004622 return 0;
4623}
Matthias Kloseb159a552010-04-25 21:00:44 +00004624]])],
4625[ac_cv_posix_semaphores_enabled=yes],
4626[ac_cv_posix_semaphores_enabled=no],
4627[ac_cv_posix_semaphores_enabled=yes])
Mark Dickinsona614f042009-11-28 12:48:43 +00004628)
4629AC_MSG_RESULT($ac_cv_posix_semaphores_enabled)
4630if test $ac_cv_posix_semaphores_enabled = no
4631then
4632 AC_DEFINE(POSIX_SEMAPHORES_NOT_ENABLED, 1,
4633 [Define if POSIX semaphores aren't enabled on your system])
4634fi
4635
Mark Dickinson10683072009-04-18 21:18:19 +00004636# Multiprocessing check for broken sem_getvalue
4637AC_MSG_CHECKING(for broken sem_getvalue)
Alexandre Vassalotti7b0c1c72009-07-17 06:00:34 +00004638AC_CACHE_VAL(ac_cv_broken_sem_getvalue,
Matthias Kloseb159a552010-04-25 21:00:44 +00004639AC_RUN_IFELSE([AC_LANG_SOURCE([[
Mark Dickinson10683072009-04-18 21:18:19 +00004640#include <unistd.h>
4641#include <fcntl.h>
4642#include <stdio.h>
4643#include <semaphore.h>
4644#include <sys/stat.h>
4645
4646int main(void){
Mark Dickinsonba79b352009-12-13 21:10:57 +00004647 sem_t *a = sem_open("/autocftw", O_CREAT, S_IRUSR|S_IWUSR, 0);
Mark Dickinson10683072009-04-18 21:18:19 +00004648 int count;
4649 int res;
4650 if(a==SEM_FAILED){
4651 perror("sem_open");
4652 return 1;
4653
4654 }
4655 res = sem_getvalue(a, &count);
4656 sem_close(a);
Mark Dickinsonba79b352009-12-13 21:10:57 +00004657 sem_unlink("/autocftw");
Mark Dickinson10683072009-04-18 21:18:19 +00004658 return res==-1 ? 1 : 0;
4659}
Matthias Kloseb159a552010-04-25 21:00:44 +00004660]])],
4661[ac_cv_broken_sem_getvalue=no],
4662[ac_cv_broken_sem_getvalue=yes],
4663[ac_cv_broken_sem_getvalue=yes])
Mark Dickinson10683072009-04-18 21:18:19 +00004664)
Alexandre Vassalotti7b0c1c72009-07-17 06:00:34 +00004665AC_MSG_RESULT($ac_cv_broken_sem_getvalue)
4666if test $ac_cv_broken_sem_getvalue = yes
4667then
4668 AC_DEFINE(HAVE_BROKEN_SEM_GETVALUE, 1,
4669 [define to 1 if your sem_getvalue is broken.])
4670fi
Mark Dickinson10683072009-04-18 21:18:19 +00004671
Michael Feltc5ae1692017-12-19 13:58:49 +01004672AC_CHECK_DECLS([RTLD_LAZY, RTLD_NOW, RTLD_GLOBAL, RTLD_LOCAL, RTLD_NODELETE, RTLD_NOLOAD, RTLD_DEEPBIND, RTLD_MEMBER], [], [], [[#include <dlfcn.h>]])
Serhiy Storchakac2f7d872016-05-04 09:44:44 +03004673
Mark Dickinsonbd792642009-03-18 20:06:12 +00004674# determine what size digit to use for Python's longs
4675AC_MSG_CHECKING([digit size for Python's longs])
4676AC_ARG_ENABLE(big-digits,
Anthony Shaw2de064e2020-01-14 17:40:10 +11004677AS_HELP_STRING([--enable-big-digits@<:@=15|30@:>@],[use big digits (30 or 15 bits) for Python longs (default is system-dependent)]]),
Mark Dickinsonbd792642009-03-18 20:06:12 +00004678[case $enable_big_digits in
4679yes)
4680 enable_big_digits=30 ;;
4681no)
4682 enable_big_digits=15 ;;
4683[15|30])
4684 ;;
4685*)
4686 AC_MSG_ERROR([bad value $enable_big_digits for --enable-big-digits; value should be 15 or 30]) ;;
4687esac
4688AC_MSG_RESULT($enable_big_digits)
4689AC_DEFINE_UNQUOTED(PYLONG_BITS_IN_DIGIT, $enable_big_digits, [Define as the preferred size in bits of long digits])
4690],
4691[AC_MSG_RESULT(no value specified)])
4692
Guido van Rossumef2255b2000-03-10 22:30:29 +00004693# check for wchar.h
Martin v. Löwisc45929e2002-04-06 10:10:49 +00004694AC_CHECK_HEADER(wchar.h, [
Victor Stinner1b80b242016-04-12 22:34:58 +02004695 AC_DEFINE(HAVE_WCHAR_H, 1,
4696 [Define if the compiler provides a wchar.h header file.])
Martin v. Löwisc45929e2002-04-06 10:10:49 +00004697 wchar_h="yes"
4698],
Guido van Rossumef2255b2000-03-10 22:30:29 +00004699wchar_h="no"
4700)
4701
Martin v. Löwis0ba70cc2001-06-26 22:22:37 +00004702# determine wchar_t size
4703if test "$wchar_h" = yes
4704then
Guido van Rossum67b26592001-10-20 14:21:45 +00004705 AC_CHECK_SIZEOF(wchar_t, 4, [#include <wchar.h>])
Martin v. Löwis0ba70cc2001-06-26 22:22:37 +00004706fi
4707
Martin v. Löwisfa3bdea2003-09-04 18:50:54 +00004708AC_MSG_CHECKING(for UCS-4 tcl)
4709have_ucs4_tcl=no
Matthias Kloseb159a552010-04-25 21:00:44 +00004710AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
Martin v. Löwisfa3bdea2003-09-04 18:50:54 +00004711#include <tcl.h>
4712#if TCL_UTF_MAX != 6
4713# error "NOT UCS4_TCL"
Matthias Kloseb159a552010-04-25 21:00:44 +00004714#endif]], [[]])],[
Martin v. Löwisfa3bdea2003-09-04 18:50:54 +00004715 AC_DEFINE(HAVE_UCS4_TCL, 1, [Define this if you have tcl and TCL_UTF_MAX==6])
4716 have_ucs4_tcl=yes
Matthias Kloseb159a552010-04-25 21:00:44 +00004717],[])
Martin v. Löwisfa3bdea2003-09-04 18:50:54 +00004718AC_MSG_RESULT($have_ucs4_tcl)
4719
Marc-André Lemburgd7160f82003-09-22 11:14:40 +00004720# check whether wchar_t is signed or not
4721if test "$wchar_h" = yes
4722then
4723 # check whether wchar_t is signed or not
4724 AC_MSG_CHECKING(whether wchar_t is signed)
4725 AC_CACHE_VAL(ac_cv_wchar_t_signed, [
Matthias Kloseb159a552010-04-25 21:00:44 +00004726 AC_RUN_IFELSE([AC_LANG_SOURCE([[
Marc-André Lemburgd7160f82003-09-22 11:14:40 +00004727 #include <wchar.h>
4728 int main()
4729 {
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00004730 /* Success: exit code 0 */
Joshua Root674fa0a2020-12-14 07:56:34 +11004731 return ((((wchar_t) -1) < ((wchar_t) 0)) ? 0 : 1);
Marc-André Lemburgd7160f82003-09-22 11:14:40 +00004732 }
Matthias Kloseb159a552010-04-25 21:00:44 +00004733 ]])],
4734 [ac_cv_wchar_t_signed=yes],
4735 [ac_cv_wchar_t_signed=no],
4736 [ac_cv_wchar_t_signed=yes])])
Marc-André Lemburgd7160f82003-09-22 11:14:40 +00004737 AC_MSG_RESULT($ac_cv_wchar_t_signed)
4738fi
Martin v. Löwis0ba70cc2001-06-26 22:22:37 +00004739
Michael Osipov3738fad2018-08-24 18:17:19 +02004740AC_MSG_CHECKING(whether wchar_t is usable)
Georg Brandl52d168a2008-01-07 18:10:24 +00004741# wchar_t is only usable if it maps to an unsigned type
Martin v. Löwisd63a3b82011-09-28 07:41:54 +02004742if test "$ac_cv_sizeof_wchar_t" -ge 2 \
Matthias Klose7dbeed72004-12-24 08:22:17 +00004743 -a "$ac_cv_wchar_t_signed" = "no"
Georg Brandl52d168a2008-01-07 18:10:24 +00004744then
Georg Brandl52d168a2008-01-07 18:10:24 +00004745 AC_DEFINE(HAVE_USABLE_WCHAR_T, 1,
4746 [Define if you have a useable wchar_t type defined in wchar.h; useable
4747 means wchar_t must be an unsigned type with at least 16 bits. (see
4748 Include/unicodeobject.h).])
Michael Osipov3738fad2018-08-24 18:17:19 +02004749 AC_MSG_RESULT(yes)
Georg Brandl52d168a2008-01-07 18:10:24 +00004750else
Michael Osipov3738fad2018-08-24 18:17:19 +02004751 AC_MSG_RESULT(no)
Martin v. Löwis0ba70cc2001-06-26 22:22:37 +00004752fi
Guido van Rossumef2255b2000-03-10 22:30:29 +00004753
4754# check for endianness
4755AC_C_BIGENDIAN
4756
Barry Warsaw35f3a2c2010-09-03 18:30:30 +00004757# ABI version string for Python extension modules. This appears between the
4758# periods in shared library file names, e.g. foo.<SOABI>.so. It is calculated
4759# from the following attributes which affect the ABI of this Python build (in
4760# this order):
4761#
4762# * The Python implementation (always 'cpython-' for us)
4763# * The major and minor version numbers
4764# * --with-pydebug (adds a 'd')
Barry Warsaw35f3a2c2010-09-03 18:30:30 +00004765#
4766# Thus for example, Python 3.2 built with wide unicode, pydebug, and pymalloc,
Georg Brandlde7d8342010-09-03 22:19:07 +00004767# would get a shared library ABI version tag of 'cpython-32dmu' and shared
4768# libraries would be named 'foo.cpython-32dmu.so'.
Victor Stinner6c44fde2019-04-24 16:10:09 +02004769#
4770# In Python 3.2 and older, --with-wide-unicode added a 'u' flag.
4771# In Python 3.7 and older, --with-pymalloc added a 'm' flag.
Barry Warsaw35f3a2c2010-09-03 18:30:30 +00004772AC_SUBST(SOABI)
Barry Warsaw8cf4eae2010-10-16 01:04:07 +00004773AC_MSG_CHECKING(ABIFLAGS)
4774AC_MSG_RESULT($ABIFLAGS)
Barry Warsaw35f3a2c2010-09-03 18:30:30 +00004775AC_MSG_CHECKING(SOABI)
doko@ubuntu.comd3899c12015-04-15 20:23:14 +02004776SOABI='cpython-'`echo $VERSION | tr -d .`${ABIFLAGS}${PLATFORM_TRIPLET:+-$PLATFORM_TRIPLET}
Barry Warsaw35f3a2c2010-09-03 18:30:30 +00004777AC_MSG_RESULT($SOABI)
4778
Victor Stinner6d13e5b2019-04-26 18:56:19 +02004779# Release and debug (Py_DEBUG) ABI are compatible, but not Py_TRACE_REFS ABI
4780if test "$Py_DEBUG" = 'true' -a "$with_trace_refs" != "yes"; then
Victor Stinner5422e3c2019-04-26 01:40:00 +02004781 # Similar to SOABI but remove "d" flag from ABIFLAGS
4782 AC_SUBST(ALT_SOABI)
4783 ALT_SOABI='cpython-'`echo $VERSION | tr -d .``echo $ABIFLAGS | tr -d d`${PLATFORM_TRIPLET:+-$PLATFORM_TRIPLET}
4784 AC_DEFINE_UNQUOTED(ALT_SOABI, "${ALT_SOABI}",
4785 [Alternative SOABI used in debug build to load C extensions built in release mode])
4786fi
4787
doko@ubuntu.comd5537d02013-03-21 13:21:49 -07004788AC_SUBST(EXT_SUFFIX)
Matti Picusa44ce6c2020-12-20 04:56:57 +02004789EXT_SUFFIX=.${SOABI}${SHLIB_SUFFIX}
doko@ubuntu.comd5537d02013-03-21 13:21:49 -07004790
Barry Warsaw8cf4eae2010-10-16 01:04:07 +00004791AC_MSG_CHECKING(LDVERSION)
4792LDVERSION='$(VERSION)$(ABIFLAGS)'
4793AC_MSG_RESULT($LDVERSION)
4794
E. M. Brayc994c8f2019-05-24 17:33:47 +02004795# On Android and Cygwin the shared libraries must be linked with libpython.
xdegaye254b3092019-04-29 09:27:40 +02004796AC_SUBST(LIBPYTHON)
E. M. Brayb1fc4172019-05-24 18:39:39 +02004797if test -n "$ANDROID_API_LEVEL" -o "$MACHDEP" = "cygwin"; then
xdegaye254b3092019-04-29 09:27:40 +02004798 LIBPYTHON="-lpython${VERSION}${ABIFLAGS}"
E. M. Brayb1fc4172019-05-24 18:39:39 +02004799else
4800 LIBPYTHON=''
xdegaye254b3092019-04-29 09:27:40 +02004801fi
4802
Victor Stinner8510f432020-03-10 09:53:09 +01004803
Victor Stinner51ae31e2020-06-09 15:32:43 +02004804AC_SUBST(BINLIBDEST)
4805BINLIBDEST='$(LIBDIR)/python$(VERSION)'
4806
4807
4808# Check for --with-platlibdir
Victor Stinner8510f432020-03-10 09:53:09 +01004809# /usr/$LIDIRNAME/python$VERSION
4810AC_SUBST(PLATLIBDIR)
4811PLATLIBDIR="lib"
4812AC_MSG_CHECKING(for --with-platlibdir)
4813AC_ARG_WITH(platlibdir,
4814 AS_HELP_STRING([--with-platlibdir=DIRNAME],
4815 [Python library directory name (default is "lib")]),
4816[
4817# ignore 3 options:
4818# --with-platlibdir
4819# --with-platlibdir=
4820# --without-platlibdir
4821if test -n "$withval" -a "$withval" != yes -a "$withval" != no
4822then
4823 AC_MSG_RESULT(yes)
4824 PLATLIBDIR="$withval"
Victor Stinner51ae31e2020-06-09 15:32:43 +02004825 BINLIBDEST='${exec_prefix}/${PLATLIBDIR}/python$(VERSION)'
Victor Stinner8510f432020-03-10 09:53:09 +01004826else
4827 AC_MSG_RESULT(no)
4828fi],
4829[AC_MSG_RESULT(no)])
4830
4831
doko@python.org87421192013-01-26 11:39:31 +01004832dnl define LIBPL after ABIFLAGS and LDVERSION is defined.
4833AC_SUBST(PY_ENABLE_SHARED)
doko@ubuntu.com55532312016-06-14 08:55:19 +02004834if test x$PLATFORM_TRIPLET = x; then
Victor Stinner8510f432020-03-10 09:53:09 +01004835 LIBPL='$(prefix)'"/${PLATLIBDIR}/python${VERSION}/config-${LDVERSION}"
doko@ubuntu.com55532312016-06-14 08:55:19 +02004836else
Victor Stinner8510f432020-03-10 09:53:09 +01004837 LIBPL='$(prefix)'"/${PLATLIBDIR}/python${VERSION}/config-${LDVERSION}-${PLATFORM_TRIPLET}"
doko@ubuntu.com55532312016-06-14 08:55:19 +02004838fi
doko@python.org87421192013-01-26 11:39:31 +01004839AC_SUBST(LIBPL)
4840
Victor Stinner75e59a92021-01-20 17:07:21 +01004841# Check for --with-wheel-pkg-dir=PATH
4842AC_SUBST(WHEEL_PKG_DIR)
4843WHEEL_PKG_DIR=""
4844AC_MSG_CHECKING(for --with-wheel-pkg-dir)
4845AC_ARG_WITH(wheel-pkg-dir,
4846 AS_HELP_STRING([--with-wheel-pkg-dir=PATH],
4847 [Directory of wheel packages used by ensurepip (default: none)]),
4848[
4849if test -n "$withval"; then
4850 AC_MSG_RESULT(yes)
4851 WHEEL_PKG_DIR="$withval"
4852else
4853 AC_MSG_RESULT(no)
4854fi],
4855[AC_MSG_RESULT(no)])
4856
Vladimir Marangozov9a5a5d12000-07-12 03:02:16 +00004857# Check whether right shifting a negative integer extends the sign bit
4858# or fills with zeros (like the Cray J90, according to Tim Peters).
4859AC_MSG_CHECKING(whether right shift extends the sign bit)
Vladimir Marangozova6180282000-07-12 05:05:06 +00004860AC_CACHE_VAL(ac_cv_rshift_extends_sign, [
Matthias Kloseb159a552010-04-25 21:00:44 +00004861AC_RUN_IFELSE([AC_LANG_SOURCE([[
Vladimir Marangozov9a5a5d12000-07-12 03:02:16 +00004862int main()
4863{
Joshua Root674fa0a2020-12-14 07:56:34 +11004864 return (((-1)>>3 == -1) ? 0 : 1);
Vladimir Marangozov9a5a5d12000-07-12 03:02:16 +00004865}
Matthias Kloseb159a552010-04-25 21:00:44 +00004866]])],
4867[ac_cv_rshift_extends_sign=yes],
4868[ac_cv_rshift_extends_sign=no],
4869[ac_cv_rshift_extends_sign=yes])])
Vladimir Marangozova6180282000-07-12 05:05:06 +00004870AC_MSG_RESULT($ac_cv_rshift_extends_sign)
4871if test "$ac_cv_rshift_extends_sign" = no
4872then
Martin v. Löwisc45929e2002-04-06 10:10:49 +00004873 AC_DEFINE(SIGNED_RIGHT_SHIFT_ZERO_FILLS, 1,
4874 [Define if i>>j for signed int i does not extend the sign bit
4875 when i < 0])
Vladimir Marangozova6180282000-07-12 05:05:06 +00004876fi
4877
Guido van Rossumcadfaec2001-01-05 14:45:49 +00004878# check for getc_unlocked and related locking functions
4879AC_MSG_CHECKING(for getc_unlocked() and friends)
4880AC_CACHE_VAL(ac_cv_have_getc_unlocked, [
Matthias Kloseb159a552010-04-25 21:00:44 +00004881AC_LINK_IFELSE([AC_LANG_PROGRAM([[#include <stdio.h>]], [[
Guido van Rossumcadfaec2001-01-05 14:45:49 +00004882 FILE *f = fopen("/dev/null", "r");
4883 flockfile(f);
4884 getc_unlocked(f);
4885 funlockfile(f);
Matthias Kloseb159a552010-04-25 21:00:44 +00004886]])],[ac_cv_have_getc_unlocked=yes],[ac_cv_have_getc_unlocked=no])])
Guido van Rossumcadfaec2001-01-05 14:45:49 +00004887AC_MSG_RESULT($ac_cv_have_getc_unlocked)
4888if test "$ac_cv_have_getc_unlocked" = yes
4889then
Martin v. Löwisc45929e2002-04-06 10:10:49 +00004890 AC_DEFINE(HAVE_GETC_UNLOCKED, 1,
4891 [Define this if you have flockfile(), getc_unlocked(), and funlockfile()])
Guido van Rossumcadfaec2001-01-05 14:45:49 +00004892fi
Vladimir Marangozov9a5a5d12000-07-12 03:02:16 +00004893
Neal Norwitzfe8e3d92006-01-07 21:07:20 +00004894# check where readline lives
Martin v. Löwis82bca632006-02-10 20:49:30 +00004895# save the value of LIBS so we don't actually link Python with readline
4896LIBS_no_readline=$LIBS
Gregory P. Smith18820942008-09-07 06:24:49 +00004897
4898# On some systems we need to link readline to a termcap compatible
4899# library. NOTE: Keep the precedence of listed libraries synchronised
4900# with setup.py.
4901py_cv_lib_readline=no
4902AC_MSG_CHECKING([how to link readline libs])
doko@ubuntu.comf2967c72012-06-30 17:32:23 +02004903for py_libtermcap in "" tinfo ncursesw ncurses curses termcap; do
Gregory P. Smith18820942008-09-07 06:24:49 +00004904 if test -z "$py_libtermcap"; then
4905 READLINE_LIBS="-lreadline"
4906 else
4907 READLINE_LIBS="-lreadline -l$py_libtermcap"
4908 fi
4909 LIBS="$READLINE_LIBS $LIBS_no_readline"
4910 AC_LINK_IFELSE(
4911 [AC_LANG_CALL([],[readline])],
4912 [py_cv_lib_readline=yes])
4913 if test $py_cv_lib_readline = yes; then
4914 break
4915 fi
4916done
4917# Uncomment this line if you want to use READINE_LIBS in Makefile or scripts
4918#AC_SUBST([READLINE_LIBS])
Gregory P. Smith97515912008-09-07 19:23:19 +00004919if test $py_cv_lib_readline = no; then
Gregory P. Smith18820942008-09-07 06:24:49 +00004920 AC_MSG_RESULT([none])
4921else
4922 AC_MSG_RESULT([$READLINE_LIBS])
4923 AC_DEFINE(HAVE_LIBREADLINE, 1,
4924 [Define if you have the readline library (-lreadline).])
Neal Norwitzfe8e3d92006-01-07 21:07:20 +00004925fi
4926
Guido van Rossumfaf5e4d2002-12-30 16:25:41 +00004927# check for readline 2.2
Matthias Kloseb159a552010-04-25 21:00:44 +00004928AC_PREPROC_IFELSE([AC_LANG_SOURCE([[#include <readline/readline.h>]])],
4929 [have_readline=yes],
4930 [have_readline=no]
4931)
Guido van Rossumfaf5e4d2002-12-30 16:25:41 +00004932if test $have_readline = yes
4933then
4934 AC_EGREP_HEADER([extern int rl_completion_append_character;],
4935 [readline/readline.h],
4936 AC_DEFINE(HAVE_RL_COMPLETION_APPEND_CHARACTER, 1,
4937 [Define if you have readline 2.2]), )
Antoine Pitroud5131772009-10-26 19:22:14 +00004938 AC_EGREP_HEADER([extern int rl_completion_suppress_append;],
4939 [readline/readline.h],
4940 AC_DEFINE(HAVE_RL_COMPLETION_SUPPRESS_APPEND, 1,
4941 [Define if you have rl_completion_suppress_append]), )
Guido van Rossumfaf5e4d2002-12-30 16:25:41 +00004942fi
4943
Martin v. Löwis0daad592001-09-30 21:09:59 +00004944# check for readline 4.0
4945AC_CHECK_LIB(readline, rl_pre_input_hook,
Martin v. Löwisc45929e2002-04-06 10:10:49 +00004946 AC_DEFINE(HAVE_RL_PRE_INPUT_HOOK, 1,
Gregory P. Smith18820942008-09-07 06:24:49 +00004947 [Define if you have readline 4.0]), ,$READLINE_LIBS)
Martin v. Löwis0daad592001-09-30 21:09:59 +00004948
Thomas Wouters89d996e2007-09-08 17:39:28 +00004949# also in 4.0
4950AC_CHECK_LIB(readline, rl_completion_display_matches_hook,
4951 AC_DEFINE(HAVE_RL_COMPLETION_DISPLAY_MATCHES_HOOK, 1,
Gregory P. Smith18820942008-09-07 06:24:49 +00004952 [Define if you have readline 4.0]), ,$READLINE_LIBS)
Thomas Wouters89d996e2007-09-08 17:39:28 +00004953
Martin Panter5dbbf1a2016-04-03 02:54:58 +00004954# also in 4.0, but not in editline
4955AC_CHECK_LIB(readline, rl_resize_terminal,
4956 AC_DEFINE(HAVE_RL_RESIZE_TERMINAL, 1,
4957 [Define if you have readline 4.0]), ,$READLINE_LIBS)
4958
Guido van Rossum353ae582001-07-10 16:45:32 +00004959# check for readline 4.2
4960AC_CHECK_LIB(readline, rl_completion_matches,
Martin v. Löwisc45929e2002-04-06 10:10:49 +00004961 AC_DEFINE(HAVE_RL_COMPLETION_MATCHES, 1,
Gregory P. Smith18820942008-09-07 06:24:49 +00004962 [Define if you have readline 4.2]), ,$READLINE_LIBS)
Guido van Rossum353ae582001-07-10 16:45:32 +00004963
Michael W. Hudson30ea2f22004-07-07 17:44:12 +00004964# also in readline 4.2
Matthias Kloseb159a552010-04-25 21:00:44 +00004965AC_PREPROC_IFELSE([AC_LANG_SOURCE([[#include <readline/readline.h>]])],
4966 [have_readline=yes],
4967 [have_readline=no]
4968)
Michael W. Hudson30ea2f22004-07-07 17:44:12 +00004969if test $have_readline = yes
4970then
4971 AC_EGREP_HEADER([extern int rl_catch_signals;],
4972 [readline/readline.h],
4973 AC_DEFINE(HAVE_RL_CATCH_SIGNAL, 1,
4974 [Define if you can turn off readline's signal handling.]), )
4975fi
4976
Benjamin Petersond1e22ba2014-11-26 14:35:12 -06004977AC_CHECK_LIB(readline, append_history,
4978 AC_DEFINE(HAVE_RL_APPEND_HISTORY, 1,
4979 [Define if readline supports append_history]), ,$READLINE_LIBS)
4980
Martin v. Löwis82bca632006-02-10 20:49:30 +00004981# End of readline checks: restore LIBS
4982LIBS=$LIBS_no_readline
4983
Thomas Wouterse38b2f12001-07-11 22:35:31 +00004984AC_MSG_CHECKING(for broken nice())
4985AC_CACHE_VAL(ac_cv_broken_nice, [
Matthias Kloseb159a552010-04-25 21:00:44 +00004986AC_RUN_IFELSE([AC_LANG_SOURCE([[
ngie-eign90c6fac2019-02-25 21:34:24 -08004987#include <stdlib.h>
4988#include <unistd.h>
Thomas Wouterse38b2f12001-07-11 22:35:31 +00004989int main()
4990{
4991 int val1 = nice(1);
4992 if (val1 != -1 && val1 == nice(2))
4993 exit(0);
4994 exit(1);
4995}
Matthias Kloseb159a552010-04-25 21:00:44 +00004996]])],
4997[ac_cv_broken_nice=yes],
4998[ac_cv_broken_nice=no],
4999[ac_cv_broken_nice=no])])
Thomas Wouterse38b2f12001-07-11 22:35:31 +00005000AC_MSG_RESULT($ac_cv_broken_nice)
5001if test "$ac_cv_broken_nice" = yes
5002then
Martin v. Löwisc45929e2002-04-06 10:10:49 +00005003 AC_DEFINE(HAVE_BROKEN_NICE, 1,
5004 [Define if nice() returns success/failure instead of the new priority.])
Thomas Wouterse38b2f12001-07-11 22:35:31 +00005005fi
5006
Nicholas Bastine62c5c82004-03-21 23:45:42 +00005007AC_MSG_CHECKING(for broken poll())
Alexandre Vassalotti7b0c1c72009-07-17 06:00:34 +00005008AC_CACHE_VAL(ac_cv_broken_poll,
Matthias Kloseb159a552010-04-25 21:00:44 +00005009AC_RUN_IFELSE([AC_LANG_SOURCE([[
Nicholas Bastine62c5c82004-03-21 23:45:42 +00005010#include <poll.h>
Joshua Root674fa0a2020-12-14 07:56:34 +11005011#include <unistd.h>
Nicholas Bastine62c5c82004-03-21 23:45:42 +00005012
Alexandre Vassalottiaee170a2009-07-17 06:24:33 +00005013int main()
5014{
Nicholas Bastine62c5c82004-03-21 23:45:42 +00005015 struct pollfd poll_struct = { 42, POLLIN|POLLPRI|POLLOUT, 0 };
Alexandre Vassalottiaee170a2009-07-17 06:24:33 +00005016 int poll_test;
5017
Nicholas Bastine62c5c82004-03-21 23:45:42 +00005018 close (42);
5019
Alexandre Vassalottiaee170a2009-07-17 06:24:33 +00005020 poll_test = poll(&poll_struct, 1, 0);
Nicholas Bastine62c5c82004-03-21 23:45:42 +00005021 if (poll_test < 0)
Alexandre Vassalottiaee170a2009-07-17 06:24:33 +00005022 return 0;
Nicholas Bastine62c5c82004-03-21 23:45:42 +00005023 else if (poll_test == 0 && poll_struct.revents != POLLNVAL)
Alexandre Vassalottiaee170a2009-07-17 06:24:33 +00005024 return 0;
Nicholas Bastine62c5c82004-03-21 23:45:42 +00005025 else
Alexandre Vassalottiaee170a2009-07-17 06:24:33 +00005026 return 1;
5027}
Matthias Kloseb159a552010-04-25 21:00:44 +00005028]])],
5029[ac_cv_broken_poll=yes],
5030[ac_cv_broken_poll=no],
5031[ac_cv_broken_poll=no]))
Nicholas Bastine62c5c82004-03-21 23:45:42 +00005032AC_MSG_RESULT($ac_cv_broken_poll)
5033if test "$ac_cv_broken_poll" = yes
5034then
5035 AC_DEFINE(HAVE_BROKEN_POLL, 1,
5036 [Define if poll() sets errno on invalid file descriptors.])
5037fi
5038
Brett Cannon43802422005-02-10 20:48:03 +00005039# check tzset(3) exists and works like we expect it to
Guido van Rossumd11b62e2003-03-14 21:51:36 +00005040AC_MSG_CHECKING(for working tzset())
5041AC_CACHE_VAL(ac_cv_working_tzset, [
Matthias Kloseb159a552010-04-25 21:00:44 +00005042AC_RUN_IFELSE([AC_LANG_SOURCE([[
Guido van Rossumd11b62e2003-03-14 21:51:36 +00005043#include <stdlib.h>
5044#include <time.h>
Brett Cannon18367812003-09-19 00:59:16 +00005045#include <string.h>
Brett Cannon43802422005-02-10 20:48:03 +00005046
5047#if HAVE_TZNAME
5048extern char *tzname[];
5049#endif
5050
Guido van Rossumd11b62e2003-03-14 21:51:36 +00005051int main()
5052{
Brett Cannon18367812003-09-19 00:59:16 +00005053 /* Note that we need to ensure that not only does tzset(3)
5054 do 'something' with localtime, but it works as documented
5055 in the library reference and as expected by the test suite.
Brett Cannon43802422005-02-10 20:48:03 +00005056 This includes making sure that tzname is set properly if
5057 tm->tm_zone does not exist since it is the alternative way
5058 of getting timezone info.
Brett Cannon18367812003-09-19 00:59:16 +00005059
Victor Stinner1b80b242016-04-12 22:34:58 +02005060 Red Hat 6.2 doesn't understand the southern hemisphere
Brett Cannon43802422005-02-10 20:48:03 +00005061 after New Year's Day.
Brett Cannon18367812003-09-19 00:59:16 +00005062 */
5063
Brett Cannon43802422005-02-10 20:48:03 +00005064 time_t groundhogday = 1044144000; /* GMT-based */
Brett Cannon18367812003-09-19 00:59:16 +00005065 time_t midyear = groundhogday + (365 * 24 * 3600 / 2);
5066
Neal Norwitz7f2588c2003-04-11 15:35:53 +00005067 putenv("TZ=UTC+0");
Guido van Rossumd11b62e2003-03-14 21:51:36 +00005068 tzset();
Brett Cannon18367812003-09-19 00:59:16 +00005069 if (localtime(&groundhogday)->tm_hour != 0)
5070 exit(1);
Brett Cannon43802422005-02-10 20:48:03 +00005071#if HAVE_TZNAME
5072 /* For UTC, tzname[1] is sometimes "", sometimes " " */
Victor Stinner1b80b242016-04-12 22:34:58 +02005073 if (strcmp(tzname[0], "UTC") ||
Brett Cannon43802422005-02-10 20:48:03 +00005074 (tzname[1][0] != 0 && tzname[1][0] != ' '))
5075 exit(1);
5076#endif
Brett Cannon18367812003-09-19 00:59:16 +00005077
Neal Norwitz7f2588c2003-04-11 15:35:53 +00005078 putenv("TZ=EST+5EDT,M4.1.0,M10.5.0");
Guido van Rossumd11b62e2003-03-14 21:51:36 +00005079 tzset();
Brett Cannon18367812003-09-19 00:59:16 +00005080 if (localtime(&groundhogday)->tm_hour != 19)
Guido van Rossumd11b62e2003-03-14 21:51:36 +00005081 exit(1);
Brett Cannon43802422005-02-10 20:48:03 +00005082#if HAVE_TZNAME
5083 if (strcmp(tzname[0], "EST") || strcmp(tzname[1], "EDT"))
5084 exit(1);
5085#endif
Brett Cannon18367812003-09-19 00:59:16 +00005086
5087 putenv("TZ=AEST-10AEDT-11,M10.5.0,M3.5.0");
5088 tzset();
5089 if (localtime(&groundhogday)->tm_hour != 11)
5090 exit(1);
Brett Cannon43802422005-02-10 20:48:03 +00005091#if HAVE_TZNAME
5092 if (strcmp(tzname[0], "AEST") || strcmp(tzname[1], "AEDT"))
5093 exit(1);
5094#endif
5095
5096#if HAVE_STRUCT_TM_TM_ZONE
Brett Cannon18367812003-09-19 00:59:16 +00005097 if (strcmp(localtime(&groundhogday)->tm_zone, "AEDT"))
5098 exit(1);
5099 if (strcmp(localtime(&midyear)->tm_zone, "AEST"))
5100 exit(1);
Brett Cannon43802422005-02-10 20:48:03 +00005101#endif
Brett Cannon18367812003-09-19 00:59:16 +00005102
Guido van Rossumd11b62e2003-03-14 21:51:36 +00005103 exit(0);
5104}
Matthias Kloseb159a552010-04-25 21:00:44 +00005105]])],
5106[ac_cv_working_tzset=yes],
5107[ac_cv_working_tzset=no],
5108[ac_cv_working_tzset=no])])
Guido van Rossumd11b62e2003-03-14 21:51:36 +00005109AC_MSG_RESULT($ac_cv_working_tzset)
5110if test "$ac_cv_working_tzset" = yes
5111then
5112 AC_DEFINE(HAVE_WORKING_TZSET, 1,
5113 [Define if tzset() actually switches the local timezone in a meaningful way.])
5114fi
5115
Martin v. Löwis94717ed2002-09-09 14:24:16 +00005116# Look for subsecond timestamps in struct stat
5117AC_MSG_CHECKING(for tv_nsec in struct stat)
5118AC_CACHE_VAL(ac_cv_stat_tv_nsec,
Matthias Kloseb159a552010-04-25 21:00:44 +00005119AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#include <sys/stat.h>]], [[
Martin v. Löwis94717ed2002-09-09 14:24:16 +00005120struct stat st;
5121st.st_mtim.tv_nsec = 1;
Matthias Kloseb159a552010-04-25 21:00:44 +00005122]])],
5123[ac_cv_stat_tv_nsec=yes],
5124[ac_cv_stat_tv_nsec=no]))
Martin v. Löwis94717ed2002-09-09 14:24:16 +00005125AC_MSG_RESULT($ac_cv_stat_tv_nsec)
5126if test "$ac_cv_stat_tv_nsec" = yes
5127then
5128 AC_DEFINE(HAVE_STAT_TV_NSEC, 1,
5129 [Define if you have struct stat.st_mtim.tv_nsec])
5130fi
5131
Martin v. Löwisebd9d5b2005-08-09 15:00:59 +00005132# Look for BSD style subsecond timestamps in struct stat
5133AC_MSG_CHECKING(for tv_nsec2 in struct stat)
5134AC_CACHE_VAL(ac_cv_stat_tv_nsec2,
Matthias Kloseb159a552010-04-25 21:00:44 +00005135AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#include <sys/stat.h>]], [[
Martin v. Löwisebd9d5b2005-08-09 15:00:59 +00005136struct stat st;
5137st.st_mtimespec.tv_nsec = 1;
Matthias Kloseb159a552010-04-25 21:00:44 +00005138]])],
5139[ac_cv_stat_tv_nsec2=yes],
5140[ac_cv_stat_tv_nsec2=no]))
Martin v. Löwisebd9d5b2005-08-09 15:00:59 +00005141AC_MSG_RESULT($ac_cv_stat_tv_nsec2)
5142if test "$ac_cv_stat_tv_nsec2" = yes
5143then
5144 AC_DEFINE(HAVE_STAT_TV_NSEC2, 1,
5145 [Define if you have struct stat.st_mtimensec])
5146fi
5147
doko@ubuntu.com1a4f5612014-04-17 20:13:44 +02005148# first curses header check
doko@ubuntu.com9dc823d2012-07-07 03:06:42 +02005149ac_save_cppflags="$CPPFLAGS"
Xavier de Gayee13c3202016-12-13 16:04:14 +01005150if test "$cross_compiling" = no; then
5151 CPPFLAGS="$CPPFLAGS -I/usr/include/ncursesw"
5152fi
doko@ubuntu.com1a4f5612014-04-17 20:13:44 +02005153
5154AC_CHECK_HEADERS(curses.h ncurses.h)
5155
5156# On Solaris, term.h requires curses.h
5157AC_CHECK_HEADERS(term.h,,,[
5158#ifdef HAVE_CURSES_H
5159#include <curses.h>
5160#endif
5161])
5162
Martin v. Löwiseb9b1032001-10-24 17:10:49 +00005163# On HP/UX 11.0, mvwdelch is a block with a return statement
5164AC_MSG_CHECKING(whether mvwdelch is an expression)
5165AC_CACHE_VAL(ac_cv_mvwdelch_is_expression,
Matthias Kloseb159a552010-04-25 21:00:44 +00005166AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#include <curses.h>]], [[
Martin v. Löwiseb9b1032001-10-24 17:10:49 +00005167 int rtn;
5168 rtn = mvwdelch(0,0,0);
Matthias Kloseb159a552010-04-25 21:00:44 +00005169]])],
5170[ac_cv_mvwdelch_is_expression=yes],
5171[ac_cv_mvwdelch_is_expression=no]))
Martin v. Löwiseb9b1032001-10-24 17:10:49 +00005172AC_MSG_RESULT($ac_cv_mvwdelch_is_expression)
5173
5174if test "$ac_cv_mvwdelch_is_expression" = yes
5175then
Martin v. Löwisc45929e2002-04-06 10:10:49 +00005176 AC_DEFINE(MVWDELCH_IS_EXPRESSION, 1,
5177 [Define if mvwdelch in curses.h is an expression.])
Martin v. Löwiseb9b1032001-10-24 17:10:49 +00005178fi
5179
Masayuki Yamamoto8bc7d632017-11-01 21:05:26 +09005180# Issue #25720: ncurses has introduced the NCURSES_OPAQUE symbol making opaque
5181# structs since version 5.7. If the macro is defined as zero before including
5182# [n]curses.h, ncurses will expose fields of the structs regardless of the
5183# configuration.
Martin v. Löwiseb9b1032001-10-24 17:10:49 +00005184AC_MSG_CHECKING(whether WINDOW has _flags)
5185AC_CACHE_VAL(ac_cv_window_has_flags,
Masayuki Yamamoto8bc7d632017-11-01 21:05:26 +09005186AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
5187 #define NCURSES_OPAQUE 0
5188 #include <curses.h>
5189]], [[
Martin v. Löwiseb9b1032001-10-24 17:10:49 +00005190 WINDOW *w;
5191 w->_flags = 0;
Matthias Kloseb159a552010-04-25 21:00:44 +00005192]])],
5193[ac_cv_window_has_flags=yes],
5194[ac_cv_window_has_flags=no]))
Martin v. Löwiseb9b1032001-10-24 17:10:49 +00005195AC_MSG_RESULT($ac_cv_window_has_flags)
5196
5197
5198if test "$ac_cv_window_has_flags" = yes
5199then
Victor Stinner1b80b242016-04-12 22:34:58 +02005200 AC_DEFINE(WINDOW_HAS_FLAGS, 1,
Martin v. Löwisc45929e2002-04-06 10:10:49 +00005201 [Define if WINDOW in curses.h offers a field _flags.])
Martin v. Löwiseb9b1032001-10-24 17:10:49 +00005202fi
5203
Masayuki Yamamoto8bc7d632017-11-01 21:05:26 +09005204AC_MSG_CHECKING(for is_pad)
5205AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#include <curses.h>]], [[
5206#ifndef is_pad
5207void *x=is_pad
5208#endif
5209]])],
5210 [AC_DEFINE(HAVE_CURSES_IS_PAD, 1, Define if you have the 'is_pad' function or macro.)
5211 AC_MSG_RESULT(yes)],
5212 [AC_MSG_RESULT(no)]
5213)
5214
Thomas Wouters0e3f5912006-08-11 14:57:12 +00005215AC_MSG_CHECKING(for is_term_resized)
Matthias Kloseb159a552010-04-25 21:00:44 +00005216AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#include <curses.h>]], [[void *x=is_term_resized]])],
5217 [AC_DEFINE(HAVE_CURSES_IS_TERM_RESIZED, 1, Define if you have the 'is_term_resized' function.)
5218 AC_MSG_RESULT(yes)],
5219 [AC_MSG_RESULT(no)]
Thomas Wouters0e3f5912006-08-11 14:57:12 +00005220)
Martin v. Löwis24a880b2002-12-31 12:55:15 +00005221
Thomas Wouters0e3f5912006-08-11 14:57:12 +00005222AC_MSG_CHECKING(for resize_term)
Matthias Kloseb159a552010-04-25 21:00:44 +00005223AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#include <curses.h>]], [[void *x=resize_term]])],
5224 [AC_DEFINE(HAVE_CURSES_RESIZE_TERM, 1, Define if you have the 'resize_term' function.)
5225 AC_MSG_RESULT(yes)],
5226 [AC_MSG_RESULT(no)]
Thomas Wouters0e3f5912006-08-11 14:57:12 +00005227)
5228
5229AC_MSG_CHECKING(for resizeterm)
Matthias Kloseb159a552010-04-25 21:00:44 +00005230AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#include <curses.h>]], [[void *x=resizeterm]])],
5231 [AC_DEFINE(HAVE_CURSES_RESIZETERM, 1, Define if you have the 'resizeterm' function.)
5232 AC_MSG_RESULT(yes)],
5233 [AC_MSG_RESULT(no)]
Thomas Wouters0e3f5912006-08-11 14:57:12 +00005234)
Serhiy Storchakabaac01e2017-10-31 13:56:44 +02005235
5236AC_MSG_CHECKING(for immedok)
5237AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#include <curses.h>]], [[
5238#ifndef immedok
5239void *x=immedok
5240#endif
5241]])],
5242 [AC_DEFINE(HAVE_CURSES_IMMEDOK, 1, Define if you have the 'immedok' function.)
5243 AC_MSG_RESULT(yes)],
5244 [AC_MSG_RESULT(no)]
5245)
5246
5247AC_MSG_CHECKING(for syncok)
5248AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#include <curses.h>]], [[
5249#ifndef syncok
5250void *x=syncok
5251#endif
5252]])],
5253 [AC_DEFINE(HAVE_CURSES_SYNCOK, 1, Define if you have the 'syncok' function.)
5254 AC_MSG_RESULT(yes)],
5255 [AC_MSG_RESULT(no)]
5256)
5257
Serhiy Storchaka894ebd02017-11-01 14:34:20 +02005258AC_MSG_CHECKING(for wchgat)
5259AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#include <curses.h>]], [[
5260#ifndef wchgat
5261void *x=wchgat
5262#endif
5263]])],
5264 [AC_DEFINE(HAVE_CURSES_WCHGAT, 1, Define if you have the 'wchgat' function.)
5265 AC_MSG_RESULT(yes)],
5266 [AC_MSG_RESULT(no)]
5267)
5268
Serhiy Storchakabaac01e2017-10-31 13:56:44 +02005269AC_MSG_CHECKING(for filter)
5270AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#include <curses.h>]], [[
5271#ifndef filter
5272void *x=filter
5273#endif
5274]])],
5275 [AC_DEFINE(HAVE_CURSES_FILTER, 1, Define if you have the 'filter' function.)
5276 AC_MSG_RESULT(yes)],
5277 [AC_MSG_RESULT(no)]
5278)
5279
5280AC_MSG_CHECKING(for has_key)
5281AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#include <curses.h>]], [[
5282#ifndef has_key
5283void *x=has_key
5284#endif
5285]])],
5286 [AC_DEFINE(HAVE_CURSES_HAS_KEY, 1, Define if you have the 'has_key' function.)
5287 AC_MSG_RESULT(yes)],
5288 [AC_MSG_RESULT(no)]
5289)
5290
5291AC_MSG_CHECKING(for typeahead)
5292AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#include <curses.h>]], [[
5293#ifndef typeahead
5294void *x=typeahead
5295#endif
5296]])],
5297 [AC_DEFINE(HAVE_CURSES_TYPEAHEAD, 1, Define if you have the 'typeahead' function.)
5298 AC_MSG_RESULT(yes)],
5299 [AC_MSG_RESULT(no)]
5300)
5301
5302AC_MSG_CHECKING(for use_env)
5303AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#include <curses.h>]], [[
5304#ifndef use_env
5305void *x=use_env
5306#endif
5307]])],
5308 [AC_DEFINE(HAVE_CURSES_USE_ENV, 1, Define if you have the 'use_env' function.)
5309 AC_MSG_RESULT(yes)],
5310 [AC_MSG_RESULT(no)]
5311)
doko@ubuntu.com9dc823d2012-07-07 03:06:42 +02005312# last curses configure check
5313CPPFLAGS=$ac_save_cppflags
Thomas Wouters0e3f5912006-08-11 14:57:12 +00005314
doko@ubuntu.comb457b9b2012-06-30 19:28:16 +02005315AC_MSG_NOTICE([checking for device files])
Thomas Wouters89f507f2006-12-13 04:49:30 +00005316
doko@ubuntu.comb457b9b2012-06-30 19:28:16 +02005317dnl NOTE: Inform user how to proceed with files when cross compiling.
5318if test "x$cross_compiling" = xyes; then
5319 if test "${ac_cv_file__dev_ptmx+set}" != set; then
5320 AC_MSG_CHECKING([for /dev/ptmx])
5321 AC_MSG_RESULT([not set])
5322 AC_MSG_ERROR([set ac_cv_file__dev_ptmx to yes/no in your CONFIG_SITE file when cross compiling])
5323 fi
5324 if test "${ac_cv_file__dev_ptc+set}" != set; then
5325 AC_MSG_CHECKING([for /dev/ptc])
5326 AC_MSG_RESULT([not set])
5327 AC_MSG_ERROR([set ac_cv_file__dev_ptc to yes/no in your CONFIG_SITE file when cross compiling])
5328 fi
Thomas Wouters89f507f2006-12-13 04:49:30 +00005329fi
5330
doko@ubuntu.comb457b9b2012-06-30 19:28:16 +02005331AC_CHECK_FILE(/dev/ptmx, [], [])
5332if test "x$ac_cv_file__dev_ptmx" = xyes; then
5333 AC_DEFINE(HAVE_DEV_PTMX, 1,
5334 [Define to 1 if you have the /dev/ptmx device file.])
5335fi
5336AC_CHECK_FILE(/dev/ptc, [], [])
5337if test "x$ac_cv_file__dev_ptc" = xyes; then
Thomas Wouters89f507f2006-12-13 04:49:30 +00005338 AC_DEFINE(HAVE_DEV_PTC, 1,
doko@ubuntu.comb457b9b2012-06-30 19:28:16 +02005339 [Define to 1 if you have the /dev/ptc device file.])
Thomas Wouters89f507f2006-12-13 04:49:30 +00005340fi
Neal Norwitz865400f2003-03-21 01:42:58 +00005341
Ronald Oussoren3c1928a2009-11-19 17:15:31 +00005342if test $ac_sys_system = Darwin
5343then
5344 LIBS="$LIBS -framework CoreFoundation"
5345fi
Mark Dickinson6ce4a9a2009-11-16 17:00:11 +00005346
Benjamin Peterson8f326b22009-12-13 02:10:36 +00005347AC_CACHE_CHECK([for %zd printf() format support], ac_cv_have_size_t_format, [dnl
Matthias Kloseb159a552010-04-25 21:00:44 +00005348AC_RUN_IFELSE([AC_LANG_SOURCE([[
Alexandre Vassalottie5091f62009-07-17 06:41:02 +00005349#include <stdio.h>
Thomas Wouters477c8d52006-05-27 19:21:47 +00005350#include <stddef.h>
5351#include <string.h>
5352
Christian Heimes2c181612007-12-17 20:04:13 +00005353#ifdef HAVE_SYS_TYPES_H
5354#include <sys/types.h>
5355#endif
Thomas Wouters89f507f2006-12-13 04:49:30 +00005356
5357#ifdef HAVE_SSIZE_T
5358typedef ssize_t Py_ssize_t;
5359#elif SIZEOF_VOID_P == SIZEOF_LONG
5360typedef long Py_ssize_t;
5361#else
5362typedef int Py_ssize_t;
5363#endif
Thomas Wouters477c8d52006-05-27 19:21:47 +00005364
Christian Heimes2c181612007-12-17 20:04:13 +00005365int main()
5366{
5367 char buffer[256];
5368
Thomas Wouters477c8d52006-05-27 19:21:47 +00005369 if(sprintf(buffer, "%zd", (size_t)123) < 0)
5370 return 1;
5371
Thomas Wouters89f507f2006-12-13 04:49:30 +00005372 if (strcmp(buffer, "123"))
Thomas Wouters477c8d52006-05-27 19:21:47 +00005373 return 1;
Thomas Wouters89f507f2006-12-13 04:49:30 +00005374
5375 if (sprintf(buffer, "%zd", (Py_ssize_t)-123) < 0)
5376 return 1;
5377
5378 if (strcmp(buffer, "-123"))
5379 return 1;
5380
Thomas Wouters477c8d52006-05-27 19:21:47 +00005381 return 0;
Alexandre Vassalotti7b0c1c72009-07-17 06:00:34 +00005382}
Matthias Kloseb159a552010-04-25 21:00:44 +00005383]])],
5384 [ac_cv_have_size_t_format=yes],
5385 [ac_cv_have_size_t_format=no],
5386 [ac_cv_have_size_t_format="cross -- assuming yes"
5387])])
Benjamin Peterson8f326b22009-12-13 02:10:36 +00005388if test "$ac_cv_have_size_t_format" != no ; then
Alexandre Vassalotti7b0c1c72009-07-17 06:00:34 +00005389 AC_DEFINE(PY_FORMAT_SIZE_T, "z",
5390 [Define to printf format modifier for Py_ssize_t])
5391fi
Thomas Wouters477c8d52006-05-27 19:21:47 +00005392
Martin v. Löwis01c04012002-11-11 14:58:44 +00005393AC_CHECK_TYPE(socklen_t,,
5394 AC_DEFINE(socklen_t,int,
Matthias Klosec80c93f2010-04-24 17:04:35 +00005395 [Define to `int' if <sys/socket.h> does not define.]),[
Martin v. Löwis01c04012002-11-11 14:58:44 +00005396#ifdef HAVE_SYS_TYPES_H
5397#include <sys/types.h>
5398#endif
Guido van Rossum95713eb2000-05-18 20:53:31 +00005399#ifdef HAVE_SYS_SOCKET_H
5400#include <sys/socket.h>
5401#endif
Martin v. Löwis01c04012002-11-11 14:58:44 +00005402])
Neil Schemenauer55f0cf32001-01-24 17:24:33 +00005403
Antoine Pitroufff95302008-09-03 18:58:51 +00005404AC_MSG_CHECKING(for broken mbstowcs)
Alexandre Vassalotti7b0c1c72009-07-17 06:00:34 +00005405AC_CACHE_VAL(ac_cv_broken_mbstowcs,
Matthias Kloseb159a552010-04-25 21:00:44 +00005406AC_RUN_IFELSE([AC_LANG_SOURCE([[
Stefan Krah19c21392012-11-22 23:47:32 +01005407#include <stdio.h>
Antoine Pitroufff95302008-09-03 18:58:51 +00005408#include<stdlib.h>
5409int main() {
5410 size_t len = -1;
5411 const char *str = "text";
5412 len = mbstowcs(NULL, str, 0);
5413 return (len != 4);
5414}
Matthias Kloseb159a552010-04-25 21:00:44 +00005415]])],
5416[ac_cv_broken_mbstowcs=no],
5417[ac_cv_broken_mbstowcs=yes],
5418[ac_cv_broken_mbstowcs=no]))
Antoine Pitroufff95302008-09-03 18:58:51 +00005419AC_MSG_RESULT($ac_cv_broken_mbstowcs)
5420if test "$ac_cv_broken_mbstowcs" = yes
5421then
5422 AC_DEFINE(HAVE_BROKEN_MBSTOWCS, 1,
Victor Stinner1b80b242016-04-12 22:34:58 +02005423 [Define if mbstowcs(NULL, "text", 0) does not return the number of
Antoine Pitroufff95302008-09-03 18:58:51 +00005424 wide chars that would be converted.])
5425fi
5426
Antoine Pitroub52ec782009-01-25 16:34:23 +00005427# Check for --with-computed-gotos
5428AC_MSG_CHECKING(for --with-computed-gotos)
5429AC_ARG_WITH(computed-gotos,
Anthony Shaw2de064e2020-01-14 17:40:10 +11005430 AS_HELP_STRING([--with-computed-gotos],
5431 [enable computed gotos in evaluation loop (enabled by default on supported compilers)]),
Antoine Pitroub52ec782009-01-25 16:34:23 +00005432[
Antoine Pitrou042b1282010-08-13 21:15:58 +00005433if test "$withval" = yes
Victor Stinner1b80b242016-04-12 22:34:58 +02005434then
Antoine Pitroub52ec782009-01-25 16:34:23 +00005435 AC_DEFINE(USE_COMPUTED_GOTOS, 1,
Victor Stinner1b80b242016-04-12 22:34:58 +02005436 [Define if you want to use computed gotos in ceval.c.])
Antoine Pitroub52ec782009-01-25 16:34:23 +00005437 AC_MSG_RESULT(yes)
Antoine Pitrou042b1282010-08-13 21:15:58 +00005438fi
5439if test "$withval" = no
Victor Stinner1b80b242016-04-12 22:34:58 +02005440then
Antoine Pitrou042b1282010-08-13 21:15:58 +00005441 AC_DEFINE(USE_COMPUTED_GOTOS, 0,
Victor Stinner1b80b242016-04-12 22:34:58 +02005442 [Define if you want to use computed gotos in ceval.c.])
Antoine Pitrou042b1282010-08-13 21:15:58 +00005443 AC_MSG_RESULT(no)
5444fi
5445],
5446[AC_MSG_RESULT(no value specified)])
Antoine Pitroub52ec782009-01-25 16:34:23 +00005447
Matthias Kloseb17289e2012-03-15 19:51:34 +01005448AC_MSG_CHECKING(whether $CC supports computed gotos)
5449AC_CACHE_VAL(ac_cv_computed_gotos,
5450AC_RUN_IFELSE([AC_LANG_SOURCE([[[
5451int main(int argc, char **argv)
5452{
5453 static void *targets[1] = { &&LABEL1 };
5454 goto LABEL2;
5455LABEL1:
5456 return 0;
5457LABEL2:
5458 goto *targets[0];
5459 return 1;
5460}
5461]]])],
5462[ac_cv_computed_gotos=yes],
5463[ac_cv_computed_gotos=no],
5464[if test "${with_computed_gotos+set}" = set; then
5465 ac_cv_computed_gotos="$with_computed_gotos -- configured --with(out)-computed-gotos"
5466 else
5467 ac_cv_computed_gotos=no
5468 fi]))
5469AC_MSG_RESULT($ac_cv_computed_gotos)
5470case "$ac_cv_computed_gotos" in yes*)
5471 AC_DEFINE(HAVE_COMPUTED_GOTOS, 1,
5472 [Define if the C compiler supports computed gotos.])
5473esac
5474
R. David Murraye16cda92010-10-15 23:12:57 +00005475case $ac_sys_system in
Victor Stinner1b80b242016-04-12 22:34:58 +02005476AIX*)
R. David Murraye16cda92010-10-15 23:12:57 +00005477 AC_DEFINE(HAVE_BROKEN_PIPE_BUF, 1, [Define if the system reports an invalid PIPE_BUF value.]) ;;
5478esac
Antoine Pitroub52ec782009-01-25 16:34:23 +00005479
Jesus Cea6a792292010-05-03 21:18:48 +00005480
Martin v. Löwis06f15bb2001-12-02 13:02:32 +00005481AC_SUBST(THREADHEADERS)
5482
5483for h in `(cd $srcdir;echo Python/thread_*.h)`
5484do
5485 THREADHEADERS="$THREADHEADERS \$(srcdir)/$h"
5486done
5487
Neil Schemenauer55f0cf32001-01-24 17:24:33 +00005488AC_SUBST(SRCDIRS)
Pablo Galindo1ed83ad2020-06-11 17:30:46 +01005489SRCDIRS="Parser Objects Python Modules Modules/_io Programs"
Andrew M. Kuchling8abedde2001-01-26 22:55:24 +00005490AC_MSG_CHECKING(for build directories)
Neil Schemenauer55f0cf32001-01-24 17:24:33 +00005491for dir in $SRCDIRS; do
5492 if test ! -d $dir; then
5493 mkdir $dir
Fred Drake884d3ba2000-11-02 17:52:56 +00005494 fi
Neil Schemenauer55f0cf32001-01-24 17:24:33 +00005495done
5496AC_MSG_RESULT(done)
Fred Drake036144d2000-10-26 17:09:35 +00005497
Stefan Krah1919b7e2012-03-21 18:25:23 +01005498# Availability of -O2:
5499AC_MSG_CHECKING(for -O2)
5500saved_cflags="$CFLAGS"
5501CFLAGS="-O2"
5502AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[]], [[
5503]])],[have_O2=yes],[have_O2=no])
5504AC_MSG_RESULT($have_O2)
5505CFLAGS="$saved_cflags"
5506
5507# _FORTIFY_SOURCE wrappers for memmove and bcopy are incorrect:
5508# http://sourceware.org/ml/libc-alpha/2010-12/msg00009.html
5509AC_MSG_CHECKING(for glibc _FORTIFY_SOURCE/memmove bug)
5510saved_cflags="$CFLAGS"
5511CFLAGS="-O2 -D_FORTIFY_SOURCE=2"
5512if test "$have_O2" = no; then
5513 CFLAGS=""
5514fi
5515AC_RUN_IFELSE([AC_LANG_SOURCE([[
5516#include <stdio.h>
5517#include <stdlib.h>
5518#include <string.h>
5519void foo(void *p, void *q) { memmove(p, q, 19); }
5520int main() {
5521 char a[32] = "123456789000000000";
5522 foo(&a[9], a);
5523 if (strcmp(a, "123456789123456789000000000") != 0)
5524 return 1;
5525 foo(a, &a[9]);
5526 if (strcmp(a, "123456789000000000") != 0)
5527 return 1;
5528 return 0;
5529}
5530]])],
5531[have_glibc_memmove_bug=no],
5532[have_glibc_memmove_bug=yes],
5533[have_glibc_memmove_bug=undefined])
5534CFLAGS="$saved_cflags"
5535AC_MSG_RESULT($have_glibc_memmove_bug)
5536if test "$have_glibc_memmove_bug" = yes; then
5537 AC_DEFINE(HAVE_GLIBC_MEMMOVE_BUG, 1,
5538 [Define if glibc has incorrect _FORTIFY_SOURCE wrappers
5539 for memmove and bcopy.])
5540fi
5541
5542if test "$have_gcc_asm_for_x87" = yes; then
5543 # Some versions of gcc miscompile inline asm:
5544 # http://gcc.gnu.org/bugzilla/show_bug.cgi?id=46491
5545 # http://gcc.gnu.org/ml/gcc/2010-11/msg00366.html
5546 case $CC in
5547 *gcc*)
5548 AC_MSG_CHECKING(for gcc ipa-pure-const bug)
5549 saved_cflags="$CFLAGS"
5550 CFLAGS="-O2"
5551 AC_RUN_IFELSE([AC_LANG_SOURCE([[
5552 __attribute__((noinline)) int
5553 foo(int *p) {
5554 int r;
5555 asm ( "movl \$6, (%1)\n\t"
5556 "xorl %0, %0\n\t"
5557 : "=r" (r) : "r" (p) : "memory"
5558 );
5559 return r;
5560 }
5561 int main() {
5562 int p = 8;
5563 if ((foo(&p) ? : p) != 6)
5564 return 1;
5565 return 0;
5566 }
5567 ]])],
5568 [have_ipa_pure_const_bug=no],
5569 [have_ipa_pure_const_bug=yes],
5570 [have_ipa_pure_const_bug=undefined])
5571 CFLAGS="$saved_cflags"
5572 AC_MSG_RESULT($have_ipa_pure_const_bug)
5573 if test "$have_ipa_pure_const_bug" = yes; then
5574 AC_DEFINE(HAVE_IPA_PURE_CONST_BUG, 1,
5575 [Define if gcc has the ipa-pure-const bug.])
5576 fi
5577 ;;
5578 esac
5579fi
5580
Victor Stinner4f5366e2015-01-09 02:13:19 +01005581# Check for stdatomic.h
5582AC_MSG_CHECKING(for stdatomic.h)
5583AC_LINK_IFELSE(
5584[
5585 AC_LANG_SOURCE([[
5586 #include <stdatomic.h>
Victor Stinner028f7342019-10-22 21:53:50 +02005587 atomic_int int_var;
5588 atomic_uintptr_t uintptr_var;
Victor Stinner4f5366e2015-01-09 02:13:19 +01005589 int main() {
Victor Stinner028f7342019-10-22 21:53:50 +02005590 atomic_store_explicit(&int_var, 5, memory_order_relaxed);
5591 atomic_store_explicit(&uintptr_var, 0, memory_order_relaxed);
5592 int loaded_value = atomic_load_explicit(&int_var, memory_order_seq_cst);
Victor Stinner4f5366e2015-01-09 02:13:19 +01005593 return 0;
5594 }
5595 ]])
5596],[have_stdatomic_h=yes],[have_stdatomic_h=no])
5597
5598AC_MSG_RESULT($have_stdatomic_h)
5599
5600if test "$have_stdatomic_h" = yes; then
Victor Stinner923e06f2015-01-14 16:01:46 +01005601 AC_DEFINE(HAVE_STD_ATOMIC, 1,
Victor Stinner028f7342019-10-22 21:53:50 +02005602 [Has stdatomic.h with atomic_int and atomic_uintptr_t])
Victor Stinner4f5366e2015-01-09 02:13:19 +01005603fi
5604
Victor Stinner52a327c2020-12-23 03:41:08 +01005605# Check for GCC >= 4.7 and clang __atomic builtin functions
5606AC_MSG_CHECKING(for builtin __atomic_load_n and __atomic_store_n functions)
Victor Stinner4f5366e2015-01-09 02:13:19 +01005607AC_LINK_IFELSE(
5608[
5609 AC_LANG_SOURCE([[
Victor Stinner52a327c2020-12-23 03:41:08 +01005610 int val;
Victor Stinner4f5366e2015-01-09 02:13:19 +01005611 int main() {
Victor Stinner52a327c2020-12-23 03:41:08 +01005612 __atomic_store_n(&val, 1, __ATOMIC_SEQ_CST);
5613 (void)__atomic_load_n(&val, __ATOMIC_SEQ_CST);
Victor Stinner4f5366e2015-01-09 02:13:19 +01005614 return 0;
5615 }
5616 ]])
5617],[have_builtin_atomic=yes],[have_builtin_atomic=no])
5618
5619AC_MSG_RESULT($have_builtin_atomic)
5620
5621if test "$have_builtin_atomic" = yes; then
Victor Stinner52a327c2020-12-23 03:41:08 +01005622 AC_DEFINE(HAVE_BUILTIN_ATOMIC, 1, [Has builtin __atomic_load_n() and __atomic_store_n() functions])
Victor Stinner4f5366e2015-01-09 02:13:19 +01005623fi
5624
Ned Deily322f5ba2013-11-21 23:01:59 -08005625# ensurepip option
5626AC_MSG_CHECKING(for ensurepip)
5627AC_ARG_WITH(ensurepip,
Anthony Shaw2de064e2020-01-14 17:40:10 +11005628 [AS_HELP_STRING([--with-ensurepip@<:@=install|upgrade|no@:>@],
5629 ["install" or "upgrade" using bundled pip (default is upgrade)])],
Ned Deily322f5ba2013-11-21 23:01:59 -08005630 [],
5631 [with_ensurepip=upgrade])
5632AS_CASE($with_ensurepip,
5633 [yes|upgrade],[ENSUREPIP=upgrade],
5634 [install],[ENSUREPIP=install],
5635 [no],[ENSUREPIP=no],
5636 [AC_MSG_ERROR([--with-ensurepip=upgrade|install|no])])
5637AC_MSG_RESULT($ENSUREPIP)
5638AC_SUBST(ENSUREPIP)
5639
Victor Stinner35a97c02015-03-08 02:59:09 +01005640# check if the dirent structure of a d_type field and DT_UNKNOWN is defined
5641AC_MSG_CHECKING(if the dirent structure of a d_type field)
5642AC_LINK_IFELSE(
5643[
5644 AC_LANG_SOURCE([[
5645 #include <dirent.h>
5646
5647 int main() {
5648 struct dirent entry;
5649 return entry.d_type == DT_UNKNOWN;
5650 }
5651 ]])
5652],[have_dirent_d_type=yes],[have_dirent_d_type=no])
5653AC_MSG_RESULT($have_dirent_d_type)
5654
5655if test "$have_dirent_d_type" = yes; then
5656 AC_DEFINE(HAVE_DIRENT_D_TYPE, 1,
5657 [Define to 1 if the dirent structure has a d_type field])
5658fi
5659
Victor Stinner9eb57c52015-03-19 22:21:49 +01005660# check if the Linux getrandom() syscall is available
5661AC_MSG_CHECKING(for the Linux getrandom() syscall)
5662AC_LINK_IFELSE(
5663[
5664 AC_LANG_SOURCE([[
Victor Stinner1b80b242016-04-12 22:34:58 +02005665 #include <unistd.h>
Victor Stinner9eb57c52015-03-19 22:21:49 +01005666 #include <sys/syscall.h>
Victor Stinnerdddf4842016-06-07 11:21:42 +02005667 #include <linux/random.h>
Victor Stinner9eb57c52015-03-19 22:21:49 +01005668
5669 int main() {
Victor Stinner9eb57c52015-03-19 22:21:49 +01005670 char buffer[1];
Victor Stinner3abf44e2015-09-18 15:38:37 +02005671 const size_t buflen = sizeof(buffer);
Victor Stinnerdddf4842016-06-07 11:21:42 +02005672 const int flags = GRND_NONBLOCK;
5673 /* ignore the result, Python checks for ENOSYS and EAGAIN at runtime */
Victor Stinner3abf44e2015-09-18 15:38:37 +02005674 (void)syscall(SYS_getrandom, buffer, buflen, flags);
Victor Stinner9eb57c52015-03-19 22:21:49 +01005675 return 0;
5676 }
5677 ]])
5678],[have_getrandom_syscall=yes],[have_getrandom_syscall=no])
5679AC_MSG_RESULT($have_getrandom_syscall)
5680
5681if test "$have_getrandom_syscall" = yes; then
5682 AC_DEFINE(HAVE_GETRANDOM_SYSCALL, 1,
5683 [Define to 1 if the Linux getrandom() syscall is available])
5684fi
5685
Victor Stinner3abf44e2015-09-18 15:38:37 +02005686# check if the getrandom() function is available
5687# the test was written for the Solaris function of <sys/random.h>
5688AC_MSG_CHECKING(for the getrandom() function)
5689AC_LINK_IFELSE(
5690[
5691 AC_LANG_SOURCE([[
5692 #include <sys/random.h>
5693
5694 int main() {
5695 char buffer[1];
5696 const size_t buflen = sizeof(buffer);
5697 const int flags = 0;
5698 /* ignore the result, Python checks for ENOSYS at runtime */
5699 (void)getrandom(buffer, buflen, flags);
5700 return 0;
5701 }
5702 ]])
5703],[have_getrandom=yes],[have_getrandom=no])
5704AC_MSG_RESULT($have_getrandom)
5705
5706if test "$have_getrandom" = yes; then
5707 AC_DEFINE(HAVE_GETRANDOM, 1,
5708 [Define to 1 if the getrandom() function is available])
5709fi
5710
Neil Schemenauer5741c452019-02-08 10:48:46 -08005711# checks for POSIX shared memory, used by Modules/_multiprocessing/posixshmem.c
5712# shm_* may only be available if linking against librt
5713save_LIBS="$LIBS"
5714save_includes_default="$ac_includes_default"
5715AC_SEARCH_LIBS(shm_open, rt)
5716if test "$ac_cv_search_shm_open" = "-lrt"; then
5717 AC_DEFINE(SHM_NEEDS_LIBRT, 1,
5718 [Define to 1 if you must link with -lrt for shm_open().])
5719fi
5720AC_CHECK_HEADERS(sys/mman.h)
5721# temporarily override ac_includes_default for AC_CHECK_FUNCS below
5722ac_includes_default="\
5723${ac_includes_default}
5724#ifndef __cplusplus
5725# ifdef HAVE_SYS_MMAN_H
5726# include <sys/mman.h>
5727# endif
5728#endif
5729"
5730AC_CHECK_FUNCS([shm_open shm_unlink])
5731# we don't want to link with librt always, restore LIBS
5732LIBS="$save_LIBS"
5733ac_includes_default="$save_includes_default"
5734
Christian Heimesff5be6e2018-01-20 13:19:21 +01005735# Check for usable OpenSSL
5736AX_CHECK_OPENSSL([have_openssl=yes],[have_openssl=no])
5737
5738if test "$have_openssl" = yes; then
5739 AC_MSG_CHECKING([for X509_VERIFY_PARAM_set1_host in libssl])
5740
5741 save_LIBS="$LIBS"
5742 save_LDFLAGS="$LDFLAGS"
5743 save_CPPFLAGS="$CPPFLAGS"
5744 LDFLAGS="$LDFLAGS $OPENSSL_LDFLAGS"
5745 LIBS="$OPENSSL_LIBS $LIBS"
5746 CPPFLAGS="$OPENSSL_INCLUDES $CPPFLAGS"
5747
5748 AC_LINK_IFELSE([AC_LANG_PROGRAM([
5749 [#include <openssl/x509_vfy.h>]
5750 ], [
5751 [X509_VERIFY_PARAM *p = X509_VERIFY_PARAM_new();]
5752 [X509_VERIFY_PARAM_set1_host(p, "localhost", 0);]
5753 [X509_VERIFY_PARAM_set1_ip_asc(p, "127.0.0.1");]
5754 [X509_VERIFY_PARAM_set_hostflags(p, 0);]
5755 ])
5756 ],
5757 [
5758 ac_cv_has_x509_verify_param_set1_host=yes
5759 ],
5760 [
5761 ac_cv_has_x509_verify_param_set1_host=no
5762 ])
5763 AC_MSG_RESULT($ac_cv_has_x509_verify_param_set1_host)
5764 if test "$ac_cv_has_x509_verify_param_set1_host" = "yes"; then
5765 AC_DEFINE(HAVE_X509_VERIFY_PARAM_SET1_HOST, 1,
5766 [Define if libssl has X509_VERIFY_PARAM_set1_host and related function])
5767 fi
5768
5769 CPPFLAGS="$save_CPPFLAGS"
5770 LDFLAGS="$save_LDFLAGS"
5771 LIBS="$save_LIBS"
5772fi
5773
Christian Heimes892d66e2018-01-29 14:10:18 +01005774# ssl module default cipher suite string
5775AH_TEMPLATE(PY_SSL_DEFAULT_CIPHERS,
5776 [Default cipher suites list for ssl module.
5777 1: Python's preferred selection, 2: leave OpenSSL defaults untouched, 0: custom string])
5778AH_TEMPLATE(PY_SSL_DEFAULT_CIPHER_STRING,
5779 [Cipher suite string for PY_SSL_DEFAULT_CIPHERS=0]
5780)
5781
5782AC_MSG_CHECKING(for --with-ssl-default-suites)
5783AC_ARG_WITH(ssl-default-suites,
5784 AS_HELP_STRING([--with-ssl-default-suites=@<:@python|openssl|STRING@:>@],
Anthony Shaw2de064e2020-01-14 17:40:10 +11005785 [override default cipher suites string,
Christian Heimes892d66e2018-01-29 14:10:18 +01005786 python: use Python's preferred selection (default),
5787 openssl: leave OpenSSL's defaults untouched,
5788 STRING: use a custom string,
Anthony Shaw2de064e2020-01-14 17:40:10 +11005789 PROTOCOL_SSLv2 ignores the setting, see Doc/library/ssl.rst]),
Christian Heimes892d66e2018-01-29 14:10:18 +01005790[
5791AC_MSG_RESULT($withval)
5792case "$withval" in
5793 python)
5794 AC_DEFINE(PY_SSL_DEFAULT_CIPHERS, 1)
5795 ;;
5796 openssl)
5797 AC_DEFINE(PY_SSL_DEFAULT_CIPHERS, 2)
5798 ;;
5799 *)
5800 AC_DEFINE(PY_SSL_DEFAULT_CIPHERS, 0)
5801 AC_DEFINE_UNQUOTED(PY_SSL_DEFAULT_CIPHER_STRING, "$withval")
5802 ;;
5803esac
5804],
5805[
5806AC_MSG_RESULT(python)
5807AC_DEFINE(PY_SSL_DEFAULT_CIPHERS, 1)
5808])
5809
Christian Heimes9b60e552020-05-15 23:54:53 +02005810# builtin hash modules
5811default_hashlib_hashes="md5,sha1,sha256,sha512,sha3,blake2"
5812AC_DEFINE([PY_BUILTIN_HASHLIB_HASHES], [], [enabled builtin hash modules]
5813)
5814AC_MSG_CHECKING(for --with-builtin-hashlib-hashes)
5815AC_ARG_WITH(builtin-hashlib-hashes,
5816 AS_HELP_STRING([--with-builtin-hashlib-hashes=md5,sha1,sha256,sha512,sha3,blake2],
5817 [builtin hash modules,
5818 md5, sha1, sha256, sha512, sha3 (with shake), blake2]),
5819[
5820case "$withval" in
5821 yes)
5822 withval=$default_hashlib_hashes
5823 ;;
5824 no)
5825 withval=""
5826 ;;
5827esac
5828AC_MSG_RESULT($withval)
5829AC_DEFINE_UNQUOTED(PY_BUILTIN_HASHLIB_HASHES, "$withval")
5830],
5831[
5832AC_MSG_RESULT($default_hashlib_hashes);
5833AC_DEFINE_UNQUOTED(PY_BUILTIN_HASHLIB_HASHES, "$default_hashlib_hashes")
5834])
5835
Victor Stinnerc5fa3642020-05-05 16:41:11 +02005836# --with-experimental-isolated-subinterpreters
5837AH_TEMPLATE(EXPERIMENTAL_ISOLATED_SUBINTERPRETERS,
5838 [Better isolate subinterpreters, experimental build mode.])
5839AC_MSG_CHECKING(for --with-experimental-isolated-subinterpreters)
5840AC_ARG_WITH(experimental-isolated-subinterpreters,
5841 AS_HELP_STRING([--with-experimental-isolated-subinterpreters],
5842 [better isolate subinterpreters, experimental build mode (default is no)]),
5843[
5844if test "$withval" != no
5845then
5846 AC_MSG_RESULT(yes);
5847 AC_DEFINE(EXPERIMENTAL_ISOLATED_SUBINTERPRETERS)
5848else
5849 AC_MSG_RESULT(no);
5850fi],
5851[AC_MSG_RESULT(no)])
5852
pxinwr277ce302020-12-30 20:50:39 +08005853# Check whether to disable test modules. Once set, setup.py will not build
5854# test extension modules and "make install" will not install test suites.
5855AC_MSG_CHECKING(for --disable-test-modules)
5856AC_ARG_ENABLE(test-modules,
5857 AS_HELP_STRING([--disable-test-modules], [don't build nor install test modules]))
5858if test "$enable_test_modules" = no; then
5859 TEST_MODULES=no
5860 AC_MSG_RESULT(yes)
5861else
5862 TEST_MODULES=yes
5863 AC_MSG_RESULT(no)
5864fi
5865AC_SUBST(TEST_MODULES)
5866
Christian Heimes892d66e2018-01-29 14:10:18 +01005867
Guido van Rossum627b2d71993-12-24 10:39:16 +00005868# generate output files
Victor Stinner0a8e5722019-05-23 03:30:23 +02005869AC_CONFIG_FILES(Makefile.pre Misc/python.pc Misc/python-embed.pc Misc/python-config.sh)
Antoine Pitrou8e6b4072010-09-10 19:44:44 +00005870AC_CONFIG_FILES([Modules/ld_so_aix], [chmod +x Modules/ld_so_aix])
Martin v. Löwis88afe662002-10-26 13:47:44 +00005871AC_OUTPUT
Neil Schemenauer61c51152001-01-26 16:18:16 +00005872
Christian Heimes75ed8902013-11-20 01:11:18 +01005873echo "creating Modules/Setup.local" >&AS_MESSAGE_FD
Neil Schemenauer61c51152001-01-26 16:18:16 +00005874if test ! -f Modules/Setup.local
5875then
5876 echo "# Edit this file for local setup changes" >Modules/Setup.local
5877fi
5878
Christian Heimes75ed8902013-11-20 01:11:18 +01005879echo "creating Makefile" >&AS_MESSAGE_FD
Neil Schemenauer61c51152001-01-26 16:18:16 +00005880$SHELL $srcdir/Modules/makesetup -c $srcdir/Modules/config.c.in \
Antoine Pitroua6a4dc82017-09-07 18:56:24 +02005881 -s Modules \
Antoine Pitrou961d54c2018-07-16 19:03:03 +02005882 Modules/Setup.local $srcdir/Modules/Setup
Neil Schemenauer66252162001-02-19 04:47:42 +00005883mv config.c Modules
Brett Cannon63d98bc2016-09-06 17:12:40 -07005884
5885if test "$Py_OPT" = 'false' -a "$Py_DEBUG" != 'true'; then
5886 echo "" >&AS_MESSAGE_FD
5887 echo "" >&AS_MESSAGE_FD
Brett Cannonb4e5fee2017-06-09 13:56:57 -07005888 echo "If you want a release build with all stable optimizations active (PGO, etc)," >&AS_MESSAGE_FD
Gregory P. Smith ext:(%20%5BGoogle%20Inc.%5D)1016b2f2016-11-20 21:07:42 +00005889 echo "please run ./configure --enable-optimizations" >&AS_MESSAGE_FD
Brett Cannon63d98bc2016-09-06 17:12:40 -07005890 echo "" >&AS_MESSAGE_FD
5891 echo "" >&AS_MESSAGE_FD
5892fi