summaryrefslogtreecommitdiff
path: root/cmake/cpack.cmake
diff options
context:
space:
mode:
authorDmitry Kozlov <xeb@mail.ru>2014-05-08 14:41:12 +0400
committerDmitry Kozlov <xeb@mail.ru>2014-05-08 14:41:12 +0400
commit7466e7f10fb4813a6112682dff13de5fbdd981a7 (patch)
treef975b5e464599ea21c17894c909144750904421c /cmake/cpack.cmake
parent703ef720d364fcada5d2e382b487cd5299feac9f (diff)
downloadaccel-ppp-xebd-7466e7f10fb4813a6112682dff13de5fbdd981a7.tar.gz
accel-ppp-xebd-7466e7f10fb4813a6112682dff13de5fbdd981a7.zip
1.8.0 release
* major l2tp rewrite * introduced ipoe (ipv4 only) module
Diffstat (limited to 'cmake/cpack.cmake')
-rw-r--r--cmake/cpack.cmake7
1 files changed, 6 insertions, 1 deletions
diff --git a/cmake/cpack.cmake b/cmake/cpack.cmake
index fa5ce3c..b36bf59 100644
--- a/cmake/cpack.cmake
+++ b/cmake/cpack.cmake
@@ -1,7 +1,7 @@
INCLUDE(InstallRequiredSystemLibraries)
SET(CPACK_PACKAGE_VERSION_MAJOR "1")
-SET(CPACK_PACKAGE_VERSION_MINOR "7")
+SET(CPACK_PACKAGE_VERSION_MINOR "8")
SET(CPACK_PACKAGE_VERSION_PATCH "0")
SET(CPACK_PACKAGE_NAME "accel-ppp")
@@ -22,4 +22,9 @@ IF(CPACK_TYPE STREQUAL Debian6)
INCLUDE(${CMAKE_HOME_DIRECTORY}/cmake/debian/debian.cmake)
ENDIF(CPACK_TYPE STREQUAL Debian6)
+IF(CPACK_TYPE STREQUAL Debian7)
+ SET(CPACK_DEBIAN_PACKAGE_DEPENDS "libc6 (>= 2.13), libssl1.0.0 (>= 1.0.0), libpcre3 (>= 8.30)")
+ INCLUDE(${CMAKE_HOME_DIRECTORY}/cmake/debian/debian.cmake)
+ENDIF(CPACK_TYPE STREQUAL Debian7)
+
INCLUDE(CPack)