do not use dladdr on MinGW platform

SVN revision: 34905
This commit is contained in:
doursse 2008-06-25 06:47:11 +00:00 committed by doursse
parent 23488e9a60
commit 3d95a7bf7e
1 changed files with 4 additions and 1 deletions

View File

@ -134,10 +134,13 @@ fi
dlopen_libs=""
case "$host_os" in
mingw*|cegcc*)
mingw32ce*|cegcc*)
dnl managed by evil
AC_DEFINE(HAVE_DLADDR)
;;
mingw*)
dnl nothing on mingw platform
;;
*)
AC_CHECK_FUNCS(dlopen, res=yes, res=no)
if test "x$res" = "xyes"; then