From 2f50b4a207d4f494fd031592727c4af11f0750d7 Mon Sep 17 00:00:00 2001 From: Enrico Scholz Date: Thu, 22 Apr 2004 19:27:19 +0000 Subject: [PATCH] use xalan instead of xsltproc git-svn-id: http://svn.linux-vserver.org/svn/util-vserver/trunk@1497 94cd875c-1c1d-0410-91d2-eb244daf1a30 --- util-vserver/configure.ac | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/util-vserver/configure.ac b/util-vserver/configure.ac index 8591b47..5409e61 100644 --- a/util-vserver/configure.ac +++ b/util-vserver/configure.ac @@ -24,7 +24,7 @@ dnl distribution terms that you use for the rest of that program. dnl AC_PREREQ(2.57) -AC_INIT(util-vserver, 0.29.209, enrico.scholz@informatik.tu-chemnitz.de) +AC_INIT(util-vserver, 0.29.210, enrico.scholz@informatik.tu-chemnitz.de) AC_CONFIG_SRCDIR([src/capchroot.c]) AC_CONFIG_HEADER([config.h]) @@ -56,12 +56,15 @@ AC_PATH_PROGS(MODPROBE, [modprobe], [/sbin/modprobe], [ $check_paths ]) AC_PATH_PROGS(RMMOD, [rmmod], [/sbin/rmmod], [ $check_paths ]) AC_PATH_PROGS(NAMEIF, [nameif], [/sbin/nameif], [ $check_paths ]) AC_PATH_PROGS(IPTABLES, [iptables], [/sbin/iptables], [ $check_paths ]) -AC_PATH_PROGS(XSLTPROC, [xsltproc], [xsltproc]) AC_PATH_PROGS(SED, [sed], [sed]) AC_PATH_PROGS(CMP, [cmp], [cmp]) AC_PATH_PROGS(WGET, [wget], [wget]) AC_PATH_PROGS(DOXYGEN, [doxygen], [:]) AC_PATH_PROGS(TAR, [tar]) +AC_PATH_PROGS(XSLTP, [xsltp]) + +AM_CONDITIONAL(HAVE_XSLTP, test "$XSLTP") + ENSC_CHECK_CC_FLAG([-std=c99 -Wall -pedantic -W]) ENSC_CHECK_CXX_FLAG([-ansi -Wall -pedantic -W -fmessage-length=0]) @@ -175,6 +178,7 @@ ENSC_CHECK_EXT2FS_HEADER AC_CHECK_FUNCS([vserver]) AC_CHECK_DECLS(MS_MOVE,,,[#include ]) AC_CHECK_TYPES(xid_t,,,[#include ]) +AC_CHECK_TYPES(nid_t,,,[#include ]) dnl BIG HACK! Do some autodetection here! AC_DEFINE(UTMP_GID, [22], [The utmp gid-number]) -- 1.8.1.5