summaryrefslogtreecommitdiffstats
path: root/configure.in
diff options
context:
space:
mode:
authorMartin v. Löwis <martin@v.loewis.de>2010-02-15 08:35:16 (GMT)
committerMartin v. Löwis <martin@v.loewis.de>2010-02-15 08:35:16 (GMT)
commit7671efc1266bf4d4f734afb3809f5a8f181a7ee0 (patch)
tree9680ed9a0aad2953235d4f8a22df196af79b707e /configure.in
parentbbe63069efa759c946d9db8b7b77fea9a5591f4e (diff)
downloadcpython-7671efc1266bf4d4f734afb3809f5a8f181a7ee0.zip
cpython-7671efc1266bf4d4f734afb3809f5a8f181a7ee0.tar.gz
cpython-7671efc1266bf4d4f734afb3809f5a8f181a7ee0.tar.bz2
Merged revisions 78194 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk ........ r78194 | martin.v.loewis | 2010-02-15 09:32:00 +0100 (Mo, 15 Feb 2010) | 2 lines Issue #3920: Define _BSD_SOURCE on OpenBSD 4.4. ........
Diffstat (limited to 'configure.in')
-rw-r--r--configure.in6
1 files changed, 6 insertions, 0 deletions
diff --git a/configure.in b/configure.in
index f5acbf4..5646e00 100644
--- a/configure.in
+++ b/configure.in
@@ -280,6 +280,12 @@ case $ac_sys_system/$ac_sys_release in
# As this has a different meaning on Linux, only define it on OpenBSD
AC_DEFINE(_BSD_SOURCE, 1, [Define on OpenBSD to activate all library features])
;;
+ OpenBSD/4.@<:@4@:>@)
+ # OpenBSD undoes our definition of __BSD_VISIBLE if _XOPEN_SOURCE is
+ # also defined. This can be overridden by defining _BSD_SOURCE
+ # As this has a different meaning on Linux, only define it on OpenBSD
+ AC_DEFINE(_BSD_SOURCE, 1, [Define on OpenBSD to activate all library features])
+ ;;
# Defining _XOPEN_SOURCE on NetBSD version prior to the introduction of
# _NETBSD_SOURCE disables certain features (eg. setgroups). Reported by
# Marc Recht