You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
603 B
28 lines
603 B
Index: popt/poptint.h |
|
--- popt/poptint.h.orig 2004-02-08 00:17:57.000000000 +0100 |
|
+++ popt/poptint.h 2006-10-24 11:33:43.515166764 +0200 |
|
@@ -64,24 +64,8 @@ |
|
|
|
#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
|
|
|