X-Git-Url: http://www.privoxy.org/gitweb/?a=blobdiff_plain;f=configure.in;h=6da7f52f7a6de4c22fc2bb0d2110ac043f22d6db;hb=a1a75fa4d66af067d3242cb64138b86f934fad6c;hp=dd9c6379b1480a1a57efe988f37673914617adb3;hpb=e61da0b2a619fa3a1df44c2908820bb9ee75c585;p=privoxy.git diff --git a/configure.in b/configure.in index dd9c6379..6da7f52f 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.68.2.15 2003/03/26 00:25:00 oes Exp $ +dnl $Id: configure.in,v 1.68.2.16 2003/03/26 16:05:14 oes Exp $ dnl dnl Written by and Copyright (C) 2001, 2002 the SourceForge dnl Privoxy team. http://www.privoxy.org/ @@ -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.68.2.16 2003/03/26 16:05:14 oes +dnl Marked as 0.0.0 UNRELEASED +dnl dnl Revision 1.68.2.15 2003/03/26 00:25:00 oes dnl Bump version for 3.0.2 dnl @@ -418,7 +421,7 @@ dnl ================================================================= dnl AutoConf Initialization dnl ================================================================= -AC_REVISION($Revision: 1.68.2.15 $) +AC_REVISION($Revision: 1.68.2.16 $) AC_INIT(jcc.c) if test ! -f config.h.in; then @@ -544,12 +547,18 @@ dnl ================================================================= dnl Check for user and group validity dnl ================================================================= -$ID privoxy >/dev/null 2>/dev/null -if test $? -ne 0 ; then - AC_MSG_WARN(There is no user 'privoxy' on this system) -fi -AC_MSG_CHECKING([for user]) -AC_ARG_WITH(user, + +if test "$EMXOS2" = yes; then + echo "Skipping user and group validity stuff."; + +else + + $ID privoxy >/dev/null 2>/dev/null + if test $? -ne 0 ; then + AC_MSG_WARN(There is no user 'privoxy' on this system) + fi + AC_MSG_CHECKING([for user]) + AC_ARG_WITH(user, [ --with-user=privoxy Set user under which privoxy will run], [ if test "x$withval" != "xyes"; then @@ -576,11 +585,11 @@ AC_ARG_WITH(user, USER=$with_user fi ] -) -AC_SUBST(USER) + ) + AC_SUBST(USER) -AC_MSG_CHECKING([for group]) -AC_ARG_WITH(group, + AC_MSG_CHECKING([for group]) + AC_ARG_WITH(group, [ --with-group=privoxy Set group for privoxy], [ if test "x$withval" != "xyes"; then @@ -613,8 +622,10 @@ AC_ARG_WITH(group, GROUP=$with_group; fi ] -) -AC_SUBST(GROUP) + ) + AC_SUBST(GROUP) + +fi dnl ================================================================= dnl additional gcc flags