From: Martin v. Löwis Date: Thu, 2 May 2002 12:16:29 +0000 (+0000) Subject: Guard gettext and friends with HAVE_LIBINTL_H. Fixes #549907. X-Git-Tag: v2.3c1~5750 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=c6a7d7ef496995a29a163c2c72ec749c85274b72;p=thirdparty%2FPython%2Fcpython.git Guard gettext and friends with HAVE_LIBINTL_H. Fixes #549907. --- diff --git a/Modules/_localemodule.c b/Modules/_localemodule.c index e1f95a1a7d1f..06f53460298d 100644 --- a/Modules/_localemodule.c +++ b/Modules/_localemodule.c @@ -639,7 +639,7 @@ static struct PyMethodDef PyLocale_Methods[] = { {"nl_langinfo", (PyCFunction) PyLocale_nl_langinfo, METH_VARARGS, nl_langinfo__doc__}, #endif -#ifdef HAVE_LANGINFO_H +#ifdef HAVE_LIBINTL_H {"gettext",(PyCFunction)PyIntl_gettext,METH_VARARGS, gettext__doc__}, {"dgettext",(PyCFunction)PyIntl_dgettext,METH_VARARGS,