diff options
author | Martin Baulig <martin@home-of-linux.org> | 1998-12-15 23:11:05 +0000 |
---|---|---|
committer | Martin Baulig <martin@src.gnome.org> | 1998-12-15 23:11:05 +0000 |
commit | 3f1ffdacbb7a954b377bd760d04250c9e5e5ec28 (patch) | |
tree | 892075200bc0407fcf4788aebf67b97db4537ffd /acinclude.m4 | |
parent | cc7eba32a28e3a2d2f738ac385e26ab6f38882c1 (diff) | |
download | gtk+-3f1ffdacbb7a954b377bd760d04250c9e5e5ec28.tar.gz |
Make the gettext check for for libc5 systems.
1998-12-15 Martin Baulig <martin@home-of-linux.org>
* acinclude.m4: Make the gettext check for for libc5 systems.
Diffstat (limited to 'acinclude.m4')
-rw-r--r-- | acinclude.m4 | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/acinclude.m4 b/acinclude.m4 index 295b33801b..91e8d049fa 100644 --- a/acinclude.m4 +++ b/acinclude.m4 @@ -338,6 +338,13 @@ AC_DEFUN(AM_GTK_WITH_NLS, INSTOBJEXT=.mo fi fi + + # Added by Martin Baulig 12/15/98 for libc5 systems + if test "$gt_cv_func_gettext_libc" != "yes" \ + && test "$gt_cv_func_gettext_libintl" = "yes"; then + INTLLIBS=-lintl + LIBS=`echo $LIBS | sed -e 's/-lintl//'` + fi ]) if test "$CATOBJEXT" = "NONE"; then |