diff options
author | Martin v. Löwis <martin@v.loewis.de> | 2003-11-10 06:35:36 (GMT) |
---|---|---|
committer | Martin v. Löwis <martin@v.loewis.de> | 2003-11-10 06:35:36 (GMT) |
commit | 49ee14dac5da2249f0f55f00190a9b9f01d23642 (patch) | |
tree | dde1b85066268f6d5ca6e28b3606a00854ad2d72 /pyconfig.h.in | |
parent | 967b063add196bc2da55fdb81f91a802600b7b7b (diff) | |
download | cpython-49ee14dac5da2249f0f55f00190a9b9f01d23642.zip cpython-49ee14dac5da2249f0f55f00190a9b9f01d23642.tar.gz cpython-49ee14dac5da2249f0f55f00190a9b9f01d23642.tar.bz2 |
Patch #839038: Add getsid(2).
Diffstat (limited to 'pyconfig.h.in')
-rw-r--r-- | pyconfig.h.in | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/pyconfig.h.in b/pyconfig.h.in index 2ab8b9c..b999f33 100644 --- a/pyconfig.h.in +++ b/pyconfig.h.in @@ -126,6 +126,9 @@ /* Define to 1 if you have the `fstatvfs' function. */ #undef HAVE_FSTATVFS +/* Define if you have the 'fsync' function. */ +#undef HAVE_FSYNC + /* Define to 1 if you have the `ftell64' function. */ #undef HAVE_FTELL64 @@ -198,6 +201,9 @@ /* Define to 1 if you have the `getpwent' function. */ #undef HAVE_GETPWENT +/* Define to 1 if you have the `getsid' function. */ +#undef HAVE_GETSID + /* Define to 1 if you have the `gettimeofday' function. */ #undef HAVE_GETTIMEOFDAY @@ -485,9 +491,6 @@ /* Define if you have the 'symlink' function. */ #undef HAVE_SYMLINK -/* Define if you have the 'fsync' function. */ -#undef HAVE_FSYNC - /* Define to 1 if you have the `sysconf' function. */ #undef HAVE_SYSCONF @@ -616,7 +619,8 @@ #undef HAVE_UNSETENV /* Define if you have a useable wchar_t type defined in wchar.h; useable means - wchar_t must be 16-bit unsigned type. (see Include/unicodeobject.h). */ + wchar_t must be an unsigned type with at least 16 bits. (see + Include/unicodeobject.h). */ #undef HAVE_USABLE_WCHAR_T /* Define to 1 if you have the `utimes' function. */ |