Minor change of "! test" to "test -ne" for Solaris.
authorhal9 <hal9@users.sourceforge.net>
Fri, 27 Sep 2002 04:24:07 +0000 (04:24 +0000)
committerhal9 <hal9@users.sourceforge.net>
Fri, 27 Sep 2002 04:24:07 +0000 (04:24 +0000)
configure.in

index c2b5d99..d8d085b 100644 (file)
@@ -1,6 +1,6 @@
 dnl Process this file with autoconf to produce a configure script.
 dnl 
 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/
 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 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.
 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 =================================================================
 
 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
 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
 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])
  AC_MSG_WARN(There is no user 'privoxy' on this system)
 fi
 AC_MSG_CHECKING([for user])