]> git.saurik.com Git - wxWidgets.git/commitdiff
Fix for detection of motif in the default library path
authorMichael Wetherell <mike.wetherell@ntlworld.com>
Mon, 19 Sep 2005 18:41:41 +0000 (18:41 +0000)
committerMichael Wetherell <mike.wetherell@ntlworld.com>
Mon, 19 Sep 2005 18:41:41 +0000 (18:41 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@35598 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

configure.in

index 9dec117684bb4531db486537a52fbd75afcc629e..82dd3cb4d0fc295e983b0be6e7f120effd0a8b8d 100644 (file)
@@ -3101,6 +3101,8 @@ libraries returned by 'pkg-config gtk+-2.0 --libs' or 'gtk-config
             dnl path -- try to compile a test program to check for this
             save_CFLAGS=$CFLAGS
             CFLAGS="$CFLAGS $TOOLKIT_INCLUDE"
             dnl path -- try to compile a test program to check for this
             save_CFLAGS=$CFLAGS
             CFLAGS="$CFLAGS $TOOLKIT_INCLUDE"
+            save_LIBS="$LIBS"
+            LIBS="$GUI_TK_LIBRARY -lXm -lXmu -lXext -lX11"
 
             AC_TRY_LINK(
                 [
 
             AC_TRY_LINK(
                 [
@@ -3115,12 +3117,13 @@ libraries returned by 'pkg-config gtk+-2.0 --libs' or 'gtk-config
                     COMPILED_X_PROGRAM=1
                 ],
                 [
                     COMPILED_X_PROGRAM=1
                 ],
                 [
-                        AC_MSG_RESULT(no)
-                        AC_MSG_ERROR(please set LDFLAGS to contain the location of libXm)
-                    ]
-                )
+                    AC_MSG_RESULT(no)
+                    AC_MSG_ERROR(please set LDFLAGS to contain the location of libXm)
+                ]
+            )
 
             CFLAGS=$save_CFLAGS
 
             CFLAGS=$save_CFLAGS
+            LIBS="$save_LIBS"
         fi
 
         AC_MSG_CHECKING([if we need -lXp and/or -lSM -lICE])
         fi
 
         AC_MSG_CHECKING([if we need -lXp and/or -lSM -lICE])