i18n: build fixes: #if -> #ifdef for ENABLE_NLS
authorStefan Kost <ensonic@users.sf.net>
Mon, 22 Mar 2010 16:02:39 +0000 (18:02 +0200)
committerStefan Kost <ensonic@users.sf.net>
Mon, 22 Mar 2010 16:07:45 +0000 (18:07 +0200)
gst-libs/gst/gettext.h
gst/videomeasure/gstvideomeasure.c

index 8b262f4cfd789f4c367d6427d391ca83cff0c5c2..59902b35ee7c94e5a9eec6a3ef3b4a56765bcdfe 100644 (file)
@@ -20,7 +20,7 @@
 #define _LIBGETTEXT_H 1
 
 /* NLS can be disabled through the configure --disable-nls option.  */
-#if ENABLE_NLS
+#ifdef ENABLE_NLS
 
 /* Get declarations of GNU message catalog functions.  */
 # include <libintl.h>
index 34b227a851ee256c7e7edee9232450f1f4ff7e19..c0bd86cc0e7e5cf5ecb019aa4311b662de9bc806 100644 (file)
@@ -49,7 +49,7 @@ plugin_init (GstPlugin * plugin)
 {
   gboolean res;
 
-#if ENABLE_NLS
+#ifdef ENABLE_NLS
   GST_DEBUG ("binding text domain %s to locale dir %s", GETTEXT_PACKAGE,
       LOCALEDIR);
   bindtextdomain (GETTEXT_PACKAGE, LOCALEDIR);