From 5ec7c94a954f7c28c3b1a85dcccd5f8f32234897 Mon Sep 17 00:00:00 2001 From: Edin Kadribasic Date: Thu, 29 Jul 2004 22:23:23 +0000 Subject: [PATCH] Fixed bug #29264. Newer libintl redefines function names so all PHP gettext function names become prefixed with libintl_ --- ext/gettext/gettext.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/ext/gettext/gettext.c b/ext/gettext/gettext.c index 888baa384b..e455b8536a 100644 --- a/ext/gettext/gettext.c +++ b/ext/gettext/gettext.c @@ -27,7 +27,6 @@ #if HAVE_LIBINTL #include -#include #include "ext/standard/info.h" #include "php_gettext.h" @@ -57,6 +56,8 @@ function_entry php_gettext_functions[] = { }; /* }}} */ +#include + zend_module_entry php_gettext_module_entry = { STANDARD_MODULE_HEADER, "gettext", -- 2.40.0