summaryrefslogtreecommitdiff
path: root/cmake/cpack.cmake
diff options
context:
space:
mode:
authorDmitry Kozlov <xeb@mail.ru>2014-05-08 14:33:12 +0400
committerDmitry Kozlov <xeb@mail.ru>2014-05-08 14:33:12 +0400
commit52e451250c9d445e73ed9df27b07e59a8d57664a (patch)
treeceb875bc6c6627de85258e43988553b2ce3530a2 /cmake/cpack.cmake
parent71df100daf6e995d0a356dc096836df9f38f8d8d (diff)
downloadaccel-ppp-52e451250c9d445e73ed9df27b07e59a8d57664a.tar.gz
accel-ppp-52e451250c9d445e73ed9df27b07e59a8d57664a.zip
1.7.4 release
* fixed various bugs * introduced accel-cmd program * ippool: impelented persistance * radius: implemented default-realm option * radius: proper handling of Framed-IP-Address=255.255.255.254 * shaper: time range and other fixes * shaper: implemented mtu option * net-snmp: fixed run out of FD_SETSIZE
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 f4d57e46..54158f58 100644
--- a/cmake/cpack.cmake
+++ b/cmake/cpack.cmake
@@ -2,7 +2,7 @@ INCLUDE(InstallRequiredSystemLibraries)
SET(CPACK_PACKAGE_VERSION_MAJOR "1")
SET(CPACK_PACKAGE_VERSION_MINOR "7")
-SET(CPACK_PACKAGE_VERSION_PATCH "3")
+SET(CPACK_PACKAGE_VERSION_PATCH "4")
SET(CPACK_PACKAGE_NAME "accel-ppp")
SET(CPACK_PACKAGE_CONTACT "Dmitry Kozlov <xeb@mail.ru>")
@@ -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)