Alan Coopersmith [Mon, 11 Feb 2013 03:10:57 +0000 (19:10 -0800)]
Rename i & count in inner loop to avoid shadowing same named vars in outer loop
xdpyinfo.c: In function `print_dmx_info':
xdpyinfo.c:1282: warning: declaration of 'count' shadows a previous local
xdpyinfo.c:1231: warning: shadowed declaration is here
xdpyinfo.c:1282: warning: declaration of 'i' shadows a previous local
xdpyinfo.c:1232: warning: shadowed declaration is here
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
Alan Coopersmith [Tue, 22 Jan 2013 07:15:04 +0000 (23:15 -0800)]
Add xrandr to SEE ALSO section of man page
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
Alan Coopersmith [Tue, 22 Jan 2013 07:13:03 +0000 (23:13 -0800)]
Add -version option to print version number
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
Alan Coopersmith [Tue, 22 Jan 2013 07:08:43 +0000 (23:08 -0800)]
Combine usage messages into a single string
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
Alan Coopersmith [Tue, 22 Jan 2013 07:03:48 +0000 (23:03 -0800)]
Declare 'len' as size_t to avoid unneccessary back-and-forth conversions
Fixes clang warnings:
xdpyinfo.c:1463:12: warning: implicit conversion loses integer precision: 'size_t' (aka 'unsigned long') to 'int' [-Wshorten-64-to-32]
int len = strlen(arg);
~~~ ^~~~~~~~~~~
xdpyinfo.c:1465:32: warning: implicit conversion changes signedness: 'int' to 'size_t' (aka 'unsigned long') [-Wsign-conversion]
if (!strncmp("-display", arg, len)) {
~~~~~~~ ^~~
xdpyinfo.c:1468:47: warning: implicit conversion changes signedness: 'int' to 'size_t' (aka 'unsigned long') [-Wsign-conversion]
} else if (!strncmp("-queryExtensions", arg, len)) {
~~~~~~~ ^~~
xdpyinfo.c:1470:35: warning: implicit conversion changes signedness: 'int' to 'size_t' (aka 'unsigned long') [-Wsign-conversion]
} else if (!strncmp("-ext", arg, len)) {
~~~~~~~ ^~~
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
Alan Coopersmith [Tue, 22 Jan 2013 07:02:57 +0000 (23:02 -0800)]
Mark usage() as _X_NORETURN
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
Jon TURNEY [Wed, 4 Jan 2012 18:21:51 +0000 (18:21 +0000)]
Include Xwindows.h on WIN32 to avoid type clashes
Signed-off-by: Jon TURNEY <jon.turney@dronecode.org.uk>
Reviewed-by: Yaakov Selkowitz <yselkowitz@users.sourceforge.net>
Alan Coopersmith [Sat, 22 Oct 2011 04:34:32 +0000 (21:34 -0700)]
xdpyinfo 1.3.0
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
Alan Coopersmith [Thu, 29 Sep 2011 03:52:30 +0000 (20:52 -0700)]
Silence gcc complaint about being unable to check printf format string
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
Alan Coopersmith [Thu, 29 Sep 2011 03:50:02 +0000 (20:50 -0700)]
Remove unused function hasExtension
Leftover from the Xprint code removed in commit
889264a52a6cf988
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
Alan Coopersmith [Thu, 29 Sep 2011 03:48:58 +0000 (20:48 -0700)]
Add const attributes to fix gcc -Wwrite-strings warnings
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
Alan Coopersmith [Thu, 29 Sep 2011 03:41:57 +0000 (20:41 -0700)]
Strip trailing whitespace
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>
Gaetan Nadon [Wed, 19 Jan 2011 15:06:56 +0000 (10:06 -0500)]
config: move man pages into their own directory
Use services provided by XORG_MANPAGE_SECTIONS.
Use standard Makefile for man pages.
Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
Gaetan Nadon [Thu, 13 Jan 2011 16:15:47 +0000 (11:15 -0500)]
man: remove trailing spaces and tabs
Using s/[ \t]*$//
Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
Gaetan Nadon [Wed, 12 Jan 2011 21:28:02 +0000 (16:28 -0500)]
config: replace deprecated AM_CONFIG_HEADER with AC_CONFIG_HEADERS
This silences an Autoconf warning
Gaetan Nadon [Wed, 12 Jan 2011 20:29:50 +0000 (15:29 -0500)]
config: replace deprecated AC_HELP_STRING with AS_HELP_STRING
This silences an Automake warning.
Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
Jesse Adkins [Tue, 28 Sep 2010 20:29:49 +0000 (13:29 -0700)]
Purge cvs tags.
Signed-off-by: Jesse Adkins <jesserayadkins@gmail.com>
Alan Coopersmith [Sun, 3 Oct 2010 18:47:07 +0000 (11:47 -0700)]
Use xcb for -queryExt instead of a round-trip per extension
On a system with 30 extensions listed by xdpyinfo, truss -c
reports this saves quite a few system calls by batching the
QueryExtension requests instead of a round-trip for each one:
Xlib xcb
writev 40 11
poll 80 22
recv 117 29
total (*) 464 296
(*) total includes all system calls, including many not shown since
their count did not change significantly. There was one additional
set of open/mmap/close etc. for loading the added libX11-xcb library.
Over a tcp connection, this reduced both the number of packets,
and due to tcp packet header overhead, the overall amount of data:
Xlib xcb
TCP packets 93 35
TCP bytes 11554 7726
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
Reviewed-by: Jamey Sharp <jamey@minilop.net>
Alan Coopersmith [Sun, 3 Oct 2010 17:51:09 +0000 (10:51 -0700)]
xdpyinfo 1.2.0
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
Alan Coopersmith [Sun, 3 Oct 2010 17:45:43 +0000 (10:45 -0700)]
Remove DPY_XPRINT_* from Makefile.am
The definitions were removed from configure.ac by commit
e4541a92f7faead53
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
Alan Coopersmith [Fri, 24 Sep 2010 03:06:19 +0000 (20:06 -0700)]
config: Remove unnecessary calls from configure.ac
AC_PROG_CC & AC_PROG_INSTALL are provided by XORG_DEFAULT_OPTIONS now
PKG_CONFIG_MODULES handles AC_SUBST of the CFLAGS & LIBS variables
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
Alan Coopersmith [Fri, 24 Sep 2010 03:04:53 +0000 (20:04 -0700)]
config: upgrade to util-macros 1.8 for additional man page support
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
The existing statement can now be removed from the configuration file.
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
Gaetan Nadon [Tue, 20 Jul 2010 22:45:18 +0000 (18:45 -0400)]
config: update AC_PREREQ statement to 2.60
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>
Gaetan Nadon [Fri, 26 Mar 2010 23:23:35 +0000 (19:23 -0400)]
xprint: remove isPrintScreen code
The if (isPrintScreen) always evaluate to false
Reviewed-by: Jeremy Huddleston <jeremyhu@freedesktop.org>
Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
Gaetan Nadon [Fri, 26 Mar 2010 23:20:56 +0000 (19:20 -0400)]
xprint: remove conditional code regarding xprint feature
xprint has been removed from X Window System
Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
Gaetan Nadon [Fri, 26 Mar 2010 23:20:10 +0000 (19:20 -0400)]
config: remove xprint feature which is obsolete
Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
Gaetan Nadon [Fri, 8 Jan 2010 02:38:31 +0000 (21:38 -0500)]
COPYING: replace stub with actual copyright notice
Refer to xdpyinfo.c
Copyright 1988, 1998 The Open Group
Copyright 2005 Hitachi, Ltd.
Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
Gaetan Nadon [Thu, 26 Nov 2009 14:19:53 +0000 (09:19 -0500)]
Makefile.am: add ChangeLog and INSTALL on MAINTAINERCLEANFILES
Now that the INSTALL file is generated.
Allows running make maintainer-clean.
Gaetan Nadon [Wed, 28 Oct 2009 18:09:08 +0000 (14:09 -0400)]
INSTALL, NEWS, README or AUTHORS files are missing/incorrect #24206
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.
Gaetan Nadon [Tue, 27 Oct 2009 19:07:24 +0000 (15:07 -0400)]
Deploy the new XORG_DEFAULT_OPTIONS #24242
This macro aggregate a number of existing macros that sets commmon
X.Org components configuration options. It shields the configuration file from
future changes.
Gaetan Nadon [Tue, 27 Oct 2009 02:08:38 +0000 (22:08 -0400)]
Makefile.am: ChangeLog not required: EXTRA_DIST or *CLEANFILES #24432
ChangeLog filename is known to Automake and requires no further
coding in the makefile.
Gaetan Nadon [Thu, 22 Oct 2009 16:34:15 +0000 (12:34 -0400)]
.gitignore: use common defaults with custom section # 24239
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.
Jeremy Huddleston [Wed, 21 Oct 2009 19:47:20 +0000 (12:47 -0700)]
This is not a GNU project, so declare it foreign.
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>
Alan Coopersmith [Fri, 16 Oct 2009 23:07:10 +0000 (16:07 -0700)]
xdpyinfo 1.1.0
Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
Jeremy Huddleston [Tue, 13 Oct 2009 18:34:11 +0000 (11:34 -0700)]
Added --without-{xf86misc,xprint} configure time options
Signed-off-by: Jeremy Huddleston <jeremyhu@freedesktop.org>
Alan Coopersmith [Tue, 13 Oct 2009 01:01:22 +0000 (18:01 -0700)]
Use $(AM_V_GEN) to silence man page creation too
Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
Alan Coopersmith [Tue, 13 Oct 2009 01:00:15 +0000 (18:00 -0700)]
Use Xxf86dga.h & xf86dgaproto.h if present, to avoid warnings from old headers
Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
Alan Coopersmith [Sat, 3 Oct 2009 00:00:45 +0000 (17:00 -0700)]
Remove empty INSTALL so automake installs a real one
Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
Alan Coopersmith [Thu, 1 Oct 2009 21:54:22 +0000 (14:54 -0700)]
Add README with pointers to mailing lists, bugzilla, & git
Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
Alan Coopersmith [Mon, 21 Sep 2009 23:27:55 +0000 (16:27 -0700)]
Use xf86vmproto.h instead of xf86vmstr.h if it is installed
Clears warnings when built with xf86vidmodeproto 2.2.99.1 & later
Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
Acked-by: Peter Hutterer <peter.hutterer@who-t.net>
Alan Coopersmith [Mon, 21 Sep 2009 23:22:30 +0000 (16:22 -0700)]
Migrate to xorg macros 1.3 & XORG_DEFAULT_OPTIONS
Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
Alan Coopersmith [Wed, 2 Sep 2009 04:54:11 +0000 (21:54 -0700)]
Move CWARNFLAGS addition to CFLAGS from configure.ac to Makefile.am
Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
Alan Coopersmith [Wed, 2 Sep 2009 03:50:51 +0000 (20:50 -0700)]
Improved XF86-VidModeExtension printing
- Combine common modeline printing code into single function
- Don't return 0 unless extension isn't supported, since that
makes xdpyinfo report the extension isn't supported.
- Don't exit immediately if some information is not available,
since other info may be present.
Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
Alan Coopersmith [Tue, 1 Sep 2009 14:22:17 +0000 (07:22 -0700)]
Bug 3438: xdpyinfo reporting wrong information on xf86vidmode extension
https://bugs.freedesktop.org/show_bug.cgi?id=3438
Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
Alan Coopersmith [Wed, 4 Feb 2009 21:43:34 +0000 (13:43 -0800)]
Print Composite extension version for "-ext Composite"
The only other information I could see to query in the Composite 0.4
protocol spec is the Composite Overlay Window XID, but the request to
get that ID has the side effect of mapping the overlay window, and
xdpyinfo shouldn't have side effects like that.
Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
Paulo Cesar Pereira de Andrade [Tue, 13 Jan 2009 22:10:23 +0000 (20:10 -0200)]
Ansification and compile warning fixes.
This also uses XORG_CHANGELOG and XORG_CWARNFLAGS, and corrects
make distcheck.
Matthieu Herrb [Fri, 13 Jun 2008 18:23:03 +0000 (12:23 -0600)]
Don't print '(null)' when XF86VidModeGetMonitor() returns NULL fields.
Adam Jackson [Wed, 21 May 2008 18:19:52 +0000 (14:19 -0400)]
xdpyinfo 1.0.3
Adam Jackson [Wed, 21 May 2008 18:18:57 +0000 (14:18 -0400)]
Ignore errors from xf86misc rather than crashing out.
Julien Cristau [Wed, 30 Apr 2008 12:37:03 +0000 (14:37 +0200)]
Handle XExtension{Keyboard,Pointer}, added in inputproto 1.4
James Cloos [Thu, 6 Dec 2007 20:51:05 +0000 (15:51 -0500)]
Add missing PHONY line for automatic ChangeLog generation
Alan Coopersmith [Fri, 25 May 2007 01:24:29 +0000 (18:24 -0700)]
X.Org bug #10616: Add all the X info commands to See Also in man page
X.Org Bugzilla #10616: <https://bugs.freedesktop.org/show_bug.cgi?id=10616>
Reported upstream from
Debian bug #350313 <http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=350313>
Alan Coopersmith [Tue, 20 Mar 2007 21:08:17 +0000 (14:08 -0700)]
Version bump: 1.0.2
Alan Coopersmith [Tue, 20 Mar 2007 20:34:30 +0000 (13:34 -0700)]
Clear a couple more memory leaks found by Sun Studio dbx check -leaks
Alan Coopersmith [Tue, 20 Mar 2007 20:25:06 +0000 (13:25 -0700)]
Coverity #748: IsPrintScreen: Returned without freeing storage "pscreens"
Alan Coopersmith [Tue, 20 Mar 2007 20:21:56 +0000 (13:21 -0700)]
Coverity #749: print_XF86VidMode_info: Returned without freeing storage "modelines"
Alan Coopersmith [Tue, 20 Mar 2007 20:16:18 +0000 (13:16 -0700)]
Coverity #750: print_xinput_info() returned without freeing storage "ext"
Alan Coopersmith [Tue, 20 Mar 2007 20:10:33 +0000 (13:10 -0700)]
Coverity #752: XListDepths return leaked in print_xrender_info()
Ingo Bormuth [Thu, 25 May 2006 11:13:00 +0000 (03:13 -0800)]
Bug 7027: Add configure options --without-dmx --without-dga --without-xinerama
X.Org Bug 7027: <https://bugs.freedesktop.org/show_bug.cgi?id=7027>
Patch #5735: <https://bugs.freedesktop.org/attachment.cgi?id=5735>
From gentoo bug 132502: <http://bugs.gentoo.org/show_bug.cgi?id=132502>
Alan Coopersmith [Tue, 20 Mar 2007 17:39:36 +0000 (10:39 -0700)]
Fix line wrapping of extensions list in usage message
Alan Coopersmith [Tue, 20 Mar 2007 02:23:33 +0000 (19:23 -0700)]
Clear sparse warning: Using plain integer as NULL pointer
Alan Coopersmith [Tue, 20 Mar 2007 02:15:18 +0000 (19:15 -0700)]
Fix typos in comments
Alan Coopersmith [Tue, 20 Mar 2007 02:09:27 +0000 (19:09 -0700)]
Add support for checking sources with sparse/lint/etc.
Alan Coopersmith [Tue, 20 Mar 2007 01:53:38 +0000 (18:53 -0700)]
renamed: .cvsignore -> .gitignore
Alan Coopersmith [Tue, 20 Mar 2007 01:53:02 +0000 (18:53 -0700)]
Replace static ChangeLog with dist-hook to generate from git log
Kevin E Martin [Wed, 21 Dec 2005 02:29:49 +0000 (02:29 +0000)]
Update package version for X11R7 release.
Adam Jackson [Mon, 19 Dec 2005 16:22:43 +0000 (16:22 +0000)]
Stub COPYING files
Kevin E Martin [Thu, 15 Dec 2005 00:24:06 +0000 (00:24 +0000)]
Update package version number for final X11R7 release candidate.
Kevin E Martin [Tue, 6 Dec 2005 22:48:21 +0000 (22:48 +0000)]
Change *man_SOURCES ==> *man_PRE to fix autotools warnings.
Kevin E Martin [Sat, 3 Dec 2005 05:49:19 +0000 (05:49 +0000)]
Update package version number for X11R7 RC3 release.
Alan Coopersmith [Mon, 28 Nov 2005 22:01:41 +0000 (22:01 +0000)]
Change *mandir targets to use new *_MAN_DIR variables set by xorg-macros.m4
update to fix bug #5167 (Linux prefers *.1x man pages in man1 subdir)
Eric Anholt [Mon, 21 Nov 2005 10:34:59 +0000 (10:34 +0000)]
Another pass at .cvsignores for apps.
Eric Anholt [Sun, 20 Nov 2005 22:08:51 +0000 (22:08 +0000)]
Add/improve .cvsignore files for apps.
Kevin E Martin [Sat, 19 Nov 2005 07:15:36 +0000 (07:15 +0000)]
Update pkgconfig files to separate library build-time dependencies from
application build-time dependencies, and update package deps to work
with separate build roots.
Kevin E Martin [Wed, 19 Oct 2005 02:47:53 +0000 (02:47 +0000)]
Update package version number for RC1 release.
Alan Coopersmith [Mon, 17 Oct 2005 23:56:21 +0000 (23:56 +0000)]
Use @APP_MAN_SUFFIX@ instead of $(APP_MAN_SUFFIX) in macro substitutions to
work better with BSD make
Alan Coopersmith [Fri, 14 Oct 2005 00:25:44 +0000 (00:25 +0000)]
Use sed to fill in variables in man page
Alan Coopersmith [Fri, 19 Aug 2005 00:13:45 +0000 (00:13 +0000)]
More updates for Panoramix -> Xinerama rename
Adam Jackson [Wed, 3 Aug 2005 04:30:26 +0000 (04:30 +0000)]
More unique tokens for PKG_CHECK_MODULES
Kevin E Martin [Fri, 29 Jul 2005 21:22:32 +0000 (21:22 +0000)]
Various changes preparing packages for RC0:
- 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
Adam Jackson [Wed, 20 Jul 2005 19:31:52 +0000 (19:31 +0000)]
Use a unique token for PKG_CHECK_MODULES. Otherwise, if you use a global
configure cache, you cache it, and the cached value is probably wrong.
Daniel Stone [Mon, 18 Jul 2005 08:24:50 +0000 (08:24 +0000)]
Fail gracefully when extensions not present.
Keith Packard [Sat, 9 Jul 2005 23:36:22 +0000 (23:36 +0000)]
Add .cvsignore files
Keith Packard [Fri, 8 Jul 2005 04:54:31 +0000 (04:54 +0000)]
Autodetect extension support. Install manual as xdpyinfo.1 Note that
autodetection requires changes to xdpyinfo.c as well, which currently
lives in the monolithic tree. These changes don't have any effect on
monolithic builds.
Keith Packard [Fri, 8 Jul 2005 04:54:09 +0000 (04:54 +0000)]
Add support for modular extension autodetection (ignored in monolithic
build)
Søren Sandmann Pedersen [Wed, 6 Jul 2005 19:56:47 +0000 (19:56 +0000)]
Add buildsystem for xdpyinfo
Roland Mainz [Tue, 26 Apr 2005 05:33:10 +0000 (05:33 +0000)]
//bugs.freedesktop.org/show_bug.cgi?id=2705) attachment #2555
(https://bugs.freedesktop.org/attachment.cgi?id=2555) bug 2705 part II:
Fix build to work with |#define BuildXprint NO| Patch by Kevin E.
Martin <kem@freedesktop.org>.
Roland Mainz [Fri, 11 Mar 2005 21:18:12 +0000 (21:18 +0000)]
xc/programs/twm/Imakefile
xc/programs/twm/twm.c
//bugs.freedesktop.org/show_bug.cgi?id=2705) attachment #2087
(https://bugs.freedesktop.org/attachment.cgi?id=2087) Make twm ignore
print screens to avoid that users accidentally warp on a non-video
screen (which are not visible on any monitor) when the Xserver has both
video and print screens. (This includes also a small cleanup of
xdpyinfo where parts of the print screen test code comes from) Patch by
Julien Lafon <julien.lafon@gmail.com> (MIT/X.org license).
Kevin E Martin [Thu, 2 Sep 2004 05:50:38 +0000 (05:50 +0000)]
Clean up defines for Xprint support and fix BuildServersOnly build for
libXaw.
Kristian Høgsberg [Mon, 16 Aug 2004 16:36:15 +0000 (16:36 +0000)]
As discussed and agreed on on the release-wranglers meeting of August 16,
I'm committing the patch from bug #1060 to back out unconditional
Xprint functionality.
Back out Xprint changes.
Revert xman to CVS of June 5, revert xlogo to CVS of May 8, revert xedit to
CVS of April 25, to back out unconditional Xprint support.
Fix up Xprint config logic to be like the rest of the extensions:
BuildXprint is a one-stop option for disabling everything Xprint
related. XprtServer controls building Xprt, BuildXprintLib controls
building Xprint libs and BuildXprintClients controls building clients
related to Xprint. BuiltXprint defaults to YES and the other options
respects relevant settings, i.e. BuildServer and BuildServersOnly.
Build Xaw regardless of BuildXprintLib setting.
Only build xphelloworld, xplsprinters and xprehashprinterlist when
BuildXprintClients it YES. Disable building xmore, it has always
supported XawPrintShell.
Make Xprint support depend on BuildXprintLib.
Kevin E Martin [Wed, 30 Jun 2004 20:06:56 +0000 (20:06 +0000)]
Add Distributed Multihead X (DMX) support
Roland Mainz [Tue, 25 May 2004 02:07:18 +0000 (02:07 +0000)]
Fix for freedesktop.org/bugzilla/show_bug.cgi?id=672 - RFE: xdpyinfo
should print information about print screens
Roland Mainz [Sun, 16 May 2004 21:52:44 +0000 (21:52 +0000)]
Fix for pdx.freedesktop.org/cgi-bin/bugzilla/show_bug.cgi?id=623 -
RFE: "xdpyinfo" should have support for XpExtension.
Egbert Eich [Fri, 23 Apr 2004 19:54:43 +0000 (19:54 +0000)]
Merging XORG-CURRENT into trunk
Egbert Eich [Sun, 14 Mar 2004 08:35:14 +0000 (08:35 +0000)]
Importing vendor version xf86-4_4_99_1 on Sun Mar 14 00:26:39 PST 2004
Egbert Eich [Wed, 3 Mar 2004 12:13:00 +0000 (12:13 +0000)]
Importing vendor version xf86-4_4_0 on Wed Mar 3 04:09:24 PST 2004
Egbert Eich [Thu, 26 Feb 2004 13:36:17 +0000 (13:36 +0000)]
readding XFree86's cvs IDs
Egbert Eich [Thu, 26 Feb 2004 09:24:04 +0000 (09:24 +0000)]
Importing vendor version xf86-4_3_99_903 on Wed Feb 26 01:21:00 PST 2004
Kaleb Keithley [Tue, 25 Nov 2003 19:29:12 +0000 (19:29 +0000)]
XFree86 4.3.99.16 Bring the tree up to date for the Cygwin folks
Kaleb Keithley [Fri, 14 Nov 2003 16:49:22 +0000 (16:49 +0000)]
XFree86 4.3.0.1