Remove .gitignore do nothing is ignored.
[synfig.git] / synfig-core / trunk / src / synfig / general.h
index 238f78e..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"
 
@@ -117,19 +125,6 @@ public:
        virtual bool valid() const { return cb != 0; }
 };
 
-/*! \class SoftwareExpired
-**     \brief This class is thrown when the software timeout has been reached.
-*/
-class SoftwareExpired
-{
-}; // END of class SoftwareExpired
-
-
-#ifdef DEATH_TIME
-inline void CHECK_EXPIRE_TIME() { if(time(0)>DEATH_TIME) throw SoftwareExpired(); }
-#else
-#define CHECK_EXPIRE_TIME() while(0){ }
-#endif
 
 /*
 extern bool add_to_module_search_path(const std:string &path);