1
0
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:
Sadie Powell
2024-02-25 23:54:12 +00:00
parent 8c9ca23900
commit 273e7f249c
5 changed files with 4 additions and 4 deletions
+4 -4
View File
@@ -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)