Re: [PATCH libxshmfence 2/2] Add the required README file

2013-11-24 Thread Julien Cristau
On Tue, Nov 5, 2013 at 09:28:25 -0500, Gaetan Nadon wrote: Signed-off-by: Gaetan Nadon mems...@videotron.ca --- README | 25 + 1 file changed, 25 insertions(+) create mode 100644 README diff --git a/README b/README new file mode 100644 index 000..66b36f0

[PATCH:smproxy 5/7] Simplify unify variants of unique_filename

2013-11-24 Thread Alan Coopersmith
Variants depend on whether system has mkstemp, mktemp or tempnam Also fixes some const char warnings in this code. Signed-off-by: Alan Coopersmith alan.coopersm...@oracle.com --- save.c | 78 +++- 1 file changed, 33 insertions(+), 45

[PATCH:smproxy 7/7] Add -version option to print program version

2013-11-24 Thread Alan Coopersmith
Signed-off-by: Alan Coopersmith alan.coopersm...@oracle.com --- man/smproxy.man |5 - smproxy.c |7 ++- 2 files changed, 10 insertions(+), 2 deletions(-) diff --git a/man/smproxy.man b/man/smproxy.man index 892dbf2..a38d789 100644 --- a/man/smproxy.man +++ b/man/smproxy.man

[PATCH:smproxy 2/7] config: Add missing AC_CONFIG_SRCDIR

2013-11-24 Thread Alan Coopersmith
Regroup AC statements under the Autoconf initialization section. Regroup AM statements under the Automake initialization section. Signed-off-by: Alan Coopersmith alan.coopersm...@oracle.com --- configure.ac |8 +--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git

[PATCH:smproxy 6/7] Print which option was in error along with usage message

2013-11-24 Thread Alan Coopersmith
Signed-off-by: Alan Coopersmith alan.coopersm...@oracle.com --- smproxy.c | 14 -- 1 file changed, 12 insertions(+), 2 deletions(-) diff --git a/smproxy.c b/smproxy.c index 7c59f16..3ceb880 100644 --- a/smproxy.c +++ b/smproxy.c @@ -1168,17 +1168,27 @@ main (int argc, char *argv[])

[PATCH:smproxy 3/7] Add local copy of asprintf()

2013-11-24 Thread Alan Coopersmith
Signed-off-by: Alan Coopersmith alan.coopersm...@oracle.com --- configure.ac |7 ++- save.c | 45 + smproxy.h|5 + 3 files changed, 56 insertions(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index

[PATCH:smproxy 1/7] Replace #ifdef X_NOT_POSIX with explicit check for mktemp function

2013-11-24 Thread Alan Coopersmith
Signed-off-by: Alan Coopersmith alan.coopersm...@oracle.com --- configure.ac |2 +- save.c | 10 +- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/configure.ac b/configure.ac index c97bb04..1f23bac 100644 --- a/configure.ac +++ b/configure.ac @@ -35,7 +35,7 @@

[PATCH:smproxy 4/7] Convert sprintf calls to asprintf or snprintf

2013-11-24 Thread Alan Coopersmith
Signed-off-by: Alan Coopersmith alan.coopersm...@oracle.com --- save.c| 17 ++--- smproxy.c | 23 ++- 2 files changed, 20 insertions(+), 20 deletions(-) diff --git a/save.c b/save.c index 5d6b4ce..267f806 100644 --- a/save.c +++ b/save.c @@ -361,7 +361,7

Re: [PATCH:libXi] Remove fallback for _XEatDataWords, require libX11 1.6 for it

2013-11-24 Thread Peter Hutterer
On Sat, Nov 23, 2013 at 09:51:57AM -0800, Alan Coopersmith wrote: From: Michael Joost m...@michael-joost.de _XEatDataWords was orignally introduced with the May 2013 security patches, and in order to ease the process of delivering those, fallback versions of _XEatDataWords were included in

[PATCH] Xdmx: Initialize DMX extension even if not built with GLX support

2013-11-24 Thread Alan Coopersmith
dmxAddExtensions takes an argument to determine if it should just initialize the DMX extension, or both DMX GLX, but if GLX wasn't compiled in, the entire call was #ifdef'ed out, leaving the DMX extension unavailable. Signed-off-by: Alan Coopersmith alan.coopersm...@oracle.com ---