1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56
|
AC_PREREQ(2.52)
AC_INIT(pm-utils, 1.4.1)
AC_CONFIG_SRCDIR(src)
AM_INIT_AUTOMAKE(AC_PACKAGE_NAME, AC_PACKAGE_VERSION)
AM_CONFIG_HEADER(config.h)
AC_PROG_CC
AC_PROG_LN_S
dnl ---------------------------------------------------------------------------
dnl - Manual page build
dnl ---------------------------------------------------------------------------
AC_ARG_ENABLE([doc],
AC_HELP_STRING([--disable-docs],
[Disable manpage generating via xmlto [[default=auto]]]),
[MAN="$enableval"],
[MAN=auto])
AC_PATH_PROG(XMLTO, xmlto, no)
AS_IF([test "x$MAN" = "xyes"],
[
AS_IF([test "x$XMLTO" = "xno"],
[AC_MSG_ERROR([Manpage generating requested but xmlto not found.])
])
],
[test "x${MAN}" != "xno"],
[
AS_IF([test "x$XMLTO" != "xno"],
[MAN="yes"],
[MAN="no"])
])
AM_CONDITIONAL(HAVE_XMLTO, [test "x$MAN" != xno])
AC_MSG_RESULT([checking whether to build manpages... $MAN])
dnl ---------------------------------------------------------------------------
dnl - Makefiles, etc.
dnl ---------------------------------------------------------------------------
AC_OUTPUT([
Makefile
pm-utils.pc
man/Makefile
src/Makefile
pm/Makefile
pm/sleep.d/Makefile
pm/power.d/Makefile
pm/module.d/Makefile
])
dnl ==========================================================================
echo "
pm-utils $VERSION
==================
prefix: ${prefix}
compiler: ${CC}
cflags: ${CFLAGS}
"
|