From mike.gabriel@das-netzwerkteam.de Wed Dec 12 13:03:22 2012 Received: (at submit) by bugs.x2go.org; 12 Dec 2012 12:03:22 +0000 Received: from freya.das-netzwerkteam.de (freya.das-netzwerkteam.de [88.198.48.199]) by ymir (Postfix) with ESMTPS id 4C64A5DA6B for ; Wed, 12 Dec 2012 13:03:22 +0100 (CET) Received: from grimnir.das-netzwerkteam.de (grimnir.das-netzwerkteam.de [78.46.204.98]) by freya.das-netzwerkteam.de (Postfix) with ESMTPS id 0D1499FE for ; Wed, 12 Dec 2012 13:03:22 +0100 (CET) Received: from localhost (localhost [127.0.0.1]) by grimnir.das-netzwerkteam.de (Postfix) with ESMTP id E01FA3C037 for ; Wed, 12 Dec 2012 13:03:21 +0100 (CET) X-Virus-Scanned: Debian amavisd-new at grimnir.das-netzwerkteam.de Received: from grimnir.das-netzwerkteam.de ([127.0.0.1]) by localhost (grimnir.das-netzwerkteam.de [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id QElbMBio4pRY for ; Wed, 12 Dec 2012 13:03:21 +0100 (CET) Received: from localhost (localhost [127.0.0.1]) by grimnir.das-netzwerkteam.de (Postfix) with ESMTP id BD1853C045 for ; Wed, 12 Dec 2012 13:03:21 +0100 (CET) Received: from localhost (localhost [127.0.0.1]) by grimnir.das-netzwerkteam.de (Postfix) with ESMTP id 9544B3C037 for ; Wed, 12 Dec 2012 13:03:21 +0100 (CET) X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on grimnir.das-netzwerkteam.de X-Spam-Flag: NO X-Spam-Status: No, hits=-2.9 required=5.0 tests=ALL_TRUSTED,BAYES_00 autolearn=ham version=3.3.1 running as userid= X-Spam-Level: X-Spam-Bayes-Score: 0.0000 Received: by grimnir.das-netzwerkteam.de (Postfix, from userid 33) id AEECC3BA4C; Wed, 12 Dec 2012 13:03:20 +0100 (CET) Received: from 195.244.234.222 ([195.244.234.222]) by mail.das-netzwerkteam.de (Horde Framework) with HTTP; Wed, 12 Dec 2012 13:03:20 +0100 Message-ID: <20121212130320.10874vi4bmd2470o@mail.das-netzwerkteam.de> X-Priority: 3 (Normal) Date: Wed, 12 Dec 2012 13:03:20 +0100 From: Mike Gabriel To: submit@bugs.x2go.org Cc: Orion Poplawski Subject: DESTDIR and OPTFLAGS patches for nx-libs MIME-Version: 1.0 Content-Type: multipart/signed; boundary="=_4svmgxfdbafc"; protocol="application/pgp-signature"; micalg="pgp-sha1" Content-Transfer-Encoding: 7bit User-Agent: Internet Messaging Program (IMP) H3 (4.3.4) This message is in MIME format and has been PGP signed. --=_4svmgxfdbafc Content-Type: multipart/mixed; boundary="=_2rhk4ryoyv7s" Content-Transfer-Encoding: 7bit This message is in MIME format. --=_2rhk4ryoyv7s Content-Type: text/plain; charset=UTF-8; DelSp="Yes"; format="flowed" Content-Disposition: inline Content-Transfer-Encoding: 7bit Package: nx-libs Patches attached for nx-libs: - bin/Makefile doesn't support DESTDIR. The attached nx-libs-destdir.patch partially addresses that. - The various nx*/configure.in files do not honor passed in compiler flags. The attached nx-libs-optflags.patch fixes that. Note also though that CFLAGS is used in some and CPPFLAGS in others. ----- Weitergeleitete Nachricht von orion@cora.nwra.com ----- Datum: Tue, 11 Dec 2012 16:11:02 -0700 Von: Orion Poplawski Antwort an: x2go-dev@lists.berlios.de Betreff: [X2Go-Dev] x2go for Fedora packaging issues An: x2go-dev@lists.berlios.de [...] Thank you for your attention. - Orion -- Orion Poplawski Technical Manager 303-415-9701 x222 NWRA, Boulder Office FAX: 303-415-9702 3380 Mitchell Lane orion@nwra.com Boulder, CO 80301 http://www.nwra.com ----- Ende der weitergeleiteten Nachricht ----- -- DAS-NETZWERKTEAM mike gabriel, rothenstein 5, 24214 neudorf-bornstein fon: +49 (1520) 1976 148 GnuPG Key ID 0x25771B31 mail: mike.gabriel@das-netzwerkteam.de, http://das-netzwerkteam.de freeBusy: https://mail.das-netzwerkteam.de/freebusy/m.gabriel%40das-netzwerkteam.de.xfb --=_2rhk4ryoyv7s Content-Type: text/x-patch; charset=UTF-8; name="nx-libs-destdir.patch" Content-Disposition: attachment; filename="nx-libs-destdir.patch" Content-Transfer-Encoding: 7bit diff -up nx-libs-3.5.0.16/bin/Makefile.destdir nx-libs-3.5.0.16/bin/Makefile --- nx-libs-3.5.0.16/bin/Makefile.destdir 2012-11-10 06:40:56.000000000 -0700 +++ nx-libs-3.5.0.16/bin/Makefile 2012-12-11 13:32:26.589921544 -0700 @@ -17,13 +17,14 @@ X2GOLIBDIR=$(PREFIX)/lib/x2go echo "Nothing to do for $@..." install: - $(INSTALL_DIR) $(X2GOLIBDIR)/bin/ - ln -sf $(NXLIBDIR)/bin/nxagent $(X2GOLIBDIR)/bin/x2goagent - find nx* | while read file; do $(INSTALL_PROGRAM) $$file $(BINDIR)/; done - find x2go* | while read file; do $(INSTALL_PROGRAM) $$file $(BINDIR)/; done + $(INSTALL_DIR) $(DESTDIR)$(X2GOLIBDIR)/bin/ + ln -sf $(NXLIBDIR)/bin/nxagent $(DESTDIR)$(X2GOLIBDIR)/bin/x2goagent + [ ! -d $(DESTDIR)$(BINDIR) ] && $(INSTALL_DIR) $(DESTDIR)$(BINDIR) + find nx* | while read file; do $(INSTALL_PROGRAM) $$file $(DESTDIR)$(BINDIR)/; done + find x2go* | while read file; do $(INSTALL_PROGRAM) $$file $(DESTDIR)$(BINDIR)/; done uninstall: - find nx* | while read file; do rm -f $(BINDIR)/$$file; done - find x2go* | while read file; do rm -f $(BINDIR)/$$file; done - $(RM_FILE) $(X2GOLIBDIR)/bin/x2goagent - $(RM_DIR) $(X2GOLIBDIR)/bin/ + find nx* | while read file; do rm -f $(DESTDIR)$(BINDIR)/$$file; done + find x2go* | while read file; do rm -f $(DESTDIR)$(BINDIR)/$$file; done + $(RM_FILE) $(DESTDIR)$(X2GOLIBDIR)/bin/x2goagent + $(RM_DIR) $(DESTDIR)$(X2GOLIBDIR)/bin/ --=_2rhk4ryoyv7s Content-Type: text/x-patch; charset=UTF-8; name="nx-libs-optflags.patch" Content-Disposition: attachment; filename="nx-libs-optflags.patch" Content-Transfer-Encoding: 7bit diff -up nx-libs-3.5.0.16/nxcomp/configure.in.optflags nx-libs-3.5.0.16/nxcomp/configure.in --- nx-libs-3.5.0.16/nxcomp/configure.in.optflags 2012-11-10 06:40:55.000000000 -0700 +++ nx-libs-3.5.0.16/nxcomp/configure.in 2012-12-11 13:13:19.390229196 -0700 @@ -7,8 +7,8 @@ AC_PREREQ(2.13) dnl Set our default compilation flags. -CXXFLAGS="-O3 -fno-rtti -fno-exceptions" -CFLAGS="-O3" +CXXFLAGS="$CXXFLAGS -O3 -fno-rtti -fno-exceptions" +CFLAGS="$CFLAGS -O3" dnl Reset default linking directives. diff -up nx-libs-3.5.0.16/nxcompext/configure.in.optflags nx-libs-3.5.0.16/nxcompext/configure.in --- nx-libs-3.5.0.16/nxcompext/configure.in.optflags 2012-11-10 06:40:55.000000000 -0700 +++ nx-libs-3.5.0.16/nxcompext/configure.in 2012-12-11 13:15:26.712576302 -0700 @@ -7,8 +7,8 @@ AC_PREREQ(2.13) dnl Reset default compilation flags. -CXXFLAGS="-O3" -CFLAGS="-O3" +CXXFLAGS="$CXXFLAGS -O3" +CFLAGS="$CFLAGS -O3" dnl Reset default linking directives. diff -up nx-libs-3.5.0.16/nxcompshad/configure.in.optflags nx-libs-3.5.0.16/nxcompshad/configure.in --- nx-libs-3.5.0.16/nxcompshad/configure.in.optflags 2012-11-10 06:40:56.000000000 -0700 +++ nx-libs-3.5.0.16/nxcompshad/configure.in 2012-12-11 13:13:25.915196300 -0700 @@ -7,8 +7,8 @@ AC_PREREQ(2.13) dnl Reset default compilation flags. -CXXFLAGS="-O3" -CPPFLAGS="-O3" +CXXFLAGS="$CXXFLAGS -O3" +CPPFLAGS="$CPPFLAGS -O3" dnl Reset default linking directives. diff -up nx-libs-3.5.0.16/nxproxy/configure.in.optflags nx-libs-3.5.0.16/nxproxy/configure.in --- nx-libs-3.5.0.16/nxproxy/configure.in.optflags 2012-11-10 06:40:55.000000000 -0700 +++ nx-libs-3.5.0.16/nxproxy/configure.in 2012-12-11 13:16:19.955301045 -0700 @@ -7,8 +7,8 @@ AC_PREREQ(2.13) dnl Reset default compilation flags. -CXXFLAGS="-O3" -CPPFLAGS="-O3" +CXXFLAGS="$CXXFLAGS -O3" +CPPFLAGS="$CPPFLAGS -O3" dnl Prefer headers and libraries from nx-X11 if present. diff -up nx-libs-3.5.0.16/nx-X11/programs/xterm/configure.optflags nx-libs-3.5.0.16/nx-X11/programs/xterm/configure --=_2rhk4ryoyv7s-- --=_4svmgxfdbafc Content-Type: application/pgp-signature Content-Description: Digitale PGP-Unterschrift Content-Disposition: inline Content-Transfer-Encoding: 7bit -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.10 (GNU/Linux) iQIcBAABAgAGBQJQyHKIAAoJEJr0azAldxsxb78P/3wqb9hJETrF+EjywQdU3fhb J9bgIKCslBa7pVIrSrPbPQ1YRjGuzGa5LOUS3iK2c55sKqFJjfbva31ytAoET3xz Mbae9cZAE/Jp8tvP2BP1o/ubpDtAgYcOWgQ0nV8KwMIZCbMdb/X9Hgy47TxR77Tp /0T1mtpEUkH5llmhR57UqTds5TSqmzL4rtOUBaMlB573/UurjnSanwZULORcJSha xZJLolMhuXvyXN+sTUY+pi1t5//a/LhAMull/UawFkUL3UZYelvSdMFh63Xy0o/3 LG92RY/3j/nNmtmVxID4Xwv7pYwPX80TnMB2OihZ738k1vBxaRQpIg0GQir3MJJJ VIP4ZEwLN569qT1kWkiuL+zI0bCYzlCn3YBnMb3ua4uGGOwwWJMxtPxmtYn3zukn gdRiJrVs+Qvk9f4Ste/lO3Xz5+7PhdZcV7HUKZ28lD8seZpoCYSYl/FKatyL6hB7 SHOq/EV1Q7FZDorQD2r+PRBEtFQr5FoPtODxV8kdqHbUvSAiAVOKY27rW0avNp3u 9cy2GtSErcRcIIOxwEPCNHYK01dgOixaw9g9pViTCjtHzrZm8bGBxfkJVI7cna5R fEbaOMCb8LV3zSS1TmfrCZz2OgzFxJYaZuPBON9G2qnl0zko5Hw0o5p/AYi/NzxX Pcr5lzxDL02/imSpNFv9 =Izeg -----END PGP SIGNATURE----- --=_4svmgxfdbafc-- From mike.gabriel@das-netzwerkteam.de Wed Dec 12 13:24:28 2012 Received: (at 84) by bugs.x2go.org; 12 Dec 2012 12:24:28 +0000 Received: from freya.das-netzwerkteam.de (freya.das-netzwerkteam.de [88.198.48.199]) by ymir (Postfix) with ESMTPS id C7B5E5DA6B; Wed, 12 Dec 2012 13:24:28 +0100 (CET) Received: from grimnir.das-netzwerkteam.de (grimnir.das-netzwerkteam.de [78.46.204.98]) by freya.das-netzwerkteam.de (Postfix) with ESMTPS id 515329FE; Wed, 12 Dec 2012 13:24:28 +0100 (CET) Received: from localhost (localhost [127.0.0.1]) by grimnir.das-netzwerkteam.de (Postfix) with ESMTP id 453063BA4C; Wed, 12 Dec 2012 13:24:28 +0100 (CET) X-Virus-Scanned: Debian amavisd-new at grimnir.das-netzwerkteam.de Received: from grimnir.das-netzwerkteam.de ([127.0.0.1]) by localhost (grimnir.das-netzwerkteam.de [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id Z9PZhRjpYG1w; Wed, 12 Dec 2012 13:24:28 +0100 (CET) Received: from localhost (localhost [127.0.0.1]) by grimnir.das-netzwerkteam.de (Postfix) with ESMTP id 1EFD43C037; Wed, 12 Dec 2012 13:24:28 +0100 (CET) Received: from localhost (localhost [127.0.0.1]) by grimnir.das-netzwerkteam.de (Postfix) with ESMTP id 02DF03BA4C; Wed, 12 Dec 2012 13:24:28 +0100 (CET) X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on grimnir.das-netzwerkteam.de X-Spam-Flag: NO X-Spam-Status: No, hits=-2.9 required=5.0 tests=ALL_TRUSTED,BAYES_00 autolearn=ham version=3.3.1 running as userid= X-Spam-Level: X-Spam-Bayes-Score: 0.0000 Received: by grimnir.das-netzwerkteam.de (Postfix, from userid 33) id BE86E3C037; Wed, 12 Dec 2012 13:24:27 +0100 (CET) Received: from 195.244.234.222 ([195.244.234.222]) by mail.das-netzwerkteam.de (Horde Framework) with HTTP; Wed, 12 Dec 2012 13:24:27 +0100 Message-ID: <20121212132427.50605jrxg15bxraz@mail.das-netzwerkteam.de> X-Priority: 3 (Normal) Date: Wed, 12 Dec 2012 13:24:27 +0100 From: Mike Gabriel To: 84@bugs.x2go.org Cc: control@bugs.x2go.org Subject: Patch has been applied to nx-libs.git MIME-Version: 1.0 Content-Type: multipart/signed; boundary="=_5gy1qmyvk70b"; protocol="application/pgp-signature"; micalg="pgp-sha1" Content-Transfer-Encoding: 7bit User-Agent: Internet Messaging Program (IMP) H3 (4.3.4) This message is in MIME format and has been PGP signed. --=_5gy1qmyvk70b Content-Type: text/plain; charset=UTF-8; DelSp="Yes"; format="flowed" Content-Disposition: inline Content-Transfer-Encoding: 7bit tag #84 pending thanks The OPTFLAGS patch has been applied to nx-libs.git: http://code.x2go.org/gitweb?p=nx-libs.git;a=commitdiff;h=923b7c7eb08520622becfa86389abc2a45e771b7 http://code.x2go.org/gitweb?p=nx-libs.git;a=commitdiff;h=3727d736b600096b9a177bec5b8639605ba776ac The DESTDIR patch had already been committed to nx-libs.git (reported by Jan Engelhard): http://code.x2go.org/gitweb?p=nx-libs.git;a=commitdiff;h=5a640efd1002d5fadff72542afb8e00bd14bcb6e Greets, Mike -- DAS-NETZWERKTEAM mike gabriel, rothenstein 5, 24214 neudorf-bornstein fon: +49 (1520) 1976 148 GnuPG Key ID 0x25771B31 mail: mike.gabriel@das-netzwerkteam.de, http://das-netzwerkteam.de freeBusy: https://mail.das-netzwerkteam.de/freebusy/m.gabriel%40das-netzwerkteam.de.xfb --=_5gy1qmyvk70b Content-Type: application/pgp-signature Content-Description: Digitale PGP-Unterschrift Content-Disposition: inline Content-Transfer-Encoding: 7bit -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.10 (GNU/Linux) iQIcBAABAgAGBQJQyHd7AAoJEJr0azAldxsx2jAP/2wUVjFlNVjLSlCh2GvgtzAt 08NCmYaL09LbYjo+OBpgCaAc1x4epIFK1qpSGmYYYks5BFrZ91PczzDcODM46GCw 8zUlSjBWLQsBcV6urIrFR5uKSDURXUVgLlhstsQKAF/mSp8WqMemJ4ttRJTwkL2m TBDYc8xGgS2XAHVZgstm19VD2YEKUpFG4TR3iaFuilIo7g3AOJmlL1NyFCZ64NHf g1eT4l0TbfDhAe3+VkwRf5h0Fz48HSnu2WVB+BUEK+PXXiF7suiGNWj/sOuuSN9g efdLEJlIaFuUamfJSAQ6SKc2rJGcfV1HFmJFGtga4NAFyLGt3oHXegwioLG6k3cS RXJ01vEjMWLYHosfW9Isl+QUi4/HPXfWsRDEMZugwVmxGOj9g4NGLULYozL4P5Ka HTqJc5D0eeJD3MUZ3fMrHLyIUMvujgcDD8CerOy/w0LaIBxJCgKC0ioEnkIhgH8u bZEsSTmDT5nQ03ChZxAp3pepoDFMA45O+27c9uoCl3SDFLj4AkHjJhVVOEJV0Jp7 216N+UXMfwc/TZ6REj6p51xeW0uyl+O6ycnjpVVXm3shy7nhxNpalihyU9h5dnDn tZ/TB+M8FRhK5+pzbPt7lzeMf8yH7K0McIqyE5wGPpCFv2QPIBQli0vfvxT/NjTY v4WbaBLdu6PaE5KGp9nr =XEYH -----END PGP SIGNATURE----- --=_5gy1qmyvk70b-- From voyageur@gentoo.org Tue Jan 8 13:23:23 2013 Received: (at 84) by bugs.x2go.org; 8 Jan 2013 12:23:23 +0000 Received: from intrepid.cafarelli.fr (intrepid.cafarelli.fr [88.191.154.185]) by ymir (Postfix) with ESMTP id 9AAE95DB0A for <84@bugs.x2go.org>; Tue, 8 Jan 2013 13:23:23 +0100 (CET) Received: from localhost (localhost [127.0.0.1]) by intrepid.cafarelli.fr (Postfix) with SMTP id 40305E00B4 for <84@bugs.x2go.org>; Tue, 8 Jan 2013 13:23:23 +0100 (CET) Received: from cafarelli.fr (localhost [127.0.0.1]) by intrepid.cafarelli.fr (Postfix) with ESMTP id CBF25E0072 for <84@bugs.x2go.org>; Tue, 8 Jan 2013 13:23:22 +0100 (CET) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit Date: Tue, 08 Jan 2013 13:23:22 +0100 From: Bernard Cafarelli To: 84@bugs.x2go.org Subject: Hardcoded -O3 in CFLAGS Organization: Gentoo Foundation, Inc. Message-ID: X-Sender: voyageur@gentoo.org User-Agent: Roundcube Webmail/0.9-git X-DSPAM-Result: Innocent X-DSPAM-Processed: Tue Jan 8 13:23:23 2013 X-DSPAM-Confidence: 1.0000 X-DSPAM-Improbability: 1 in 98689407 chance of being spam X-DSPAM-Probability: 0.0023 X-DSPAM-Signature: 25,50ec0fbb27148134061550 Regarding the optflags patch, is it possible to drop altogether the hardcoded "-O3" in C/CXXFLAGS in the various configure.in? This would remove the need for 4 autoreconf when using another optimization level -- Bernard Cafarelli (Voyageur) Gentoo developer (NX, GNUstep, net-misc, llvm/clang, ...) From jengelh@inai.de Tue Jan 8 17:07:12 2013 Received: (at 84) by bugs.x2go.org; 8 Jan 2013 16:07:12 +0000 Received: from ares07.inai.de (ares07.inai.de [5.9.24.206]) by ymir (Postfix) with ESMTPS id AEA825DB0A for <84@bugs.x2go.org>; Tue, 8 Jan 2013 17:07:12 +0100 (CET) Received: by ares07.inai.de (Postfix, from userid 25121) id 7F4C496A068A; Tue, 8 Jan 2013 17:07:12 +0100 (CET) Received: from localhost (localhost [127.0.0.1]) by ares07.inai.de (Postfix) with ESMTP id 5DB2E96A0689; Tue, 8 Jan 2013 17:07:12 +0100 (CET) Date: Tue, 8 Jan 2013 17:07:12 +0100 (CET) From: Jan Engelhardt To: Bernard Cafarelli , 84@bugs.x2go.org, x2go-dev@lists.berlios.de Subject: Re: [X2Go-Dev] Bug#84: Hardcoded -O3 in CFLAGS In-Reply-To: Message-ID: References: User-Agent: Alpine 2.01 (LNX 1266 2009-07-14) MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII On Tuesday 2013-01-08 13:23, Bernard Cafarelli wrote: >Regarding the optflags patch, is it possible to drop altogether the >hardcoded "-O3" in C/CXXFLAGS in the various configure.in? This would >remove the need for 4 autoreconf when using another optimization level Why would autoreconf be rerun if you use ./configure CFLAGS=-O2 CXXFLAGS=-O2? From mike.gabriel@das-netzwerkteam.de Tue Jan 8 22:25:57 2013 Received: (at 84) by bugs.x2go.org; 8 Jan 2013 21:25:57 +0000 Received: from freya.das-netzwerkteam.de (freya.das-netzwerkteam.de [88.198.48.199]) by ymir (Postfix) with ESMTPS id 2AD6F5DB0A for <84@bugs.x2go.org>; Tue, 8 Jan 2013 22:25:57 +0100 (CET) Received: from grimnir.das-netzwerkteam.de (grimnir.das-netzwerkteam.de [78.46.204.98]) by freya.das-netzwerkteam.de (Postfix) with ESMTPS id CE854AF3 for <84@bugs.x2go.org>; Tue, 8 Jan 2013 22:25:56 +0100 (CET) Received: from localhost (localhost [127.0.0.1]) by grimnir.das-netzwerkteam.de (Postfix) with ESMTP id 485CE3BA3C for <84@bugs.x2go.org>; Tue, 8 Jan 2013 22:25:56 +0100 (CET) X-Virus-Scanned: Debian amavisd-new at grimnir.das-netzwerkteam.de Received: from grimnir.das-netzwerkteam.de ([127.0.0.1]) by localhost (grimnir.das-netzwerkteam.de [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 7cA7IOcxmKDS for <84@bugs.x2go.org>; Tue, 8 Jan 2013 22:25:56 +0100 (CET) Received: from localhost (localhost [127.0.0.1]) by grimnir.das-netzwerkteam.de (Postfix) with ESMTP id A31F93BA5A for <84@bugs.x2go.org>; Tue, 8 Jan 2013 22:25:55 +0100 (CET) Received: from localhost (localhost [127.0.0.1]) by grimnir.das-netzwerkteam.de (Postfix) with ESMTP id 16B5A3BA3C for <84@bugs.x2go.org>; Tue, 8 Jan 2013 22:25:55 +0100 (CET) X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on grimnir.das-netzwerkteam.de X-Spam-Flag: NO X-Spam-Status: No, hits=-2.9 required=5.0 tests=ALL_TRUSTED,BAYES_00 autolearn=ham version=3.3.1 running as userid= X-Spam-Level: X-Spam-Bayes-Score: 0.0000 Received: by grimnir.das-netzwerkteam.de (Postfix, from userid 33) id 2EFF13BA5A; Tue, 8 Jan 2013 22:25:54 +0100 (CET) Received: from 14-190-142-46.pool.kielnet.net (14-190-142-46.pool.kielnet.net [46.142.190.14]) by mail.das-netzwerkteam.de (Horde Framework) with HTTP; Tue, 08 Jan 2013 22:25:54 +0100 Message-ID: <20130108222554.488876jwr99xa28y@mail.das-netzwerkteam.de> X-Priority: 3 (Normal) Date: Tue, 08 Jan 2013 22:25:54 +0100 From: Mike Gabriel To: 84@bugs.x2go.org Subject: Re: [X2Go-Dev] Bug#84: Hardcoded -O3 in CFLAGS References: In-Reply-To: MIME-Version: 1.0 Content-Type: multipart/signed; boundary="=_2s2u5rhmhgi"; protocol="application/pgp-signature"; micalg="pgp-sha1" Content-Transfer-Encoding: 7bit User-Agent: Internet Messaging Program (IMP) H3 (4.3.4) This message is in MIME format and has been PGP signed. --=_2s2u5rhmhgi Content-Type: text/plain; charset=UTF-8; DelSp="Yes"; format="flowed" Content-Disposition: inline Content-Transfer-Encoding: 7bit Hi Bernard, On Di 08 Jan 2013 13:23:22 CET Bernard Cafarelli wrote: > Regarding the optflags patch, is it possible to drop altogether the > hardcoded "-O3" in C/CXXFLAGS in the various configure.in? This > would remove the need for 4 autoreconf when using another > optimization level I actually plan to work on hardening the nx-libs build [1]. If you have experience with that, please appear on #x2go irc.freenode.net and let us discuss the needed steps. Greets, Mike [1] http://wiki.debian.org/Hardening -- DAS-NETZWERKTEAM mike gabriel, rothenstein 5, 24214 neudorf-bornstein fon: +49 (1520) 1976 148 GnuPG Key ID 0x25771B31 mail: mike.gabriel@das-netzwerkteam.de, http://das-netzwerkteam.de freeBusy: https://mail.das-netzwerkteam.de/freebusy/m.gabriel%40das-netzwerkteam.de.xfb --=_2s2u5rhmhgi Content-Type: application/pgp-signature Content-Description: Digitale PGP-Unterschrift Content-Disposition: inline Content-Transfer-Encoding: 7bit -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.10 (GNU/Linux) iQIcBAABAgAGBQJQ7I7hAAoJEJr0azAldxsxOK8P/RIUgjuZg/XtpGHdVMlKEnL1 sMQclbte3IvMaxIEpnR4PWZojdfWI0NgJ1Ll2SXmhS4zCdTPAIP8R6Ic2bbA5uZS ObtHOATCzodh5iidkkC/Fs0affWrzm2LXG1WGnKoOmJk+w8JWCaPfPnsWJAbhyQ6 rfrSOqHnr9EXQcROn1yHlZXvir0EgXlxSSo/3oQJFWb+s5tu1dKUQrDoN9virLXI jly45zrrftkw5MpVGoZQMW1txav+X+1hsjt60nkahnJ/l3B0diITJRqlNBsrtcCT 32AYeuf7E3zdFc5RV+8Aa+WK4LbJrVkzhv9aKgc/mhkI05iZBPNWt0OsxM3zW+6m YR2kB6eA80LjGXl37jllZY4a2nYBWjltBL4kFwRHWjVGEVTRS43+wuW3+NhWgwyw 7kMcCcZOrqyvj3hgRqGTf6dzn3czDdlKC7ZEdvCbRwLFviJYamWcsUaMkikW/ERe lJZgqKffj1UDdBbNZbhJtxcq+c4/dloyAVcab4U2TCPdEJjF84JL9VcTp8czxMUu ZEribqj476ZXAVsQAyFsMYGYr5ZGYuihhNdph/vOe3AapkxqwN/gOQx5nz2witer p/UjiJhuN5p2ga3rkzR94X/nsfsic8KT6sRh9MN6/cUIJO/MDOe1OiZxgsy+hjhX OxXvK3FoU2u7Qe5hJ4tO =R++w -----END PGP SIGNATURE----- --=_2s2u5rhmhgi-- From voyageur@gentoo.org Wed Jan 9 01:00:18 2013 Received: (at 84) by bugs.x2go.org; 9 Jan 2013 00:00:18 +0000 Received: from intrepid.cafarelli.fr (intrepid.cafarelli.fr [88.191.154.185]) by ymir (Postfix) with ESMTP id 63DDC5DB0A for <84@bugs.x2go.org>; Wed, 9 Jan 2013 01:00:18 +0100 (CET) Received: from enterprise.cafarelli.fr (unknown [IPv6:2a01:e35:2439:f290:922b:34ff:fe33:3399]) by intrepid.cafarelli.fr (Postfix) with ESMTPSA id 582FDE00B4 for <84@bugs.x2go.org>; Wed, 9 Jan 2013 01:00:14 +0100 (CET) Date: Wed, 9 Jan 2013 01:00:11 +0100 From: Bernard Cafarelli To: 84@bugs.x2go.org Subject: Re: [X2Go-Dev] Bug#84: Hardcoded -O3 in CFLAGS Message-ID: <20130109010011.4f92023b@enterprise.cafarelli.fr> In-Reply-To: References: Organization: Gentoo Foundation, Inc. X-Mailer: Claws Mail 3.9.0 (GTK+ 2.24.14; x86_64-pc-linux-gnu) X-Face: 7~4(Qk<`!us|JEfF`9/56!o9Lag,791'IUvmH;`8s>5orOs['3K9z-]Z+q\P>g' Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable Le Tue, 8 Jan 2013 17:07:12 +0100 (CET) Jan Engelhardt a =C3=A9crit: > Why would autoreconf be rerun if you use ./configure CFLAGS=3D-O2=20 > CXXFLAGS=3D-O2? I meant, without first removing the "-O3" from configure.in (before autoreconf) With current configure.in, setting CXXFLAGS to "-O2" will give this: nxcomp $ autoreconf && ./configure && make [...] g++ -c -O2 -O3 -fno-rtti -fno-exceptions -I../nx-X11/exports/include -Wmissing-declarations -fPIC -DIN_ADDR_T=3Din_addr_t -DVERSION=3D\"3.5.0\" -DPACKAGE_NAME=3D\"\" -DPACKAGE_TARNAME=3D\"\" -DPACKAGE_VERSION=3D\"\" -DPACKAGE_STRING=3D\"\" -DPACKAGE_BUGREPORT=3D\"\" -DPACKAGE_URL=3D\"\" -Wa= ll -Wpointer-arith EncodeBuffer.cpp Editing CXXFLAGS to "$CXXFLAGS -fno-rtti -fno-exceptions" will use user-defined optimization level 2 If hardcoded "-O3" is required, some test could be added to set "-O3" if CXXFLAGS is unset, then appending the rtti/exceptions flags From mike.gabriel@das-netzwerkteam.de Wed Jan 9 12:39:54 2013 Received: (at control) by bugs.x2go.org; 9 Jan 2013 11:39:54 +0000 Received: from freya.das-netzwerkteam.de (freya.das-netzwerkteam.de [88.198.48.199]) by ymir (Postfix) with ESMTPS id 7F2075DB0A for ; Wed, 9 Jan 2013 12:39:54 +0100 (CET) Received: from grimnir.das-netzwerkteam.de (grimnir.das-netzwerkteam.de [78.46.204.98]) by freya.das-netzwerkteam.de (Postfix) with ESMTPS id 4571C1F0 for ; Wed, 9 Jan 2013 12:39:54 +0100 (CET) Received: from localhost (localhost [127.0.0.1]) by grimnir.das-netzwerkteam.de (Postfix) with ESMTP id 2A80F3BA30 for ; Wed, 9 Jan 2013 12:39:54 +0100 (CET) X-Virus-Scanned: Debian amavisd-new at grimnir.das-netzwerkteam.de Received: from grimnir.das-netzwerkteam.de ([127.0.0.1]) by localhost (grimnir.das-netzwerkteam.de [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id GRmMF5wujL+q for ; Wed, 9 Jan 2013 12:39:54 +0100 (CET) Received: from localhost (localhost [127.0.0.1]) by grimnir.das-netzwerkteam.de (Postfix) with ESMTP id 055403BA37 for ; Wed, 9 Jan 2013 12:39:54 +0100 (CET) Received: from localhost (localhost [127.0.0.1]) by grimnir.das-netzwerkteam.de (Postfix) with ESMTP id DC9B13BA30 for ; Wed, 9 Jan 2013 12:39:53 +0100 (CET) X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on grimnir.das-netzwerkteam.de X-Spam-Flag: NO X-Spam-Status: No, hits=-2.9 required=5.0 tests=ALL_TRUSTED,BAYES_00 autolearn=ham version=3.3.1 running as userid= X-Spam-Level: X-Spam-Bayes-Score: 0.0000 Received: by grimnir.das-netzwerkteam.de (Postfix, from userid 33) id C2FAA3BA37; Wed, 9 Jan 2013 12:39:53 +0100 (CET) Received: from 79-175-142-46.pool.kielnet.net (79-175-142-46.pool.kielnet.net [46.142.175.79]) by mail.das-netzwerkteam.de (Horde Framework) with HTTP; Wed, 09 Jan 2013 12:39:53 +0100 Message-ID: <20130109123953.41315pyywqag2gax@mail.das-netzwerkteam.de> X-Priority: 3 (Normal) Date: Wed, 09 Jan 2013 12:39:53 +0100 From: Mike Gabriel To: control@bugs.x2go.org Subject: MIME-Version: 1.0 Content-Type: multipart/signed; boundary="=_5nadjyi6rfux"; protocol="application/pgp-signature"; micalg="pgp-sha1" Content-Transfer-Encoding: 7bit User-Agent: Internet Messaging Program (IMP) H3 (4.3.4) This message is in MIME format and has been PGP signed. --=_5nadjyi6rfux Content-Type: text/plain; charset=UTF-8; DelSp="Yes"; format="flowed" Content-Disposition: inline Content-Transfer-Encoding: 7bit tag #84 - pending --=_5nadjyi6rfux Content-Type: application/pgp-signature Content-Description: Digitale PGP-Unterschrift Content-Disposition: inline Content-Transfer-Encoding: 7bit -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.10 (GNU/Linux) iQIcBAABAgAGBQJQ7VcJAAoJEJr0azAldxsxQBEQAKoGYrnTQ6hJqgl7q0SvzekE SAy0//OFYt/Cy06kNl6DHrU03qATmvTI+xBfREpyzs0VpU64jQoNEbWhQ+fwUUX1 /abveb5a7K7QGcvTB5CCP17tGbmnSET8X0e9EzairM3cuQv6FuBn5yPgNoWvr/Oz kCI5btua3fSsNMjZLjw4XbK0/DlHPk7GHVySX3EW1rsNNBPZJ8VBFvZgaeYT0f+N BWILw7zafcSfSh3y3xq66cbjAAwxpfNz/MpqTwob9GsgcSXdDZa2ie0Ar+aftQPc VUZBOqR6FK3Vf6Xlv6LRhKViTpExEX4l80Ygje7RbSM0HqtCmMmFTjQekRgjmE+2 6rHp5zRBBchPJVm9mSpxWsu1ilJ6RjANKd4PPpGrpJFJ7a41GL/ULfpz+Yfbk5pA 83q4b0caEkilbV1b39DOE2hCoD76VNJ8gvroNQUaDxi1H8137QP/IimgMJjAs9UE LlZA4X+oadayjW2fdHbZzAuP4FLzEcGsFxiWBDWhvi7wTstCA7ohD7+sJs4bJhb7 zNhFwDP29h89aVKhc+3K2nBCDzicfipyQ2BA7sTcUy6DJq/fFB9BGNYmokWJd5Pf zF06H2tyrtMeLEO+6MNlWeE+Ok4ZmNj4F6eRFHIzpQxuoq6Ge71mc8d9rHrywtyM OOrbJfqhHngYd7yloM2s =Ppph -----END PGP SIGNATURE----- --=_5nadjyi6rfux-- From jengelh@inai.de Wed Jan 9 15:16:05 2013 Received: (at 84) by bugs.x2go.org; 9 Jan 2013 14:16:05 +0000 Received: from ares07.inai.de (ares07.inai.de [5.9.24.206]) by ymir (Postfix) with ESMTPS id B55D15DB0A for <84@bugs.x2go.org>; Wed, 9 Jan 2013 15:16:05 +0100 (CET) Received: by ares07.inai.de (Postfix, from userid 25121) id 9BC5F96A06B1; Wed, 9 Jan 2013 15:16:05 +0100 (CET) Received: from localhost (localhost [127.0.0.1]) by ares07.inai.de (Postfix) with ESMTP id 5BA7E96A068E; Wed, 9 Jan 2013 15:16:05 +0100 (CET) Date: Wed, 9 Jan 2013 15:16:05 +0100 (CET) From: Jan Engelhardt To: Bernard Cafarelli , 84@bugs.x2go.org, x2go-dev@lists.berlios.de Subject: Re: [X2Go-Dev] Bug#84: Hardcoded -O3 in CFLAGS In-Reply-To: <20130109010011.4f92023b@enterprise.cafarelli.fr> Message-ID: References: <20130109010011.4f92023b@enterprise.cafarelli.fr> User-Agent: Alpine 2.01 (LNX 1266 2009-07-14) MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=UTF-8 Content-Transfer-Encoding: 8BIT On Wednesday 2013-01-09 01:00, Bernard Cafarelli wrote: >Le Tue, 8 Jan 2013 17:07:12 +0100 (CET) >Jan Engelhardt a écrit: >> Why would autoreconf be rerun if you use ./configure CFLAGS=-O2 >> CXXFLAGS=-O2? > >I meant, without first removing the "-O3" from configure.in (before >autoreconf) > >With current configure.in, setting CXXFLAGS to "-O2" will give this: >nxcomp $ autoreconf && ./configure && make >[...] >g++ -c -O2 -O3 -fno-rtti -fno-exceptions -I../nx-X11/exports/include >-Wmissing-declarations -fPIC -DIN_ADDR_T=in_addr_t -DVERSION=\"3.5.0\" >-DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" >-DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE_URL=\"\" -Wall >-Wpointer-arith EncodeBuffer.cpp I tried the following, but it's not taking any effect. Must be some !@#$%^& going on. <<<< Give user-specified CXXFLAGS/CFLAGS/LDFLAGS/LIBS higher precedence. --- nxcomp/Makefile.in | 6 ++---- nxcompext/Makefile.in | 14 +++++++------- nxcompshad/Makefile.in | 5 ++--- nxproxy/Makefile.in | 4 ++-- 4 files changed, 13 insertions(+), 16 deletions(-) Index: nx-libs-3.5.0.17/nxcomp/Makefile.in =================================================================== --- nx-libs-3.5.0.17.orig/nxcomp/Makefile.in +++ nx-libs-3.5.0.17/nxcomp/Makefile.in @@ -36,8 +36,7 @@ LIBVERSION=@LIBVERSION@ # CXX = @CXX@ -CXXFLAGS = @CXXFLAGS@ @X_CFLAGS@ @DEFS@ \ - -Wall -Wpointer-arith +CXXFLAGS = @X_CFLAGS@ @DEFS@ -Wall -Wpointer-arith @CXXFLAGS@ CXXINCLUDES = CXXDEFINES = @@ -46,8 +45,7 @@ CXXDEFINES = # CC = @CC@ -CCFLAGS = @CFLAGS@ @X_CFLAGS@ @DEFS@ \ - -Wall -Wpointer-arith +CCFLAGS = @X_CFLAGS@ @DEFS@ -Wall -Wpointer-arith @CFLAGS@ CCINCLUDES = CCDEFINES = Index: nx-libs-3.5.0.17/nxcompext/Makefile.in =================================================================== --- nx-libs-3.5.0.17.orig/nxcompext/Makefile.in +++ nx-libs-3.5.0.17/nxcompext/Makefile.in @@ -28,26 +28,26 @@ LIBVERSION=@LIBVERSION@ # CXX = @CXX@ -CXXFLAGS = @CXXFLAGS@ @X_CFLAGS@ @DEFS@ \ +CXXFLAGS = @X_CFLAGS@ @DEFS@ \ -Wall -Wpointer-arith -Wstrict-prototypes -Wmissing-prototypes \ - -Wmissing-declarations -Wnested-externs + -Wmissing-declarations -Wnested-externs @CXXFLAGS@ CXXINCLUDES = -I. -I../nxcomp CXXDEFINES = CC = @CC@ -CCFLAGS = @CFLAGS@ @X_CFLAGS@ @DEFS@ \ +CCFLAGS = @X_CFLAGS@ @DEFS@ \ -Wall -Wpointer-arith -Wstrict-prototypes -Wmissing-prototypes \ - -Wmissing-declarations -Wnested-externs + -Wmissing-declarations -Wnested-externs @CFLAGS@ CCINCLUDES = -I. -I../nxcomp CCDEFINES = -LDFLAGS = @LDFLAGS@ -L../nxcomp -LIBS = @LIBS@ -lz -lNX_X11 -lXcomp +LDFLAGS = -L../nxcomp @LDFLAGS@ +LIBS = -lz -lNX_X11 -lXcomp @LIBS@ # # Only if THREADS is defined # -# LIBS = @LIBS@ -lz -ljpeg -lpthread -lNX_X11 -lXcomp +# LIBS = -lz -ljpeg -lpthread -lNX_X11 -lXcomp @LIBS@ # srcdir = @srcdir@ Index: nx-libs-3.5.0.17/nxcompshad/Makefile.in =================================================================== --- nx-libs-3.5.0.17.orig/nxcompshad/Makefile.in +++ nx-libs-3.5.0.17/nxcompshad/Makefile.in @@ -31,8 +31,7 @@ LIBVERSION=@LIBVERSION@ # CXX = @CXX@ -CXXFLAGS = @CXXFLAGS@ @X_CFLAGS@ @DEFS@ \ - -Wall -Wpointer-arith +CXXFLAGS = @X_CFLAGS@ @DEFS@ -Wall -Wpointer-arith @CXXFLAGS@ CXXINCLUDES = CXXDEFINES = @@ -48,7 +47,7 @@ CCINCLUDES = CCDEFINES = LDFLAGS = @LDFLAGS@ -LIBS = @LIBS@ -lNX_X11 +LIBS = -lNX_X11 @LIBS@ # # Only if THREADS is defined. Index: nx-libs-3.5.0.17/nxproxy/Makefile.in =================================================================== --- nx-libs-3.5.0.17.orig/nxproxy/Makefile.in +++ nx-libs-3.5.0.17/nxproxy/Makefile.in @@ -11,9 +11,9 @@ LIBVERSION=@LIBVERSION@ # -Wredundant-decls # CXX = @CXX@ -CXXFLAGS = @CXXFLAGS@ @X_CFLAGS@ @DEFS@ \ +CXXFLAGS = @X_CFLAGS@ @DEFS@ \ -Wall -Wpointer-arith -Wstrict-prototypes -Wmissing-prototypes \ - -Wmissing-declarations -Wnested-externs + -Wmissing-declarations -Wnested-externs @CXXFLAGS@ CXXINCLUDES = -I. -I../nxcomp From siretart@gmail.com Wed Jan 9 15:21:03 2013 Received: (at 84) by bugs.x2go.org; 9 Jan 2013 14:21:03 +0000 Received: from mail-ob0-f181.google.com (mail-ob0-f181.google.com [209.85.214.181]) by ymir (Postfix) with ESMTPS id CAF815DB0A for <84@bugs.x2go.org>; Wed, 9 Jan 2013 15:21:02 +0100 (CET) Received: by mail-ob0-f181.google.com with SMTP id oi10so2239648obb.12 for <84@bugs.x2go.org>; Wed, 09 Jan 2013 06:21:01 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc:content-type:content-transfer-encoding; bh=wXzX6+U//Iqr94rDo/9x8RduYrJXNg7k6wwxXAKUIf0=; b=TiIa32NyN1AN/XfFmswjzMz91l8Uksy7z2zbtHx1N71mRWfbsY61x3KLL8cR7E+u6U 8hHe9Wbod7QNo86gNX01YApw+VUg7ZMZwXoeiEO+pRuFL+AXlxfX+EYYE18CJMWHjjli dEL4dPyuSTFh8aqqcwqguRVGtjLtkzHC+nls6d0qUMCwi5ZWixOn2VY3/3m4HxczDXs4 KJ4OQBlqwGav0N3A5Ho32VmIomXSNNoLWJbmtLV5rjykdpKqSQ3A7LiOGKpXWuH5dPgH KR0Mw4LjGdOvH+qZWSo94k9IlHqMBN4HpQA+Ivm+4M0euCULPN5NvZy9KabqDlBMkQGZ Bx8Q== MIME-Version: 1.0 Received: by 10.60.170.242 with SMTP id ap18mr38112535oec.97.1357741261413; Wed, 09 Jan 2013 06:21:01 -0800 (PST) Received: by 10.60.25.71 with HTTP; Wed, 9 Jan 2013 06:21:01 -0800 (PST) In-Reply-To: References: <20130109010011.4f92023b@enterprise.cafarelli.fr> Date: Wed, 9 Jan 2013 15:21:01 +0100 Message-ID: Subject: Re: [X2Go-Dev] Bug#84: Hardcoded -O3 in CFLAGS From: Reinhard Tartler To: 84@bugs.x2go.org Cc: Bernard Cafarelli , Jan Engelhardt Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable On Wed, Jan 9, 2013 at 3:16 PM, Jan Engelhardt wrote: > On Wednesday 2013-01-09 01:00, Bernard Cafarelli wrote: > >>Le Tue, 8 Jan 2013 17:07:12 +0100 (CET) >>Jan Engelhardt a =E9crit: >>> Why would autoreconf be rerun if you use ./configure CFLAGS=3D-O2 >>> CXXFLAGS=3D-O2? >> >>I meant, without first removing the "-O3" from configure.in (before >>autoreconf) >> >>With current configure.in, setting CXXFLAGS to "-O2" will give this: >>nxcomp $ autoreconf && ./configure && make >>[...] >>g++ -c -O2 -O3 -fno-rtti -fno-exceptions -I../nx-X11/exports/include >>-Wmissing-declarations -fPIC -DIN_ADDR_T=3Din_addr_t -DVERSION=3D\"3.5.0\= " >>-DPACKAGE_NAME=3D\"\" -DPACKAGE_TARNAME=3D\"\" -DPACKAGE_VERSION=3D\"\" >>-DPACKAGE_STRING=3D\"\" -DPACKAGE_BUGREPORT=3D\"\" -DPACKAGE_URL=3D\"\" -= Wall >>-Wpointer-arith EncodeBuffer.cpp > > I tried the following, but it's not taking any effect. Must be some > !@#$%^& going on. > > <<<< > > Give user-specified CXXFLAGS/CFLAGS/LDFLAGS/LIBS higher precedence. > > --- > nxcomp/Makefile.in | 6 ++---- > nxcompext/Makefile.in | 14 +++++++------- > nxcompshad/Makefile.in | 5 ++--- > nxproxy/Makefile.in | 4 ++-- > 4 files changed, 13 insertions(+), 16 deletions(-) > > Index: nx-libs-3.5.0.17/nxcomp/Makefile.in > =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D > --- nx-libs-3.5.0.17.orig/nxcomp/Makefile.in > +++ nx-libs-3.5.0.17/nxcomp/Makefile.in > @@ -36,8 +36,7 @@ LIBVERSION=3D@LIBVERSION@ > # > > CXX =3D @CXX@ > -CXXFLAGS =3D @CXXFLAGS@ @X_CFLAGS@ @DEFS@ \ > - -Wall -Wpointer-arith > +CXXFLAGS =3D @X_CFLAGS@ @DEFS@ -Wall -Wpointer-arith @CXXFLAGS@ > CXXINCLUDES =3D > CXXDEFINES =3D > > @@ -46,8 +45,7 @@ CXXDEFINES =3D > # > > CC =3D @CC@ > -CCFLAGS =3D @CFLAGS@ @X_CFLAGS@ @DEFS@ \ > - -Wall -Wpointer-arith > +CCFLAGS =3D @X_CFLAGS@ @DEFS@ -Wall -Wpointer-arith @CFLAGS@ > CCINCLUDES =3D > CCDEFINES =3D > > Index: nx-libs-3.5.0.17/nxcompext/Makefile.in > =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D > --- nx-libs-3.5.0.17.orig/nxcompext/Makefile.in > +++ nx-libs-3.5.0.17/nxcompext/Makefile.in > @@ -28,26 +28,26 @@ LIBVERSION=3D@LIBVERSION@ > # > > CXX =3D @CXX@ > -CXXFLAGS =3D @CXXFLAGS@ @X_CFLAGS@ @DEFS@ \ > +CXXFLAGS =3D @X_CFLAGS@ @DEFS@ \ > -Wall -Wpointer-arith -Wstrict-prototypes -Wmissing-protot= ypes \ > - -Wmissing-declarations -Wnested-externs > + -Wmissing-declarations -Wnested-externs @CXXFLAGS@ > CXXINCLUDES =3D -I. -I../nxcomp > CXXDEFINES =3D > > CC =3D @CC@ > -CCFLAGS =3D @CFLAGS@ @X_CFLAGS@ @DEFS@ \ > +CCFLAGS =3D @X_CFLAGS@ @DEFS@ \ > -Wall -Wpointer-arith -Wstrict-prototypes -Wmissing-protot= ypes \ > - -Wmissing-declarations -Wnested-externs > + -Wmissing-declarations -Wnested-externs @CFLAGS@ > CCINCLUDES =3D -I. -I../nxcomp > CCDEFINES =3D > > -LDFLAGS =3D @LDFLAGS@ -L../nxcomp > -LIBS =3D @LIBS@ -lz -lNX_X11 -lXcomp > +LDFLAGS =3D -L../nxcomp @LDFLAGS@ > +LIBS =3D -lz -lNX_X11 -lXcomp @LIBS@ > > # > # Only if THREADS is defined > # > -# LIBS =3D @LIBS@ -lz -ljpeg -lpthread -lNX_X11 -lXcomp > +# LIBS =3D -lz -ljpeg -lpthread -lNX_X11 -lXcomp @LIBS@ > # > > srcdir =3D @srcdir@ > Index: nx-libs-3.5.0.17/nxcompshad/Makefile.in > =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D > --- nx-libs-3.5.0.17.orig/nxcompshad/Makefile.in > +++ nx-libs-3.5.0.17/nxcompshad/Makefile.in > @@ -31,8 +31,7 @@ LIBVERSION=3D@LIBVERSION@ > # > > CXX =3D @CXX@ > -CXXFLAGS =3D @CXXFLAGS@ @X_CFLAGS@ @DEFS@ \ > - -Wall -Wpointer-arith > +CXXFLAGS =3D @X_CFLAGS@ @DEFS@ -Wall -Wpointer-arith @CXXFLAGS@ > CXXINCLUDES =3D > CXXDEFINES =3D > > @@ -48,7 +47,7 @@ CCINCLUDES =3D > CCDEFINES =3D > > LDFLAGS =3D @LDFLAGS@ > -LIBS =3D @LIBS@ -lNX_X11 > +LIBS =3D -lNX_X11 @LIBS@ > > # > # Only if THREADS is defined. > Index: nx-libs-3.5.0.17/nxproxy/Makefile.in > =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D > --- nx-libs-3.5.0.17.orig/nxproxy/Makefile.in > +++ nx-libs-3.5.0.17/nxproxy/Makefile.in > @@ -11,9 +11,9 @@ LIBVERSION=3D@LIBVERSION@ > # -Wredundant-decls > # > CXX =3D @CXX@ > -CXXFLAGS =3D @CXXFLAGS@ @X_CFLAGS@ @DEFS@ \ > +CXXFLAGS =3D @X_CFLAGS@ @DEFS@ \ > -Wall -Wpointer-arith -Wstrict-prototypes -Wmissing-prototype= s \ > - -Wmissing-declarations -Wnested-externs > + -Wmissing-declarations -Wnested-externs @CXXFLAGS@ > > CXXINCLUDES =3D -I. -I../nxcomp AFAIUI, this is not a fix. Instead of replacing the hardcoded values, this patch ensures that all options end behind the hardcoded values. This makes it impossible to drop compiler flags that are specified within. This may be fair when your goal is to only change the optimization level, but may be insufficient when the goal is a hardened build. --=20 regards, Reinhard From jengelh@inai.de Wed Jan 9 15:26:06 2013 Received: (at 84) by bugs.x2go.org; 9 Jan 2013 14:26:06 +0000 Received: from ares07.inai.de (ares07.inai.de [5.9.24.206]) by ymir (Postfix) with ESMTPS id 58ABB5DB0A for <84@bugs.x2go.org>; Wed, 9 Jan 2013 15:26:06 +0100 (CET) Received: by ares07.inai.de (Postfix, from userid 25121) id 3548096A06B1; Wed, 9 Jan 2013 15:26:06 +0100 (CET) Received: from localhost (localhost [127.0.0.1]) by ares07.inai.de (Postfix) with ESMTP id 0E83496A068E; Wed, 9 Jan 2013 15:26:06 +0100 (CET) Date: Wed, 9 Jan 2013 15:26:06 +0100 (CET) From: Jan Engelhardt To: Reinhard Tartler cc: 84@bugs.x2go.org, Bernard Cafarelli Subject: Re: [X2Go-Dev] Bug#84: Hardcoded -O3 in CFLAGS In-Reply-To: Message-ID: References: <20130109010011.4f92023b@enterprise.cafarelli.fr> User-Agent: Alpine 2.01 (LNX 1266 2009-07-14) MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII On Wednesday 2013-01-09 15:21, Reinhard Tartler wrote: >> +++ nx-libs-3.5.0.17/nxcomp/Makefile.in >> @@ -36,8 +36,7 @@ LIBVERSION=@LIBVERSION@ >> # >> >> CXX = @CXX@ >> -CXXFLAGS = @CXXFLAGS@ @X_CFLAGS@ @DEFS@ \ >> - -Wall -Wpointer-arith >> +CXXFLAGS = @X_CFLAGS@ @DEFS@ -Wall -Wpointer-arith @CXXFLAGS@ >> CXXINCLUDES = >> CXXDEFINES = >> >AFAIUI, this is not a fix. Instead of replacing the hardcoded values, >this patch ensures that all options end behind the hardcoded values. >This makes it impossible to drop compiler flags that are specified >within. > >This may be fair when your goal is to only change the optimization >level, but may be insufficient when the goal is a hardened build. I don't care about the "hardened" because that is just another case of "user wants to specify his own CFLAGS". I had hoped that @CXXFLAGS@ would be those user-specific ones, but alas, no. *Total dismay at Makefile authors who still squat on CXXFLAGS* From mike.gabriel@das-netzwerkteam.de Wed Jan 9 16:10:44 2013 Received: (at 84) by bugs.x2go.org; 9 Jan 2013 15:10:44 +0000 Received: from freya.das-netzwerkteam.de (freya.das-netzwerkteam.de [88.198.48.199]) by ymir (Postfix) with ESMTPS id 54B655DB0A for <84@bugs.x2go.org>; Wed, 9 Jan 2013 16:10:44 +0100 (CET) Received: from grimnir.das-netzwerkteam.de (grimnir.das-netzwerkteam.de [78.46.204.98]) by freya.das-netzwerkteam.de (Postfix) with ESMTPS id 2A407D8D for <84@bugs.x2go.org>; Wed, 9 Jan 2013 16:10:44 +0100 (CET) Received: from localhost (localhost [127.0.0.1]) by grimnir.das-netzwerkteam.de (Postfix) with ESMTP id 1B42D3BA3B for <84@bugs.x2go.org>; Wed, 9 Jan 2013 16:10:44 +0100 (CET) X-Virus-Scanned: Debian amavisd-new at grimnir.das-netzwerkteam.de Received: from grimnir.das-netzwerkteam.de ([127.0.0.1]) by localhost (grimnir.das-netzwerkteam.de [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id nzi4nvrEAGrI for <84@bugs.x2go.org>; Wed, 9 Jan 2013 16:10:44 +0100 (CET) Received: from localhost (localhost [127.0.0.1]) by grimnir.das-netzwerkteam.de (Postfix) with ESMTP id EFC1F3BA36 for <84@bugs.x2go.org>; Wed, 9 Jan 2013 16:10:43 +0100 (CET) Received: from localhost (localhost [127.0.0.1]) by grimnir.das-netzwerkteam.de (Postfix) with ESMTP id C49AF3BA24 for <84@bugs.x2go.org>; Wed, 9 Jan 2013 16:10:43 +0100 (CET) X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on grimnir.das-netzwerkteam.de X-Spam-Flag: NO X-Spam-Status: No, hits=-2.9 required=5.0 tests=ALL_TRUSTED,BAYES_00 autolearn=ham version=3.3.1 running as userid= X-Spam-Level: X-Spam-Bayes-Score: 0.0000 Received: by grimnir.das-netzwerkteam.de (Postfix, from userid 33) id 6CA313BA34; Wed, 9 Jan 2013 16:10:41 +0100 (CET) Received: from 79-175-142-46.pool.kielnet.net (79-175-142-46.pool.kielnet.net [46.142.175.79]) by mail.das-netzwerkteam.de (Horde Framework) with HTTP; Wed, 09 Jan 2013 16:10:41 +0100 Message-ID: <20130109161041.118432fsrumy2jch@mail.das-netzwerkteam.de> X-Priority: 3 (Normal) Date: Wed, 09 Jan 2013 16:10:41 +0100 From: Mike Gabriel To: Jan Engelhardt , 84@bugs.x2go.org Cc: Reinhard Tartler , Bernard Cafarelli Subject: Re: [X2Go-Dev] Bug#84: Hardcoded -O3 in CFLAGS References: <20130109010011.4f92023b@enterprise.cafarelli.fr> In-Reply-To: MIME-Version: 1.0 Content-Type: multipart/signed; boundary="=_2zvymlzm2o35"; protocol="application/pgp-signature"; micalg="pgp-sha1" Content-Transfer-Encoding: 7bit User-Agent: Internet Messaging Program (IMP) H3 (4.3.4) This message is in MIME format and has been PGP signed. --=_2zvymlzm2o35 Content-Type: text/plain; charset=UTF-8; DelSp="Yes"; format="flowed" Content-Disposition: inline Content-Transfer-Encoding: 7bit Hi Jan, On Mi 09 Jan 2013 15:26:06 CET Jan Engelhardt wrote: > > On Wednesday 2013-01-09 15:21, Reinhard Tartler wrote: >>> +++ nx-libs-3.5.0.17/nxcomp/Makefile.in >>> @@ -36,8 +36,7 @@ LIBVERSION=@LIBVERSION@ >>> # >>> >>> CXX = @CXX@ >>> -CXXFLAGS = @CXXFLAGS@ @X_CFLAGS@ @DEFS@ \ >>> - -Wall -Wpointer-arith >>> +CXXFLAGS = @X_CFLAGS@ @DEFS@ -Wall -Wpointer-arith @CXXFLAGS@ >>> CXXINCLUDES = >>> CXXDEFINES = >>> >> AFAIUI, this is not a fix. Instead of replacing the hardcoded values, >> this patch ensures that all options end behind the hardcoded values. >> This makes it impossible to drop compiler flags that are specified >> within. >> >> This may be fair when your goal is to only change the optimization >> level, but may be insufficient when the goal is a hardened build. > > I don't care about the "hardened" because that is just another case > of "user wants to specify his own CFLAGS". > I had hoped that @CXXFLAGS@ would be those user-specific ones, > but alas, no. > *Total dismay at Makefile authors who still squat on CXXFLAGS* All kind of flags are hard-coded in linux.cf in nx-X11/cf/ (I think). You may know imake better then I do. If you could take another look at it, that would be awesome. Note: LDFLAGS appear to be named LDOPTIONS in nx-X11. Note, that nxcomp, nxcompshad and nxcompext are configured and built from within nx-X11/programs/Xserver/Makefile.in (IIRC, might be the Makfile.in one level up). So the nx* builds are prepared by imake. I guess the only way to address it is to teach imake to let through *FLAGS. The nx-X11 build process is a bummer..., I agree with that. Any help and improvement is really appreciated. Greets + HELP!!! + Arggghhh..., Mike -- DAS-NETZWERKTEAM mike gabriel, rothenstein 5, 24214 neudorf-bornstein fon: +49 (1520) 1976 148 GnuPG Key ID 0x25771B31 mail: mike.gabriel@das-netzwerkteam.de, http://das-netzwerkteam.de freeBusy: https://mail.das-netzwerkteam.de/freebusy/m.gabriel%40das-netzwerkteam.de.xfb --=_2zvymlzm2o35 Content-Type: application/pgp-signature Content-Description: Digitale PGP-Unterschrift Content-Disposition: inline Content-Transfer-Encoding: 7bit -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.10 (GNU/Linux) iQIcBAABAgAGBQJQ7YhxAAoJEJr0azAldxsxf+IP+wYD2g5qgEF6C7TXMYBKk7Bz 4RwZJeK2/+AxXb+MGQJxvyiNTLkXDmdL7TfSbMAFFaCqj0oDe8GUOPzUMciCkxyz QIwyl47PCrCamUAyDTeYm9Ozu+u+YImmw5qsVPnLAuyFbTab+C+WrL1yjn71auWd ceORODzjPCc5hX2aBUc/vnZlMmIJeqA8ZEkRPGhWfZSP/9sMls97oS4iE+i+sTXw NHP5u/91n35+/7Lyu6nupI2l3pVDgfUvmJEHzXykB9ABGlceDrXehFi6Ab2pHtMy RqzIyyBhT0mFzX3Yni0oHpaWE1CqoeTK/OKb28DqCX2Jbk4zwO9fHZFDHt/QTx7W b93ZaPYYL90ZPgJc075t+oslX2E4mmyA2vZyMa4y4M+JuMs6v1s55tpcNzK9qmae OPWfft1yoEuFuSrjaWLePRqraTuOjgsR8dHdx++23Kwf9uv2vo7s1P++oKu4PP8w NfuTNmShSU8lGTMuwH+MpyjMKlL9lbQBVUMlp4ehJ3BMHcXlV5xja/WWo7Iw4pBC eAZYfW/0OAQw3iZHgEwjj/VhABoeUcpZKCFXlDNJD8sPq1JI6r4QA7oUcg4647q0 XSBcH72YnglNsAw1SbCns+w5+iaqWdte9xHfkv8J+VXGHoIaZYQhmeAx9TO1P+/v 5tfluAopfhFk8IlJM8HB =H+B3 -----END PGP SIGNATURE----- --=_2zvymlzm2o35-- From jengelh@inai.de Wed Jan 9 16:22:56 2013 Received: (at 84) by bugs.x2go.org; 9 Jan 2013 15:22:56 +0000 Received: from ares07.inai.de (ares07.inai.de [5.9.24.206]) by ymir (Postfix) with ESMTPS id 0E34D5DB0A for <84@bugs.x2go.org>; Wed, 9 Jan 2013 16:22:56 +0100 (CET) Received: by ares07.inai.de (Postfix, from userid 25121) id E161A96A06B1; Wed, 9 Jan 2013 16:22:55 +0100 (CET) Received: from localhost (localhost [127.0.0.1]) by ares07.inai.de (Postfix) with ESMTP id AF6F496A068E; Wed, 9 Jan 2013 16:22:55 +0100 (CET) Date: Wed, 9 Jan 2013 16:22:55 +0100 (CET) From: Jan Engelhardt To: Mike Gabriel cc: 84@bugs.x2go.org, Reinhard Tartler , Bernard Cafarelli Subject: Re: [X2Go-Dev] Bug#84: Hardcoded -O3 in CFLAGS In-Reply-To: <20130109161041.118432fsrumy2jch@mail.das-netzwerkteam.de> Message-ID: References: <20130109010011.4f92023b@enterprise.cafarelli.fr> <20130109161041.118432fsrumy2jch@mail.das-netzwerkteam.de> User-Agent: Alpine 2.01 (LNX 1266 2009-07-14) MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII On Wednesday 2013-01-09 16:10, Mike Gabriel wrote: > > All kind of flags are hard-coded in linux.cf in nx-X11/cf/ (I think). You may > know imake better then I do. If you could take another look at it, that would > be awesome. > > Note: LDFLAGS appear to be named LDOPTIONS in nx-X11. > > Note, that nxcomp, nxcompshad and nxcompext are configured and built from > within nx-X11/programs/Xserver/Makefile.in (IIRC, might be the Makfile.in one > level up). So the nx* builds are prepared by imake. I guess the only way to > address it is to teach imake to let through *FLAGS. > > The nx-X11 build process is a bummer..., I agree with that. Any help and > improvement is really appreciated. Can we split nxcomp, nxcompshad, nxcompext and nxproxy into separate tarballs in any way? After all, they are "just" addons to an existing (X11|nx-libs) tree that gets installed as well and which looks usable. From siretart@gmail.com Wed Jan 9 16:32:08 2013 Received: (at 84) by bugs.x2go.org; 9 Jan 2013 15:32:08 +0000 Received: from mail-oa0-f41.google.com (mail-oa0-f41.google.com [209.85.219.41]) by ymir (Postfix) with ESMTPS id F1D275DB0A for <84@bugs.x2go.org>; Wed, 9 Jan 2013 16:32:07 +0100 (CET) Received: by mail-oa0-f41.google.com with SMTP id k14so1113937oag.28 for <84@bugs.x2go.org>; Wed, 09 Jan 2013 07:32:06 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc:content-type; bh=FMfaWB5gHfQ9g1KwELCqNF1HU7Ou69O7+n4JJD8/PPY=; b=cZ1Lr1CG+4Yc3Y9IeDOxGmEK6BCJu7zYnGea+5vOlyhW6gcMaTjrhCeZG3MX1ND8gO gBgBnRtvljhCH9FerbnMmzsPKrG89YcOMrRIcBD0iIXhdBcdAa2cMPq2jb6qq6K/Erbt dzbS2/uf7ndJc3UUXUtTxDdRbqBswCCYknVLqc1NUbXExkX3c6rtmJNKq4f7zXXsm5bL ahXYLey3jwskb5rzz6hA/Q3Az8hPUyrsb24NSWO1QJfYKvb5F0gv9iq6WO2gx+FMFqCr ZM1/6AHwRZUq4c3PsQXLMEQt5G2qoB2VdyDDE1TySFEudQd64c+kRwMQ3sv7xXXqbGJn fBvg== MIME-Version: 1.0 Received: by 10.182.92.70 with SMTP id ck6mr48823711obb.46.1357745526563; Wed, 09 Jan 2013 07:32:06 -0800 (PST) Received: by 10.60.25.71 with HTTP; Wed, 9 Jan 2013 07:32:06 -0800 (PST) In-Reply-To: References: <20130109010011.4f92023b@enterprise.cafarelli.fr> <20130109161041.118432fsrumy2jch@mail.das-netzwerkteam.de> Date: Wed, 9 Jan 2013 16:32:06 +0100 Message-ID: Subject: Re: [X2Go-Dev] Bug#84: Hardcoded -O3 in CFLAGS From: Reinhard Tartler To: Jan Engelhardt Cc: Mike Gabriel , 84@bugs.x2go.org, Bernard Cafarelli Content-Type: text/plain; charset=ISO-8859-1 On Wed, Jan 9, 2013 at 4:22 PM, Jan Engelhardt wrote: > > On Wednesday 2013-01-09 16:10, Mike Gabriel wrote: >> >> All kind of flags are hard-coded in linux.cf in nx-X11/cf/ (I think). You may >> know imake better then I do. If you could take another look at it, that would >> be awesome. >> >> Note: LDFLAGS appear to be named LDOPTIONS in nx-X11. >> >> Note, that nxcomp, nxcompshad and nxcompext are configured and built from >> within nx-X11/programs/Xserver/Makefile.in (IIRC, might be the Makfile.in one >> level up). So the nx* builds are prepared by imake. I guess the only way to >> address it is to teach imake to let through *FLAGS. >> >> The nx-X11 build process is a bummer..., I agree with that. Any help and >> improvement is really appreciated. > > Can we split nxcomp, nxcompshad, nxcompext and nxproxy into > separate tarballs in any way? > After all, they are "just" addons to an existing (X11|nx-libs) tree > that gets installed as well and which looks usable. That's what I have initially implemented. This was reverted because it caused strange segfaults nobody had the capacity to fully analyze. Mike can fill in the details. -- regards, Reinhard From mike.gabriel@das-netzwerkteam.de Tue Jun 14 00:58:05 2016 Received: (at 84) by bugs.x2go.org; 13 Jun 2016 22:58:07 +0000 X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on ymir.das-netzwerkteam.de X-Spam-Level: X-Spam-Status: No, score=-1.9 required=3.0 tests=BAYES_00,URIBL_BLOCKED autolearn=ham version=3.3.2 Received: from localhost (localhost [127.0.0.1]) by ymir.das-netzwerkteam.de (Postfix) with ESMTP id 228295DDD1 for <84@bugs.x2go.org>; Tue, 14 Jun 2016 00:58:05 +0200 (CEST) X-Virus-Scanned: Debian amavisd-new at ymir.das-netzwerkteam.de Received: from ymir.das-netzwerkteam.de ([127.0.0.1]) by localhost (ymir.das-netzwerkteam.de [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id we31pX42amuY for <84@bugs.x2go.org>; Tue, 14 Jun 2016 00:57:58 +0200 (CEST) Received: from freya.das-netzwerkteam.de (freya.das-netzwerkteam.de [88.198.48.199]) by ymir.das-netzwerkteam.de (Postfix) with ESMTPS id D00FD5DACE for <84@bugs.x2go.org>; Tue, 14 Jun 2016 00:57:58 +0200 (CEST) Received: from grimnir.das-netzwerkteam.de (grimnir.das-netzwerkteam.de [IPv6:2a01:4f8:131:20c1:5254:ff:fe24:f0dd]) by freya.das-netzwerkteam.de (Postfix) with ESMTPS id 9DC1F13B8 for <84@bugs.x2go.org>; Tue, 14 Jun 2016 00:57:58 +0200 (CEST) Received: from localhost (localhost [127.0.0.1]) by grimnir.das-netzwerkteam.de (Postfix) with ESMTP id 626463BFA8 for <84@bugs.x2go.org>; Tue, 14 Jun 2016 00:57:58 +0200 (CEST) X-Virus-Scanned: Debian amavisd-new at grimnir.das-netzwerkteam.de Received: from grimnir.das-netzwerkteam.de ([127.0.0.1]) by localhost (grimnir.das-netzwerkteam.de [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 6T2AypKHwmMe for <84@bugs.x2go.org>; Tue, 14 Jun 2016 00:57:52 +0200 (CEST) Received: from das-netzwerkteam.de (localhost [127.0.0.1]) by grimnir.das-netzwerkteam.de (Postfix) with ESMTPS id 277993BF70 for <84@bugs.x2go.org>; Tue, 14 Jun 2016 00:57:52 +0200 (CEST) Received: from p5B3B8AAC.dip0.t-ipconnect.de (p5B3B8AAC.dip0.t-ipconnect.de [91.59.138.172]) by mail.das-netzwerkteam.de (Horde Framework) with HTTP; Mon, 13 Jun 2016 22:57:52 +0000 Date: Mon, 13 Jun 2016 22:57:52 +0000 Message-ID: <20160613225752.Horde.JJWtVO15NCxnDySSyG3q141@mail.das-netzwerkteam.de> From: Mike Gabriel To: 84@bugs.x2go.org Subject: Re: [X2Go-Dev] Bug#84: DESTDIR and OPTFLAGS patches for nx-libs In-Reply-To: <20121212130320.10874vi4bmd2470o@mail.das-netzwerkteam.de> User-Agent: Horde Application Framework 5 Accept-Language: de,en Organization: DAS-NETZWERKTEAM X-Originating-IP: 91.59.138.172 X-Remote-Browser: Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Firefox/38.0 Iceweasel/38.8.0 Content-Type: multipart/signed; boundary="=_aAV6CwDxyaA39u7Yzesj25B"; protocol="application/pgp-signature"; micalg=pgp-sha256 MIME-Version: 1.0 This message is in MIME format and has been PGP signed. --=_aAV6CwDxyaA39u7Yzesj25B Content-Type: text/plain; charset=utf-8; format=flowed; DelSp=Yes Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Control: forwarded -1 https://github.com/ArcticaProject/nx-libs/issues/141 Hi, On Mi 12 Dez 2012 13:03:20 CET, Mike Gabriel wrote: > Package: nx-libs > > Patches attached for nx-libs: > - bin/Makefile doesn't support DESTDIR. The attached=20=20=20 >=20nx-libs-destdir.patch partially addresses that. > - The various nx*/configure.in files do not honor passed in compiler=20= =20 >=20flags. The attached nx-libs-optflags.patch fixes that. Note also=20=20 >=20though that CFLAGS is used in some and CPPFLAGS in others. > > > ----- Weitergeleitete Nachricht von orion@cora.nwra.com ----- > Datum: Tue, 11 Dec 2012 16:11:02 -0700 > Von: Orion Poplawski > Antwort an: x2go-dev@lists.berlios.de > Betreff: [X2Go-Dev] x2go for Fedora packaging issues > An: x2go-dev@lists.berlios.de > > [...] > > Thank you for your attention. > > - Orion This issue will be addressed before the 3.6.x release. Issue is being=20=20 tracked=20as: https://github.com/ArcticaProject/nx-libs/issues/141 Mike --=20 DAS-NETZWERKTEAM mike=20gabriel, herweg 7, 24357 fleckeby mobile: +49 (1520) 1976 148 landline: +49 (4354) 8390 139 GnuPG Key ID 0x25771B31 mail: mike.gabriel@das-netzwerkteam.de, http://das-netzwerkteam.de freeBusy: https://mail.das-netzwerkteam.de/mailxchange/kronolith/fb.php?u=3Dm.gabriel= %40das-netzwerkteam.de --=_aAV6CwDxyaA39u7Yzesj25B Content-Type: application/pgp-signature Content-Description: Digitale PGP-Signatur Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v2 iQIcBAABCAAGBQJXXzpwAAoJEJr0azAldxsxM2kQAJiNV0gLd2MkG5iVjPoTp0ua gRUEZuVEX+M273NxNaDhzlygsbCEPL0qR844VEdgCCCf8ETTMxP+IFX4Ikpkee8l /dCksuIOsD5jyVmuBnMPBee5O622xSgifHYyd1fsw8NbB0XMhxZsOSs8GNuHEeRf F1erwdIPfUC8elaDmOrg6N0yWKY4V3rvKMuBQgs0X5rT3kgBRlVsQTD9kRRdijPG cJJRBXhmYIVCNSibfw6KSSJvKAqDcJjtlwVFn0h0DBmicJN76n9JE1dnkoEuuy9Q CXD86xyL+e3lpMe8A86UUVLn7WSaUKhMaUlmka0FKdOClwxjz4tobKrqBwHjt623 pXncLbU5eQ6vIbs0ynlhzgld0tEasz01FL/plQnmC8/3GI7qGuenF22/DWFuNhPa FV7Ask61ByxAbfmOY1EeMltcjo8BBfismBuZbnWe5+BfsWDRnvht9oXk4VW25Bla mQWsa7A1/BfpUvl9dfWHR/T5s17mlQhV4Y0Jk1GJ1Jo3ijEJX4yGA+AkcawVHpAh uavvIQLOimOK5VfBlffxVgKf1Ip87/SSpjPsdEdC220JOsdtOaZjB17u+cXxwYPe 6yJrjmAvTJkZUj+BWryF3f1+5a/08Qu6Xi4ooOLTl+6/OEyXU05uoJQqo09q+9mt 9UdIloF8YgK3vKUmcTs4 =2CDd -----END PGP SIGNATURE----- --=_aAV6CwDxyaA39u7Yzesj25B-- From root@ext-mx0.grabowski.at Mon Jan 8 22:27:12 2024 Received: (at control) by bugs.x2go.org; 8 Jan 2024 21:27:28 +0000 X-Spam-Checker-Version: SpamAssassin 3.4.2 (2018-09-13) on ymir.das-netzwerkteam.de X-Spam-Level: X-Spam-Status: No, score=-1.9 required=3.0 tests=BAYES_00,SPF_HELO_NONE, T_SCC_BODY_TEXT_LINE autolearn=unavailable autolearn_force=no version=3.4.2 Received: from ext-mx0.grabowski.at (ext-mx0.grabowski.at [IPv6:2a02:c207:3006:3882:f000::125]) by ymir.das-netzwerkteam.de (Postfix) with ESMTPS id B41E75DAD2; Mon, 8 Jan 2024 22:27:11 +0100 (CET) Received: from me by localhost with local (Postfix 2.10) (envelope-from ) id 1rMx9K-00AiQ0-2E; Mon, 08 Jan 2024 22:27:10 +0100 From: Juri Grabowski To: control@bugs.x2go.org Cc: x2go@jugra.de, 84-submitter@bugs.x2go.org Subject: closing 84 Date: Mon, 08 Jan 2024 22:26:58 +0100 User-Agent: devscripts bts/2.23.4 Message-ID: <1704749218-805-bts-x2go@jugra.de> close 84 Hello, Note, that we are currently migrating to GitLab and its issue tracker, hence the manual bug closure. nx-libs becomes a new upstream on github: https://github.com/ArcticaProject/nx-libs Best Regards, Juri Grabowski From unknown Thu Mar 28 21:10:27 2024 MIME-Version: 1.0 X-Mailer: MIME-tools 5.509 (Entity 5.509) X-Loop: owner@bugs.x2go.org From: owner@bugs.x2go.org (X2Go Bug Tracking System) Subject: Bug#84 closed by Juri Grabowski (closing 84) Message-ID: References: <1704749218-805-bts-x2go@jugra.de> X-X2go-PR-Message: they-closed 84 X-X2go-PR-Package: nx-libs Date: Mon, 08 Jan 2024 21:30:02 +0000 Content-Type: multipart/mixed; boundary="----------=_1704749402-29559-0" This is a multi-part message in MIME format... ------------=_1704749402-29559-0 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset=utf-8 This is an automatic notification regarding your Bug report which was filed against the nx-libs package: #84: DESTDIR and OPTFLAGS patches for nx-libs It has been closed by Juri Grabowski . Their explanation is attached below along with your original report. If this explanation is unsatisfactory and you have not received a better one in a separate message then please contact Juri Grabowski by replying to this email. --=20 X2Go Bug Tracking System Contact owner@bugs.x2go.org with problems ------------=_1704749402-29559-0 Content-Type: message/rfc822 Content-Disposition: inline Content-Transfer-Encoding: 7bit Received: (at control) by bugs.x2go.org; 8 Jan 2024 21:27:28 +0000 X-Spam-Checker-Version: SpamAssassin 3.4.2 (2018-09-13) on ymir.das-netzwerkteam.de X-Spam-Level: X-Spam-Status: No, score=-1.9 required=3.0 tests=BAYES_00,SPF_HELO_NONE, T_SCC_BODY_TEXT_LINE autolearn=unavailable autolearn_force=no version=3.4.2 Received: from ext-mx0.grabowski.at (ext-mx0.grabowski.at [IPv6:2a02:c207:3006:3882:f000::125]) by ymir.das-netzwerkteam.de (Postfix) with ESMTPS id B41E75DAD2; Mon, 8 Jan 2024 22:27:11 +0100 (CET) Received: from me by localhost with local (Postfix 2.10) (envelope-from ) id 1rMx9K-00AiQ0-2E; Mon, 08 Jan 2024 22:27:10 +0100 From: Juri Grabowski To: control@bugs.x2go.org Cc: x2go@jugra.de, 84-submitter@bugs.x2go.org Subject: closing 84 Date: Mon, 08 Jan 2024 22:26:58 +0100 User-Agent: devscripts bts/2.23.4 Message-ID: <1704749218-805-bts-x2go@jugra.de> close 84 Hello, Note, that we are currently migrating to GitLab and its issue tracker, hence the manual bug closure. nx-libs becomes a new upstream on github: https://github.com/ArcticaProject/nx-libs Best Regards, Juri Grabowski ------------=_1704749402-29559-0 Content-Type: message/rfc822 Content-Disposition: inline Content-Transfer-Encoding: 7bit Received: (at submit) by bugs.x2go.org; 12 Dec 2012 12:03:22 +0000 Received: from freya.das-netzwerkteam.de (freya.das-netzwerkteam.de [88.198.48.199]) by ymir (Postfix) with ESMTPS id 4C64A5DA6B for ; Wed, 12 Dec 2012 13:03:22 +0100 (CET) Received: from grimnir.das-netzwerkteam.de (grimnir.das-netzwerkteam.de [78.46.204.98]) by freya.das-netzwerkteam.de (Postfix) with ESMTPS id 0D1499FE for ; Wed, 12 Dec 2012 13:03:22 +0100 (CET) Received: from localhost (localhost [127.0.0.1]) by grimnir.das-netzwerkteam.de (Postfix) with ESMTP id E01FA3C037 for ; Wed, 12 Dec 2012 13:03:21 +0100 (CET) X-Virus-Scanned: Debian amavisd-new at grimnir.das-netzwerkteam.de Received: from grimnir.das-netzwerkteam.de ([127.0.0.1]) by localhost (grimnir.das-netzwerkteam.de [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id QElbMBio4pRY for ; Wed, 12 Dec 2012 13:03:21 +0100 (CET) Received: from localhost (localhost [127.0.0.1]) by grimnir.das-netzwerkteam.de (Postfix) with ESMTP id BD1853C045 for ; Wed, 12 Dec 2012 13:03:21 +0100 (CET) Received: from localhost (localhost [127.0.0.1]) by grimnir.das-netzwerkteam.de (Postfix) with ESMTP id 9544B3C037 for ; Wed, 12 Dec 2012 13:03:21 +0100 (CET) X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on grimnir.das-netzwerkteam.de X-Spam-Flag: NO X-Spam-Status: No, hits=-2.9 required=5.0 tests=ALL_TRUSTED,BAYES_00 autolearn=ham version=3.3.1 running as userid= X-Spam-Level: X-Spam-Bayes-Score: 0.0000 Received: by grimnir.das-netzwerkteam.de (Postfix, from userid 33) id AEECC3BA4C; Wed, 12 Dec 2012 13:03:20 +0100 (CET) Received: from 195.244.234.222 ([195.244.234.222]) by mail.das-netzwerkteam.de (Horde Framework) with HTTP; Wed, 12 Dec 2012 13:03:20 +0100 Message-ID: <20121212130320.10874vi4bmd2470o@mail.das-netzwerkteam.de> X-Priority: 3 (Normal) Date: Wed, 12 Dec 2012 13:03:20 +0100 From: Mike Gabriel To: submit@bugs.x2go.org Cc: Orion Poplawski Subject: DESTDIR and OPTFLAGS patches for nx-libs MIME-Version: 1.0 Content-Type: multipart/signed; boundary="=_4svmgxfdbafc"; protocol="application/pgp-signature"; micalg="pgp-sha1" Content-Transfer-Encoding: 7bit User-Agent: Internet Messaging Program (IMP) H3 (4.3.4) This message is in MIME format and has been PGP signed. --=_4svmgxfdbafc Content-Type: multipart/mixed; boundary="=_2rhk4ryoyv7s" Content-Transfer-Encoding: 7bit This message is in MIME format. --=_2rhk4ryoyv7s Content-Type: text/plain; charset=UTF-8; DelSp="Yes"; format="flowed" Content-Disposition: inline Content-Transfer-Encoding: 7bit Package: nx-libs Patches attached for nx-libs: - bin/Makefile doesn't support DESTDIR. The attached nx-libs-destdir.patch partially addresses that. - The various nx*/configure.in files do not honor passed in compiler flags. The attached nx-libs-optflags.patch fixes that. Note also though that CFLAGS is used in some and CPPFLAGS in others. ----- Weitergeleitete Nachricht von orion@cora.nwra.com ----- Datum: Tue, 11 Dec 2012 16:11:02 -0700 Von: Orion Poplawski Antwort an: x2go-dev@lists.berlios.de Betreff: [X2Go-Dev] x2go for Fedora packaging issues An: x2go-dev@lists.berlios.de [...] Thank you for your attention. - Orion -- Orion Poplawski Technical Manager 303-415-9701 x222 NWRA, Boulder Office FAX: 303-415-9702 3380 Mitchell Lane orion@nwra.com Boulder, CO 80301 http://www.nwra.com ----- Ende der weitergeleiteten Nachricht ----- -- DAS-NETZWERKTEAM mike gabriel, rothenstein 5, 24214 neudorf-bornstein fon: +49 (1520) 1976 148 GnuPG Key ID 0x25771B31 mail: mike.gabriel@das-netzwerkteam.de, http://das-netzwerkteam.de freeBusy: https://mail.das-netzwerkteam.de/freebusy/m.gabriel%40das-netzwerkteam.de.xfb --=_2rhk4ryoyv7s Content-Type: text/x-patch; charset=UTF-8; name="nx-libs-destdir.patch" Content-Disposition: attachment; filename="nx-libs-destdir.patch" Content-Transfer-Encoding: 7bit diff -up nx-libs-3.5.0.16/bin/Makefile.destdir nx-libs-3.5.0.16/bin/Makefile --- nx-libs-3.5.0.16/bin/Makefile.destdir 2012-11-10 06:40:56.000000000 -0700 +++ nx-libs-3.5.0.16/bin/Makefile 2012-12-11 13:32:26.589921544 -0700 @@ -17,13 +17,14 @@ X2GOLIBDIR=$(PREFIX)/lib/x2go echo "Nothing to do for $@..." install: - $(INSTALL_DIR) $(X2GOLIBDIR)/bin/ - ln -sf $(NXLIBDIR)/bin/nxagent $(X2GOLIBDIR)/bin/x2goagent - find nx* | while read file; do $(INSTALL_PROGRAM) $$file $(BINDIR)/; done - find x2go* | while read file; do $(INSTALL_PROGRAM) $$file $(BINDIR)/; done + $(INSTALL_DIR) $(DESTDIR)$(X2GOLIBDIR)/bin/ + ln -sf $(NXLIBDIR)/bin/nxagent $(DESTDIR)$(X2GOLIBDIR)/bin/x2goagent + [ ! -d $(DESTDIR)$(BINDIR) ] && $(INSTALL_DIR) $(DESTDIR)$(BINDIR) + find nx* | while read file; do $(INSTALL_PROGRAM) $$file $(DESTDIR)$(BINDIR)/; done + find x2go* | while read file; do $(INSTALL_PROGRAM) $$file $(DESTDIR)$(BINDIR)/; done uninstall: - find nx* | while read file; do rm -f $(BINDIR)/$$file; done - find x2go* | while read file; do rm -f $(BINDIR)/$$file; done - $(RM_FILE) $(X2GOLIBDIR)/bin/x2goagent - $(RM_DIR) $(X2GOLIBDIR)/bin/ + find nx* | while read file; do rm -f $(DESTDIR)$(BINDIR)/$$file; done + find x2go* | while read file; do rm -f $(DESTDIR)$(BINDIR)/$$file; done + $(RM_FILE) $(DESTDIR)$(X2GOLIBDIR)/bin/x2goagent + $(RM_DIR) $(DESTDIR)$(X2GOLIBDIR)/bin/ --=_2rhk4ryoyv7s Content-Type: text/x-patch; charset=UTF-8; name="nx-libs-optflags.patch" Content-Disposition: attachment; filename="nx-libs-optflags.patch" Content-Transfer-Encoding: 7bit diff -up nx-libs-3.5.0.16/nxcomp/configure.in.optflags nx-libs-3.5.0.16/nxcomp/configure.in --- nx-libs-3.5.0.16/nxcomp/configure.in.optflags 2012-11-10 06:40:55.000000000 -0700 +++ nx-libs-3.5.0.16/nxcomp/configure.in 2012-12-11 13:13:19.390229196 -0700 @@ -7,8 +7,8 @@ AC_PREREQ(2.13) dnl Set our default compilation flags. -CXXFLAGS="-O3 -fno-rtti -fno-exceptions" -CFLAGS="-O3" +CXXFLAGS="$CXXFLAGS -O3 -fno-rtti -fno-exceptions" +CFLAGS="$CFLAGS -O3" dnl Reset default linking directives. diff -up nx-libs-3.5.0.16/nxcompext/configure.in.optflags nx-libs-3.5.0.16/nxcompext/configure.in --- nx-libs-3.5.0.16/nxcompext/configure.in.optflags 2012-11-10 06:40:55.000000000 -0700 +++ nx-libs-3.5.0.16/nxcompext/configure.in 2012-12-11 13:15:26.712576302 -0700 @@ -7,8 +7,8 @@ AC_PREREQ(2.13) dnl Reset default compilation flags. -CXXFLAGS="-O3" -CFLAGS="-O3" +CXXFLAGS="$CXXFLAGS -O3" +CFLAGS="$CFLAGS -O3" dnl Reset default linking directives. diff -up nx-libs-3.5.0.16/nxcompshad/configure.in.optflags nx-libs-3.5.0.16/nxcompshad/configure.in --- nx-libs-3.5.0.16/nxcompshad/configure.in.optflags 2012-11-10 06:40:56.000000000 -0700 +++ nx-libs-3.5.0.16/nxcompshad/configure.in 2012-12-11 13:13:25.915196300 -0700 @@ -7,8 +7,8 @@ AC_PREREQ(2.13) dnl Reset default compilation flags. -CXXFLAGS="-O3" -CPPFLAGS="-O3" +CXXFLAGS="$CXXFLAGS -O3" +CPPFLAGS="$CPPFLAGS -O3" dnl Reset default linking directives. diff -up nx-libs-3.5.0.16/nxproxy/configure.in.optflags nx-libs-3.5.0.16/nxproxy/configure.in --- nx-libs-3.5.0.16/nxproxy/configure.in.optflags 2012-11-10 06:40:55.000000000 -0700 +++ nx-libs-3.5.0.16/nxproxy/configure.in 2012-12-11 13:16:19.955301045 -0700 @@ -7,8 +7,8 @@ AC_PREREQ(2.13) dnl Reset default compilation flags. -CXXFLAGS="-O3" -CPPFLAGS="-O3" +CXXFLAGS="$CXXFLAGS -O3" +CPPFLAGS="$CPPFLAGS -O3" dnl Prefer headers and libraries from nx-X11 if present. diff -up nx-libs-3.5.0.16/nx-X11/programs/xterm/configure.optflags nx-libs-3.5.0.16/nx-X11/programs/xterm/configure --=_2rhk4ryoyv7s-- --=_4svmgxfdbafc Content-Type: application/pgp-signature Content-Description: Digitale PGP-Unterschrift Content-Disposition: inline Content-Transfer-Encoding: 7bit -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.10 (GNU/Linux) iQIcBAABAgAGBQJQyHKIAAoJEJr0azAldxsxb78P/3wqb9hJETrF+EjywQdU3fhb J9bgIKCslBa7pVIrSrPbPQ1YRjGuzGa5LOUS3iK2c55sKqFJjfbva31ytAoET3xz Mbae9cZAE/Jp8tvP2BP1o/ubpDtAgYcOWgQ0nV8KwMIZCbMdb/X9Hgy47TxR77Tp /0T1mtpEUkH5llmhR57UqTds5TSqmzL4rtOUBaMlB573/UurjnSanwZULORcJSha xZJLolMhuXvyXN+sTUY+pi1t5//a/LhAMull/UawFkUL3UZYelvSdMFh63Xy0o/3 LG92RY/3j/nNmtmVxID4Xwv7pYwPX80TnMB2OihZ738k1vBxaRQpIg0GQir3MJJJ VIP4ZEwLN569qT1kWkiuL+zI0bCYzlCn3YBnMb3ua4uGGOwwWJMxtPxmtYn3zukn gdRiJrVs+Qvk9f4Ste/lO3Xz5+7PhdZcV7HUKZ28lD8seZpoCYSYl/FKatyL6hB7 SHOq/EV1Q7FZDorQD2r+PRBEtFQr5FoPtODxV8kdqHbUvSAiAVOKY27rW0avNp3u 9cy2GtSErcRcIIOxwEPCNHYK01dgOixaw9g9pViTCjtHzrZm8bGBxfkJVI7cna5R fEbaOMCb8LV3zSS1TmfrCZz2OgzFxJYaZuPBON9G2qnl0zko5Hw0o5p/AYi/NzxX Pcr5lzxDL02/imSpNFv9 =Izeg -----END PGP SIGNATURE----- --=_4svmgxfdbafc-- ------------=_1704749402-29559-0-- From mike.gabriel@das-netzwerkteam.de Tue Jan 9 10:10:30 2024 Received: (at control) by bugs.x2go.org; 9 Jan 2024 09:10:42 +0000 X-Spam-Checker-Version: SpamAssassin 3.4.2 (2018-09-13) on ymir.das-netzwerkteam.de X-Spam-Level: X-Spam-Status: No, score=-0.2 required=3.0 tests=BAYES_00,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,MISSING_SUBJECT,SPF_HELO_NONE, T_SCC_BODY_TEXT_LINE,URIBL_BLOCKED autolearn=no autolearn_force=no version=3.4.2 Received: from fregna.das-netzwerkteam.de (fregna.das-netzwerkteam.de [148.251.53.130]) by ymir.das-netzwerkteam.de (Postfix) with ESMTPS id 4C7C95DAD2 for ; Tue, 9 Jan 2024 10:10:30 +0100 (CET) Received: from grimnir.das-netzwerkteam.de (grimnir.das-netzwerkteam.de [148.251.201.105]) by fregna.das-netzwerkteam.de (Postfix) with ESMTPS id ECAE7605BB for ; Tue, 9 Jan 2024 09:10:29 +0000 (UTC) Received: from das-netzwerkteam.de (localhost [127.0.0.1]) by grimnir.das-netzwerkteam.de (Postfix) with ESMTP id CD68FC0EE0 for ; Tue, 9 Jan 2024 10:10:29 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=das-netzwerkteam.de; s=dkim; t=1704791429; h=from:from:reply-to:subject:date:date:message-id:message-id:to:to:cc: mime-version:mime-version:content-type:content-type; bh=ECPQZwRwWPVQXHSTpabY2nJE8sKIzD9e0hyaos3jaHI=; b=tpBeQsYKWjRRez+Wh7ZfXiam8VIBN+bVnCr2oeyWbh+LgpvNA9H4V+e6UmRnDa3w7pKsIF vIyy1+gri7c84bG0pjPobTW6ZTv9Hh4IPfKLv1WOe1y4V8tJIlX/ZBTEhU2lE7rwll2zdk SlnnzOIMiNyxOEjwvThci/owIGyYR6FXijF+UKeNX936kVNhYR2wlwKxFGh7SVhCIHBbeA I3bxfcTo3xU1GMZrnPRtvSkavSW+UtCC+ekH9d3/DikkTUnt5Ww2gsDQQuDNJbmn7gVkSf BKyHLzuzZLxpqiqb+FxVnTmlK+zbwjOfLMPE6AhRGkFwmsK4A8uAqbLNI3IVhh45pnRIRu yHzMKx1/qaMLdbMBoRzCLwyvUGjoR73rWlSaf/QvwO0BaJ9ecUbZc9oQh3QmybMqoZZ+lt 8yz6QbCVcK3T6NdUS6U3I41ScKLUcjQs3VvoAdWltaiHnzXDmP+j5QXsk39VEf2K3WqpVe 49HbvcCT9P/W01ioE8TS0ICfBBg+NsKVcSsLxzcaq6+5wCARnGAwYmlmfY/IGpzV0XOFTx k/rY7GC0QufAhqhhNfbYTa02k0aAWCK0gEpy0W5HsA/Quk4hxGrr3SpcqpuJwKRfSvlE/X IKqGBPJ/ZQ/X/VjIEyvdKHNDnMQ96mr/pEP+kwXRoFmybd4o2sM0Y= Received: from business-90-187-115-117.pool2.vodafone-ip.de (business-90-187-115-117.pool2.vodafone-ip.de [90.187.115.117]) by mail.das-netzwerkteam.de (Horde Framework) with HTTPS; Tue, 09 Jan 2024 09:10:29 +0000 Date: Tue, 09 Jan 2024 09:10:29 +0000 Message-ID: <20240109091029.Horde.NQx3ejcYshtKBv38Cqmmk4o@mail.das-netzwerkteam.de> From: Mike Gabriel To: control@bugs.x2go.org User-Agent: Horde Application Framework 5 Accept-Language: de,en Organization: DAS-NETZWERKTEAM X-Originating-IP: 90.187.115.117 X-Remote-Browser: Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36 Content-Type: multipart/signed; boundary="=_dXn-HeKUXFLV4e28PRm_GpB"; protocol="application/pgp-signature"; micalg=pgp-sha512 MIME-Version: 1.0 This message is in MIME format and has been PGP signed. --=_dXn-HeKUXFLV4e28PRm_GpB Content-Type: text/plain; charset=utf-8; format=flowed; DelSp=Yes Content-Disposition: inline Content-Transfer-Encoding: quoted-printable archive #84 archive #879 archive #866 kthxbye --=20 DAS-NETZWERKTEAM c\o=20Technik- und =C3=96kologiezentrum Eckernf=C3=B6rde Mike Gabriel, Marienthaler Str. 17, 24340 Eckernf=C3=B6rde mobile: +49 (1520) 1976 148 landline: +49 (4351) 850 8940 GnuPG Fingerprint: 9BFB AEE8 6C0A A5FF BF22 0782 9AF4 6B30 2577 1B31 mail: mike.gabriel@das-netzwerkteam.de, http://das-netzwerkteam.de --=_dXn-HeKUXFLV4e28PRm_GpB Content-Type: application/pgp-signature Content-Description: Digitale PGP-Signatur Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v2 iQIzBAABCgAdFiEEm/uu6GwKpf+/IgeCmvRrMCV3GzEFAmWdDYQACgkQmvRrMCV3 GzHpmw//ev0qWoBc0gFigaBFQH6L56kGqQY8jtLL3deI3Yk3/2S6dQRwNR8LA6dM GJdG1OGcBCh2nc8UNujsZ7HqsHpHuOwxJWfsTK+KTWL3OZ8+jYsINtIkYqHvVIJw USro/pbf5DXFlYxCOQJgcKaiVu3zoOYClLTgpRHX+y4E3vLxz3HA5Q1kEe28w7bk KXTUMirPLD2VUjBw1Q3vo8+Ece80FtI7cfY4315khGJ77iJOgycmfVjtp52nQsss mhB7g8Xmoc0inuIVKzaSHd+6unAwIXlNOusD1+KXccF6jQlxsCOAknMwWD2n58Ys 6A3nOM5NsfNt23rHq26QNi2Jt/TSUDozVQDM5FckBFhDz7xe7RcMP/AshYTg2EMm Dm71fO4w9oyMhZVrU34cikywE3YaiTxmKF21IkES0vRTdj1qk4ROnJKpJtM4wczL 2sO33/3rcL4BLBeARQPOrEI4nFOzfacf+7OiC9EOtHxYWU5m12QkEogx5dMa5dmT NyQVgKOY6pPuXPoEsWHcdrGDes9CxSkGqEqt4y7QhNSCHhLpxQf39O2/RFzRU5Ut h4O09v87B6myS9tVZYfFFiq/IEv1p8K+nLy37QeMhcebkheFB4FYHUO70gsUXfoY n7Qw5SkpP98WJc0sAfBsMZxTndcGHzURHNGviLFKvPR03EUH2F0= =ZFPO -----END PGP SIGNATURE----- --=_dXn-HeKUXFLV4e28PRm_GpB--