Commit e0bbd2da e0bbd2da68283bc2ba224cdbd6d627327b70be84 by Sergey Poznyakoff

When using included libintl, use

only intl/libgnuintl.h. Using system default libintl.h
on systems with older libintls causes random coredumps.
1 parent ea8c58d3
......@@ -25,7 +25,11 @@
*/
#ifdef ENABLE_NLS
# ifdef WITH_INCLUDED_LIBINTL
# include <libgnuintl.h>
# else
# include <libintl.h>
# endif
# define _(String) gettext(String)
# define N_(String) String
#ifdef HAVE_LOCALE_H
......