GNOME Bugzilla – Bug 317444
imime.c: GETTEXT_PACKAGE is not defined.
Last modified: 2005-09-28 16:03:37 UTC
Please describe the problem: When imime.c is compiled, GETTEXT_PACKAGE is used in glib\gi18n-lib.h before defined. So <config.h> should be included like other im*.c files. Steps to reproduce: 1. compile imime.c Actual results: Following message is displayed. (Visual C++ 6.0) gi18n-lib.h(27) : fatal error C1189: #error : You must define GETTEXT_PACKAGE before including gi18n-lib.h. Expected results: Add #include <config.h>. Does this happen every time? every time Other information:
Thanks, fixed in CVS: 2005-09-28 Tor Lillqvist <tml@novell.com> * modules/input/imime.c: Include <config.h>. (#317444, Kazuki Iwamoto)