diff options
author | Kozlov Dmitry <dima@server> | 2010-10-15 16:52:27 +0400 |
---|---|---|
committer | Kozlov Dmitry <dima@server> | 2010-10-15 18:18:35 +0400 |
commit | d32cf13525153b9bb961a72cded215e9866e78bd (patch) | |
tree | d5d465a5729c87843894f6eb0c91361183f93e56 /accel-pptpd/logs | |
parent | a7beba7a9253b002c3be1fdd54420422a79cf96e (diff) | |
download | accel-ppp-d32cf13525153b9bb961a72cded215e9866e78bd.tar.gz accel-ppp-d32cf13525153b9bb961a72cded215e9866e78bd.zip |
implemented timerfd for glibc-2.7 or earlier (debian lenny is now welcome)
Diffstat (limited to 'accel-pptpd/logs')
-rw-r--r-- | accel-pptpd/logs/CMakeLists.txt | 2 | ||||
-rw-r--r-- | accel-pptpd/logs/log_file.c | 1 |
2 files changed, 1 insertions, 2 deletions
diff --git a/accel-pptpd/logs/CMakeLists.txt b/accel-pptpd/logs/CMakeLists.txt index de66b1e4..b2c432d0 100644 --- a/accel-pptpd/logs/CMakeLists.txt +++ b/accel-pptpd/logs/CMakeLists.txt @@ -1,5 +1,5 @@ ADD_LIBRARY(log_file SHARED log_file.c) -TARGET_LINK_LIBRARIES(log_file aio rt) +TARGET_LINK_LIBRARIES(log_file rt) INSTALL(TARGETS log_file LIBRARY DESTINATION usr/lib/accel-pptp diff --git a/accel-pptpd/logs/log_file.c b/accel-pptpd/logs/log_file.c index be615ad8..f343286b 100644 --- a/accel-pptpd/logs/log_file.c +++ b/accel-pptpd/logs/log_file.c @@ -6,7 +6,6 @@ #include <unistd.h> #include <limits.h> #include <aio.h> -#include <sys/signalfd.h> #include "log.h" #include "events.h" |