This is an automated email from the git hooks/post-receive script. x2go pushed a change to branch bugfix/libXcomp-pthread-underlinking in repository nx-libs. from d1fe6a6 nxproxy/{m4,configure.ac,src/Makefile.am}: drop pthread overlinking. new 3d638a5 debian/patches/: remove 2004_enforce-lpthread.patch. The 1 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "adds" were already present in the repository and have only been added to this reference. Summary of changes: debian/patches/2004_enforce-lpthread.patch | 33 ------------------------------ 1 file changed, 33 deletions(-) delete mode 100644 debian/patches/2004_enforce-lpthread.patch -- Alioth's /home/x2go-admin/maintenancescripts/git/hooks/post-receive-email on /srv/git/code.x2go.org/nx-libs.git
This is an automated email from the git hooks/post-receive script. x2go pushed a commit to branch bugfix/libXcomp-pthread-underlinking in repository nx-libs. commit 3d638a5d2e284f4da817a25aeff8b0c85f70c1e9 Author: Mihai Moldovan <ionic@ionic.de> Date: Thu Apr 4 13:07:40 2019 +0200 debian/patches/: remove 2004_enforce-lpthread.patch. This workaround/hack should not be needed any longer. --- debian/patches/2004_enforce-lpthread.patch | 33 ------------------------------ 1 file changed, 33 deletions(-) diff --git a/debian/patches/2004_enforce-lpthread.patch b/debian/patches/2004_enforce-lpthread.patch deleted file mode 100644 index 474feb0..0000000 --- a/debian/patches/2004_enforce-lpthread.patch +++ /dev/null @@ -1,33 +0,0 @@ -Description: Enforce -lpthread when linking nxcomp. -Author: Mike Gabriel <mike.gabriel@das-netzwerkteam.de> -Abstract: - This is a workaround for a nasty libtool bug!!! - . - We actually compile libXcomp with pthread support, but libtool uses g++ - ... -nostdlib ... -pthread on Linux. -nostdlib causes -pthread to be - ignored. - . - According to GCC upstream, this is not a bug: - https://gcc.gnu.org/bugzilla/show_bug.cgi?id=25460 - . - GCC upstream insists that libtool needs to handle -pthread in a special - way when using -nostdlib. - . - A patch has been submitted to the libtool project: - http://lists.gnu.org/archive/html/libtool-patches/2013-11/msg00015.html - but never applied to the code base. Boo. - . - We will work around this bug by hard-coding the linking with pthread - support in libXcomp for now. - ---- a/nxcomp/src/Makefile.am -+++ b/nxcomp/src/Makefile.am -@@ -139,7 +139,7 @@ - libXcomp_la_LDFLAGS = \ - -version-number @LT_COMP_VERSION@ \ - -no-undefined \ -- $(PTHREAD_LDFLAGS) \ -+ $(PTHREAD_LDFLAGS) -lpthread \ - $(NULL) - - libXcompincludedir = $(includedir)/nx -- Alioth's /home/x2go-admin/maintenancescripts/git/hooks/post-receive-email on /srv/git/code.x2go.org/nx-libs.git