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
af16e8c3
Commit
af16e8c3
authored
Aug 25, 2004
by
Trent Mick
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Apply patch #1016224: configure.in change to allow build of _bsddb module on
AIX 5.1.
parent
19b19587
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
3 deletions
+8
-3
configure.in
configure.in
+8
-3
No files found.
configure.in
View file @
af16e8c3
...
...
@@ -161,11 +161,16 @@ case $ac_sys_system/$ac_sys_release in
# This should hopefully be fixed in FreeBSD 4.9
FreeBSD/4.8* | Darwin/6* )
define_xopen_source=no;;
# On AIX 4
, mbstate_t is defined only when _XOPEN_SOURCE == 500 but used in
#
wcsnrtombs() and mbsnrtowcs() even if _XOPEN_SOURCE is not defined or
# has another value. By not (re)defining it, the defaults come in place.
# On AIX 4
and 5.1, mbstate_t is defined only when _XOPEN_SOURCE == 500 but
#
used in wcsnrtombs() and mbsnrtowcs() even if _XOPEN_SOURCE is not defined
#
or
has another value. By not (re)defining it, the defaults come in place.
AIX/4)
define_xopen_source=no;;
AIX/5)
if test `uname -r` -eq 1; then
define_xopen_source=no
fi
;;
esac
if test $define_xopen_source = yes
...
...
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