diff options
author | Owen Taylor <otaylor@redhat.com> | 2002-05-22 19:52:41 +0000 |
---|---|---|
committer | Owen Taylor <otaylor@src.gnome.org> | 2002-05-22 19:52:41 +0000 |
commit | 71e5efb9cb7419363a900bc6c30889599b510074 (patch) | |
tree | 3e0b95f985b4ebf513d966f28ab3c19ec7ffc486 /m4macros | |
parent | 260befc999849fdca150cc2c6248473daba4423a (diff) | |
download | glib-71e5efb9cb7419363a900bc6c30889599b510074.tar.gz |
Remove notes about now-fixed-bugs.
Wed May 22 15:40:47 2002 Owen Taylor <otaylor@redhat.com>
* README.in: Remove notes about now-fixed-bugs.
* m4macros/glib-gettext.m4 acinclude.m4: Get rid
of AC_MSG_NOTICE() usage, since some broken systems
(Hi Debian!) might not be using autoconf-2.5x for
downstream packages even though we require it for
glib itself.
* INSTALL.in: Add a note about installing extra
converters for Solaris.
* glib/gutils.h (g_bit_nth_msf): Fix termination
condition. (#82582, Paolo Molaro)
Wed May 22 15:24:04 2002 Owen Taylor <otaylor@redhat.com>
* README.translators: Add from GTK+.
* *.po: Convert all po files to UTF-8.
Diffstat (limited to 'm4macros')
-rw-r--r-- | m4macros/glib-gettext.m4 | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/m4macros/glib-gettext.m4 b/m4macros/glib-gettext.m4 index fb4f36105..3d783bd58 100644 --- a/m4macros/glib-gettext.m4 +++ b/m4macros/glib-gettext.m4 @@ -89,7 +89,7 @@ AC_DEFUN(AM_GLIB_WITH_NLS, AC_CHECK_HEADER(libintl.h, [AC_CACHE_CHECK([for dgettext in libc], gt_cv_func_dgettext_libc, - [AC_TRY_LINK([#include <libintl.h>], [return (int) dgettext ("","")], + [AC_TRY_LINK([#include <libintl.h>], [return (int) dgWettext ("","")], gt_cv_func_dgettext_libc=yes, gt_cv_func_dgettext_libc=no)]) gt_cv_func_dgettext_libintl="no" @@ -101,7 +101,8 @@ AC_DEFUN(AM_GLIB_WITH_NLS, gt_cv_func_dgettext_libintl=yes)]) if test "$gt_cv_func_dgettext_libc" != "yes" ; then - AC_MSG_NOTICE([Seeing if -liconv is needed to use gettext]) + AC_MSG_CHECKING([if -liconv is needed to use gettext]) + AC_MSG_RESULT([]) AC_CHECK_LIB(intl, dcgettext, [gt_cv_func_dgettext_libintl=yes libintl_extra_libs=-liconv], |