[PATCH libAppleWM] config: upgrade to util-macros 1.8 for additional man page support

Jeremy Huddleston jeremyhu at apple.com
Tue Oct 5 13:15:26 PDT 2010


Reviewed-by: Jeremy Huddleston <jeremyhu at apple.com>

On Oct 5, 2010, at 13:10, Gaetan Nadon wrote:

> 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
> 
> Signed-off-by: Gaetan Nadon <memsize at videotron.ca>
> ---
> configure.ac    |    7 +++----
> man/Makefile.am |   22 +++-------------------
> 2 files changed, 6 insertions(+), 23 deletions(-)
> 
> diff --git a/configure.ac b/configure.ac
> index 5082131..c740c45 100644
> --- a/configure.ac
> +++ b/configure.ac
> @@ -27,17 +27,16 @@ AC_INIT(libAppleWM, 1.4.0, [https://bugs.freedesktop.org/enter_bug.cgi?product=x
> AM_INIT_AUTOMAKE([foreign dist-bzip2])
> AM_MAINTAINER_MODE
> 
> -# Require xorg-macros: XORG_DEFAULT_OPTIONS
> +# Require X.Org macros 1.8 or later for MAN_SUBSTS set by XORG_MANPAGE_SECTIONS
> m4_ifndef([XORG_MACROS_VERSION],
> -          [m4_fatal([must install xorg-macros 1.3 or later before running autoconf/autogen])])
> -XORG_MACROS_VERSION(1.3)
> +          [m4_fatal([must install xorg-macros 1.8 or later before running autoconf/autogen])])
> +XORG_MACROS_VERSION(1.8)
> XORG_DEFAULT_OPTIONS
> AM_CONFIG_HEADER(config.h)
> 
> # Check for progs
> AC_PROG_CC
> AC_PROG_LIBTOOL
> -AC_PROG_SED
> 
> # Check for dependencies
> PKG_CHECK_MODULES(APPLEWM, x11 xext xextproto [applewmproto >= 1.4])
> diff --git a/man/Makefile.am b/man/Makefile.am
> index 1f5f970..f4a45f2 100644
> --- a/man/Makefile.am
> +++ b/man/Makefile.am
> @@ -25,26 +25,10 @@ libman_DATA = $(libman_PRE:man=$(LIB_MAN_SUFFIX))
> 
> EXTRA_DIST = $(libman_PRE)
> CLEANFILES = $(libman_DATA)
> -
> -# Strings to replace in man pages
> -XORGRELSTRING = @PACKAGE_STRING@
> -  XORGMANNAME = X Version 11
> -
> -MAN_SUBSTS = \
> -	-e 's|__vendorversion__|"$(XORGRELSTRING)" "$(XORGMANNAME)"|' \
> -	-e 's|__xorgversion__|"$(XORGRELSTRING)" "$(XORGMANNAME)"|' \
> -	-e 's|__xservername__|XQuartz|g' \
> -	-e 's|__xconfigfile__|xorg.conf|g' \
> -	-e 's|__projectroot__|$(prefix)|g' \
> -	-e 's|__apploaddir__|$(appdefaultdir)|' \
> -	-e 's|__appmansuffix__|$(APP_MAN_SUFFIX)|g' \
> -	-e 's|__libmansuffix__|$(LIB_MAN_SUFFIX)|g' \
> -	-e 's|__adminmansuffix__|$(ADMIN_MAN_SUFFIX)|g' \
> -	-e 's|__miscmansuffix__|$(MISC_MAN_SUFFIX)|g' \
> -	-e 's|__filemansuffix__|$(FILE_MAN_SUFFIX)|g'
> -
> SUFFIXES = .$(LIB_MAN_SUFFIX) .man
> +APPLE_MAN_SUBSTS = -e 's|__xservername__|XQuartz|g' $(MAN_SUBSTS)
> 
> +# String replacements in MAN_SUBSTS now come from xorg-macros.m4 via configure
> .man.$(LIB_MAN_SUFFIX):
> -	$(AM_V_GEN)$(SED) $(MAN_SUBSTS) < $< > $@
> +	$(AM_V_GEN)$(SED) $(APPLE_MAN_SUBSTS) < $< > $@
> 
> -- 
> 1.6.0.4
> 
> _______________________________________________
> xorg-devel at lists.x.org: X.Org development
> Archives: http://lists.x.org/archives/xorg-devel
> Info: http://lists.x.org/mailman/listinfo/xorg-devel



More information about the xorg-devel mailing list