From: Tom Lane Date: Thu, 9 Oct 2008 22:23:46 +0000 (+0000) Subject: Un-break non-NLS builds. X-Git-Tag: recoveryinfrav9~544 X-Git-Url: http://git.postgresql.org/gitweb/irc:/static/gitweb.js?a=commitdiff_plain;h=a49e1561ff4c73a2f274fb67820bb6d237cd5003;p=users%2Fsimon%2Fpostgres.git Un-break non-NLS builds. --- diff --git a/src/include/c.h b/src/include/c.h index 2087c537da..d2dcaa783f 100644 --- a/src/include/c.h +++ b/src/include/c.h @@ -90,12 +90,13 @@ /* Must be before gettext() games below */ #include -#define _(x) gettext((x)) +#define _(x) gettext(x) #ifdef ENABLE_NLS #include #else #define gettext(x) (x) +#define dgettext(d,x) (x) #endif /*