]> git.saurik.com Git - wxWidgets.git/commitdiff
fix for HP-UX
authorKarsten Ballüder <ballueder@usa.net>
Thu, 29 Jul 1999 16:12:23 +0000 (16:12 +0000)
committerKarsten Ballüder <ballueder@usa.net>
Thu, 29 Jul 1999 16:12:23 +0000 (16:12 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@3199 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/common/dynlib.cpp

index f0ac7a15166a14df1497ae6d0c27636adc582926..228cc67835076b870f01312eda39b99a06de11c9 100644 (file)
@@ -183,12 +183,16 @@ void *wxLibrary::GetSymbol(const wxString& symbname)
 wxDllType
 wxDllLoader::GetProgramHandle(void)
 {
-#ifdef __UNIX__
-    return dlopen(NULL, RTLD_NOW/*RTLD_LAZY*/);
+#if defined( HAVE_DLOPEN )
+   // optain handle for main program
+   return dlopen(NULL, RTLD_NOW/*RTLD_LAZY*/); 
+#elif defined (HAVE_SHL_LOAD)
+   // shl_findsymbol with NULL handle looks up in main program
+   return 0; 
 #else
-    wxFAIL_MSG(_("This method is not implemented under Windows or OS/2"));
-
-    return 0;
+#warning "Please implement this for your system!"
+   wxFAIL_MSG(_("This method is not implemented under Windows or OS/2"));
+   return 0;
 #endif
 }