# -*- Autoconf -*- # Process this file with autoconf to produce a configure script. AC_PREREQ([2.65]) AC_INIT([vine-manual-base], [0.1], [http://vinelinux.org/bts.html]) AM_INIT_AUTOMAKE([no-dist-gzip dist-bzip2 tar-ustar]) # Checks for programs. AC_PATH_PROG(MKTEMP, mktemp) AS_IF(test -z $MKTEMP, AC_MSG_ERROR([Cannot find mktemp.])) # Checks for libraries. # Checks for header files. # Checks for typedefs, structures, and compiler characteristics. # Checks for library functions. # Define variables if test "x${prefix}" = "xNONE"; then prefix=${ac_default_prefix} fi DATADIR=`eval echo ${datadir}` CVSDATA=`eval echo ${DATADIR}/vine-manual-base`/doc-list.csv AC_SUBST(CVSDATA) TEMPLATE=`eval echo ${DATADIR}/vine-manual-base`/index.html AC_SUBST(TEMPLATE) INDEX=`eval echo ${DATADIR}/doc/Vine-manual/index.html` AC_SUBST(INDEX) AC_CONFIG_FILES([Makefile vine-manual-base.spec bin/Makefile bin/vine-manual-index-update bin/vine-manual-regist css/Makefile data/Makefile data/index.html doc/Makefile doc/index.html images/Makefile]) AC_OUTPUT