mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-03-07 14:18:15 +08:00
Rename setlocale,textdomain,bindtextdomain to ldap_pvt_<function> (ITS#2513)
This commit is contained in:
parent
579e768046
commit
b7e6be414d
@ -15,6 +15,7 @@
|
|||||||
#define _AC_LOCALIZE_H
|
#define _AC_LOCALIZE_H
|
||||||
|
|
||||||
#ifdef LDAP_LOCALIZE
|
#ifdef LDAP_LOCALIZE
|
||||||
|
|
||||||
# include <locale.h>
|
# include <locale.h>
|
||||||
# include <libintl.h>
|
# include <libintl.h>
|
||||||
|
|
||||||
@ -22,15 +23,18 @@
|
|||||||
# define gettext_noop(s) s
|
# define gettext_noop(s) s
|
||||||
# define _(s) gettext(s)
|
# define _(s) gettext(s)
|
||||||
# define N_(s) gettext_noop(s)
|
# define N_(s) gettext_noop(s)
|
||||||
|
# define ldap_pvt_setlocale(c,l) ((void) setlocale(c, l))
|
||||||
|
# define ldap_pvt_textdomain(d) ((void) textdomain(d))
|
||||||
|
# define ldap_pvt_bindtextdomain(p,d) ((void) bindtextdomain(p, d))
|
||||||
|
|
||||||
#else
|
#else
|
||||||
/* disable i18n/l10n */
|
|
||||||
# define setlocale(c,l) /* empty */
|
|
||||||
|
|
||||||
|
/* disable i18n/l10n */
|
||||||
# define _(s) s
|
# define _(s) s
|
||||||
# define N_(s) s
|
# define N_(s) s
|
||||||
# define textdomain(d) /* empty */
|
# define ldap_pvt_setlocale(c,l) ((void) 0)
|
||||||
# define bindtextdomain(p,d) /* empty */
|
# define ldap_pvt_textdomain(d) ((void) 0)
|
||||||
|
# define ldap_pvt_bindtextdomain(p,d) ((void) 0)
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user