oops, fixed typo breaking iconv constness detection in the previous commit
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@13798 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
parent
22c3fb2ba3
commit
1c405bb510
3 changed files with 3 additions and 3 deletions
|
|
@ -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
|
||||
|
||||
|
|
|
|||
2
aclocal.m4
vendored
2
aclocal.m4
vendored
|
|
@ -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
|
||||
|
||||
|
|
|
|||
2
configure
vendored
2
configure
vendored
|
|
@ -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
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue