Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
35195ad2
Commit
35195ad2
authored
Nov 11, 2002
by
Martin v. Löwis
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Don't define _XOPEN_SOURCE on OpenBSD 2.x and 3.[012].
parent
c8ad7cc5
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
27 additions
and
5 deletions
+27
-5
configure
configure
+26
-4
pyconfig.h.in
pyconfig.h.in
+1
-1
No files found.
configure
View file @
35195ad2
#! /bin/sh
# From configure.in Revision: 1.36
4
.
# From configure.in Revision: 1.36
5
.
# Guess values for system-dependent variables and create Makefiles.
# Generated by GNU Autoconf 2.53 for python 2.3.
#
...
...
@@ -1254,10 +1254,8 @@ _ACEOF
# of _XOPEN_SOURCE. So define it only conditionally.
cat
>>
confdefs.h
<<
\
_ACEOF
#define _XOPEN_SOURCE 500
_ACEOF
define_xopen_source
=
yes
# On Tru64 Unix 4.0F, defining _XOPEN_SOURCE also requires definition
# of _XOPEN_SOURCE_EXTENDED and _POSIX_C_SOURCE, or else several APIs
...
...
@@ -1347,6 +1345,30 @@ then
esac
fi
# Some systems cannot stand _XOPEN_SOURCE being defined at all; they
# disable features if it is defined, without any means to access these
# features as extensions. For these systems, we skip the definition of
# _XOPEN_SOURCE. Before adding a system to the list to gain access to
# some feature, make sure there is no alternative way to access this
# feature. Also, when using wildcards, make sure you have verified the
# need for not defining _XOPEN_SOURCE on all systems matching the
# wildcard, and that the wildcard does not include future systems
# (which may remove their limitations).
case
$ac_sys_system
/
$ac_sys_release
in
# On OpenBSD, select(2) is not available if _XOPEN_SOURCE is defined,
# even though select is a POSIX function. Reported by J. Ribbens.
OpenBSD/2.
*
|
OpenBSD/3.[012]
)
define_xopen_source
=
no
;;
esac
if
test
$define_xopen_source
=
yes
then
cat
>>
confdefs.h
<<
\
_ACEOF
#define _XOPEN_SOURCE 500
_ACEOF
fi
#
# SGI compilers allow the specification of the both the ABI and the
# ISA on the command line. Depending on the values of these switches,
...
...
pyconfig.h.in
View file @
35195ad2
...
...
@@ -799,7 +799,7 @@
/* Define on UNIX to activate XPG/5 features. */
#ifndef _XOPEN_SOURCE
#
define _XOPEN_SOURCE 500
#
undef _XOPEN_SOURCE
#endif
/* Define to activate Unix95-and-earlier features */
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment