From: oes <oes@users.sourceforge.net>
Date: Wed, 18 Jul 2001 17:25:04 +0000 (+0000)
Subject: Fixed a typo
X-Git-Tag: v_2_9_9~233
X-Git-Url: http://www.privoxy.org/gitweb/@default-cgi@/faq/%22https:/developer-manual/static/diff?a=commitdiff_plain;h=44c2474b32fdfeee9e1ca536d4a5d6efb6b20611;p=privoxy.git

Fixed a typo
---

diff --git a/configure.in b/configure.in
index 87b0a4f8..67dee7d1 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.8 2001/07/15 17:54:29 jongfoster Exp $
+dnl $Id: configure.in,v 1.9 2001/07/15 19:45:13 jongfoster 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.9  2001/07/15 19:45:13  jongfoster
+dnl Added support for linking with POSIX threads library
+dnl
 dnl Revision 1.8  2001/07/15 17:54:29  jongfoster
 dnl Renaming #define STATIC to STATIC_PCRE
 dnl Adding new #define FEATURE_PTHREAD that will be used to enable
@@ -181,7 +184,7 @@ dnl Note: Some systems have the library but not the system header file,
 dnl       so we must check for both.
 AC_CHECK_LIB(pcre, pcre_compile, [AC_CHECK_HEADER(pcre.h, [have_pcre=yes], [have_pcre=no])], [have_pcre=no])
 AC_CHECK_LIB(pcreposix, regcomp, [AC_CHECK_HEADER(pcreposix.h, [have_pcreposix=yes], [have_pcreposix=no])], [have_pcreposix=no], -lpcre)
-AC_CHECK_LIB(pcrs, pcrs_compile, [AC_CHECK_HEADER(pcrs.h, [have_pcrs=yes], [have_pcre=no])], [have_pcrs=no])
+AC_CHECK_LIB(pcrs, pcrs_compile, [AC_CHECK_HEADER(pcrs.h, [have_pcrs=yes], [have_pcrs=no])], [have_pcrs=no])
 
 dnl Checks for header files.
 AC_HEADER_STDC