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 @@ ...@@ -25,7 +25,11 @@
25 */ 25 */
26 26
27 #ifdef ENABLE_NLS 27 #ifdef ENABLE_NLS
28 # include <libintl.h> 28 # ifdef WITH_INCLUDED_LIBINTL
29 # include <libgnuintl.h>
30 # else
31 # include <libintl.h>
32 # endif
29 # define _(String) gettext(String) 33 # define _(String) gettext(String)
30 # define N_(String) String 34 # define N_(String) String
31 #ifdef HAVE_LOCALE_H 35 #ifdef HAVE_LOCALE_H
......