Timo Aaltonen pushed to branch upstream-unstable at X Strike Force / lib / libxcomposite
Commits: 19748f2f by Adam Jackson at 2013-01-15T14:28:48-05:00 configure: Remove AM_MAINTAINER_MODE Signed-off-by: Adam Jackson <[email protected]> - - - - - eda48b1b by Colin Walters at 2013-01-15T14:32:12-05:00 autogen.sh: Implement GNOME Build API http://people.gnome.org/~walters/docs/build-api.txt Signed-off-by: Adam Jackson <[email protected]> - - - - - 514ae7c5 by Jeremy Huddleston Sequoia at 2014-01-02T01:21:23-08:00 Use Xfree rather than XFree for consistency Signed-off-by: Jeremy Huddleston Sequoia <[email protected]> - - - - - 6383d0f1 by Peter Hutterer at 2017-01-26T11:59:25+10:00 autogen.sh: use exec instead of waiting for configure to finish Syncs the invocation of configure with the one from the server. Signed-off-by: Peter Hutterer <[email protected]> Reviewed-by: Emil Velikov <[email protected]> - - - - - 047a31b3 by Emil Velikov at 2017-01-26T11:59:25+10:00 autogen.sh: use quoted string variables Place quotes around the $srcdir, $ORIGDIR and $0 variables to prevent fall-outs, when they contain space. Signed-off-by: Emil Velikov <[email protected]> Reviewed-by: Peter Hutterer <[email protected]> Signed-off-by: Peter Hutterer <[email protected]> - - - - - 41b8b4f0 by Mihail Konev at 2017-01-26T13:52:49+10:00 autogen: add default patch prefix Signed-off-by: Mihail Konev <[email protected]> - - - - - 591b72e4 by Alan Coopersmith at 2018-11-19T21:46:07-08:00 Update README for gitlab migration Signed-off-by: Alan Coopersmith <[email protected]> - - - - - 01bb3dc1 by Alan Coopersmith at 2018-12-07T19:40:36-08:00 Update configure.ac bug URL for gitlab migration Signed-off-by: Alan Coopersmith <[email protected]> - - - - - fd7d02cc by Alan Coopersmith at 2019-03-10T17:25:19-07:00 libXcomposite 0.4.5 Signed-off-by: Alan Coopersmith <[email protected]> - - - - - 5 changed files: - Makefile.am - README → README.md - autogen.sh - configure.ac - src/Xcomposite.c Changes: ===================================== Makefile.am ===================================== @@ -36,3 +36,4 @@ ChangeLog: dist-hook: ChangeLog INSTALL +EXTRA_DIST = README.md ===================================== README → README.md ===================================== @@ -1,25 +1,18 @@ libXcomposite - client library for the Composite extension to the X11 protocol +------------------------------------------------------------------------------ All questions regarding this software should be directed at the Xorg mailing list: - http://lists.freedesktop.org/mailman/listinfo/xorg - -Please submit bug reports to the Xorg bugzilla: - - https://bugs.freedesktop.org/enter_bug.cgi?product=xorg + https://lists.x.org/mailman/listinfo/xorg The master development code repository can be found at: - git://anongit.freedesktop.org/git/xorg/lib/libXcomposite + https://gitlab.freedesktop.org/xorg/lib/libXcomposite - http://cgit.freedesktop.org/xorg/lib/libXcomposite +Please submit bug reports and requests to merge patches there. For patch submission instructions, see: - http://www.x.org/wiki/Development/Documentation/SubmittingPatches - -For more information on the git code manager, see: - - http://wiki.x.org/wiki/GitPage + https://www.x.org/wiki/Development/Documentation/SubmittingPatches ===================================== autogen.sh ===================================== @@ -1,12 +1,17 @@ #! /bin/sh -srcdir=`dirname $0` +srcdir=`dirname "$0"` test -z "$srcdir" && srcdir=. ORIGDIR=`pwd` -cd $srcdir +cd "$srcdir" autoreconf -v --install || exit 1 -cd $ORIGDIR || exit $? +cd "$ORIGDIR" || exit $? -$srcdir/configure --enable-maintainer-mode "$@" +git config --local --get format.subjectPrefix >/dev/null 2>&1 || + git config --local format.subjectPrefix "PATCH libXcomposite" + +if test -z "$NOCONFIGURE"; then + exec "$srcdir"/configure "$@" +fi ===================================== configure.ac ===================================== @@ -31,14 +31,13 @@ AC_PREREQ([2.60]) # that 'revision' number appears in Xcomposite.h and has to be manually # synchronized. # -AC_INIT(libXcomposite, [0.4.4], - [https://bugs.freedesktop.org/enter_bug.cgi?product=xorg], [libXcomposite]) +AC_INIT(libXcomposite, [0.4.5], + [https://gitlab.freedesktop.org/xorg/lib/libXcomposite/issues], [libXcomposite]) AC_CONFIG_SRCDIR([Makefile.am]) AC_CONFIG_HEADERS([config.h]) # Initialize Automake AM_INIT_AUTOMAKE([foreign dist-bzip2]) -AM_MAINTAINER_MODE # Initialize libtool AC_PROG_LIBTOOL ===================================== src/Xcomposite.c ===================================== @@ -147,7 +147,7 @@ XCompositeExtAddDisplay (XCompositeExtInfo *extinfo, */ XExtCodes *codes = XAddExtension(dpy); if (!codes) { - XFree(info); + Xfree(info); return NULL; } XESetCloseDisplay (dpy, codes->extension, XCompositeCloseDisplay); View it on GitLab: https://salsa.debian.org/xorg-team/lib/libxcomposite/-/compare/0db73ea70c690eabe581c7293f77ec2be18e1f41...fd7d02cc014ac9bf5bb7e68b66102ea36a76a59a -- View it on GitLab: https://salsa.debian.org/xorg-team/lib/libxcomposite/-/compare/0db73ea70c690eabe581c7293f77ec2be18e1f41...fd7d02cc014ac9bf5bb7e68b66102ea36a76a59a You're receiving this email because of your account on salsa.debian.org.

