mirror of
https://github.com/anope/anope.git
synced 2026-07-04 02:23:12 +02:00
Remove duplicate suffix from socketengine file names.
This commit is contained in:
+4
-4
@@ -10,13 +10,13 @@ if(WIN32)
|
||||
endif()
|
||||
|
||||
if(HAVE_EPOLL)
|
||||
list(APPEND SRC_SRCS socketengines/socketengine_epoll.cpp)
|
||||
list(APPEND SRC_SRCS socketengines/epoll.cpp)
|
||||
elseif(HAVE_KQUEUE)
|
||||
list(APPEND SRC_SRCS socketengines/socketengine_kqueue.cpp)
|
||||
list(APPEND SRC_SRCS socketengines/kqueue.cpp)
|
||||
elseif(HAVE_POLL)
|
||||
list(APPEND SRC_SRCS socketengines/socketengine_poll.cpp)
|
||||
list(APPEND SRC_SRCS socketengines/poll.cpp)
|
||||
else()
|
||||
list(APPEND SRC_SRCS socketengines/socketengine_select.cpp)
|
||||
list(APPEND SRC_SRCS socketengines/select.cpp)
|
||||
endif()
|
||||
|
||||
list(SORT SRC_SRCS)
|
||||
|
||||
Reference in New Issue
Block a user