xdm: Changes to 'master'

Gaetan Nadon gnadon at kemper.freedesktop.org
Wed Sep 1 05:59:56 PDT 2010


 Makefile.am             |   73 ++++++++---------------------------
 access.c                |   98 ++++++++++++++++++++++++------------------------
 app-defaults/.gitignore |    2 
 app-defaults/Chooser    |   51 ++++++++++++++++++++++++
 app-defaults/Chooser.ad |   51 ------------------------
 auth.c                  |   42 ++++++++++----------
 choose.c                |   19 ++++-----
 chooser.c               |   63 +++++++++++++++---------------
 configure.ac            |   73 ++++++++---------------------------
 dm.c                    |   14 +++---
 file.c                  |   10 ++--
 greeter/Makefile.am     |    6 +-
 greeter/greet.c         |    5 --
 policy.c                |    4 -
 server.c                |   18 ++++----
 session.c               |   18 +-------
 util.c                  |    4 -
 xdm.man.cpp             |   31 ++++++++-------
 xdmcp.c                 |   44 ++++++++++-----------
 xdmshell.c              |    1 
 20 files changed, 268 insertions(+), 359 deletions(-)

New commits:
commit 5d79c0fad950ee6b83011a6c0242c9dc00c711a7
Author: Gaetan Nadon <memsize at videotron.ca>
Date:   Sun Aug 29 09:05:52 2010 -0400

    config: remove AC_LIBTOOL_WIN32_DLL
    
    As of 2002, this is no longer required and is a no-op
    in libtool v 1.5 and higher.
    
    Reviewed-by: Alan Coopersmith <alan.coopersmith at oracle.com>
    Signed-off-by: Gaetan Nadon <memsize at videotron.ca>

commit 0a90d3a5f580337e5d21eac4316b282e81bae68f
Author: Gaetan Nadon <memsize at videotron.ca>
Date:   Sun Aug 29 09:02:19 2010 -0400

    remove AC_C_INLINE as all compilers support inline keyword.
    
    This macro is not used anywhere else in xorg.
    
    Reviewed-by: Alan Coopersmith <alan.coopersmith at oracle.com>
    Signed-off-by: Gaetan Nadon <memsize at videotron.ca>

commit 4afafa90e79882b464b4aaee73826fb95136e7b5
Author: Gaetan Nadon <memsize at videotron.ca>
Date:   Sun Aug 29 09:00:45 2010 -0400

    config: remove AC_PROG_CC as it overrides AC_PROG_C_C99
    
    XORG_STRICT_OPTION from XORG_DEFAULT_OPTIONS calls
    AC_PROG_C_C99. This sets gcc with -std=gnu99.
    If AC_PROG_CC macro is called afterwards, it resets CC to gcc.
    
    Reviewed-by: Alan Coopersmith <alan.coopersmith at oracle.com>
    Signed-off-by: Gaetan Nadon <memsize at videotron.ca>

commit f56891b74f40df456e2e447745f70665d87d8596
Author: Gaetan Nadon <memsize at videotron.ca>
Date:   Sun Aug 29 08:58:48 2010 -0400

    config: remove AC_PROG_INSTALL provided by XORG_DEFAULTS
    
    Reviewed-by: Alan Coopersmith <alan.coopersmith at oracle.com>
    Signed-off-by: Gaetan Nadon <memsize at videotron.ca>

commit a0e103250ffa2d652fa4b2a6e8c719d54f616988
Author: Gaetan Nadon <memsize at videotron.ca>
Date:   Sun Aug 29 08:27:28 2010 -0400

    greeter: transfer -DGREET_LIB from configure.ac to Makefile.am
    
    It does not depend on module configuration.
    It should not mixed with flags required by dependencies.
    
    Reviewed-by: Alan Coopersmith <alan.coopersmith at oracle.com>
    Signed-off-by: Gaetan Nadon <memsize at videotron.ca>

commit 7e223d3ac6c0d549a7d6e4dcc86a053e19594028
Author: Gaetan Nadon <memsize at videotron.ca>
Date:   Sat Aug 28 20:11:28 2010 -0400

    greeter: only build the shared library version
    
    There is no evidence that the static version is needed since monolith
    as hinted by the comment in configure.ac.
    
    The greeter code is now all managed by the greeter Makefile.
    The configure option enable-dynamic-greeter no longer needed.
    GREET_USER_STATIC is no longer needed.
    GREET_LIB is still needed in greet.h as it is compiled with
    both session.c for xdm execuatable and greeter shared lib.
    
    Reviewed-by: Alan Coopersmith <alan.coopersmith at oracle.com>
    Signed-off-by: Gaetan Nadon <memsize at videotron.ca>

commit 674f08cbcbf9c4a29560e8b32e0335d9638b6868
Author: Gaetan Nadon <memsize at videotron.ca>
Date:   Sat Aug 28 19:43:03 2010 -0400

    config: remove copying Chooser.ad to Chooser
    
    This was removed from all other apps with resources in app-defaults.
    The Chooser resource file is a file in git that gets installed
    and distributed.
    
    Reviewed-by: Alan Coopersmith <alan.coopersmith at oracle.com>
    Signed-off-by: Gaetan Nadon <memsize at videotron.ca>

commit b8ca599af4a22c5cd1b2aaff203607fe8e5b99d4
Author: Gaetan Nadon <memsize at videotron.ca>
Date:   Mon Aug 23 07:02:44 2010 -0400

    man: build man page using sed rather than the C preprocessor
    
    This fixes misalignments to correctly display \n and \ for sample file.
    No source code changes needed to fix that.
    
    Replace XCOMM IMakefile comment with #.
    
    Replace #if with:
    .if !'x.VARNAME'x.' .ig
    [man page text]
    ..
    
    If $(VARNAME) is empty, the man page text is shown
    If $(VARNAME) is not empty, the man page text is skipped
    
    Or replace #if with:
    .if 'VARNAME'' .ig
    [man page text]
    ..
    
    If $(VARNAME) is empty, the man page text is skipped
    If $(VARNAME) is not empty, the man page text is shown
    
    In DisplayManager.randomDevice, the default /dev/urandom is no longer
    displayed with double-quotes which is consistent with other
    default values. This was a cpp side-effect.
    
    Tested on Debian with groff and Solaris with nroff
    
    Co-authored-by: Alan Coopersmith <alan.coopersmith at oracle.com>
    Signed-off-by: Gaetan Nadon <memsize at videotron.ca>

commit 86f354f0a970e2c39e65b44832aad6ad69f30dc5
Author: Gaetan Nadon <memsize at videotron.ca>
Date:   Sun Aug 22 17:47:39 2010 -0400

    man: conditionally include DisplayManager.randomFile resource
    
    This resource follows the same pattern as prndSocket and prngPort.
    It is displayed to the user only if ARC4_RANDOM is not defined.
    It seems to be a simple omission in the man page.
    Refer to resource.c:
    
    char	*randomFile;
    char	*randomDevice;
    char	*prngdSocket;
    int	prngdPort;
    
    Reviewed-by: Alan Coopersmith <alan.coopersmith at oracle.com>
    Signed-off-by: Gaetan Nadon <memsize at videotron.ca>

commit edbe0ce24ca9813fdff30c894c8174df188a1ae2
Author: Gaetan Nadon <memsize at videotron.ca>
Date:   Sun Aug 29 08:49:23 2010 -0400

    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
    Use the appropriate platform version of sed
    
    Reviewed-by: Alan Coopersmith <alan.coopersmith at oracle.com>
    Signed-off-by: Gaetan Nadon <memsize at videotron.ca>

commit d24f9406cf3d6560059a86394b4db98d22973556
Author: Gaetan Nadon <memsize at videotron.ca>
Date:   Thu Aug 26 12:11:27 2010 -0400

    Fix whitespace issues as reported by git diff
    
    Reviewed-by: Alan Coopersmith <alan.coopersmith at oracle.com>
    Signed-off-by: Gaetan Nadon <memsize at videotron.ca>



More information about the xorg-commit mailing list