X-Git-Url: http://www.privoxy.org/gitweb/?a=blobdiff_plain;f=configure.in;h=2e961cec2b8a2ed6145b63f581e8032792942940;hb=fb42e7db1228ade6d4d25a0af403383c54199898;hp=fe6a16f896343eebcd1f838a1b20f985fe5db4d7;hpb=004d0cf61c498b0309f4b3b58818114fe3330a20;p=privoxy.git diff --git a/configure.in b/configure.in index fe6a16f8..2e961cec 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.20 2001/10/23 21:24:09 jongfoster Exp $ +dnl $Id: configure.in,v 1.23 2001/12/09 20:24:42 david__schmidt Exp $ dnl dnl Written by and Copyright (C) 2001 the SourceForge dnl IJBSWA team. http://ijbswa.sourceforge.net @@ -28,6 +28,16 @@ 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.23 2001/12/09 20:24:42 david__schmidt +dnl Change from "alpha" to "beta" in configure.in +dnl +dnl Revision 1.22 2001/12/01 11:24:01 jongfoster +dnl Renaming Makefile.in to GNUmakefile.in so that non-GNU versions of +dnl make break in a more obvious way. +dnl +dnl Revision 1.21 2001/11/30 21:35:54 jongfoster +dnl Bumping version number to 2.9.10 +dnl dnl Revision 1.20 2001/10/23 21:24:09 jongfoster dnl Support for FEATURE_CGI_EDIT_ACTIONS dnl @@ -193,7 +203,7 @@ dnl ================================================================= dnl AutoConf Initialization dnl ================================================================= -AC_REVISION($Revision: 1.20 $) +AC_REVISION($Revision: 1.23 $) AC_INIT(jcc.c) AC_CONFIG_HEADER(config.h) AC_CANONICAL_HOST @@ -206,7 +216,7 @@ dnl ================================================================= VERSION_MAJOR=2 VERSION_MINOR=9 VERSION_POINT=10 -CODE_STATUS="\"alpha\"" +CODE_STATUS="\"beta\"" dnl CODE_STATUS can be "alpha", "beta", or "stable", and will be dnl used for CGI output @@ -226,6 +236,11 @@ AC_DEFINE_UNQUOTED(VERSION_POINT,${VERSION_POINT}) AC_DEFINE_UNQUOTED(VERSION,"${VERSION_MAJOR}.${VERSION_MINOR}.${VERSION_POINT}") AC_DEFINE_UNQUOTED(CODE_STATUS,${CODE_STATUS}) +dnl ================================================================= +dnl pid file only for unix +dnl ================================================================= +dnl +PID_FILE_PATH="\"/etc/junkbuster"\" dnl ================================================================= dnl Checks for programs needed to build. @@ -655,6 +670,9 @@ dnl in the Makefile CFLAGS=$old_CFLAGS_nospecial AC_SUBST(SPECIAL_CFLAGS) +AC_SUBST(PID_FILE_PATH) +AC_DEFINE_UNQUOTED(PID_FILE_PATH,${PID_FILE_PATH}) + AC_SUBST(PTHREAD_LIB) -AC_OUTPUT(Makefile) +AC_OUTPUT(GNUmakefile)