aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2017-04-28 19:55:44 -0700
committerGuy Harris <guy@alum.mit.edu>2017-04-29 02:56:17 +0000
commit57b17187d5eda5dd481d1bf5c5e026866fc38e91 (patch)
treefe5d9ff3f7853ee024319c2f4dde5bdce5abd06f
parentb3a339b86f813fb9268039c643e11e6d92273ee7 (diff)
Get rid of a message that should no longer apply.
The version of pkg-config downloaded and built by macosx-setup.sh defaults to looking in, among other places, /usr/local/lib/pkgconfig, so you don't need to add that to PKG_CONFIG_PATH on macOS; Wireshark for macOS no longer uses X11, so you don't need to add /usr/X11/lib/pkgconfig to PKG_CONFIG_PATH on macOS. Change-Id: I84fd6848b72010aafd7859c4e9c0a4362113c890 Reviewed-on: https://code.wireshark.org/review/21398 Reviewed-by: Guy Harris <guy@alum.mit.edu>
-rwxr-xr-xautogen.sh8
1 files changed, 0 insertions, 8 deletions
diff --git a/autogen.sh b/autogen.sh
index ddf4dedaf1..bb2902bb26 100755
--- a/autogen.sh
+++ b/autogen.sh
@@ -149,12 +149,4 @@ $AUTOMAKE --add-missing --gnu $am_opt || exit 1
echo $AUTOCONF
$AUTOCONF || exit 1
-if [ `uname -s` = Darwin ] ; then
- echo
- echo "To configure Wireshark on {Mac} OS X/macOS, you will need to type:"
- echo "export PKG_CONFIG_PATH=/usr/local/lib/pkgconfig:/usr/X11/lib/pkgconfig"
- echo "before you can run configure."
-fi
-
-echo
echo "Now type \"./configure [options]\" and \"make\" to compile $PROJECT."