summaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2014-07-30Merge branch 'devel/x11' into tizentizen_3.0.2014.q3_common_releasesubmit/tizen_mobile/20141120.000000submit/tizen/20140819.234625submit/tizen/20140818.144456submit/tizen/20140818.084211tizen_3.0.2015.q2_commontizen_3.0.2015.q1_commontizen_3.0.2014.q4_commontizen_3.0.2014.q3_commontizenaccepted/tizen_wearableaccepted/tizen_tvaccepted/tizen_mobileaccepted/tizen_commonaccepted/tizen_3.0.2014.q3_commonBoram Park0-0/+0
Change-Id: If165433e0edde467b4293f9c50defa7218377c94
2014-07-24not build without xBoram Park1-2/+8
Change-Id: Ic9908d72d76ecec5ff12429a050964f6aff234c2
2014-07-24not build without xsubmit/devel/x11/20140724.060748devel/x11Boram Park1-2/+8
Change-Id: I14bcd015c5ffb762b485fe2616244b082c843c35
2013-09-03Add a spec file for packagingSung-Jin Park1-0/+50
Change-Id: Ic9b24e9e6d0c81f9d90a3ea6736095283e302c28
2013-09-02man: Add -event to the command synopsissubmit/tizen/20130910.024858Aaron Plattner1-0/+1
Commit d33b2c81bd931d581e5ce4b36f99ee60a76e740d added an option, -event, to allow the user to select which events to display. I remembered to add it to the man page's OPTIONS, section, but not to the command summary in the SYNOPSIS section. Change-Id: If53520ef5b5e3a907485fd5982b6691fc6474d83 Signed-off-by: Aaron Plattner <aplattner@nvidia.com> Reviewed-by: Peter Hutterer <peter.hutterer@who-t.net>
2013-09-02xev 1.2.1Aaron Plattner1-1/+1
Change-Id: I149b389c6cbcb0ad1bcce4f765ddcad7949efd95 Signed-off-by: Aaron Plattner <aplattner@nvidia.com>
2013-09-02Use strncasecmp instead of a tolower loop & strncmpAlan Coopersmith2-9/+7
v2: Since strncasecmp is in Unix98, assume it is always available, and drop fallback code for systems without it. Change-Id: I75ea1ac5eb90259af8faf505b75f98cadf15a1d2 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2013-09-02Fix clang warnings about converting size_t to int and back againAlan Coopersmith1-1/+1
xev.c:909:15: warning: implicit conversion loses integer precision: 'size_t' (aka 'unsigned long') to 'int' [-Wshorten-64-to-32] int len = strlen (s); ~~~ ^~~~~~~~~~ xev.c:917:34: warning: implicit conversion changes signedness: 'int' to 'size_t' (aka 'unsigned long') [-Wsign-conversion] if (strncmp (s, "notuseful", len) == 0) return (NotUseful); ~~~~~~~ ^~~ xev.c:918:35: warning: implicit conversion changes signedness: 'int' to 'size_t' (aka 'unsigned long') [-Wsign-conversion] if (strncmp (s, "whenmapped", len) == 0) return (WhenMapped); ~~~~~~~ ^~~ xev.c:919:31: warning: implicit conversion changes signedness: 'int' to 'size_t' (aka 'unsigned long') [-Wsign-conversion] if (strncmp (s, "always", len) == 0) return (Always); ~~~~~~~ ^~~ Change-Id: Ie275dd4b1ca2e3b25ad12176c189f981f635450f Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> Reviewed-by: Peter Hutterer <peter.hutterer@who-t.net>
2013-09-02Add a -event parameter to control the event maskAaron Plattner2-18/+103
It's annoying to have to sift through a lot of unrelated events if all you care about is one specific class of events (e.g. RandR events). Add a -event parameter that can be used to tune which events to select. When not specified, all events are selected. Change-Id: I36b0b36cc532d5e512d7469abd43a936afccbef5 Signed-off-by: Aaron Plattner <aplattner@nvidia.com> Reviewed-by: Andy Ritger <aritger@nvidia.com> Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
2013-09-02xev 1.2.0Alan Coopersmith1-1/+1
Change-Id: I37ecdf339f3b89176fe89fa4af28500c7bf124a5 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2013-09-02Rename "mask" variable to "rr_mask" in randr setup code.Alan Coopersmith1-4/+4
Fixes gcc warning: xev.c: In function `main': xev.c:1129: warning: declaration of 'mask' shadows a previous local xev.c:923: warning: shadowed declaration is here Change-Id: Ic42076df5348e76139f6f013a76860f5566ed52e Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2013-09-02Remove checks for NULL before XFreeAlan Coopersmith1-11/+11
Replaced if (.*) \(XFree (.*);\) with \1 Change-Id: I8c6191966838ebef4c6f9f162baced7322e2601d Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2013-09-02Remove render from PKG_CHECK_MODULES listAlan Coopersmith1-1/+1
No direct calls to libXrender functions or #includes of Xrender headers Fixes Solaris ld -z guidance warning: ld: guidance: removal of unused dependency recommended: libXrender.so.1 Change-Id: I070bb53efe2e888c274e03d882b779ccf4404444 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2013-09-02Add const attributes to fix gcc -Wwrite-strings warningsAlan Coopersmith1-14/+14
Change-Id: Idda44e10287c33ccb77552ef1fedb61c21842373 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2013-09-02Strip trailing whitespaceAlan Coopersmith3-24/+24
Performed with: find * -type f | xargs perl -i -p -e 's{[ \t]+$}{}' git diff -w & git diff -b show no diffs from this change Change-Id: Icf357baf944d453b9a8a86763e9c70281bd9c1cd Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2013-09-02config: Add missing AC_CONFIG_SRCDIRAlan Coopersmith1-3/+5
Regroup AC statements under the Autoconf initialization section. Regroup AM statements under the Automake initialization section. Change-Id: Ia66d29495de28b843305436c9736e04e744ff660 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2013-09-02Replace local checks for gcc with _X_NORETURN from xproto 7.0.17Alan Coopersmith2-6/+3
Change-Id: I91bf98b7d78aa4130198848d745142018b0ca435 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2013-09-02Show RandR eventsMichael Thayer2-1/+216
Change-Id: I3966985243b6b2f139eb02e9990d7ea5ec94acc0 Signed-off-by: Michael Thayer <michael.thayer@oracle.com> Signed-off-by: Aaron Plattner <aplattner@nvidia.com> Reviewed-by: Aaron Plattner <aplattner@nvidia.com> Tested-by: Aaron Plattner <aplattner@nvidia.com>
2013-09-02config: move man pages into their own directoryGaetan Nadon4-17/+17
Use services provided by XORG_MANPAGE_SECTIONS. Use standard Makefile for man pages. Change-Id: Iaacaee48391d38edefac74d301d6f114a6ee50da Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
2013-09-02man: replace hard coded man page section with substitution stringsGaetan Nadon1-1/+1
Change-Id: I4a50e4b77c3f04ac6ce74fca8c1c0f984f266311 Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
2013-09-02man: remove trailing spaces and tabsGaetan Nadon1-2/+2
Using s/[ \t]*$// Change-Id: Ic793510edc99d4ad7a55017f426b3e928e3137b0 Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
2013-09-02config: replace deprecated AM_CONFIG_HEADER with AC_CONFIG_HEADERSGaetan Nadon1-1/+1
This silences an Autoconf warning Change-Id: Ic0ff9616418452751505c07a30e2519d419335da
2013-09-02xev 1.1.0Alan Coopersmith1-1/+2
Change-Id: I15e3cc187e233af0793757716c1b823b8dbc6b03 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2013-09-02Purge cvs tags.Jesse Adkins2-6/+0
Change-Id: I77839e654d6dbee2d16fc46b437fe32d0686f7ff Signed-off-by: Jesse Adkins <jesserayadkins@gmail.com>
2013-09-02config: Remove unnecessary calls from configure.acAlan Coopersmith1-5/+0
AC_PROG_CC & AC_PROG_INSTALL are provided by XORG_DEFAULT_OPTIONS now PKG_CONFIG_MODULES handles AC_SUBST of the CFLAGS & LIBS variables Change-Id: I0e6fcb01d0c7acf47484b1ac11692e2551952f00 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2013-09-02config: upgrade to util-macros 1.8 for additional man page supportAlan Coopersmith2-22/+4
Use MAN_SUBST now supplied in XORG_MANPAGE_SECTIONS The value of MAN_SUBST is the same for all X.Org packages. Use AC_PROG_SED now supplied by XORG_DEFAULT_OPTIONS Enables use of platform appropriate version of sed. Change-Id: I1217dab96d02c88f82bb3cce87378afa40290c83 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2013-09-02config: update AC_PREREQ statement to 2.60Gaetan Nadon1-1/+1
Unrelated to the previous patches, the new value simply reflects the reality that the minimum level for autoconf to configure all x.org modules is 2.60 dated June 2006. ftp://ftp.gnu.org/gnu/autoconf/autoconf-2.60.tar.gz Change-Id: Ie0fc1e107262c33482bb09c291e8cee2cab4c02b Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
2013-09-02Add -root option to specify monitoring root window events.Kim Woelders2-3/+21
Change-Id: I4189cf1aaf34c7fc84a922220491f1eaefdcd5b4 Signed-off-by: Kim Woelders <kim@woelders.dk> Reviewed-by: Dan Nicholson <dbn.lists@gmail.com> Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
2013-09-02Makefile.am: add ChangeLog and INSTALL on MAINTAINERCLEANFILESGaetan Nadon1-0/+1
Now that the INSTALL file is generated. Allows running make maintainer-clean. Change-Id: Ibc2ee43a1180a0b543d32eba87f3192cf0815b32
2013-09-02INSTALL, NEWS, README or AUTHORS files are missing/incorrect #24206Gaetan Nadon4-2/+5
Add missing INSTALL file. Use standard GNU file on building tarball README may have been updated Remove AUTHORS file as it is empty and no content available yet. Remove NEWS file as it is empty and no content available yet. Change-Id: Id14ad6c6bd3c2d58013dcd02aae39353d944b3a0
2013-09-02Makefile.am: ChangeLog not required: EXTRA_DIST or *CLEANFILES #24432Gaetan Nadon1-2/+1
ChangeLog filename is known to Automake and requires no further coding in the makefile. Change-Id: I58eeb6162fc41deffefc1249373d20c671e6ae4a
2013-09-02.gitignore: use common defaults with custom section # 24239Gaetan Nadon1-6/+66
Using common defaults will reduce errors and maintenance. Only the very small or inexistent custom section need periodic maintenance when the structure of the component changes. Do not edit defaults. Change-Id: If75321d19c530b96e6e97d05877ffceff4b6428a
2013-09-02This is not a GNU project, so declare it foreign.Jeremy Huddleston1-1/+1
On Wed, 2009-10-21 at 13:36 +1000, Peter Hutterer wrote: > On Tue, Oct 20, 2009 at 08:23:55PM -0700, Jeremy Huddleston wrote: > > I noticed an INSTALL file in xlsclients and libXvMC today, and it > > was quite annoying to work around since 'autoreconf -fvi' replaces > > it and git wants to commit it. Should these files even be in git? > > Can I nuke them for the betterment of humanity and since they get > > created by autoreconf anyways? > > See https://bugs.freedesktop.org/show_bug.cgi?id=24206 As an interim measure, replace AM_INIT_AUTOMAKE([dist-bzip2]) with AM_INIT_AUTOMAKE([foreign dist-bzip2]). This will prevent the generation of the INSTALL file. It is also part of the 24206 solution. Change-Id: I5c500082210bee0dc49a01918b2ea159392c39b3 Signed-off-by: Jeremy Huddleston <jeremyhu@freedesktop.org>
2013-09-02xev 1.0.4Alan Coopersmith1-1/+1
Change-Id: I65d685f3f2570666b5b83ef2a8facb94b820da37 Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
2013-09-02Fill in COPYING with notice from xev.cAlan Coopersmith1-8/+21
Change-Id: I1dd14cfccb1db94884ec958ee8b416f44f4868b7 Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
2013-09-02Migrate to xorg macros 1.3 & XORG_DEFAULT_OPTIONSAlan Coopersmith2-9/+8
Change-Id: I20468e78cc2842639e68bfb97de9e8f984c17ebf Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
2013-09-02Add README with pointers to mailing lists, bugzilla, & gitAlan Coopersmith1-0/+31
Change-Id: I13a766d68d749fa3b41b03f1ff0e7db56b864d03 Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
2013-09-02xev: use XORG_CHANGELOG macro to create ChangeLog. #22611Gaetan Nadon2-1/+7
Build break: app/xev/Makefile.am: command not found: git-log Adding the macro in configure.ac and use it in Makefile.am Refer to: https://bugs.freedesktop.org/show_bug.cgi?id=22611 Tested: running autogen.sh, make and 'make dist' Change-Id: I27e4fc8154e2a19bf235d0b5e2f52cf6410e4c1d Signed-off-by: Gaetan Nadon <memsize@videotron.ca> Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
2013-09-02Flush standard output after processing each eventBranden Robinson1-0/+1
When redirecting the output of xev (eg, xev > foo), the output file is truncated on exit due to libc buffering, since xev's exit(0) is unreachable code. Reported by Bill Currie. Debian bug#238638 <http://bugs.debian.org/238638> Change-Id: I361d7e2fb008edcf99b1ca2d57cde62380393a95
2013-09-02xev 1.0.3Adam Jackson1-2/+1
Change-Id: I9e4e5ee0f12a695e0d02bf2e920c52c50941d250
2013-09-02Add missing PHONY line for automatic ChangeLog generationJames Cloos1-0/+2
Change-Id: I3a6f11140672b863edddd66dafb0e0afde8bc61e
2013-09-02Replace static ChangeLog with dist-hook to generate from git logJames Cloos2-40/+6
Change-Id: Idda5b7c81b82da7c1cb9e4918dd14f63b2907995
2013-09-02Handle WM_DELETE_WINDOW From bug 319ยน:Noah Levitt2-2/+27
Make xev exit on WM_DELETE_WINDOW. 1] https://bugs.freedesktop.org/show_bug.cgi?id=319 Change-Id: I1a8b868ae7f02ede0a54404e7c7a904645fb83e0 Signed-off-by: James Cloos <cloos@jhcloos.com>
2013-09-02Add *~ to .gitignore to skip patch/emacs droppingsJames Cloos1-1/+1
Change-Id: Iddfb8693b5ba4060fd4888f58b31f46391bb9754
2013-09-02Rename .cvsignore to .gitignoreJames Cloos1-0/+0
Change-Id: I3ced98105d775c279484598ba2037da35618aa09
2013-09-02Run XFilterEvent() on all events. (Samuel Thibault). Bump to 1.0.2.Daniel Stone3-4/+13
Change-Id: Ieb72041c461a65b36bfc77e28755db52f29aa887
2013-09-02Update package version for X11R7 release.Kevin E Martin2-1/+6
Change-Id: Icad5def5d18bef2e065afd3d44fbb71d1bf77adc
2013-09-02Stub COPYING filesAdam Jackson1-0/+12
Change-Id: If3846c6edf6907f0cc5140ea66e9aed154d05510
2013-09-02Update package version number for final X11R7 release candidate.Kevin E Martin2-1/+6
Change-Id: If48e9de32ab8ae82184095690f0c73215dea1c9b
2013-09-02Change *man_SOURCES ==> *man_PRE to fix autotools warnings.Kevin E Martin2-3/+8
Change-Id: I7e8e849cafee68e0bfef92e40f7f4a4d72d62109