Port changes: * Add dependency on cryptominisat, and the corresponding port option * Add USES=autoreconf, the suplied configure fails, see https://github.com/CVC4/CVC4/issues/2192 * Now build depends on python * Force clang-60 to prevent build failures on 10 PR: 229780 Submitted by: Greg V <greg@unrelenting.technology>
12 lines
329 B
C++
12 lines
329 B
C++
--- src/base/configuration.cpp.orig 2018-06-25 21:13:17 UTC
|
|
+++ src/base/configuration.cpp
|
|
@@ -405,7 +405,7 @@ std::string Configuration::getCompiler() {
|
|
}
|
|
|
|
std::string Configuration::getCompiledDateTime() {
|
|
- return __DATE__ " " __TIME__;
|
|
+ return "(timestamp removed for reproducible builds)";
|
|
}
|
|
|
|
}/* CVC4 namespace */
|