diff options
author | Martin v. Löwis <martin@v.loewis.de> | 2004-08-12 13:45:08 (GMT) |
---|---|---|
committer | Martin v. Löwis <martin@v.loewis.de> | 2004-08-12 13:45:08 (GMT) |
commit | d632050d1d5dcf9517f5caa930e30d212b68009b (patch) | |
tree | b2fb73652cf887edda1b1018ca68b6844fa1cc9e /pyconfig.h.in | |
parent | 0cb3c635033dbfdf43de5b7c9ed2b2e3fe7d6fdf (diff) | |
download | cpython-d632050d1d5dcf9517f5caa930e30d212b68009b.zip cpython-d632050d1d5dcf9517f5caa930e30d212b68009b.tar.gz cpython-d632050d1d5dcf9517f5caa930e30d212b68009b.tar.bz2 |
Define _BSD_TYPES. Fixes #1005308. Backported to 2.3.
Diffstat (limited to 'pyconfig.h.in')
-rw-r--r-- | pyconfig.h.in | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/pyconfig.h.in b/pyconfig.h.in index 19227e0..7c45736 100644 --- a/pyconfig.h.in +++ b/pyconfig.h.in @@ -428,15 +428,15 @@ /* Define to 1 if you have the `snprintf' function. */ #undef HAVE_SNPRINTF -/* Define to 1 if you have the `socketpair' function. */ -#undef HAVE_SOCKETPAIR - /* Define if sockaddr has sa_len member */ #undef HAVE_SOCKADDR_SA_LEN /* struct sockaddr_storage (sys/socket.h) */ #undef HAVE_SOCKADDR_STORAGE +/* Define if you have the 'socketpair' function. */ +#undef HAVE_SOCKETPAIR + /* Define to 1 if you have the `statvfs' function. */ #undef HAVE_STATVFS @@ -806,6 +806,9 @@ # undef _ALL_SOURCE #endif +/* Define on Irix to enable u_int */ +#undef _BSD_TYPES + /* This must be set to 64 on some systems to enable large file support. */ #undef _FILE_OFFSET_BITS |