aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Elvio Basello2008-05-14 16:37:54 +0000
committerGravatar Elvio Basello2008-05-14 16:37:54 +0000
commitf3f71ad6a1e669c21c3ea9981cef07a0788cc302 (patch)
treef77df9d689b93ea20916cbcc00c4dd712fe5421c
parentcompilation fix (diff)
downloadKVIrc-f3f71ad6a1e669c21c3ea9981cef07a0788cc302.tar.gz
KVIrc-f3f71ad6a1e669c21c3ea9981cef07a0788cc302.tar.bz2
KVIrc-f3f71ad6a1e669c21c3ea9981cef07a0788cc302.zip
fixed coexistence support flag
git-svn-id: https://svn.kvirc.de/svn/trunk/kvirc@1779 17fca916-40b9-46aa-a4ea-0a15b648b75c
-rw-r--r--CMakeLists.txt8
-rw-r--r--doc/INSTALL2
2 files changed, 6 insertions, 4 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 6701c6a26..1f8909399 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -115,9 +115,11 @@ ENDIF()
#
###############################################################################
-OPTION(APPEND_VER_TO_BINARIES "Append version to binaries to maintain compatibility with older versions" OFF)
-IF(COEXISTENCE_VER)
- SET(APPEND_VER_TO_BINARIES ON)
+OPTION(WANT_COEXISTENCE "Append version to binaries to maintain compatibility with older versions" OFF)
+IF(COEXISTENCE)
+ SET(WANT_COEXISTENCE ON)
+ENDIF()
+IF(WANT_COEXISTENCE)
SET(CMAKE_STATUS_COEXISTENCE_VER "yes")
ELSE()
SET(CMAKE_STATUS_COEXISTENCE_VER "no")
diff --git a/doc/INSTALL b/doc/INSTALL
index 3c00fdcc7..4bfcfab1a 100644
--- a/doc/INSTALL
+++ b/doc/INSTALL
@@ -92,7 +92,7 @@ General notes for the installation of the 4.0 release of KVIrc
It will install libkvilib under /path directory. It defaults to
${CMAKE_INSTALL_PREFIX}/lib.
- -DCOEXISTENCE_VER
+ -DCOEXISTENCE
Append version information to kvirc and libkvilib, so that different
kvirc versions can cohexist in the same system.