]> de.git.xonotic.org Git - xonotic/darkplaces.git/blobdiff - builddate.c
Remove the CONFIG_CD macro, and enable faketracks unconditionally.
[xonotic/darkplaces.git] / builddate.c
index 061173ef4ca90c0750817b27ac9a80ac72db257e..e38d9b18fc8655a3f6eb129290838aec07a39a86 100644 (file)
@@ -2,9 +2,14 @@
 #define STRINGIFY(arg) STRINGIFY2(arg)
 
 extern const char *buildstring;
-const char *buildstring = __TIME__ " " __DATE__
+const char *buildstring =
+#ifndef NO_BUILD_TIMESTAMPS
+__TIME__ " " __DATE__ " "
+#endif
 #ifdef SVNREVISION
-" " STRINGIFY(SVNREVISION)
+STRINGIFY(SVNREVISION)
+#else
+"-"
 #endif
 #ifdef BUILDTYPE
 " " STRINGIFY(BUILDTYPE)