[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
ENABLE_NLS not means libintl.h, v2.0.21
From: |
Andrey A. Chernov |
Subject: |
ENABLE_NLS not means libintl.h, v2.0.21 |
Date: |
Sat, 8 Jun 2002 14:26:44 +0400 |
User-agent: |
Mutt/1.3.28i |
In some places this code used:
#if ENABLE_NLS
#include <libintl.h>
...
But in other places, like in sort, ENABLE_NLS used to activate collating &
other POSIX locale stuff not related to libintl at all.
Please always use
if (HAVE_LIBINTL_H && ENABLE_NLS)
#include <libintl.h>
...
instead.
--
Andrey A. Chernov
http://ache.pp.ru/
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- ENABLE_NLS not means libintl.h, v2.0.21,
Andrey A. Chernov <=