From 3f45f8bf3d2f4445f18aabd7c39a19996e3829ff Mon Sep 17 00:00:00 2001 From: Ron Lee Date: Tue, 12 Oct 2004 13:23:09 +0000 Subject: [PATCH] Eliminate the redundant no_wx var and the extra test to set it. Don't perform unrelated tests inside a single CHECK/RESULT block. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@29797 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- wxwin.m4 | 24 ++++++++++++++++-------- 1 file changed, 16 insertions(+), 8 deletions(-) diff --git a/wxwin.m4 b/wxwin.m4 index b5db4c310b..9bda660143 100644 --- a/wxwin.m4 +++ b/wxwin.m4 @@ -113,7 +113,6 @@ AC_DEFUN([AM_PATH_WXCONFIG], if test "$WX_CONFIG_PATH" != "no" ; then WX_VERSION="" - no_wx="" min_wx_version=ifelse([$1], ,2.2.1,$1) if test -z "$5" ; then @@ -158,11 +157,20 @@ AC_DEFUN([AM_PATH_WXCONFIG], fi fi - if test "x$wx_ver_ok" = x ; then - no_wx=yes - else + if test -n "$wx_ver_ok"; then + + AC_MSG_RESULT(yes (version $WX_VERSION)) WX_LIBS=`$WX_CONFIG_WITH_ARGS --libs` + + dnl is this even still appropriate? --static is a real option now + dnl and WX_CONFIG_WITH_ARGS is likely to contain it if that is + dnl what the user actually wants, making this redundant at best. + dnl For now keep it in case anyone actually used it in the past. + AC_MSG_CHECKING([for wxWindows static library]) WX_LIBS_STATIC=`$WX_CONFIG_WITH_ARGS --static --libs` + if test -n "$WX_LIBS_STATIC"; then + AC_MSG_RESULT(yes) + fi dnl starting with version 2.2.6 wx-config has --cppflags argument wx_has_cppflags="" @@ -199,12 +207,11 @@ AC_DEFUN([AM_PATH_WXCONFIG], WX_CFLAGS_ONLY=`echo $WX_CFLAGS | sed "s@^$WX_CPPFLAGS *@@"` WX_CXXFLAGS_ONLY=`echo $WX_CXXFLAGS | sed "s@^$WX_CFLAGS *@@"` fi - fi - if test "x$no_wx" = x ; then - AC_MSG_RESULT(yes (version $WX_VERSION)) - ifelse([$2], , :, [$2]) + ifelse([$2], , :, [$2]) + else + if test "x$WX_VERSION" = x; then dnl no wx-config at all AC_MSG_RESULT(no) @@ -218,6 +225,7 @@ AC_DEFUN([AM_PATH_WXCONFIG], WX_LIBS="" WX_LIBS_STATIC="" ifelse([$3], , :, [$3]) + fi fi