diff options
author | Dan McGee <dan@archlinux.org> | 2007-10-22 23:52:55 -0500 |
---|---|---|
committer | Dan McGee <dan@archlinux.org> | 2007-10-22 23:52:55 -0500 |
commit | 8b1fb61df26649e1dec626ef9120fc787a831fcc (patch) | |
tree | 399e6558ad5e9a4f8d283b771b1a9837254b32b7 /lib | |
parent | 0c4f7d821c1cd4ce559476595e2108f75b3dde7c (diff) |
Ensure all localization stuff is correctly guarded
Anything dealing with libintl and localization should be correctly guarded
inside an ENABLE_NLS block on both the pacman and libalpm sides.
Signed-off-by: Dan McGee <dan@archlinux.org>
Diffstat (limited to 'lib')
-rw-r--r-- | lib/libalpm/alpm.c | 3 | ||||
-rw-r--r-- | lib/libalpm/util.h | 2 |
2 files changed, 5 insertions, 0 deletions
diff --git a/lib/libalpm/alpm.c b/lib/libalpm/alpm.c index 20d4a746..7bbcc869 100644 --- a/lib/libalpm/alpm.c +++ b/lib/libalpm/alpm.c @@ -52,7 +52,10 @@ int SYMEXPORT alpm_initialize(void) if(handle == NULL) { RET_ERR(PM_ERR_MEMORY, -1); } + +#ifdef ENABLE_NLS bindtextdomain("libalpm", LOCALEDIR); +#endif return(0); } diff --git a/lib/libalpm/util.h b/lib/libalpm/util.h index 3154f470..d8e6cbd8 100644 --- a/lib/libalpm/util.h +++ b/lib/libalpm/util.h @@ -25,6 +25,8 @@ #ifndef _ALPM_UTIL_H #define _ALPM_UTIL_H +#include "config.h" + #include <stdio.h> #include <stdarg.h> #include <time.h> |