Changeset 2156 for ThirdParty/ASL
- Timestamp:
- Mar 30, 2011 4:42:38 PM (10 years ago)
- Location:
- ThirdParty/ASL/trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
ThirdParty/ASL/trunk/configure
r2154 r2156 1748 1748 1749 1749 svn_rev_tmp=`LANG=en_EN svnversion $srcdir 2>/dev/null` 1750 if test " $ASL_SVN_REV" != exported; then1750 if test "x$svn_rev_tmp" != xexported -a "x$svn_rev_tmp" != x; then 1751 1751 ASL_SVN_REV=`echo $svn_rev_tmp | sed -n -e 's/^[0-9]*://' -e 's/\([0-9]\)[^0-9]*$/\1/p'` 1752 1752 … … 20363 20363 echo "${ECHO_T}$ac_cv_lib_dl_dlopen" >&6 20364 20364 if test $ac_cv_lib_dl_dlopen = yes; then 20365 20366 ASL_PCLIBS="-ldl $ASL_PCLIBS" 20367 20368 cat >>confdefs.h <<\_ACEOF 20369 #define HAVE_DLFCN 1 20370 _ACEOF 20371 20372 20365 ASL_PCLIBS="-ldl $ASL_PCLIBS" 20373 20366 fi 20374 20367 -
ThirdParty/ASL/trunk/configure.ac
r2154 r2156 117 117 118 118 # Check for dlopen, ASL uses it to load userdefined function libraries 119 AC_CHECK_LIB(dl,[dlopen],[ 120 ASL_PCLIBS="-ldl $ASL_PCLIBS" 121 AC_DEFINE([HAVE_DLFCN],[1],[Define to 1 if dlfcn support is available]) 122 ]) 119 AC_CHECK_LIB(dl,[dlopen],[ASL_PCLIBS="-ldl $ASL_PCLIBS"]) 123 120 124 121 # Back to whatever language we were in.
Note: See TracChangeset
for help on using the changeset viewer.