Index: configure.in =================================================================== RCS file: /cvs/src/src/configure.in,v retrieving revision 1.158 diff -c -3 -r1.158 configure.in *** configure.in 12 Mar 2003 20:47:07 -0000 1.158 --- configure.in 18 Mar 2003 03:43:33 -0000 *************** *** 1824,1829 **** --- 1824,1838 ---- *) gxx_include_dir=${with_gxx_include_dir} ;; esac + # Check that msgfmt can be found in the PATH, or configure with + # --disable-nls to avoid a build failure. + AC_CHECK_PROG(MSGFMT, msgfmt, msgfmt, ) + if [ test "x$MSGFMT" = "x" ]; then + build_configargs="${build_configargs} --disable-nls" + host_configargs="${host_configargs} --disable-nls" + target_configargs="${target_configargs} --disable-nls" + fi + FLAGS_FOR_TARGET= case " $target_configdirs " in *" newlib "*)