From d05ff7cc2408db3e8ed1a9b166a2b7982d31a425 Mon Sep 17 00:00:00 2001
From: hal9 <hal9@users.sourceforge.net>
Date: Fri, 27 Sep 2002 04:24:07 +0000
Subject: [PATCH] Minor change of "! test" to "test -ne" for Solaris.

---
 configure.in | 10 +++++++---
 1 file changed, 7 insertions(+), 3 deletions(-)

diff --git a/configure.in b/configure.in
index c2b5d997..d8d085b3 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.80 2002/09/26 18:47:46 hal9 Exp $
+dnl $Id: configure.in,v 1.81 2002/09/27 00:38:44 hal9 Exp $
 dnl 
 dnl Written by and Copyright (C) 2001, 2002 the SourceForge
 dnl Privoxy team. http://www.privoxy.org/
@@ -28,6 +28,10 @@ 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.81  2002/09/27 00:38:44  hal9
+dnl Some general cleanup of the user/group stuff. Including remove up to ':' to
+dnl make Linux (?) compatible with other *nix. Better AC output stuff.
+dnl
 dnl Revision 1.80  2002/09/26 18:47:46  hal9
 dnl This is most of Al's patch for --with-user and --with-group which tests that
 dnl these are valid values, if specified. If not specified, they are left empty.
@@ -417,7 +421,7 @@ dnl =================================================================
 dnl AutoConf Initialization
 dnl =================================================================
 
-AC_REVISION($Revision: 1.80 $)
+AC_REVISION($Revision: 1.81 $)
 AC_INIT(src/jcc.c)
 
 if test ! -f src/config.h.in; then
@@ -527,7 +531,7 @@ dnl Check for user and group validity
 dnl =================================================================
 
 $ID privoxy >/dev/null 2>/dev/null
-if ! test $? -eq 0 ; then
+if test $? -ne 0 ; then
  AC_MSG_WARN(There is no user 'privoxy' on this system)
 fi
 AC_MSG_CHECKING([for user])
-- 
2.49.0