This is an automated email from the git hooks/post-receive script. x2go pushed a change to branch master in repository nx-libs. from 3af59f8 nxdialog/: create (almost) empty m4 directory. adds 1b6da59 nxcomp/src/Makefile.am: PTHREAD_LDFLAGS does not exist, replace with PTHREAD_LIBS. adds 2efaa42 m4/: update external macros from autoconf-archive. adds 95f8cf7 m4/ax_pthread.m4: implement workaround for libtool bug #13550. adds d1fe6a6 nxproxy/{m4,configure.ac,src/Makefile.am}: drop pthread overlinking. adds dd0d49c debian/patches/{,series}: remove 2004_enforce-lpthread.patch. new cb5c042 Merge branch 'Ionic-bugfix/libXcomp-pthread-underlinking' into 3.6.x new 34011cc Makefile: Add clean/distclean target calls for nxdialog subdir to master Makefile's clean/distclean targets. new 1ff05c8 nxdialog/Makefile.am: We forgot to clean up nxdialog/bin/Makefile.in. new 80ecfad nxcomp/src/Makefile.am: Correct usage of PTHREAD_CFLAGS and PTHREAD_LIBS. PTHREAD_CFLAGS is also supposed to be used when linking. See comments in m4/ax_pthread.m4. new f0aac08 Merge branch 'sunweaver-pr/pthread-flags' into arctica-3.6.x The 5 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: Makefile | 2 ++ debian/patches/2004_enforce-lpthread.patch | 33 ---------------------- debian/patches/series | 1 - m4/ax_cxx_compile_stdcxx.m4 | 45 +++++------------------------- m4/ax_pthread.m4 | 42 ++++++++++++++++++++++++++-- nxcomp/src/Makefile.am | 6 ++-- nxdialog/Makefile.am | 1 + nxproxy/configure.ac | 11 -------- nxproxy/m4/ax_pthread.m4 | 1 - nxproxy/src/Makefile.am | 3 -- 10 files changed, 53 insertions(+), 92 deletions(-) delete mode 100644 debian/patches/2004_enforce-lpthread.patch delete mode 120000 nxproxy/m4/ax_pthread.m4 -- 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 master in repository nx-libs. commit cb5c042a181fba3540952991b48382fabedaf88c Merge: 59305c8 dd0d49c Author: Mike Gabriel <mike.gabriel@das-netzwerkteam.de> Date: Sun Apr 7 21:36:05 2019 +0200 Merge branch 'Ionic-bugfix/libXcomp-pthread-underlinking' into 3.6.x Attributes GH PR #791: https://github.com/ArcticaProject/nx-libs/pull/791 debian/patches/2004_enforce-lpthread.patch | 33 ---------------------- debian/patches/series | 1 - m4/ax_cxx_compile_stdcxx.m4 | 45 +++++------------------------- m4/ax_pthread.m4 | 42 ++++++++++++++++++++++++++-- nxcomp/src/Makefile.am | 2 +- nxdialog/bin/nxdialog | 2 +- nxdialog/m4/.keep | 0 nxproxy/configure.ac | 11 -------- nxproxy/m4/ax_pthread.m4 | 1 - nxproxy/src/Makefile.am | 3 -- 10 files changed, 49 insertions(+), 91 deletions(-) -- 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 master in repository nx-libs. commit 1ff05c8e23cb9ae911cb8bdd9e4f7b8a2c1f5180 Author: Mike Gabriel <mike.gabriel@das-netzwerkteam.de> Date: Sun Apr 7 21:59:37 2019 +0200 nxdialog/Makefile.am: We forgot to clean up nxdialog/bin/Makefile.in. --- nxdialog/Makefile.am | 1 + 1 file changed, 1 insertion(+) diff --git a/nxdialog/Makefile.am b/nxdialog/Makefile.am index e444af1..d4e4a79 100644 --- a/nxdialog/Makefile.am +++ b/nxdialog/Makefile.am @@ -8,6 +8,7 @@ MAINTAINERCLEANFILES = \ $(srcdir)/autom4te.cache/* \ $(srcdir)/build-aux/* \ $(srcdir)/Makefile.in \ + $(srcdir)/bin/Makefile.in \ $(srcdir)/man/Makefile.in \ $(srcdir)/src/Makefile.in \ $(srcdir)/aclocal.m4 \ -- 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 master in repository nx-libs. commit 34011ccadea1b6fe7a49dc21df9240265b7b81a1 Author: Mike Gabriel <mike.gabriel@das-netzwerkteam.de> Date: Sun Apr 7 21:59:00 2019 +0200 Makefile: Add clean/distclean target calls for nxdialog subdir to master Makefile's clean/distclean targets. --- Makefile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Makefile b/Makefile index 0657bcb..898e524 100644 --- a/Makefile +++ b/Makefile @@ -67,6 +67,7 @@ clean: version imakeconfig test -f nx-X11/lib/Makefile && ${MAKE} -C nx-X11/lib clean || true test -f nxcompshad/Makefile && ${MAKE} -C nxcompshad clean || true test -d nx-X11 && ${MAKE} clean-env || true + test -f nxdialog/Makefile && ${MAKE} -C nxdialog clean || true distclean: clean version imakeconfig test -f nxcomp/Makefile && ${MAKE} -C nxcomp distclean || true @@ -74,6 +75,7 @@ distclean: clean version imakeconfig test -f nx-X11/lib/Makefile && ${MAKE} -C nx-X11/lib distclean || true test -f nxcompshad/Makefile && ${MAKE} -C nxcompshad distclean || true test -d nx-X11 && ${MAKE} -C nx-X11 distclean || true + test -f nxdialog/Makefile && ${MAKE} -C nxdialog distclean || true test -x ./mesa-quilt && ./mesa-quilt pop -a $(RM_DIR_REC) nx-X11/extras/Mesa/.pc/ $(RM_FILE) nx-X11/config/cf/nxversion.def -- 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 master in repository nx-libs. commit 80ecfad957d8107b8103a47ea69a8762fcea829b Author: Mike Gabriel <mike.gabriel@das-netzwerkteam.de> Date: Fri Mar 1 23:16:49 2019 +0100 nxcomp/src/Makefile.am: Correct usage of PTHREAD_CFLAGS and PTHREAD_LIBS. PTHREAD_CFLAGS is also supposed to be used when linking. See comments in m4/ax_pthread.m4. --- nxcomp/src/Makefile.am | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nxcomp/src/Makefile.am b/nxcomp/src/Makefile.am index 9cecae8..e062f08 100644 --- a/nxcomp/src/Makefile.am +++ b/nxcomp/src/Makefile.am @@ -121,7 +121,6 @@ libXcomp_la_LIBADD = \ @JPEG_LIBS@ \ @PNG_LIBS@ \ @Z_LIBS@ \ - @PTHREAD_LIBS@ \ $(NULL) AM_CXXFLAGS = \ @@ -129,17 +128,18 @@ AM_CXXFLAGS = \ $(JPEG_CFLAGS) \ $(PNG_CFLAGS) \ $(Z_CFLAGS) \ - $(PTHREAD_CFLAGS) \ $(NULL) AM_CPPFLAGS = \ -I$(top_srcdir)/include \ + $(PTHREAD_CFLAGS) \ $(NULL) libXcomp_la_LDFLAGS = \ -version-number @LT_COMP_VERSION@ \ -no-undefined \ @PTHREAD_LIBS@ \ + $(PTHREAD_CFLAGS) \ $(NULL) libXcompincludedir = $(includedir)/nx -- 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 master in repository nx-libs. commit f0aac0897238ca1e019cefa47f7ce24c63a8f549 Merge: 1ff05c8 80ecfad Author: Mihai Moldovan <ionic@ionic.de> Date: Mon Apr 8 11:50:08 2019 +0200 Merge branch 'sunweaver-pr/pthread-flags' into arctica-3.6.x Attributes GH PR #790: https://github.com/ArcticaProject/nx-libs/pull/790 nxcomp/src/Makefile.am | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) -- Alioth's /home/x2go-admin/maintenancescripts/git/hooks/post-receive-email on /srv/git/code.x2go.org/nx-libs.git