diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2008-10-09 22:23:46 +0000 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2008-10-09 22:23:46 +0000 |
commit | 56d564129931b2e9ebb9522e84450c15c46859a6 (patch) | |
tree | 0da12b84b687d01f7062ed69568d275a28bc98cf | |
parent | 7ecfaccf19380cd50c5d467b080c9ed1f5dca3cc (diff) | |
download | postgresql-56d564129931b2e9ebb9522e84450c15c46859a6.tar.gz postgresql-56d564129931b2e9ebb9522e84450c15c46859a6.zip |
Un-break non-NLS builds.
-rw-r--r-- | src/include/c.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/include/c.h b/src/include/c.h index 51e6216f7c6..ca86067b9f9 100644 --- a/src/include/c.h +++ b/src/include/c.h @@ -12,7 +12,7 @@ * Portions Copyright (c) 1996-2008, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * - * $PostgreSQL: pgsql/src/include/c.h,v 1.229 2008/07/03 02:49:54 momjian Exp $ + * $PostgreSQL: pgsql/src/include/c.h,v 1.230 2008/10/09 22:23:46 tgl Exp $ * *------------------------------------------------------------------------- */ @@ -90,12 +90,13 @@ /* Must be before gettext() games below */ #include <locale.h> -#define _(x) gettext((x)) +#define _(x) gettext(x) #ifdef ENABLE_NLS #include <libintl.h> #else #define gettext(x) (x) +#define dgettext(d,x) (x) #endif /* |