mirror of
https://gitlab.freedesktop.org/xorg/lib/libx11.git
synced 2026-05-09 08:28:05 +02:00
configure.ac Use XORG_MAN_SECTIONS instead of custom man section configuration. Add shadow man pages for man pages that document multiple functions.
This commit is contained in:
parent
8ee5c1429a
commit
b76a072530
3 changed files with 1306 additions and 14 deletions
|
|
@ -1,3 +1,10 @@
|
|||
2005-10-11 Alan Coopersmith <alan.coopersmith@sun.com>
|
||||
|
||||
* man/Makefile.am:
|
||||
* configure.ac
|
||||
Use XORG_MAN_SECTIONS instead of custom man section configuration.
|
||||
Add shadow man pages for man pages that document multiple functions.
|
||||
|
||||
2005-10-10 Eric Anholt <anholt@FreeBSD.org>
|
||||
|
||||
* configure.ac:
|
||||
|
|
|
|||
12
configure.ac
12
configure.ac
|
|
@ -267,18 +267,18 @@ AC_ARG_ENABLE(xkb,
|
|||
[Disable XKB support *EXPERIMENTAL*]),
|
||||
[XKB=$enableval],[XKB=yes])
|
||||
|
||||
XORG_MANPAGE_SECTIONS
|
||||
|
||||
AC_ARG_ENABLE(man-pages,
|
||||
AC_HELP_STRING([--enable-man-pages=section],
|
||||
[Choose manual section for installing man pages]),
|
||||
[LIBMAN_SUFFIX=$enableval],[LIBMAN_SUFFIX=3x])
|
||||
[LIBMAN=$enableval],[LIBMAN=yes])
|
||||
|
||||
if test "x$LIBMAN_SUFFIX" = "xyes"; then
|
||||
LIBMAN_SUFFIX=3x
|
||||
if test "x$LIBMAN" != "xyes"; then
|
||||
LIB_MAN_SUFFIX=$LIBMAN
|
||||
fi
|
||||
|
||||
AC_SUBST(LIBMAN_SUFFIX)
|
||||
|
||||
AM_CONDITIONAL(MANPAGES, [ test x$LIBMAN_SUFFIX '!=' xno ])
|
||||
AM_CONDITIONAL(MANPAGES, [ test x$LIBMAN '!=' xno ])
|
||||
|
||||
AM_CONDITIONAL(XKB, [ test x$XKB = xyes ])
|
||||
if test x"$XKB" = "xyes"; then
|
||||
|
|
|
|||
1301
man/Makefile.am
1301
man/Makefile.am
File diff suppressed because it is too large
Load diff
Loading…
Add table
Reference in a new issue