summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPeter Volkov <pva@gentoo.org>2010-04-08 05:55:08 +0000
committerPeter Volkov <pva@gentoo.org>2010-04-08 05:55:08 +0000
commit16a90ea185424b5eeb3f9d627a161d910712ebc2 (patch)
tree9cc8fde8b1029f946cd901b76ec1d25965c166de /net-analyzer/tcpdump/files
parentVersion bump. (diff)
downloadgentoo-2-16a90ea185424b5eeb3f9d627a161d910712ebc2.tar.gz
gentoo-2-16a90ea185424b5eeb3f9d627a161d910712ebc2.tar.bz2
gentoo-2-16a90ea185424b5eeb3f9d627a161d910712ebc2.zip
Version bump.
(Portage version: 2.1.8.3/cvs/Linux x86_64)
Diffstat (limited to 'net-analyzer/tcpdump/files')
-rw-r--r--net-analyzer/tcpdump/files/tcpdump-4.1.0-without-chroot.patch27
1 files changed, 0 insertions, 27 deletions
diff --git a/net-analyzer/tcpdump/files/tcpdump-4.1.0-without-chroot.patch b/net-analyzer/tcpdump/files/tcpdump-4.1.0-without-chroot.patch
deleted file mode 100644
index d81af4ca776c..000000000000
--- a/net-analyzer/tcpdump/files/tcpdump-4.1.0-without-chroot.patch
+++ /dev/null
@@ -1,27 +0,0 @@
-commit 7ec07e4815965dd31b85e56ac823249bfb9afc28
-Author: Peter Volkov <pva@gentoo.org>
-Date: Fri Apr 2 09:33:30 2010 +0400
-
- Respect --without-chroot correctly
-
- ./configure --without-chroot will configure tcpdump with "no" as the
- value of chroot directory and cause tcpdump to fail with:
-
- tcpdump: Couldn't chroot/chdir to 'no': No such file or directory
-
- This patch makes ./configure to avoid chroot directory when called with
- --without-chroot.
-
-diff --git a/configure.in b/configure.in
-index 1c1b63a..eb3e5e8 100644
---- a/configure.in
-+++ b/configure.in
-@@ -159,7 +159,7 @@ fi
-
- AC_ARG_WITH(chroot, [ --with-chroot=DIRECTORY when dropping privileges, chroot to DIRECTORY])
- AC_MSG_CHECKING([whether to chroot])
--if test ! -z "$with_chroot" ; then
-+if test ! -z "$with_chroot" && test "$with_chroot" != "no" ; then
- AC_DEFINE_UNQUOTED(WITH_CHROOT, "$withval")
- AC_MSG_RESULT(to \"$withval\")
- else