Only build in gettext support when gettext is available.
authorpabs <pabs@1f10aa63-cdf2-0310-b900-c93c546f37ac>
Thu, 27 Dec 2007 04:50:43 +0000 (04:50 +0000)
committerpabs <pabs@1f10aa63-cdf2-0310-b900-c93c546f37ac>
Thu, 27 Dec 2007 04:50:43 +0000 (04:50 +0000)
git-svn-id: http://svn.voria.com/code@1233 1f10aa63-cdf2-0310-b900-c93c546f37ac

synfig-core/trunk/src/synfig/general.h
synfig-core/trunk/src/synfig/main.cpp
synfig-core/trunk/src/tool/main.cpp

index 86d1172..639eb51 100644 (file)
 #include <ETL/stringf>
 #include "string.h"
 #include "version.h"
-#include <locale.h>
-#include <libintl.h>
+#ifdef ENABLE_NLS
+ #include <locale.h>
+ #include <libintl.h>
+#endif
 
 /* === M A C R O S ========================================================= */
 
+#ifdef ENABLE_NLS
 #define _(x) dgettext("synfig",x)
 #define gettext_noop(x) x
 #define N_(x) gettext_noop(x)
+#else
+#define dgettext(a,x) (x)
+#define _(x) (x)
+#define N_(x) (x)
+#endif
 
 #define SYNFIG_COPYRIGHT "Copyright (c) 2001-2005 Robert B. Quattlebaum Jr., Adrian Bentley"
 
index 4de4e72..fa2018e 100644 (file)
@@ -213,7 +213,9 @@ synfig::Main::Main(const synfig::String& basepath,ProgressCallback *cb):
 
        // Add initialization after this point
 
+#ifdef ENABLE_NLS
        bindtextdomain("synfig", LOCALEDIR);
+#endif
 
        String prefix=basepath+"/..";
        unsigned int i;
index 66efb3c..04bf905 100644 (file)
@@ -58,8 +58,13 @@ using namespace synfig;
 
 /* === M A C R O S ========================================================= */
 
+#ifdef ENABLE_NLS
 #undef _
 #define _(x) gettext(x)
+#else
+#undef _
+#define _(x) (x)
+#endif
 
 enum exit_code
 {
@@ -840,9 +845,11 @@ int main(int argc, char *argv[])
        arg_list_t arg_list;
        job_list_t job_list;
 
+#ifdef ENABLE_NLS
        setlocale(LC_ALL, "");
        bindtextdomain("synfig", LOCALEDIR);
        textdomain("synfig");
+#endif
 
        progname=argv[0];
        Progress p(argv[0]);