diff options
author | Stephen Fisher <steve@stephen-fisher.com> | 2007-12-20 04:21:04 +0000 |
---|---|---|
committer | Stephen Fisher <steve@stephen-fisher.com> | 2007-12-20 04:21:04 +0000 |
commit | f6f2f267cd5cba6d9947a840132ad6fd5bcf3b11 (patch) | |
tree | b2d2bf3b9dd08bf039ceb0efd0144757977cf781 /configure.in | |
parent | 10176064a69d3529cbeaa49b7f1d14f61b914ed5 (diff) | |
download | wireshark-f6f2f267cd5cba6d9947a840132ad6fd5bcf3b11.tar.gz wireshark-f6f2f267cd5cba6d9947a840132ad6fd5bcf3b11.tar.bz2 wireshark-f6f2f267cd5cba6d9947a840132ad6fd5bcf3b11.zip |
Follow-up to SVN commit 23925: Remove tshark from description of setuid
options in configure script, leaving just dumpcap.
svn path=/trunk/; revision=23926
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/configure.in b/configure.in index 6ca13ad98b..83398cc857 100644 --- a/configure.in +++ b/configure.in @@ -1076,18 +1076,18 @@ else fi -dnl Check if wireshark should be installed setuid +dnl Check if dumpcap should be installed setuid AC_ARG_ENABLE(setuid-install, AC_HELP_STRING( [--enable-setuid-install], - [install tshark and dumpcap as setuid @<:@default=no@:>@]), + [install dumpcap as setuid @<:@default=no@:>@]), enable_setuid_install=$enableval,enable_setuid_install=no) -AC_MSG_CHECKING(whether to install tshark and dumpcap setuid) +AC_MSG_CHECKING(whether to install dumpcap setuid) if test "x$enable_setuid_install" = "xno" ; then AC_MSG_RESULT(no) else if test "x$enable_dumpcap" = "xno" ; then - AC_MSG_ERROR(Setuid install works only with --enable-dumpcap, but dumpcap disabled) + AC_MSG_ERROR(Setuid install works only with --enable-dumpcap, but dumpcap is disabled) else AC_MSG_RESULT(yes) fi @@ -1742,7 +1742,7 @@ echo " Build idl2wrs : $enable_idl2wrs" echo " Build randpkt : $enable_randpkt" echo " Build dftest : $enable_dftest" echo "" -echo " Install setuid : $setuid_message" +echo " Install dumpcap setuid : $setuid_message" echo " Use plugins : $have_plugins" echo " Build lua plugin : $lua_message" echo " Build rtp_player : $portaudio_message" |