summaryrefslogtreecommitdiff
path: root/configure.ac
AgeCommit message (Collapse)AuthorFilesLines
2023-04-09xwininfo 1.1.6xwininfo-1.1.6Alan Coopersmith1-2/+2
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2023-02-25Add option to use libxcb-errors to improve X protocol error messagesAlan Coopersmith1-1/+14
Requires passing --with-xcb-errors to configure Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2021-12-07Build xz tarballs instead of bzip2Alan Coopersmith1-1/+1
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2019-07-14xwininfo 1.1.5xwininfo-1.1.5Alan Coopersmith1-1/+1
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2018-11-21Update configure.ac bug URL for gitlab migrationAlan Coopersmith1-1/+1
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2018-03-09xwininfo 1.1.4xwininfo-1.1.4Alan Coopersmith1-1/+1
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2014-06-03Print which option was in error along with usage messageAlan Coopersmith1-1/+1
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2014-06-03configure: Drop AM_MAINTAINER_MODEAlan Coopersmith1-1/+0
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2013-05-17xwininfo 1.1.3xwininfo-1.1.3Alan Coopersmith1-1/+1
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2012-01-25configure.ac: regroup statements and commentGaetan Nadon1-10/+11
Add missing AC_CONFIG_SRCDIR([Makefile.am]) Move AC_USE_SYSTEM_EXTENSIONS higher up in Autoconf init section which must come before XORG_DEFAULT_OPTIONS Move XORG_DEFAULT_OPTIONS to its usual place with X.Org macros Note that AC_FUNC_STRNLEN calls AC_REQUIRE(AC_USE_SYSTEM_EXTENSIONS) Comment the strnlen function replacement. http://pubs.opengroup.org/onlinepubs/9699919799/functions/strlen.html No functional changes. Following the layout in http://www.x.org/wiki/NewModuleGuidelines Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
2011-09-28Strip trailing whitespaceAlan Coopersmith1-2/+2
Performed with: find * -type f | xargs perl -i -p -e 's{[ \t]+$}{}' git diff -w & git diff -b show no diffs from this change Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2011-08-24Use AM_ICONVYaakov Selkowitz1-3/+2
AC_SEARCH_LIBS does not detect GNU libiconv because its symbols are exported in the "libiconv" namespace instead of "iconv". The AM_ICONV macro correctly detects both glibc and GNU libiconv, defines HAVE_ICONV, ICONV_CONST, and LIBICONV depending on the system. The config.rpath file is required by this macro. This adds a dependency on the aclocal macros from gettext (gettext-devel in some distros) when building from git, but not when building from a tarball. Signed-off-by: Yaakov Selkowitz <yselkowitz@users.sourceforge.net> Reviewed-by: Gaetan Nadon <memsize@videotron.ca>
2011-06-29xwininfo 1.1.2xwininfo-1.1.2Alan Coopersmith1-1/+1
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2011-06-18Update to xcb-icccm 0.3.8 APIAlan Coopersmith1-1/+1
Changes all names to the xcb_icccm_* namespaced versions. Requires xcb-icccm 0.3.8 (from new xcb-util-wm package) if used. Still disabled by default, only enabled with --with-xcb-icccm Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2011-01-19config: move man pages into their own directoryGaetan Nadon1-1/+4
Use services provided by XORG_MANPAGE_SECTIONS. Use standard Makefile for man pages. Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
2011-01-12config: replace deprecated AM_CONFIG_HEADER with AC_CONFIG_HEADERSGaetan Nadon1-1/+1
This silences an Autoconf warning
2010-10-30xwininfo 1.1.1xwininfo-1.1.1Alan Coopersmith1-1/+1
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2010-10-30config: Remove unnecessary calls from configure.acAlan Coopersmith1-3/+0
AC_PROG_CC & AC_PROG_INSTALL are provided by XORG_DEFAULT_OPTIONS now Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2010-09-26xwininfo 1.1.0xwininfo-1.1.0Alan Coopersmith1-1/+2
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2010-09-26config: upgrade to util-macros 1.8 for additional man page supportAlan Coopersmith1-3/+3
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. Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2010-09-26config: 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 Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
2010-07-10strnlen: Fix building on systems without strnlen(3)Jeremy Huddleston1-0/+5
Signed-off-by: Jeremy Huddleston <jeremyhu@apple.com>
2010-07-07Make iconv() usage optionalAlan Coopersmith1-0/+6
Allows building without iconv, though character set conversion will not be supported in that case. Handles UTF8_STRING validation and output for UTF-8 locales without iconv (using is_valid_utf8() function copied from X.Org's app/xprop/xprop.c) Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> Reviewed-by: James Cloos <cloos@jhcloos.com>
2010-07-07Make xcb-icccm dependency be optional and off-by-defaultAlan Coopersmith1-1/+16
Changes to the xcb-icccm API/ABI are under discussion, so for now default to using local property handling code modeled after the current API, with a --with-xcb-icccm to enable use of the API for testing/development. Once the API/ABI is stable & released, this set of changes should be removed and the xcb-icccm API just used directly. Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> Reviewed-by: James Cloos <cloos@jhcloos.com>
2010-07-07Convert from Xlib to xcbAlan Coopersmith1-3/+5
Testing was done with a simple GNOME 2.28 session with a number of applications open (gnome-terminal, VirtualBox, Firefox). Primary test case was xwininfo -root -all, which listed 114 children of the root window. Output was identical to Xlib version (after applying the fix to libxcb_icccm for always null-terminating wm_class properties). Over a local connection on the same machine: Xlib: 0.00u 0.01s 0:00.05 20.0% xcb: 0.00u 0.00s 0:00.02 0.0% (i.e. barely measurable difference - I had more variation between repeated runs of the command) Introducing latency by running over ssh -X from California to Beijing and back: Xlib: 0.03u 0.02s 8:19.12 0.0% xcb: 0.00u 0.00s 0:45.26 0.0% Memory size when exit() is called: Xlib: Address Kbytes RSS Anon Locked Mode Mapped File 08043000 20 20 20 - rw--- [ stack ] 08400000 144 144 144 - rw--- [ heap ] total Kb 8972 8640 316 - xcb: Address Kbytes RSS Anon Locked Mode Mapped File 08045000 12 12 12 - rwx-- [ stack ] 0806C000 100 100 100 - rwx-- [ heap ] total Kb 7980 7692 288 - Bytes sent & received (counted by proxying via xscope): Xlib: Client --> Server: 21380 bytes Client <-- Server: 54124 bytes xcb: Client --> Server: 21114 bytes Client <-- Server: 53160 bytes (The Xlib code didn't save any replies, so re-requested a couple of things when running with -all - I fixed that while porting to xcb, but the same could be done with Xlib easily too.) Not yet handled: WM_NAME properties that need to be converted from another character encoding. Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> Reviewed-by: James Cloos <cloos@jhcloos.com>
2010-06-13Use _X_NORETURN from xproto 7.0.17Alan Coopersmith1-1/+1
Also throw in _X_ATTRIBUTE_PRINTF while we're here. Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2009-10-21This 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. Signed-off-by: Jeremy Huddleston <jeremyhu@freedesktop.org>
2009-10-12xwininfo 1.0.5xwininfo-1.0.5Alan Coopersmith1-1/+1
Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
2009-10-12Migrate to xorg macros 1.3 & XORG_DEFAULT_OPTIONSAlan Coopersmith1-9/+5
Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
2009-01-15Ansification and compile warning fixes.Paulo Cesar Pereira de Andrade1-0/+8
This also uses XORG_CHANGELOG and XORG_CWARNFLAGS, corrects make distcheck and most gcc 4.3 and sparse warnings.
2008-06-29xwininfo 1.0.4xwininfo-1.0.4James Cloos1-1/+1
2008-06-22Fix window selection by pointer.Kim Woelders1-1/+1
This should fix things in WM’s using virtual roots as well as in tabbing WM’s. Signed-off-by: James Cloos <cloos@jhcloos.com>
2007-08-27Version bump: 1.0.3xwininfo-1.0.3Alan Coopersmith1-1/+1
2007-08-07Replace sprintf's with snprintf & strlcatAlan Coopersmith1-0/+2
2006-04-02Bump to 1.0.2.xwininfo-1_0_2XORG-7_1Adam Jackson1-1/+1
2005-12-21Update package version for X11R7 release.XORG-7_0Kevin E Martin1-1/+1
2005-12-15Update package version number for final X11R7 release candidate.XORG-6_99_99_904Kevin E Martin1-1/+1
2005-12-03Update package version number for X11R7 RC3 release.XORG-6_99_99_903Kevin E Martin1-1/+1
2005-11-21Change dependency from xmu to xmuu since the full xmu (with all its baggageAlan Coopersmith1-1/+1
like Xt) is not needed here.
2005-11-19Update pkgconfig files to separate library build-time dependencies fromKevin E Martin1-1/+1
application build-time dependencies, and update package deps to work with separate build roots.
2005-10-19Update package version number for RC1 release.XORG-6_99_99_902XORG-6_99_99_901Kevin E Martin1-1/+1
2005-10-14Use sed to fill in variables in man pageAlan Coopersmith1-0/+1
2005-07-29Various changes preparing packages for RC0:Kevin E Martin1-1/+3
- Verify and update package version numbers as needed - Implement versioning scheme - Change bug address to point to bugzilla bug entry form - Disable loadable i18n in libX11 by default (use --enable-loadable-i18n to reenable it) - Fix makedepend to use pkgconfig and pass distcheck - Update build script to build macros first - Update modular Xorg version
2005-07-20Use a unique token for PKG_CHECK_MODULES. Otherwise, if you use a globalAdam Jackson1-3/+3
configure cache, you cache it, and the cached value is probably wrong.
2005-07-08Build system for xwininfoSøren Sandmann Pedersen1-0/+39