145 lines
5.0 KiB
Plaintext
145 lines
5.0 KiB
Plaintext
|
|
dnl Copyright 2005 Red Hat, Inc.
|
|
dnl
|
|
dnl Permission to use, copy, modify, distribute, and sell this software and its
|
|
dnl documentation for any purpose is hereby granted without fee, provided that
|
|
dnl the above copyright notice appear in all copies and that both that
|
|
dnl copyright notice and this permission notice appear in supporting
|
|
dnl documentation, and that the name of Red Hat not be used in
|
|
dnl advertising or publicity pertaining to distribution of the software without
|
|
dnl specific, written prior permission. Red Hat makes no
|
|
dnl representations about the suitability of this software for any purpose. It
|
|
dnl is provided "as is" without express or implied warranty.
|
|
dnl
|
|
dnl RED HAT DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
|
|
dnl INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO
|
|
dnl EVENT SHALL RED HAT BE LIABLE FOR ANY SPECIAL, INDIRECT OR
|
|
dnl CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
|
|
dnl DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
|
|
dnl TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
|
|
dnl PERFORMANCE OF THIS SOFTWARE.
|
|
dnl
|
|
dnl Process this file with autoconf to create configure.
|
|
|
|
AC_PREREQ([2.57])
|
|
AC_INIT(xman, [1.1.0], [https://bugs.freedesktop.org/enter_bug.cgi?product=xorg],xman)
|
|
AM_INIT_AUTOMAKE([dist-bzip2])
|
|
AM_MAINTAINER_MODE
|
|
|
|
# Require xorg-macros 1.3 or later: XORG_DEFAULT_OPTIONS
|
|
m4_ifndef([XORG_MACROS_VERSION],
|
|
[m4_fatal([must install xorg-macros 1.3 or later before running autoconf/autogen])])
|
|
XORG_MACROS_VERSION(1.3)
|
|
|
|
AM_CONFIG_HEADER(config.h)
|
|
|
|
AC_PROG_CC
|
|
AC_PROG_INSTALL
|
|
AC_CANONICAL_HOST
|
|
|
|
XORG_DEFAULT_OPTIONS
|
|
|
|
AC_CHECK_FUNC([mkstemp],
|
|
AC_DEFINE(HAS_MKSTEMP,1,[Define to 1 if you have the "mkstemp" function.]))
|
|
|
|
AC_ARG_WITH(helpdir,
|
|
AC_HELP_STRING([--with-helpdir=<path>],
|
|
[Set default directory for xman.help (default: ${datadir}/X11)]),
|
|
[HELPDIR="$withval"],
|
|
[HELPDIR=${datadir}/X11])
|
|
AC_SUBST([HELPDIR])
|
|
|
|
AC_ARG_WITH(sysmanpath,
|
|
AC_HELP_STRING([--with-sysmanpath=<path>],
|
|
[Set default system man page search path]),
|
|
[SYSMANPATH="$withval"], [])
|
|
if test x$SYSMANPATH != x; then
|
|
AC_DEFINE_UNQUOTED(SYSMANPATH, "$SYSMANPATH",
|
|
[Default system man page search path (default: none)])
|
|
fi
|
|
|
|
AC_ARG_WITH(localmanpath,
|
|
AC_HELP_STRING([--with-localmanpath=<path>],
|
|
[Set default local man page search path]),
|
|
[LOCALMANPATH="$withval"], [])
|
|
if test x$LOCALMANPATH != x; then
|
|
AC_DEFINE_UNQUOTED(LOCALMANPATH, "$LOCALMANPATH",
|
|
[Default local man page search path (default: none)])
|
|
fi
|
|
|
|
# Checks for pkg-config packages
|
|
PKG_CHECK_MODULES(XMAN, xaw7)
|
|
|
|
AC_ARG_WITH(manconfig,
|
|
AC_HELP_STRING([--with-manconfig=<filename>],
|
|
[Set default system man configuration file]),
|
|
[MANCONF="$withval"], [])
|
|
if test x$MANCONF = x; then
|
|
# Check for man page config files
|
|
AC_CHECK_FILE([/etc/man.conf], [MANCONF="/etc/man.conf"],
|
|
AC_CHECK_FILE([/etc/man.config], [MANCONF="/etc/man.config"],
|
|
AC_CHECK_FILE([/etc/manpath.config], [MANCONF="/etc/manpath.config"],
|
|
AC_CHECK_FILE([/usr/share/misc/man.conf], [MANCONF="/usr/share/misc/man.conf"]))))
|
|
fi
|
|
|
|
if test x$MANCONF != x ; then
|
|
AC_DEFINE_UNQUOTED(MANCONF, "$MANCONF",
|
|
[Define to path to man config file if you have one])
|
|
|
|
# Try to determine format of config file
|
|
# would be better to somehow determine from the files themselves, but
|
|
# we'll guess based on pathname and OS for now (mirrors old Imake tests)
|
|
AC_MSG_CHECKING([man config file format])
|
|
if test x$MANCONF = x/etc/manpath.config ; then
|
|
MAN_CONFIG_STYLE="FreeBSD"
|
|
else
|
|
case $host_os in
|
|
*darwin* | *openbsd* | *netbsd* )
|
|
MAN_CONFIG_STYLE="OpenBSD"
|
|
;;
|
|
*linux* | cygwin* )
|
|
MAN_CONFIG_STYLE="Linux"
|
|
;;
|
|
*bsd* )
|
|
MAN_CONFIG_STYLE="BSD"
|
|
;;
|
|
*)
|
|
;;
|
|
esac
|
|
fi
|
|
AC_MSG_RESULT($MAN_CONFIG_STYLE)
|
|
|
|
case $MAN_CONFIG_STYLE in
|
|
FreeBSD)
|
|
AC_DEFINE([MANCONFIGSTYLE_FreeBSD],1,
|
|
[Define to 1 if you have FreeBSD format manpath.config])
|
|
;;
|
|
OpenBSD)
|
|
AC_DEFINE([MANCONFIGSTYLE_OpenBSD],1,
|
|
[Define to 1 if you have OpenBSD format manpath.config])
|
|
;;
|
|
BSD)
|
|
AC_DEFINE([MANCONFIGSTYLE_BSD],1,
|
|
[Define to 1 if you have BSD format manpath.config])
|
|
;;
|
|
Linux)
|
|
AC_DEFINE([MANCONFIGSTYLE_Linux],1,
|
|
[Define to 1 if you have Linux format man.conf or man.config])
|
|
;;
|
|
*)
|
|
AC_MSG_ERROR([Could not determine man page file config format.])
|
|
esac
|
|
fi
|
|
AC_SUBST(XMAN_CFLAGS)
|
|
AC_SUBST(XMAN_LIBS)
|
|
|
|
PKG_CHECK_MODULES(APPDEFS, xt)
|
|
xt_appdefaultdir=$(pkg-config --variable=appdefaultdir xt)
|
|
AC_ARG_WITH(appdefaultdir,
|
|
AC_HELP_STRING([--with-appdefaultdir=<pathname>],
|
|
[specify directory for app-defaults files (default is autodetected)]),
|
|
[appdefaultdir="$withval"], [appdefaultdir="${xt_appdefaultdir}"])
|
|
AC_SUBST(appdefaultdir)
|
|
|
|
AC_OUTPUT([Makefile])
|