]> git.saurik.com Git - wxWidgets.git/commitdiff
oops, fixed typo breaking iconv constness detection in the previous commit
authorVadim Zeitlin <vadim@wxwidgets.org>
Fri, 25 Jan 2002 12:24:44 +0000 (12:24 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Fri, 25 Jan 2002 12:24:44 +0000 (12:24 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@13798 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

acinclude.m4
aclocal.m4
configure

index 0f77f7d51eeda7c62168db9a4c41b92910fc4c95..455269592ac3e0c3020788c19508c4caf5d2cf54 100644 (file)
@@ -396,7 +396,7 @@ size_t iconv();
     )
 
     iconv_const=
-    if test "x$wx_cv_func_iconv_const" != "xyes"; then
+    if test "x$wx_cv_func_iconv_const" = "xyes"; then
         iconv_const="const"
     fi
 
index 95e83ca11f96e9ac66d983b386fe0069eb46003b..5897275add59554d79235bbeb3c5e8af708f36fc 100644 (file)
@@ -408,7 +408,7 @@ size_t iconv();
     )
 
     iconv_const=
-    if test "x$wx_cv_func_iconv_const" != "xyes"; then
+    if test "x$wx_cv_func_iconv_const" = "xyes"; then
         iconv_const="const"
     fi
 
index 875ebebf09ea9e342a2ba929f6ba30f458d9c67e..ff903f0f18913aaa5d09a1fc0c713e1bca7f9fa0 100755 (executable)
--- a/configure
+++ b/configure
@@ -15237,7 +15237,7 @@ fi
 echo "$ac_t""$wx_cv_func_iconv_const" 1>&6
 
     iconv_const=
-    if test "x$wx_cv_func_iconv_const" != "xyes"; then
+    if test "x$wx_cv_func_iconv_const" = "xyes"; then
         iconv_const="const"
     fi