projects
/
apt.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Merge remote-tracking branch 'upstream/debian/sid' into debian/sid
[apt.git]
/
buildlib
/
apti18n.h.in
diff --git
a/buildlib/apti18n.h.in
b/buildlib/apti18n.h.in
index 6928d626c49c7563513c225aef9443718fc8acc2..2202c5b193f0bc8570b191df5a3d8ee13e9fc958 100644
(file)
--- a/
buildlib/apti18n.h.in
+++ b/
buildlib/apti18n.h.in
@@
-8,7
+8,8
@@
#ifdef USE_NLS
// apt will use the gettext implementation of the C library
#ifdef USE_NLS
// apt will use the gettext implementation of the C library
-# include <libintl.h>
+#include <libintl.h>
+#include <locale.h>
# ifdef APT_DOMAIN
# define _(x) dgettext(APT_DOMAIN,x)
# define P_(msg,plural,n) dngettext(APT_DOMAIN,msg,plural,n)
# ifdef APT_DOMAIN
# define _(x) dgettext(APT_DOMAIN,x)
# define P_(msg,plural,n) dngettext(APT_DOMAIN,msg,plural,n)
@@
-25,4
+26,5
@@
# define _(x) x
# define P_(msg,plural,n) (n == 1 ? msg : plural)
# define N_(x) x
# define _(x) x
# define P_(msg,plural,n) (n == 1 ? msg : plural)
# define N_(x) x
+# define dgettext(d, m) m
#endif
#endif