diff options
author | Luca Bruno <lethalman88@gmail.com> | 2008-10-11 10:00:50 +0200 |
---|---|---|
committer | Luca Bruno <lethalman88@gmail.com> | 2008-10-11 10:00:50 +0200 |
commit | 8cd53bd4fe839c3135696ecbdca45909130a2dd9 (patch) | |
tree | 3eda70c81a6a397193114ce98b79831b58432f75 /buildlib | |
parent | d320fdc3539f686e690a4ae0cb3f941b0e1a0456 (diff) | |
download | apt-8cd53bd4fe839c3135696ecbdca45909130a2dd9.tar.gz |
* Compilation fixes and portability improvement for compiling APT against non-GNU libc
Diffstat (limited to 'buildlib')
-rw-r--r-- | buildlib/apti18n.h.in | 2 | ||||
-rw-r--r-- | buildlib/inttypes.h.in | 7 |
2 files changed, 9 insertions, 0 deletions
diff --git a/buildlib/apti18n.h.in b/buildlib/apti18n.h.in index a5b91b1e..e7beceb0 100644 --- a/buildlib/apti18n.h.in +++ b/buildlib/apti18n.h.in @@ -18,6 +18,8 @@ #else // apt will not use any gettext # define setlocale(a, b) +# define textdomain(a) +# define bindtextdomain(a, b) # define _(x) x # define N_(x) x #endif diff --git a/buildlib/inttypes.h.in b/buildlib/inttypes.h.in index 3be72079..3b43b767 100644 --- a/buildlib/inttypes.h.in +++ b/buildlib/inttypes.h.in @@ -4,6 +4,13 @@ #include <config.h> +#undef int32_t +#undef uint32_t +#undef int16_t +#undef uint16_t +#undef int8_t +#undef uint8_t + /* Generate the fixed bit size types */ #if SIZEOF_INT == 4 typedef int int32_t; |