svn commit: r208985 - head/lib/clang/include/llvm/Config

Ed Schouten ed at FreeBSD.org
Thu Jun 10 12:15:09 UTC 2010


Author: ed
Date: Thu Jun 10 12:15:09 2010
New Revision: 208985
URL: http://svn.freebsd.org/changeset/base/208985

Log:
  Disable usage of __DATE__.
  
  This ensures that the Clang binary doesn't change checksums every time
  it's built.

Modified:
  head/lib/clang/include/llvm/Config/config.h

Modified: head/lib/clang/include/llvm/Config/config.h
==============================================================================
--- head/lib/clang/include/llvm/Config/config.h	Thu Jun 10 12:06:35 2010	(r208984)
+++ head/lib/clang/include/llvm/Config/config.h	Thu Jun 10 12:15:09 2010	(r208985)
@@ -27,7 +27,7 @@
 /* #undef ENABLE_THREADS */
 
 /* Define if timestamp information (e.g., __DATE___) is allowed */
-#define ENABLE_TIMESTAMPS 1
+/* #undef ENABLE_TIMESTAMPS */
 
 /* Define to 1 if you have the `argz_append' function. */
 /* #undef HAVE_ARGZ_APPEND */


More information about the svn-src-all mailing list