From owner-svn-src-head@FreeBSD.ORG Thu Jun 10 12:15:09 2010 Return-Path: Delivered-To: svn-src-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id AB5331065670; Thu, 10 Jun 2010 12:15:09 +0000 (UTC) (envelope-from ed@FreeBSD.org) Received: from svn.freebsd.org (unknown [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 9B0858FC1F; Thu, 10 Jun 2010 12:15:09 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id o5ACF94X046498; Thu, 10 Jun 2010 12:15:09 GMT (envelope-from ed@svn.freebsd.org) Received: (from ed@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id o5ACF99h046496; Thu, 10 Jun 2010 12:15:09 GMT (envelope-from ed@svn.freebsd.org) Message-Id: <201006101215.o5ACF99h046496@svn.freebsd.org> From: Ed Schouten Date: Thu, 10 Jun 2010 12:15:09 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r208985 - head/lib/clang/include/llvm/Config X-BeenThere: svn-src-head@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the src tree for head/-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 10 Jun 2010 12:15:09 -0000 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 */