From 420d7b111ddb183a14bc68cbfbc7519566052edf Mon Sep 17 00:00:00 2001 From: Benjamin Otte Date: Tue, 16 Mar 2010 18:31:15 +0100 Subject: [PATCH] More ENABLE_NLS fixes --- ext/alsa/gstalsaplugin.c | 2 +- ext/ogg/gstoggdemux.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/ext/alsa/gstalsaplugin.c b/ext/alsa/gstalsaplugin.c index 38f16e204a..69f539dfa7 100644 --- a/ext/alsa/gstalsaplugin.c +++ b/ext/alsa/gstalsaplugin.c @@ -70,7 +70,7 @@ plugin_init (GstPlugin * plugin) GST_DEBUG_CATEGORY_INIT (alsa_debug, "alsa", 0, "alsa plugins"); -#if ENABLE_NLS +#ifdef ENABLE_NLS GST_DEBUG ("binding text domain %s to locale dir %s", GETTEXT_PACKAGE, LOCALEDIR); bindtextdomain (GETTEXT_PACKAGE, LOCALEDIR); diff --git a/ext/ogg/gstoggdemux.c b/ext/ogg/gstoggdemux.c index 96c0ca2e5b..d485783a0a 100644 --- a/ext/ogg/gstoggdemux.c +++ b/ext/ogg/gstoggdemux.c @@ -3303,7 +3303,7 @@ gst_ogg_demux_plugin_init (GstPlugin * plugin) GST_DEBUG_CATEGORY_INIT (gst_ogg_demux_setup_debug, "oggdemux_setup", 0, "ogg demuxer setup stage when parsing pipeline"); -#if ENABLE_NLS +#ifdef ENABLE_NLS GST_DEBUG ("binding text domain %s to locale dir %s", GETTEXT_PACKAGE, LOCALEDIR); bindtextdomain (GETTEXT_PACKAGE, LOCALEDIR);