summaryrefslogtreecommitdiff
path: root/include/libintl.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/libintl.h')
-rw-r--r--include/libintl.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/libintl.h b/include/libintl.h
index b1af2b4..154c532 100644
--- a/include/libintl.h
+++ b/include/libintl.h
@@ -21,14 +21,14 @@ char *bindtextdomain(const char *domainname, const char *dirname);
#undef gettext_noop
#define gettext_noop(X) X
-#ifdef LIBINTL_NOP_MACROS
+#ifndef LIBINTL_NO_MACROS
/* if these macros are defined, configure checks will detect libintl as
* built into the libc because test programs will work without -lintl.
* for example:
* checking for ngettext in libc ... yes
* the consequence is that -lintl will not be added to the LDFLAGS.
- * so if for some reason you do not want that libintl.a gets linked,
- * add -DLIBINTL_NOP_MACROS=1 to your CPPFLAGS. */
+ * so if for some reason you want that libintl.a gets linked,
+ * add -DLIBINTL_NO_MACROS=1 to your CPPFLAGS. */
#define gettext(X) ((char*) (X))
#define dgettext(dom, X) ((void)(dom), (char*) (X))