diff --git a/build/aclocal/bakefile.m4 b/build/aclocal/bakefile.m4 index 438c071bf6..e9163e5a14 100644 --- a/build/aclocal/bakefile.m4 +++ b/build/aclocal/bakefile.m4 @@ -323,7 +323,7 @@ AC_DEFUN([AC_BAKEFILE_SHARED_LD], SHARED_LD_CXX="\${CXX} -dynamiclib -single_module -headerpad_max_install_names -o" fi - if test "x$GCC" == "xyes"; then + if test "x$GCC" = "xyes"; then PIC_FLAG="-dynamic -fPIC" fi if test "x$XLCC" = "xyes"; then diff --git a/configure b/configure index 283e60c3a5..1a88b20e34 100755 --- a/configure +++ b/configure @@ -20187,7 +20187,7 @@ $as_echo_n "checking SDK deployment version... " >&6; } MACOSX_SDK_PLIST_VERSION_MIN=`defaults read "$wxUSE_MACOSX_SDK/SDKSettings" buildSettings | grep '^ *"\{0,1\}MACOSX_DEPLOYMENT_TARGET"\{0,1\} *= *"\{0,1\}[^"]*"\{0,1\}; *$' | sed 's/^ *"\{0,1\}MACOSX_DEPLOYMENT_TARGET"\{0,1\} *= *"\{0,1\}\([^"]*\)"\{0,1\} *; *$/\1/'` # If that failed, try again with the new key - if test "x$MACOSX_SDK_PLIST_VERSION_MIN" == "x"; then + if test "x$MACOSX_SDK_PLIST_VERSION_MIN" = "x"; then MACOSX_SDK_PLIST_VERSION_MIN=`defaults read "$wxUSE_MACOSX_SDK/SDKSettings" DefaultProperties | grep '^ *"\{0,1\}MACOSX_DEPLOYMENT_TARGET"\{0,1\} *= *"\{0,1\}[^"]*"\{0,1\}; *$' | sed 's/^ *"\{0,1\}MACOSX_DEPLOYMENT_TARGET"\{0,1\} *= *"\{0,1\}\([^"]*\)"\{0,1\} *; *$/\1/'` @@ -40129,7 +40129,7 @@ $as_echo "$bakefile_cv_gcc31" >&6; } SHARED_LD_CXX="\${CXX} -dynamiclib -single_module -headerpad_max_install_names -o" fi - if test "x$GCC" == "xyes"; then + if test "x$GCC" = "xyes"; then PIC_FLAG="-dynamic -fPIC" fi if test "x$XLCC" = "xyes"; then diff --git a/configure.in b/configure.in index 08a9f46b1a..8a642c4c6b 100644 --- a/configure.in +++ b/configure.in @@ -1258,7 +1258,7 @@ dnl We need to quote the next line where we don't need macros and do need [] in MACOSX_SDK_PLIST_VERSION_MIN=`defaults read "$wxUSE_MACOSX_SDK/SDKSettings" buildSettings | grep '^ *"\{0,1\}MACOSX_DEPLOYMENT_TARGET"\{0,1\} *= *"\{0,1\}[^"]*"\{0,1\}; *$' | sed 's/^ *"\{0,1\}MACOSX_DEPLOYMENT_TARGET"\{0,1\} *= *"\{0,1\}\([^"]*\)"\{0,1\} *; *$/\1/'` ] # If that failed, try again with the new key - if test "x$MACOSX_SDK_PLIST_VERSION_MIN" == "x"; then + if test "x$MACOSX_SDK_PLIST_VERSION_MIN" = "x"; then [ MACOSX_SDK_PLIST_VERSION_MIN=`defaults read "$wxUSE_MACOSX_SDK/SDKSettings" DefaultProperties | grep '^ *"\{0,1\}MACOSX_DEPLOYMENT_TARGET"\{0,1\} *= *"\{0,1\}[^"]*"\{0,1\}; *$' | sed 's/^ *"\{0,1\}MACOSX_DEPLOYMENT_TARGET"\{0,1\} *= *"\{0,1\}\([^"]*\)"\{0,1\} *; *$/\1/'` ] diff --git a/docs/changes.txt b/docs/changes.txt index 2efcdb59bf..4ac5348811 100644 --- a/docs/changes.txt +++ b/docs/changes.txt @@ -96,7 +96,7 @@ All: - Make wxList and wxVector iterators conform to input iterator requirements. - Fix MT-safety problem when reading and writing from wxSocket (jkubalik). - Fix build issues under HaikuOS (mill-j). -- Fix problem with wx-config installation under NetBSD (wiz). +- Fix problem with wx-config installation and use under NetBSD (wiz). All (GUI):