Kaydet (Commit) 41933dd1 authored tarafından Martin v. Löwis's avatar Martin v. Löwis

Patch #532729: check for sem_init in -lrt.

üst e22d3dfc
This diff is collapsed.
......@@ -916,6 +916,7 @@ AC_MSG_RESULT($CFLAGSFORSHARED)
# checks for libraries
AC_CHECK_LIB(dl, dlopen) # Dynamic linking for SunOS/Solaris and SYSV
AC_CHECK_LIB(dld, shl_load) # Dynamic linking for HP-UX
AC_CHECK_LIB(rt, sem_init) # 'Real Time' functions on Solaris
# checks for system dependent C++ extensions support
case "$ac_sys_system" 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
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment