From 8c46e8573e2c8b3e1f048c68c61e2fc452703234 Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Wed, 28 Jan 2009 17:49:03 +0000 Subject: [PATCH] Enable PACKAGE_VERSION in cmake builds, this unbreaks the clang build with cmake. Patch by Piotr Rak! git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@63213 91177308-0d34-0410-b5e6-96231b3b80d8 --- CMakeLists.txt | 3 ++- include/llvm/Config/config.h.cmake | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 2072c703715..3dcc5e4f7ff 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -2,7 +2,8 @@ project(LLVM) cmake_minimum_required(VERSION 2.6.1) set(PACKAGE_NAME llvm) -set(PACKAGE_VERSION svn) +set(PACKAGE_VERSION 2.6svn) +set(PACKAGE_STRING "${PACKAGE_NAME} ${PACKAGE_VERSION}") set(PACKAGE_BUGREPORT "llvmbugs@cs.uiuc.edu") if( CMAKE_SOURCE_DIR STREQUAL CMAKE_BINARY_DIR AND NOT MSVC_IDE ) diff --git a/include/llvm/Config/config.h.cmake b/include/llvm/Config/config.h.cmake index d5e286b7dc9..12846fe8649 100644 --- a/include/llvm/Config/config.h.cmake +++ b/include/llvm/Config/config.h.cmake @@ -507,7 +507,7 @@ #cmakedefine PACKAGE_NAME "${PACKAGE_NAME}" /* Define to the full name and version of this package. */ -#undef PACKAGE_STRING +#cmakedefine PACKAGE_STRING "${PACKAGE_STRING}" /* Define to the one symbol short name of this package. */ #undef PACKAGE_TARNAME -- 2.34.1