summaryrefslogtreecommitdiff
path: root/configure.in
diff options
context:
space:
mode:
authorSteven Hazel <sah@freehaven.net>2003-10-22 06:03:11 +0000
committerSteven Hazel <sah@freehaven.net>2003-10-22 06:03:11 +0000
commitb1eca56b77ba1316eb23587341319fbbe2bc6560 (patch)
tree1c38a5d88f170dd0aca2c221d9f2c8343258b304 /configure.in
parent524d63ecc62cc6e1dcaafd0ec2ad507328415c19 (diff)
downloadtor-b1eca56b77ba1316eb23587341319fbbe2bc6560.tar.gz
tor-b1eca56b77ba1316eb23587341319fbbe2bc6560.zip
added User and Group options -- if you set them, tor will try to
setuid and setgid respectively, and die if it can't. (If the User option is set, tor will setgid to the user's gid as well.) This happens after the pidfile is created, so that in cases where tor needs to be root to work with the pidfile, it will at least be able to create it, although it won't be able to delete it. That sucks, but it's somewhat better than not being able to create the pidfile in the first place. svn:r652
Diffstat (limited to 'configure.in')
-rw-r--r--configure.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.in b/configure.in
index 33d9484167..7933cf7678 100644
--- a/configure.in
+++ b/configure.in
@@ -130,7 +130,7 @@ LIBS="$saved_LIBS -lcrypto -lssl"
dnl The warning message here is no longer strictly accurate.
-AC_CHECK_HEADERS(unistd.h string.h signal.h netdb.h ctype.h poll.h sys/stat.h sys/poll.h sys/types.h sys/fcntl.h sys/ioctl.h sys/socket.h sys/time.h netinet/in.h arpa/inet.h errno.h assert.h time.h, , AC_MSG_WARN(some headers were not found, compilation may fail))
+AC_CHECK_HEADERS(unistd.h string.h signal.h netdb.h ctype.h poll.h sys/stat.h sys/poll.h sys/types.h sys/fcntl.h sys/ioctl.h sys/socket.h sys/time.h netinet/in.h arpa/inet.h errno.h assert.h time.h pwd.h grp.h, , AC_MSG_WARN(some headers were not found, compilation may fail))
dnl These headers are not essential