diff options
author | Timo Sirainen <cras@irssi.org> | 2000-08-13 00:27:00 +0000 |
---|---|---|
committer | cras <cras@dbcabf3a-b0e7-0310-adc4-f8d773084564> | 2000-08-13 00:27:00 +0000 |
commit | 072b8a75e04233b0197fa044ad9775528a831779 (patch) | |
tree | 95d4c8beab3eb2cc9a9a4fe9b0eb31bbd0358fad /configure.in | |
parent | 9fe81dcaf05588e7fa29b2e66c7498841667b191 (diff) | |
download | irssi-072b8a75e04233b0197fa044ad9775528a831779.zip |
Disable NLS if msgfmt command isn't found.
git-svn-id: http://svn.irssi.org/repos/irssi/trunk@596 dbcabf3a-b0e7-0310-adc4-f8d773084564
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/configure.in b/configure.in index ed79037f..ff172ed1 100644 --- a/configure.in +++ b/configure.in @@ -334,6 +334,10 @@ dnl ** ALL_LINGUAS="pl fi pt_BR fr de" AM_GNU_GETTEXT +if test "x$MSGFMT" = "xno"; then + USE_NLS=no +fi + dnl ** common libraries needed by frontends COMMON_NOUI_LIBS="$PERL_LIBS $CHAT_LIBS $CORE_LIBS $INTLLIBS" COMMON_LIBS="$FE_COMMON_LIBS $COMMON_NOUI_LIBS" |