From 7b288fe17be3ffebd7297ac87072c442bf7039e5 Mon Sep 17 00:00:00 2001 From: Andrew Tridgell Date: Sun, 25 Nov 2001 00:10:28 +0000 Subject: stop popt from doing its own intl stuff (This used to be commit 1a5ef2425747c2e0c7cf28fc7712563039086100) --- source3/popt/poptint.h | 16 ---------------- 1 file changed, 16 deletions(-) (limited to 'source3/popt') 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 -#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 -- cgit