summaryrefslogtreecommitdiff
path: root/libpurple/core.c
diff options
context:
space:
mode:
authorMike Ruprecht <cmaiku@gmail.com>2018-12-08 22:02:38 -0600
committerMike Ruprecht <cmaiku@gmail.com>2018-12-08 22:02:38 -0600
commit9278ec93c959ce3b46644de67e751372e2ea9379 (patch)
tree7bd78ac9d02f1a60220cf2e0674645ea85a43f3c /libpurple/core.c
parente68040213b7fe84742757481599fca8378e23a10 (diff)
downloadpidgin-9278ec93c959ce3b46644de67e751372e2ea9379.tar.gz
Remove ENABLE_NLS guards, making 'nls' only affect po/ directory
This patch makes the 'nls' build option only enable/disable building the po/ directory, and consequently .desktop files, by removing the ENABLE_NLS guards and config definition from the codebase.
Diffstat (limited to 'libpurple/core.c')
-rw-r--r--libpurple/core.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/libpurple/core.c b/libpurple/core.c
index c0b90364f7..6a8e9ca190 100644
--- a/libpurple/core.c
+++ b/libpurple/core.c
@@ -95,9 +95,8 @@ purple_core_init(const char *ui)
g_return_val_if_fail(ui != NULL, FALSE);
g_return_val_if_fail(purple_get_core() == NULL, FALSE);
-#ifdef ENABLE_NLS
bindtextdomain(PACKAGE, PURPLE_LOCALEDIR);
-#endif
+
#ifdef _WIN32
wpurple_init();
#endif