Mail Archives: djgpp-workers/2001/10/20/13:56:34
Hello,
Build process of gettext-0.10.40 fails in testsuite because it redefines
gettext macros to something else. However, libgnuintl.h unconditionally
defines them on DJGPP, while IMHO this is required iff conio.h has been
previously defined. The tiny patch below allows building all programs in
the testsuite.
Laurynas
--- libgnuintl.h.old Mon Sep 3 14:00:50 2001
+++ libgnuintl.h Sat Oct 20 18:46:32 2001
@@ -37,7 +37,7 @@
/* Resolve a platform specific conflict on DJGPP. GNU gettext takes
precedence over _conio_gettext. */
-#ifdef __DJGPP__
+#if defined __DJGPP__ && defined __dj_include_conio_h_
# undef gettext
# define gettext gettext
#endif
- Raw text -