diff options
author | Martin v. Löwis <martin@v.loewis.de> | 2002-03-21 15:10:58 (GMT) |
---|---|---|
committer | Martin v. Löwis <martin@v.loewis.de> | 2002-03-21 15:10:58 (GMT) |
commit | 41933dd1b7332e9dc15ed5af95edddd4ee139d19 (patch) | |
tree | 402a01057dfeba9dbea42122d92b0bc818a5cc8d /pyconfig.h.in | |
parent | e22d3dfcc100bade1ef278b692bad38c7e5acdeb (diff) | |
download | cpython-41933dd1b7332e9dc15ed5af95edddd4ee139d19.zip cpython-41933dd1b7332e9dc15ed5af95edddd4ee139d19.tar.gz cpython-41933dd1b7332e9dc15ed5af95edddd4ee139d19.tar.bz2 |
Patch #532729: check for sem_init in -lrt.
Diffstat (limited to 'pyconfig.h.in')
-rw-r--r-- | pyconfig.h.in | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/pyconfig.h.in b/pyconfig.h.in index 9d9386f..ca71726 100644 --- a/pyconfig.h.in +++ b/pyconfig.h.in @@ -106,9 +106,7 @@ #undef __EXTENSIONS__ /* This must be set to 64 on some systems to enable large file support */ -#ifndef _FILE_OFFSET_BITS #undef _FILE_OFFSET_BITS -#endif /* Define if getpgrp() must be called as getpgrp(0). */ #undef GETPGRP_HAVE_ARG @@ -761,6 +759,9 @@ /* Define if you have the ieee library (-lieee). */ #undef HAVE_LIBIEEE +/* Define if you have the rt library (-lrt). */ +#undef HAVE_LIBRT + #ifdef __CYGWIN__ #ifdef USE_DL_IMPORT #define DL_IMPORT(RTYPE) __declspec(dllimport) RTYPE |