mirror of
https://github.com/gnustep/libs-base.git
synced 2025-04-23 00:41:02 +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
2e8bd670a8
commit
86c80a7622
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>
|
||||
|
||||
* Source/ObjectiveC2/runtime.c: fix a typo
|
||||
|
|
|
@ -3,6 +3,12 @@
|
|||
/* Define if building universal (internal helper macro) */
|
||||
#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 */
|
||||
#undef BROKEN_SO_REUSEADDR
|
||||
|
||||
|
@ -187,7 +193,7 @@
|
|||
*/
|
||||
#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
|
||||
|
||||
/* 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. */
|
||||
#undef PACKAGE_TARNAME
|
||||
|
||||
/* Define to the home page for this package. */
|
||||
#undef PACKAGE_URL
|
||||
|
||||
/* Define to the version of this package. */
|
||||
#undef PACKAGE_VERSION
|
||||
|
||||
|
|
|
@ -1420,10 +1420,8 @@ AC_SUBST(_GSC_S_LNG_LNG)
|
|||
# Setup dynamic linking
|
||||
#--------------------------------------------------------------------
|
||||
OBJC_SYS_DYNAMIC_LINKER()
|
||||
if test x"$ac_cv_lib_dl_dladdr" = xyes; then
|
||||
AC_DEFINE([HAVE_DLADDR], 1,
|
||||
[Define if you have the dladdr function in the dl library])
|
||||
fi
|
||||
# NOTE: libdl should be in LIBS now if it's available.
|
||||
AC_CHECK_FUNCS(dladdr)
|
||||
|
||||
#--------------------------------------------------------------------
|
||||
# Check whether Objective-C /really/ works
|
||||
|
|
Loading…
Reference in a new issue