]> err.no Git - util-linux/commitdiff
lib/tt: fix langinfo build break
authorDavidlohr Bueso <dave@gnu.org>
Mon, 15 Nov 2010 11:55:16 +0000 (08:55 -0300)
committerKarel Zak <kzak@redhat.com>
Mon, 15 Nov 2010 12:37:27 +0000 (13:37 +0100)
When HAVE_LANGINFO_H is not defined we break the compilation in tt.c:

  CC     tt.o
tt.c: In function ‘tt_new_table’:
tt.c:142: warning: implicit declaration of function ‘nl_langinfo’
tt.c:142: error: ‘CODESET’ undeclared (first use in this function)
tt.c:142: error: (Each undeclared identifier is reported only once
tt.c:142: error: for each function it appears in.)
make: *** [tt.o] Error 1

Signed-off-by: Davidlohr Bueso <dave@gnu.org>
lib/tt.c

index 7d87bf54e0a6e88d0f07b5696769b2016313f5d2..d3436e10b21c71293420bc1b057b95e8ccbd039a 100644 (file)
--- a/lib/tt.c
+++ b/lib/tt.c
@@ -138,7 +138,7 @@ struct tt *tt_new_table(int flags)
        INIT_LIST_HEAD(&tb->tb_lines);
        INIT_LIST_HEAD(&tb->tb_columns);
 
-#ifdef HAVE_WIDECHAR
+#if defined(HAVE_WIDECHAR) && defined(HAVE_LANGINFO_H)
        if (!(flags & TT_FL_ASCII) && !strcmp(nl_langinfo(CODESET), "UTF-8"))
                tb->symbols = &utf8_tt_symbols;
        else