From 58e8de26aa99eb713a50cdd872ff7c86b372e0fd Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Mon, 22 Feb 1999 19:48:34 +0000 Subject: [PATCH] dlopen() also exists under FreeBSD git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@1752 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- src/common/dynlib.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/common/dynlib.cpp b/src/common/dynlib.cpp index 409b45ff4e..57820da629 100644 --- a/src/common/dynlib.cpp +++ b/src/common/dynlib.cpp @@ -29,7 +29,7 @@ // TODO should be done by configure #if defined(__UNIX__) && !(defined(HAVE_DLOPEN) || defined(HAVE_SHLLOAD)) - #if defined(__LINUX__) || defined(__SOLARIS__) || defined(__SUNOS__) + #if defined(__LINUX__) || defined(__SOLARIS__) || defined(__SUNOS__) || defined(__FREEBSD__) #ifndef HAVE_DLOPEN #define HAVE_DLOPEN #endif