# # patch "ChangeLog" # from [dc631b0fd1d9bf355497521d61f0eaa173534dd4] # to [f486d8293895513ba37be49632b1f0f7e524566b] # # patch "configure.ac" # from [b2c3219e2a140dbc47379fd23cae0e918e5e71cc] # to [36a5ffa33d6c6fb1ae90da09d0699ae107140775] # ======================================================================== --- ChangeLog dc631b0fd1d9bf355497521d61f0eaa173534dd4 +++ ChangeLog f486d8293895513ba37be49632b1f0f7e524566b @@ -1,5 +1,10 @@ 2005-11-27 Julio M. Merino Vidal + * configure.ac: Do not use test's == operator because it is not + compatible with many implementations; use = instead. + +2005-11-27 Julio M. Merino Vidal + * configure.ac, ui.cc: Windows does have sync_with_iostream; the problem is that it does not behave correctly on some MinGW versions. Properly detect this condition. Thanks to Matthew Gregan for the ======================================================================== --- configure.ac b2c3219e2a140dbc47379fd23cae0e918e5e71cc +++ configure.ac 36a5ffa33d6c6fb1ae90da09d0699ae107140775 @@ -273,7 +273,7 @@ AS_HELP_STRING([--enable-pch], [use precompiled boost headers])) AM_CONDITIONAL(BUILD_PCH, false) -if test x"${enable_pch}" == x"yes" +if test x"${enable_pch}" = x"yes" then AC_MSG_CHECKING(for gcc with precompiled header support) gxx_version=`${CXX} -dumpversion`