[MPlayer-cvslog] r32366 - trunk/configure
diego
subversion at mplayerhq.hu
Sun Sep 26 21:01:37 CEST 2010
Author: diego
Date: Sun Sep 26 21:01:37 2010
New Revision: 32366
Log:
Fix the way the dynamic loader check adds linker flags.
Modified:
trunk/configure
Modified: trunk/configure
==============================================================================
--- trunk/configure Sun Sep 26 20:24:14 2010 (r32365)
+++ trunk/configure Sun Sep 26 21:01:37 2010 (r32366)
@@ -3526,8 +3526,8 @@ fi
echocheck "dynamic loader"
_dl=no
-for _ld_dl in "" -ldl; do
- function_check dlfcn.h 'dlopen("", 0)' $_ld_dl && _ld_dl="$_ld_tmp" && _dl=yes && break
+for _ld_tmp in "" -ldl; do
+ function_check dlfcn.h 'dlopen("", 0)' $_ld_tmp && _ld_dl="$_ld_tmp" && _dl=yes && break
done
if test "$_dl" = yes ; then
def_dl='#define HAVE_LIBDL 1'
More information about the MPlayer-cvslog
mailing list