summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDenys Fedoryshchenko <denys.f@collabora.com>2024-07-28 23:16:30 +0300
committerGitHub <noreply@github.com>2024-07-28 23:16:30 +0300
commit922a6e956320513940cd1e6734f62995c7e5718e (patch)
treef858f1da6dfa08178d08d1e27226ee9e753ec935
parent6bb95a7da97f05bcb9e47261afe677593ab4d11c (diff)
parent26ebe599c3f1241022038d4b3f709410074876c5 (diff)
downloadaccel-ppp-922a6e956320513940cd1e6734f62995c7e5718e.tar.gz
accel-ppp-922a6e956320513940cd1e6734f62995c7e5718e.zip
Merge pull request #167 from nuclearcat/fix-connlimit-error
Fix issue #131, pptp doesnt work without connlimit
-rw-r--r--accel-pppd/ctrl/pppoe/CMakeLists.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/accel-pppd/ctrl/pppoe/CMakeLists.txt b/accel-pppd/ctrl/pppoe/CMakeLists.txt
index 808cd513..fd4f9a36 100644
--- a/accel-pppd/ctrl/pppoe/CMakeLists.txt
+++ b/accel-pppd/ctrl/pppoe/CMakeLists.txt
@@ -13,7 +13,7 @@ SET(sources ${sources} tr101.c)
ENDIF(RADIUS)
ADD_LIBRARY(pppoe SHARED ${sources})
-TARGET_LINK_LIBRARIES(pppoe vlan-mon)
+TARGET_LINK_LIBRARIES(pppoe vlan-mon connlimit)
set_property(TARGET pppoe PROPERTY CMAKE_BUILD_WITH_INSTALL_RPATH FALSE)
set_property(TARGET pppoe PROPERTY INSTALL_RPATH ${CMAKE_INSTALL_PREFIX}/lib${LIB_SUFFIX}/accel-ppp)