You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@qpid.apache.org by ac...@apache.org on 2017/06/09 01:25:30 UTC

[07/50] [abbrv] qpid-proton git commit: PROTON-1460: epoll - add -lpthread

PROTON-1460: epoll - add -lpthread

This was being picked up by accident via the SASL library.
Added explicitly for the epoll proactor in case SASL is not present.


Project: http://git-wip-us.apache.org/repos/asf/qpid-proton/repo
Commit: http://git-wip-us.apache.org/repos/asf/qpid-proton/commit/180718f0
Tree: http://git-wip-us.apache.org/repos/asf/qpid-proton/tree/180718f0
Diff: http://git-wip-us.apache.org/repos/asf/qpid-proton/diff/180718f0

Branch: refs/heads/go1
Commit: 180718f07e3856f666b8aa7538cc17fa15c29197
Parents: ea87505
Author: Alan Conway <ac...@redhat.com>
Authored: Wed May 10 17:00:22 2017 -0400
Committer: Alan Conway <ac...@redhat.com>
Committed: Wed May 10 17:00:22 2017 -0400

----------------------------------------------------------------------
 proton-c/CMakeLists.txt | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/qpid-proton/blob/180718f0/proton-c/CMakeLists.txt
----------------------------------------------------------------------
diff --git a/proton-c/CMakeLists.txt b/proton-c/CMakeLists.txt
index e468cae..5589a11 100644
--- a/proton-c/CMakeLists.txt
+++ b/proton-c/CMakeLists.txt
@@ -487,7 +487,7 @@ if (PROACTOR STREQUAL "epoll" OR (NOT PROACTOR AND NOT BUILD_PROACTOR))
   if (HAVE_EPOLL)
     set (PROACTOR_OK epoll)
     set (qpid-proton-proactor src/proactor/epoll.c src/proactor/proactor-internal.c)
-    set (PROACTOR_LIBS "")
+    set (PROACTOR_LIBS -lpthread)
     set_source_files_properties (${qpid-proton-proactor} PROPERTIES
       COMPILE_FLAGS "${COMPILE_WARNING_FLAGS} ${COMPILE_LANGUAGE_FLAGS} ${LTO}"
       )


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@qpid.apache.org
For additional commands, e-mail: commits-help@qpid.apache.org