]> git.saurik.com Git - wxWidgets.git/commitdiff
Hopefully fixed library names generated by wx-config for OS/2's PM port.
authorStefan Neis <Stefan.Neis@t-online.de>
Fri, 10 Jun 2005 09:20:01 +0000 (09:20 +0000)
committerStefan Neis <Stefan.Neis@t-online.de>
Fri, 10 Jun 2005 09:20:01 +0000 (09:20 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@34626 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

configure.in

index 253a5e1b7e0f356080d343514c23e918d9288653..f03acc950533e6f42adf4e5343ce805ca33576af 100644 (file)
@@ -3636,7 +3636,11 @@ dnl library link name
 dnl These just save us from exporting lib_{unicode,debug,flavour}_suffix.
 dnl If we ever need to do that, we won't need to keep these.
 WX_LIBRARY_BASENAME_NOGUI="wx_base${WXBASEPORT}${lib_unicode_suffix}${lib_debug_suffix}${WX_LIB_FLAVOUR}"
-WX_LIBRARY_BASENAME_GUI="wx_${TOOLKIT_DIR}${TOOLKIT_VERSION}${WIDGET_SET}${lib_unicode_suffix}${lib_debug_suffix}${WX_LIB_FLAVOUR}"
+if test "${TOOLKIT_DIR}" = "os2"; then
+    WX_LIBRARY_BASENAME_GUI="wx_pm${WIDGET_SET}${lib_unicode_suffix}${lib_debug_suffix}${WX_LIB_FLAVOUR}"
+else
+    WX_LIBRARY_BASENAME_GUI="wx_${TOOLKIT_DIR}${TOOLKIT_VERSION}${WIDGET_SET}${lib_unicode_suffix}${lib_debug_suffix}${WX_LIB_FLAVOUR}"
+fi