mirror of
https://github.com/gnustep/libs-base.git
synced 2025-05-10 08:10:49 +00:00
* configure.ac: Check for dladdr without requiring -ldl
* configure, Headers/Additions/GNUstepBase/config.h.in: Regen git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@31272 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
d7a7393a0b
commit
30d632b4c6
4 changed files with 3007 additions and 16623 deletions
|
@ -1,3 +1,8 @@
|
||||||
|
2010-09-10 Adam Fedor <fedor@gnu.org>
|
||||||
|
|
||||||
|
* configure.ac: Check for dladdr without requiring -ldl
|
||||||
|
* configure, Headers/Additions/GNUstepBase/config.h.in: Regen
|
||||||
|
|
||||||
2010-09-09 Eric Wasylishen <ewasylishen@gmail.com>
|
2010-09-09 Eric Wasylishen <ewasylishen@gmail.com>
|
||||||
|
|
||||||
* Source/ObjectiveC2/runtime.c: fix a typo
|
* Source/ObjectiveC2/runtime.c: fix a typo
|
||||||
|
|
|
@ -3,6 +3,12 @@
|
||||||
/* Define if building universal (internal helper macro) */
|
/* Define if building universal (internal helper macro) */
|
||||||
#undef AC_APPLE_UNIVERSAL_BUILD
|
#undef AC_APPLE_UNIVERSAL_BUILD
|
||||||
|
|
||||||
|
/* The normal alignment of `pthread_cond_t', in bytes. */
|
||||||
|
#undef ALIGNOF_PTHREAD_COND_T
|
||||||
|
|
||||||
|
/* The normal alignment of `pthread_mutex_t', in bytes. */
|
||||||
|
#undef ALIGNOF_PTHREAD_MUTEX_T
|
||||||
|
|
||||||
/* Define if SO_REUSEADDR is broken on this system */
|
/* Define if SO_REUSEADDR is broken on this system */
|
||||||
#undef BROKEN_SO_REUSEADDR
|
#undef BROKEN_SO_REUSEADDR
|
||||||
|
|
||||||
|
@ -187,7 +193,7 @@
|
||||||
*/
|
*/
|
||||||
#undef HAVE_DIRENT_H
|
#undef HAVE_DIRENT_H
|
||||||
|
|
||||||
/* Define if you have the dladdr function in the dl library */
|
/* Define to 1 if you have the `dladdr' function. */
|
||||||
#undef HAVE_DLADDR
|
#undef HAVE_DLADDR
|
||||||
|
|
||||||
/* Define to 1 if you have the <dns_sd.h> header file. */
|
/* Define to 1 if you have the <dns_sd.h> header file. */
|
||||||
|
@ -660,6 +666,9 @@
|
||||||
/* Define to the one symbol short name of this package. */
|
/* Define to the one symbol short name of this package. */
|
||||||
#undef PACKAGE_TARNAME
|
#undef PACKAGE_TARNAME
|
||||||
|
|
||||||
|
/* Define to the home page for this package. */
|
||||||
|
#undef PACKAGE_URL
|
||||||
|
|
||||||
/* Define to the version of this package. */
|
/* Define to the version of this package. */
|
||||||
#undef PACKAGE_VERSION
|
#undef PACKAGE_VERSION
|
||||||
|
|
||||||
|
|
|
@ -1420,10 +1420,8 @@ AC_SUBST(_GSC_S_LNG_LNG)
|
||||||
# Setup dynamic linking
|
# Setup dynamic linking
|
||||||
#--------------------------------------------------------------------
|
#--------------------------------------------------------------------
|
||||||
OBJC_SYS_DYNAMIC_LINKER()
|
OBJC_SYS_DYNAMIC_LINKER()
|
||||||
if test x"$ac_cv_lib_dl_dladdr" = xyes; then
|
# NOTE: libdl should be in LIBS now if it's available.
|
||||||
AC_DEFINE([HAVE_DLADDR], 1,
|
AC_CHECK_FUNCS(dladdr)
|
||||||
[Define if you have the dladdr function in the dl library])
|
|
||||||
fi
|
|
||||||
|
|
||||||
#--------------------------------------------------------------------
|
#--------------------------------------------------------------------
|
||||||
# Check whether Objective-C /really/ works
|
# Check whether Objective-C /really/ works
|
||||||
|
|
Loading…
Reference in a new issue