# -*- Autoconf -*- # Process this file with autoconf to produce a configure script. AC_PREREQ([2.65]) AC_INIT(vine-manual-build, 0.9.0, http://bts.vinelinux.org/) AM_INIT_AUTOMAKE([1.9 no-dist-gzip dist-bzip2 tar-ustar]) AM_MAINTAINER_MODE # Checks for programs. AC_PATH_PROG(XSLTPROC,xsltproc) AS_IF(test -z $XSLTPROC, AC_MSG_ERROR([xsltproc was not found.])) # Checks for libraries. # Checks for header files. # Checks for typedefs, structures, and compiler characteristics. # Checks for library functions. if test "x${prefix}" = "xNONE"; then prefix=${ac_default_prefix} fi DATADIR=`eval echo ${datadir}` XSLDIR=`eval echo ${DATADIR}`/sgml/docbook/vine-style-xsl AC_SUBST(XSLDIR) AC_CONFIG_FILES([ Makefile vine-manual-build vine-manual-build-vl.spec ]) AC_OUTPUT