From: ewt Date: Fri, 14 Feb 1997 02:04:37 +0000 (+0000) Subject: if we're not using GNU gettext #define the i18n stuff away (and get X-Git-Tag: rpm-4.4-release~4323 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=a7afd38d35cf918d91989d6639e6291bc93a8a1f;p=platform%2Fupstream%2Frpm.git if we're not using GNU gettext #define the i18n stuff away (and get rid of the gettextstub.c stuff as well) CVS patchset: 1412 CVS date: 1997/02/14 02:04:37 --- diff --git a/misc/intl.h b/misc/intl.h index 5342e9b..486093e 100644 --- a/misc/intl.h +++ b/misc/intl.h @@ -6,8 +6,8 @@ #include #define _(String) gettext((String)) #else -void bindtextdomain(const char * package, const char * dir); -void textdomain(const char * package); +#define bindtextdomain(foo, bar) +#define textdomain(foo) #define _(String) (String) #endif