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 | 7b288fe17be3ffebd7297ac87072c442bf7039e5 (patch) | |
tree | 6964c53fde5135ef658918ece5f18764bff0b7e1 /source3/popt | |
parent | f2e969268d965338338be09d261bde31c5c2ff8b (diff) | |
download | samba-7b288fe17be3ffebd7297ac87072c442bf7039e5.tar.gz samba-7b288fe17be3ffebd7297ac87072c442bf7039e5.tar.bz2 samba-7b288fe17be3ffebd7297ac87072c442bf7039e5.zip |
stop popt from doing its own intl stuff
(This used to be commit 1a5ef2425747c2e0c7cf28fc7712563039086100)
Diffstat (limited to 'source3/popt')
-rw-r--r-- | source3/popt/poptint.h | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/source3/popt/poptint.h b/source3/popt/poptint.h index a1edb97c4b..1847ffafe6 100644 --- a/source3/popt/poptint.h +++ b/source3/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 |