diff options
author | Andrew Tridgell <tridge@samba.org> | 2001-11-25 00:10:28 +0000 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 2001-11-25 00:10:28 +0000 |
commit | 1a5ef2425747c2e0c7cf28fc7712563039086100 (patch) | |
tree | f9b97bf9d5fff71e50b6695a366415a811f654db /source/popt | |
parent | 69d256af4612f5c1277202eb8a7ef37eb6bb55f4 (diff) | |
download | samba-1a5ef2425747c2e0c7cf28fc7712563039086100.tar.gz |
stop popt from doing its own intl stuff
Diffstat (limited to 'source/popt')
-rw-r--r-- | source/popt/poptint.h | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/source/popt/poptint.h b/source/popt/poptint.h index a1edb97c4b0..1847ffafe67 100644 --- a/source/popt/poptint.h +++ b/source/popt/poptint.h @@ -64,24 +64,8 @@ struct poptContext_s { #define xfree(_a) free((void *)_a) -#ifdef HAVE_LIBINTL_H -#include <libintl.h> -#endif - -#if defined(HAVE_GETTEXT) && !defined(__LCLINT__) -#define _(foo) gettext(foo) -#else -#define _(foo) (foo) -#endif - -#if defined(HAVE_DGETTEXT) && !defined(__LCLINT__) -#define D_(dom, str) dgettext(dom, str) -#define POPT_(foo) D_("popt", foo) -#else #define POPT_(foo) (foo) #define D_(dom, str) (str) -#endif - #define N_(foo) (foo) #endif |