atspi: handle build without gettext support.
authorCedric Bail <cedric.bail@free.fr>
Sun, 8 Dec 2013 04:31:24 +0000 (13:31 +0900)
committerCedric Bail <cedric.bail@free.fr>
Sun, 8 Dec 2013 04:31:24 +0000 (13:31 +0900)
legacy/elementary/src/lib/elm_atspi_bridge.c

index df976cf..79f5e26 100644 (file)
@@ -35,6 +35,7 @@ _role_name_get(const Eldbus_Service_Interface *iface EINA_UNUSED, const Eldbus_M
    return ret;
 }
 
+#ifdef ENABLE_NLS
 static Eldbus_Message *
 _role_localized_name_get(const Eldbus_Service_Interface *iface EINA_UNUSED, const Eldbus_Message *msg)
 {
@@ -44,11 +45,16 @@ _role_localized_name_get(const Eldbus_Service_Interface *iface EINA_UNUSED, cons
 
    return ret;
 }
+#endif
 
 static const Eldbus_Method accessible_methods[] = {
    { "GetRole", NULL, ELDBUS_ARGS({"u", "Role"}), _role_get, 0 },
    { "GetRoleName", NULL, ELDBUS_ARGS({"s", "Name"}), _role_name_get, 0 },
+#ifdef ENABLE_NLS
    { "GetLocalizedRoleName", NULL, ELDBUS_ARGS({"s", "LocalizedName"}), _role_localized_name_get, 0},
+#else
+   { "GetLocalizedRoleName", NULL, ELDBUS_ARGS({"s", "LocalizedName"}), _role_name_get, 0},
+#endif
    { NULL, NULL, NULL, NULL, 0 }
 };