X-Git-Url: http://www.privoxy.org/gitweb/?a=blobdiff_plain;f=configure.in;h=981fb9b53750773b8b18ef7b05788001edd8e041;hb=08b7ec1627dee176901d6c490fdb67f9e2041482;hp=d96ea7a6b561a56039bc55bb8e9eecd026318f26;hpb=2412eca92924e30e11ef37668bbaa22a23eb2b53;p=privoxy.git diff --git a/configure.in b/configure.in index d96ea7a6..981fb9b5 100644 --- a/configure.in +++ b/configure.in @@ -1,6 +1,6 @@ dnl Process this file with autoconf to produce a configure script. dnl -dnl $Id: configure.in,v 1.38 2002/03/08 14:13:50 morcego Exp $ +dnl $Id: configure.in,v 1.39 2002/03/08 16:46:13 oes Exp $ dnl dnl Written by and Copyright (C) 2001 the SourceForge dnl IJBSWA team. http://ijbswa.sourceforge.net @@ -28,6 +28,9 @@ dnl or write to the Free Software Foundation, Inc., 59 dnl Temple Place - Suite 330, Boston, MA 02111-1307, USA. dnl dnl $Log: configure.in,v $ +dnl Revision 1.39 2002/03/08 16:46:13 oes +dnl Added --enable-no-gifs +dnl dnl Revision 1.38 2002/03/08 14:13:50 morcego dnl Fixing configure, to remove a command not found error. dnl @@ -264,7 +267,7 @@ dnl ================================================================= dnl AutoConf Initialization dnl ================================================================= -AC_REVISION($Revision: 1.38 $) +AC_REVISION($Revision: 1.39 $) AC_INIT(jcc.c) AC_CONFIG_HEADER(config.h) AC_CANONICAL_HOST @@ -460,10 +463,15 @@ AC_SUBST(JADEBIN) dnl Checking for the docbook.dsl stylesheet file if test $dodk = yes; then if test $DKPREFIX = none; then - AC_CHECK_FILE(/usr/share/sgml/docbook/dsssl-stylesheets/html/docbook.dsl, - DKPREFIX=/usr/share/sgml/docbook/dsssl-stylesheets, - AC_CHECK_FILE(/usr/share/sgml/docbkdsl/html/docbook.dsl, - DKPREFIX=/usr/share/sgml/docbkdsl)) + for i in /usr/share/sgml/docbook/dsssl-stylesheets /usr/share/sgml/docbkdsl; do + echo -n "checking for $i/html/docbook.dsl..." + if test -f $i/html/docbook.dsl; then + echo "yes" + DKPREFIX=$i + else + echo "no" + fi + done fi fi AC_SUBST(DKPREFIX)