1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36
|
Description: Make the build reproducible
Author: Olly Betts <olly@survex.com>
Forwarded: http://trac.wxwidgets.org/ticket/17000
Last-Update: 2015-05-20
--- a/src/common/utilscmn.cpp
+++ b/src/common/utilscmn.cpp
@@ -1390,7 +1390,6 @@ wxVersionInfo wxGetLibraryVersionInfo()
wxString msg;
msg.Printf(wxS("wxWidgets Library (%s port)\n")
wxS("Version %d.%d.%d (Unicode: %s, debug level: %d),\n")
- wxS("compiled at %s %s\n\n")
wxS("Runtime version of toolkit used is %d.%d.\n"),
wxPlatformInfo::Get().GetPortIdName(),
wxMAJOR_VERSION,
@@ -1404,8 +1403,6 @@ wxVersionInfo wxGetLibraryVersionInfo()
"none",
#endif
wxDEBUG_LEVEL,
- __TDATE__,
- __TTIME__,
wxPlatformInfo::Get().GetToolkitMajorVersion(),
wxPlatformInfo::Get().GetToolkitMinorVersion()
);
index b7a4775..0449dc2 100644
--- a/docs/doxygen/Doxyfile
+++ b/docs/doxygen/Doxyfile
@@ -342,7 +342,7 @@ HTML_EXTRA_FILES = wxwidgets.js
HTML_COLORSTYLE_HUE = 220 # Default: 220
HTML_COLORSTYLE_SAT = 255 # Default: 100
HTML_COLORSTYLE_GAMMA = 100 # Default: 80
-HTML_TIMESTAMP = YES
+HTML_TIMESTAMP = NO
HTML_DYNAMIC_SECTIONS = YES # Default: NO
HTML_INDEX_NUM_ENTRIES = 100
DISABLE_INDEX = NO
|