Hello community,

here is the log from the commit of package xorg-x11 for openSUSE:Factory 
checked in at 2012-01-13 11:00:32
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/xorg-x11 (Old)
 and      /work/SRC/openSUSE:Factory/.xorg-x11.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "xorg-x11", Maintainer is "[email protected]"

Changes:
--------
--- /work/SRC/openSUSE:Factory/xorg-x11/xorg-x11.changes        2011-11-28 
13:38:15.000000000 +0100
+++ /work/SRC/openSUSE:Factory/.xorg-x11.new/xorg-x11.changes   2012-01-13 
11:00:46.000000000 +0100
@@ -1,0 +2,13 @@
+Tue Jan 10 16:38:39 UTC 2012 - [email protected]
+
+- u_xauth_Look-for-FamilyLocal-if-inet-or-inet6-addr.patch
+  * Look for FamilyLocal if inet or inet6 address is loopback. 
+    (bnc #731504)
+
+-------------------------------------------------------------------
+Tue Jan 10 11:32:10 UTC 2012 - [email protected]
+
+- xlsclient 1.1.2
+  * fixes build against xcb-util 0.3.8
+
+-------------------------------------------------------------------

Old:
----
  xlsclients-1.1.1.tar.bz2

New:
----
  u_xauth_Look-for-FamilyLocal-if-inet-or-inet6-addr.patch
  xlsclients-1.1.2.tar.bz2

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ xorg-x11.spec ++++++
--- /var/tmp/diff_new_pack.BZe1j7/_old  2012-01-13 11:00:50.000000000 +0100
+++ /var/tmp/diff_new_pack.BZe1j7/_new  2012-01-13 11:00:50.000000000 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package xorg-x11
 #
-# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -107,7 +107,7 @@
 Source61:       xload-1.1.0.tar.bz2
 Source62:       xlogo-1.0.3.tar.bz2
 Source63:       xlsatoms-1.1.0.tar.bz2
-Source64:       xlsclients-1.1.1.tar.bz2
+Source64:       xlsclients-1.1.2.tar.bz2
 Source65:       xlsfonts-1.0.3.tar.bz2
 Source66:       xmag-1.0.4.tar.bz2
 Source67:       xman-1.1.1.tar.bz2
@@ -170,6 +170,7 @@
 Patch71:        
U_xdm_config-AC_LIBTOOL_DLOPEN-is-required-for-dynamic-lin.patch
 Patch72:        
U_xdm_config-use-libtool-export-dynamic-option-for-reverse.patch
 Patch73:        U_xdm_Fix-missing-linking-dependency-on-ldl.patch
+Patch74:        u_xauth_Look-for-FamilyLocal-if-inet-or-inet6-addr.patch
 Patch674733:    
xrdb-Create-shell-escape-safe-cpp-options-in-the-non-path-bnc674733.patch
 
 %description
@@ -301,6 +302,9 @@
 %patch69 -p0
 %patch674733 -p1
 popd
+pushd xauth-*
+%patch74 -p0
+popd
 # Bug 684116
 pushd xedit-*
 %{__mkdir_p} .doc/xedit

++++++ u_xauth_Look-for-FamilyLocal-if-inet-or-inet6-addr.patch ++++++
--- gethost.c.orig      2010-09-04 01:04:27.000000000 +0200
+++ gethost.c   2012-01-10 17:57:22.072108000 +0100
@@ -318,16 +318,36 @@ struct addrlist *get_address_info (
        for (ai = firstai; ai != NULL; ai = ai->ai_next) {
            struct addrlist *duplicate;
 
+           len = 0;
            if (ai->ai_family == AF_INET) {
                struct sockaddr_in *sin = (struct sockaddr_in *)ai->ai_addr;
                src = &(sin->sin_addr);
-               len = sizeof(sin->sin_addr);
-               family = FamilyInternet;
+               if (*(in_addr_t *) src == htonl(INADDR_LOOPBACK)) {
+                   family = FamilyLocal;
+                   if(get_local_hostname (buf, sizeof buf, localhostname)) {
+                       src = buf;
+                       len = strlen (buf);
+                   } else
+                       src = NULL;
+               } else {
+                   len = sizeof(sin->sin_addr);
+                   family = FamilyInternet;
+               }
            } else if (ai->ai_family == AF_INET6) {
                struct sockaddr_in6 *sin6 = (struct sockaddr_in6 *)ai->ai_addr;
                src = &(sin6->sin6_addr);
-               len = sizeof(sin6->sin6_addr);
-               family = FamilyInternet6;
+               if (IN6_IS_ADDR_V4MAPPED((struct sockaddr_in6 *)src)
+                   || IN6_IS_ADDR_LOOPBACK((struct sockaddr_in6 *)src)) {
+                   family = FamilyLocal;
+                   if (get_local_hostname (buf, sizeof buf, localhostname)) {
+                       src = buf;
+                       len = strlen (buf);
+                   } else
+                       src = NULL;
+               } else {
+                   len = sizeof(sin6->sin6_addr);
+                   family = FamilyInternet6;
+               }
            }
 
            for(duplicate = retval; duplicate != NULL; duplicate = 
duplicate->next) {
@@ -366,7 +386,17 @@ struct addrlist *get_address_info (
 #else
        if (!get_inet_address (host, &hostinetaddr)) return NULL;
        src = (char *) &hostinetaddr;
-       len = 4; /* sizeof inaddr.sin_addr, would fail on Cray */
+       if (*(in_addr_t *) src == htonl(INADDR_LOOPBACK)) {
+           family = FamilyLocal;
+           if (get_local_hostname (buf, sizeof buf)) {
+               src = buf;
+               len = strlen (buf);
+           } else {
+               len = 0;
+               src = NULL;
+           }
+       } else
+           len = 4; /* sizeof inaddr.sin_addr, would fail on Cray */
        break;
 #endif /* IPv6 */
 #else
++++++ xlsclients-1.1.1.tar.bz2 -> xlsclients-1.1.2.tar.bz2 ++++++
++++ 1983 lines of diff (skipped)
++++    retrying with extended exclude list
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude 
config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 
--exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh 
old/xlsclients-1.1.1/ChangeLog new/xlsclients-1.1.2/ChangeLog
--- old/xlsclients-1.1.1/ChangeLog      2010-09-24 18:44:48.000000000 +0200
+++ new/xlsclients-1.1.2/ChangeLog      2011-05-03 06:13:15.000000000 +0200
@@ -1,3 +1,95 @@
+commit 5f064f70b183147578919166bedeca55cdb0af71
+Author: Alan Coopersmith <[email protected]>
+Date:   Mon May 2 21:12:31 2011 -0700
+
+    xlsclients 1.1.2
+    
+    Signed-off-by: Alan Coopersmith <[email protected]>
+
+commit 61be3feb4cfc760f63d6b8a4debd3898fdc8fa16
+Author: Arnaud Fontaine <[email protected]>
+Date:   Mon May 2 11:37:34 2011 +0900
+
+    Depend on xcb >= 1.6 for XCB_ATOM_*.
+    
+    Signed-off-by: Arnaud Fontaine <[email protected]>
+    Signed-off-by: Alan Coopersmith <[email protected]>
+
+commit 41689f150904be690f3aa96c283a7ee632d566ce
+Author: Dan Nicholson <[email protected]>
+Date:   Mon Mar 7 14:21:09 2011 -0800
+
+    Drop dependency on xcb-atom/xcb-util
+    
+    With commit 223851b6, the atom names from xcb/xproto.h are being used
+    and xcb-atom is no longer needed.
+    
+    Signed-off-by: Dan Nicholson <[email protected]>
+    Reviewed-by: Jon TURNEY <[email protected]>
+
+commit 223851b68fedad730747652bc6560e40ca695ea7
+Author: Jon TURNEY <[email protected]>
+Date:   Mon Mar 7 13:54:53 2011 +0000
+
+    Use XCB_ATOM_* atom names rather than deprecated atom names
+    
+    Those deprecated atom names were removed from xcb/util in commit
+    2f0334b3eb49fa3a0d6daf6b9dde10e480a5c59f
+    
+    Found by tinderbox, see:
+    
+    
http://tinderbox.freedesktop.org/builds/2011-03-06-0008/logs/xlsclients/#build
+    
http://tinderbox.freedesktop.org/builds/2011-03-07-0001/logs/xlsclients/#build
+    
+    Signed-off-by: Jon TURNEY <[email protected]>
+    Tested-by: Dan Nicholson <[email protected]>
+    Signed-off-by: Peter Harris <[email protected]>
+
+commit 1439da945a066c5bdf821a4f1af2bc356452e170
+Author: Gaetan Nadon <[email protected]>
+Date:   Wed Jan 19 10:06:56 2011 -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 <[email protected]>
+
+commit 2bb00a3e1d7eea20a232f079d41cd45985e0a721
+Author: Gaetan Nadon <[email protected]>
+Date:   Thu Jan 13 17:15:36 2011 -0500
+
+    man: replace hard coded man page section with substitution strings
+    
+    Signed-off-by: Gaetan Nadon <[email protected]>
+
+commit 9a2a65ddea132b64d43b8f853ad7d3ca229d34fe
+Author: Gaetan Nadon <[email protected]>
+Date:   Thu Jan 13 11:15:47 2011 -0500
+
+    man: remove trailing spaces and tabs
+    
+    Using s/[ \t]*$//
+    
+    Signed-off-by: Gaetan Nadon <[email protected]>
+
+commit d2dba124d303cf7b031c5f64293ac38b5a8418ab
+Author: Gaetan Nadon <[email protected]>
+Date:   Wed Jan 12 16:28:02 2011 -0500
+
+    config: replace deprecated AM_CONFIG_HEADER with AC_CONFIG_HEADERS
+    
+    This silences an Autoconf warning
+
+commit c1c91e1545ef34d0eeb4fb9b5577174121e28859
+Author: Jesse Adkins <[email protected]>
+Date:   Tue Sep 28 13:29:50 2010 -0700
+
+    Purge cvs tags.
+    
+    Signed-off-by: Jesse Adkins <[email protected]>
+
 commit 29ad1d40dbd77d6efedd5d7db53e35650732dd6e
 Author: Alan Coopersmith <[email protected]>
 Date:   Fri Sep 24 09:43:42 2010 -0700
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude 
config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 
--exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh 
old/xlsclients-1.1.1/Makefile.am new/xlsclients-1.1.2/Makefile.am
--- old/xlsclients-1.1.1/Makefile.am    2010-09-24 18:11:05.000000000 +0200
+++ new/xlsclients-1.1.2/Makefile.am    2011-01-21 08:27:34.000000000 +0100
@@ -19,6 +19,7 @@
 #  TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
 #  PERFORMANCE OF THIS SOFTWARE.
 
+SUBDIRS = man
 bin_PROGRAMS = xlsclients
 
 AM_CFLAGS = $(CWARNFLAGS) $(XLSCLIENTS_CFLAGS)
@@ -27,24 +28,8 @@
 xlsclients_SOURCES =   \
         xlsclients.c
 
-appman_PRE = \
-        xlsclients.man
-
-
-appmandir = $(APP_MAN_DIR)
-
-appman_DATA = $(appman_PRE:man=@APP_MAN_SUFFIX@)
-
-EXTRA_DIST = $(appman_PRE)
+EXTRA_DIST = strnlen.h
 MAINTAINERCLEANFILES = ChangeLog INSTALL
-CLEANFILES = $(appman_DATA)
-
-SUFFIXES = .$(APP_MAN_SUFFIX) .man
-
-# String replacements in MAN_SUBSTS now come from xorg-macros.m4 via configure
-.man.$(APP_MAN_SUFFIX):
-       $(AM_V_GEN)$(SED) $(MAN_SUBSTS) < $< > $@
-
 
 .PHONY: ChangeLog INSTALL
 
@@ -55,5 +40,3 @@
        $(CHANGELOG_CMD)
 
 dist-hook: ChangeLog INSTALL
-
-EXTRA_DIST += strnlen.h
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude 
config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 
--exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh 
old/xlsclients-1.1.1/configure.ac new/xlsclients-1.1.2/configure.ac
--- old/xlsclients-1.1.1/configure.ac   2010-09-24 18:42:23.000000000 +0200
+++ new/xlsclients-1.1.2/configure.ac   2011-05-03 06:11:30.000000000 +0200
@@ -22,7 +22,7 @@
 dnl Process this file with autoconf to create configure.
 
 AC_PREREQ([2.60])
-AC_INIT([xlsclients], [1.1.1],
+AC_INIT([xlsclients], [1.1.2],
        [https://bugs.freedesktop.org/enter_bug.cgi?product=xorg],
        [xlsclients])
 AM_INIT_AUTOMAKE([foreign dist-bzip2])
@@ -33,7 +33,7 @@
          [m4_fatal([must install xorg-macros 1.8 or later before running 
autoconf/autogen])])
 XORG_MACROS_VERSION(1.8)
 
-AM_CONFIG_HEADER(config.h)
+AC_CONFIG_HEADERS([config.h])
 
 # Check for functional strnlen
 AC_USE_SYSTEM_EXTENSIONS
@@ -45,6 +45,9 @@
 XORG_DEFAULT_OPTIONS
 
 # Checks for pkg-config packages
-PKG_CHECK_MODULES(XLSCLIENTS, xcb xcb-atom)
+PKG_CHECK_MODULES(XLSCLIENTS, xcb >= 1.6)
 
-AC_OUTPUT([Makefile])
+AC_CONFIG_FILES([
+       Makefile
+       man/Makefile])
+AC_OUTPUT
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude 
config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 
--exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh 
old/xlsclients-1.1.1/man/Makefile.am new/xlsclients-1.1.2/man/Makefile.am
--- old/xlsclients-1.1.1/man/Makefile.am        1970-01-01 01:00:00.000000000 
+0100
+++ new/xlsclients-1.1.2/man/Makefile.am        2011-01-21 08:27:34.000000000 
+0100
@@ -0,0 +1,12 @@
+
+appmandir = $(APP_MAN_DIR)
+appman_PRE = xlsclients.man
+appman_DATA = $(appman_PRE:man=$(APP_MAN_SUFFIX))
+
+EXTRA_DIST = $(appman_PRE)
+CLEANFILES = $(appman_DATA)
+SUFFIXES = .$(APP_MAN_SUFFIX) .man
+
+# String replacements in MAN_SUBSTS now come from xorg-macros.m4 via configure
+.man.$(APP_MAN_SUFFIX):
+       $(AM_V_GEN)$(SED) $(MAN_SUBSTS) < $< > $@
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude 
config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 
--exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh 
old/xlsclients-1.1.1/man/xlsclients.man new/xlsclients-1.1.2/man/xlsclients.man
--- old/xlsclients-1.1.1/man/xlsclients.man     1970-01-01 01:00:00.000000000 
+0100
+++ new/xlsclients-1.1.2/man/xlsclients.man     2011-01-21 08:27:34.000000000 
+0100
@@ -0,0 +1,62 @@
+.\" Copyright 1991, 1994, 1998  The Open Group
+.\"
+.\" Permission to use, copy, modify, distribute, and sell this software and its
+.\" documentation for any purpose is hereby granted without fee, provided that
+.\" the above copyright notice appear in all copies and that both that
+.\" copyright notice and this permission notice appear in supporting
+.\" documentation.
+.\"
+.\" The above copyright notice and this permission notice shall be included
+.\" in all copies or substantial portions of the Software.
+.\"
+.\" THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
+.\" OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
+.\" MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
+.\" IN NO EVENT SHALL THE OPEN GROUP BE LIABLE FOR ANY CLAIM, DAMAGES OR
+.\" OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
+.\" ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
+.\" OTHER DEALINGS IN THE SOFTWARE.
+.\"
+.\" Except as contained in this notice, the name of The Open Group shall
+.\" not be used in advertising or otherwise to promote the sale, use or
+.\" other dealings in this Software without prior written authorization
+.\" from The Open Group.
+.\"
+.TH XLSCLIENTS 1 __xorgversion__
+.SH NAME
+xlsclients - list client applications running on a display
+.SH SYNOPSIS
+.B "xlsclients"
+[-display \fIdisplayname\fP] [-a] [-l] [-m maxcmdlen]
+.SH DESCRIPTION
+.PP
+.I Xlsclients
+is a utility for listing information about the client applications
+running on a display.  It may be used to generate scripts representing
+a snapshot of the user's current session.
+.SH OPTIONS
+.TP 8
+.B \-display \fIdisplayname\fP
+This option specifies the X server to contact.
+.TP 8
+.B \-a
+This option indicates that clients on all screens should be listed.  By
+default, only those clients on the default screen are listed.
+.TP 8
+.B \-l
+List in long format, giving the window name, icon name,
+and class hints in addition to the machine name and command string shown in
+the default format.
+.TP 8
+.B \-m \fImaxcmdlen\fP
+This option specifies the maximum number of characters in a command to
+print out.  The default is 10000.
+.SH ENVIRONMENT
+.PP
+.TP 8
+.B DISPLAY
+To get the default host, display number, and screen.
+.SH "SEE ALSO"
+X(__miscmansuffix__), xwininfo(__appmansuffix__), xprop(__appmansuffix__)
+.SH AUTHOR
+Jim Fulton, MIT X Consortium
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude 
config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 
--exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh 
old/xlsclients-1.1.1/xlsclients.c new/xlsclients-1.1.2/xlsclients.c
--- old/xlsclients-1.1.1/xlsclients.c   2009-10-21 21:53:34.000000000 +0200
+++ new/xlsclients-1.1.2/xlsclients.c   2011-03-19 03:12:45.000000000 +0100
@@ -37,7 +37,6 @@
 #include <inttypes.h>
 #include <xcb/xcb.h>
 #include <xcb/xproto.h>
-#include <xcb/xcb_atom.h>
 #ifndef HAVE_STRNLEN
 #include "strnlen.h"
 #endif
@@ -539,21 +538,21 @@
      * get the WM_CLIENT_MACHINE and WM_COMMAND list of strings
      */
     cs->client_machine = xcb_get_property(dpy, 0, w,
-                           WM_CLIENT_MACHINE, XCB_GET_PROPERTY_TYPE_ANY,
+                           XCB_ATOM_WM_CLIENT_MACHINE, 
XCB_GET_PROPERTY_TYPE_ANY,
                            0, 1000000L);
     cs->command = xcb_get_property(dpy, 0, w,
-                           WM_COMMAND, XCB_GET_PROPERTY_TYPE_ANY,
+                           XCB_ATOM_WM_COMMAND, XCB_GET_PROPERTY_TYPE_ANY,
                            0, 1000000L);
 
     if (verbose) {
        cs->name = xcb_get_property(dpy, 0, w,
-                           WM_NAME, XCB_GET_PROPERTY_TYPE_ANY,
+                           XCB_ATOM_WM_NAME, XCB_GET_PROPERTY_TYPE_ANY,
                            0, 1000000L);
        cs->icon_name = xcb_get_property(dpy, 0, w,
-                           WM_ICON_NAME, XCB_GET_PROPERTY_TYPE_ANY,
+                           XCB_ATOM_WM_ICON_NAME, XCB_GET_PROPERTY_TYPE_ANY,
                            0, 1000000L);
        cs->wm_class = xcb_get_property(dpy, 0, w,
-                           WM_CLASS, STRING,
+                           XCB_ATOM_WM_CLASS, XCB_ATOM_STRING,
                            0, 1000000L);
     }
 
@@ -569,7 +568,7 @@
     }
 
     if (s) printf ("%s", s);
-    if (tp->type == STRING && tp->format == 8) {
+    if (tp->type == XCB_ATOM_STRING && tp->format == 8) {
        printf ("%.*s", (int)tp->value_len, (char *)xcb_get_property_value(tp));
     } else {
        unknown (dpy, tp->type, tp->format);
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude 
config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 
--exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh 
old/xlsclients-1.1.1/xlsclients.man new/xlsclients-1.1.2/xlsclients.man
--- old/xlsclients-1.1.1/xlsclients.man 2009-10-16 23:39:44.000000000 +0200
+++ new/xlsclients-1.1.2/xlsclients.man 1970-01-01 01:00:00.000000000 +0100
@@ -1,65 +0,0 @@
-.\" $Xorg: xlscli.man,v 1.4 2001/02/09 02:05:54 xorgcvs Exp $
-.\" Copyright 1991, 1994, 1998  The Open Group
-.\" 
-.\" Permission to use, copy, modify, distribute, and sell this software and its
-.\" documentation for any purpose is hereby granted without fee, provided that
-.\" the above copyright notice appear in all copies and that both that
-.\" copyright notice and this permission notice appear in supporting
-.\" documentation.
-.\" 
-.\" The above copyright notice and this permission notice shall be included
-.\" in all copies or substantial portions of the Software.
-.\" 
-.\" THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
-.\" OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
-.\" MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
-.\" IN NO EVENT SHALL THE OPEN GROUP BE LIABLE FOR ANY CLAIM, DAMAGES OR
-.\" OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
-.\" ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
-.\" OTHER DEALINGS IN THE SOFTWARE.
-.\" 
-.\" Except as contained in this notice, the name of The Open Group shall
-.\" not be used in advertising or otherwise to promote the sale, use or
-.\" other dealings in this Software without prior written authorization
-.\" from The Open Group.
-.\"
-.\" $XFree86: xc/programs/xlsclients/xlscli.man,v 1.7 2001/01/27 18:21:18 
dawes Exp $
-.\"
-.TH XLSCLIENTS 1 __xorgversion__
-.SH NAME
-xlsclients - list client applications running on a display
-.SH SYNOPSIS
-.B "xlsclients"
-[-display \fIdisplayname\fP] [-a] [-l] [-m maxcmdlen]
-.SH DESCRIPTION
-.PP
-.I Xlsclients
-is a utility for listing information about the client applications 
-running on a display.  It may be used to generate scripts representing
-a snapshot of the user's current session.
-.SH OPTIONS
-.TP 8
-.B \-display \fIdisplayname\fP
-This option specifies the X server to contact.
-.TP 8
-.B \-a
-This option indicates that clients on all screens should be listed.  By 
-default, only those clients on the default screen are listed.
-.TP 8
-.B \-l
-List in long format, giving the window name, icon name,
-and class hints in addition to the machine name and command string shown in
-the default format.
-.TP 8
-.B \-m \fImaxcmdlen\fP
-This option specifies the maximum number of characters in a command to 
-print out.  The default is 10000.
-.SH ENVIRONMENT
-.PP
-.TP 8
-.B DISPLAY
-To get the default host, display number, and screen.
-.SH "SEE ALSO"
-X(__miscmansuffix__), xwininfo(1), xprop(1)
-.SH AUTHOR
-Jim Fulton, MIT X Consortium

-- 
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to