This is an automated email from the git hooks/post-receive script. x2go pushed a change to branch 3.6.x in repository nx-libs. from 10871bb nx-libs.spec: show compile calls during RPM-based builds. new 2c4afb8 mesa-quilt: ignore user configuration file when applying MESA patches. new 218a340 mesa-quilt: drop debugging option erroneously committed. new ef28eb4 nx-X11/extras/Mesa.patches_6.4.2/4002_no-special-glx-memfunctions.patch: include stdlib.h and string.h for memset, malloc and free prototypes. The 3 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: mesa-quilt | 9 ++++++++- .../Mesa.patches_6.4.2/4002_no-special-glx-memfunctions.patch | 11 ++++++----- 2 files changed, 14 insertions(+), 6 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 3.6.x in repository nx-libs. commit 2c4afb84effbbdf7451ab9de0e1fb891165c834a Author: Mihai Moldovan <ionic@ionic.de> Date: Tue Dec 19 11:32:54 2017 +0100 mesa-quilt: ignore user configuration file when applying MESA patches. --- mesa-quilt | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/mesa-quilt b/mesa-quilt index 2aec761..d0764c1 100755 --- a/mesa-quilt +++ b/mesa-quilt @@ -17,6 +17,8 @@ # Free Software Foundation, Inc., # 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. +set -x + d=. ; while [ ! -d "$d/nx-X11/extras" ] && [ "$(readlink -e "$d")" != "/" ]; do d="$d/.."; done # only continue, if in nx-libs tree @@ -36,7 +38,14 @@ if [ -d "$d/nx-X11/extras" ]; then cd "$d/nx-X11/extras/Mesa/" - quilt "$@" + # "--quiltrc -" disables reading global or user-local configuration files. + # These can override the environment settings if the quiltrc is not + # carefully crafted. + # For instance, it should set variables only if they aren't already + # provided through the environment, but since the quiltrc file is + # actually sourced as a shell script, there's no way to assume that + # a user's quiltrc is "sane". + quilt --quiltrc - "$@" cd - 1> /dev/null -- 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 3.6.x in repository nx-libs. commit 218a340d89fb646a365eca8dcabe918b9941440b Author: Mihai Moldovan <ionic@ionic.de> Date: Tue Dec 19 11:34:53 2017 +0100 mesa-quilt: drop debugging option erroneously committed. --- mesa-quilt | 2 -- 1 file changed, 2 deletions(-) diff --git a/mesa-quilt b/mesa-quilt index d0764c1..475ede4 100755 --- a/mesa-quilt +++ b/mesa-quilt @@ -17,8 +17,6 @@ # Free Software Foundation, Inc., # 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. -set -x - d=. ; while [ ! -d "$d/nx-X11/extras" ] && [ "$(readlink -e "$d")" != "/" ]; do d="$d/.."; done # only continue, if in nx-libs tree -- 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 3.6.x in repository nx-libs. commit ef28eb4720cc80fe78b966ef95e4ce5638650c9e Author: Mihai Moldovan <ionic@ionic.de> Date: Tue Dec 19 11:39:33 2017 +0100 nx-X11/extras/Mesa.patches_6.4.2/4002_no-special-glx-memfunctions.patch: include stdlib.h and string.h for memset, malloc and free prototypes. Without that they are only implicitly defined - leading to build failures on *SUSE. --- .../Mesa.patches_6.4.2/4002_no-special-glx-memfunctions.patch | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/nx-X11/extras/Mesa.patches_6.4.2/4002_no-special-glx-memfunctions.patch b/nx-X11/extras/Mesa.patches_6.4.2/4002_no-special-glx-memfunctions.patch index 4f68037..924cbe5 100644 --- a/nx-X11/extras/Mesa.patches_6.4.2/4002_no-special-glx-memfunctions.patch +++ b/nx-X11/extras/Mesa.patches_6.4.2/4002_no-special-glx-memfunctions.patch @@ -1,13 +1,14 @@ Description: Turn glx_ansic.h into a no-op include. (by using memset, malloc, free directly) Author: Mike Gabriel <mike.gabriel@das-netzwerkteam.de> -Index: Mesa/src/mesa/drivers/dri/common/glcontextmodes.c -=================================================================== ---- Mesa.orig/src/mesa/drivers/dri/common/glcontextmodes.c -+++ Mesa/src/mesa/drivers/dri/common/glcontextmodes.c -@@ -48,15 +48,14 @@ +--- a/src/mesa/drivers/dri/common/glcontextmodes.c ++++ b/src/mesa/drivers/dri/common/glcontextmodes.c +@@ -44,16 +44,17 @@ + # include "GL/glxint.h" # ifdef XFree86Server ++# include <stdlib.h> ++# include <string.h> # include "GL/glx_ansic.h" -extern void * __glXMalloc( size_t size ); -extern void __glXFree( void * ptr ); -- Alioth's /home/x2go-admin/maintenancescripts/git/hooks/post-receive-email on /srv/git/code.x2go.org/nx-libs.git