summaryrefslogtreecommitdiff
path: root/libs/ardour
diff options
context:
space:
mode:
Diffstat (limited to 'libs/ardour')
-rw-r--r--libs/ardour/gettext.h2
-rw-r--r--libs/ardour/globals.cc2
2 files changed, 2 insertions, 2 deletions
diff --git a/libs/ardour/gettext.h b/libs/ardour/gettext.h
index 2645402e95..339c74ffe7 100644
--- a/libs/ardour/gettext.h
+++ b/libs/ardour/gettext.h
@@ -20,7 +20,7 @@
#define _LIBGETTEXT_H 1
/* NLS can be disabled through the configure --disable-nls option. */
-#ifdef ENABLE_NLS
+#if ENABLE_NLS
/* Get declarations of GNU message catalog functions. */
# include <libintl.h>
diff --git a/libs/ardour/globals.cc b/libs/ardour/globals.cc
index e3e24378c5..fc17b3a5e9 100644
--- a/libs/ardour/globals.cc
+++ b/libs/ardour/globals.cc
@@ -444,7 +444,7 @@ ARDOUR::init (bool use_windows_vst, bool try_optimization, const char* localedir
if (!PBD::init()) return false;
-#ifdef ENABLE_NLS
+#if ENABLE_NLS
(void) bindtextdomain(PACKAGE, localedir);
(void) bind_textdomain_codeset (PACKAGE, "UTF-8");
#endif