diff options
author | Andrew MacIntyre <andymac@bullseye.apana.org.au> | 2003-07-02 13:53:25 (GMT) |
---|---|---|
committer | Andrew MacIntyre <andymac@bullseye.apana.org.au> | 2003-07-02 13:53:25 (GMT) |
commit | abccf41a7d616cc950510ad4a3526b11e012ee24 (patch) | |
tree | 95e76292081a25e4e1a258abcba47c64018a3479 /configure.in | |
parent | 1ec0bdf899d5aa55f888cae3e48316bdc3b8635e (diff) | |
download | cpython-abccf41a7d616cc950510ad4a3526b11e012ee24.zip cpython-abccf41a7d616cc950510ad4a3526b11e012ee24.tar.gz cpython-abccf41a7d616cc950510ad4a3526b11e012ee24.tar.bz2 |
FreeBSD 5.x has moved some library routines and typedefs outside the
scope of the _XOPEN_SOURCE and _POSIX_C_SOURCE symbols, including:
- getloadavg()
- typedefs for u_int, u_long, u_char, u_short, ushort & uint
These are now all defined under the control of a __BSD_VISIBLE symbol.
The lack of the typedefs causes several extension modules to build
incorrectly or not at all, and is the cause of failures reported for
test_socket and test_tempfile on this platform
(see python-dev: 29/6/03, pieterb@gewis.nl, "Running tests on freebsd5")
This change does not appear to be needed in the 2.2 branch.
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/configure.in b/configure.in index bfe1e38..b80086c 100644 --- a/configure.in +++ b/configure.in @@ -45,6 +45,11 @@ AC_DEFINE(_GNU_SOURCE, 1, [Define on Linux to activate all library features]) # them. AC_DEFINE(_NETBSD_SOURCE, 1, [Define on NetBSD to activate all library features]) +# The later defininition of _XOPEN_SOURCE and _POSIX_C_SOURCE disables +# certain features on FreeBSD, so we need __BSD_VISIBLE to re-enable +# them. +AC_DEFINE(__BSD_VISIBLE, 1, [Define on FreeBSD to activate all library features]) + define_xopen_source=yes # Arguments passed to configure. |