Add a -u flag to uninstall the support tools and libraries.
[jelmer/wireshark.git] / macosx-setup.sh
1 #!/bin/sh
2 # Setup development environment on Mac OS X (tested with 10.6.8 and Xcode 3.2.6)
3 #
4 # $Id$
5 #
6 # Trying to follow "Building Wireshark on SnowLeopard"
7 # given by Michael Tuexen at
8 # http://nplab.fh-muenster.de/groups/wiki/wiki/fb7a4/Building_Wireshark_on_SnowLeopard.html
9 #
10
11 #
12 # Versions to download and install.
13 #
14 # The following libraries and tools are required.
15 #
16 GETTEXT_VERSION=0.18.2
17 GLIB_VERSION=2.36.0
18 PKG_CONFIG_VERSION=0.28
19 ATK_VERSION=2.8.0
20 PANGO_VERSION=1.30.1
21 PNG_VERSION=1.5.14
22 PIXMAN_VERSION=0.26.0
23 CAIRO_VERSION=1.12.2
24 GDK_PIXBUF_VERSION=2.28.0
25 if [ -z "$GTK3" ]; then
26   GTK_VERSION=2.24.17
27 else
28   GTK_VERSION=3.5.2
29 fi
30
31 #
32 # Some package need xz to unpack their current source.
33 # xz is not available on OSX (Snow Leopard).
34 #
35 XZ_VERSION=5.0.4
36
37 # In case we want to build with cmake
38 CMAKE_VERSION=2.8.10.2
39
40 #
41 # The following libraries are optional.
42 # Comment them out if you don't want them, but note that some of
43 # the optional libraries are required by other optional libraries.
44 #
45 LIBSMI_VERSION=0.4.8
46 #
47 # libgpg-error is required for libgcrypt.
48 #
49 LIBGPG_ERROR_VERSION=1.10
50 #
51 # libgcrypt is required for GnuTLS.
52 # XXX - the link for "Libgcrypt source code" at
53 # http://www.gnupg.org/download/#libgcrypt is for 1.5.0, and is a bzip2
54 # file, but http://directory.fsf.org/project/libgcrypt/ lists only
55 # 1.4.6.
56 #
57 LIBGCRYPT_VERSION=1.5.0
58 GNUTLS_VERSION=2.12.19
59 # Stay with Lua 5.1 when updating until the code has been changed
60 # to support 5.2
61 LUA_VERSION=5.1.5
62 PORTAUDIO_VERSION=pa_stable_v19_20111121
63 #
64 # XXX - they appear to have an unversioned gzipped tarball for the
65 # current version; should we just download that, with some other
66 # way of specifying whether to download the GeoIP API?
67 #
68 GEOIP_VERSION=1.4.8
69
70 # GNU auto tools
71 AUTOCONF_VERSION=2.69
72 AUTOMAKE_VERSION=1.13.3
73 LIBTOOL_VERSION=2.4.2
74
75 uninstall() {
76     if [ -d macosx-support-libs ]
77     then
78         cd macosx-support-libs
79
80         #
81         # Uninstall items in the reverse order from the order in which they're
82         # installed.  Only uninstall if we're configured to install them and
83         # if the download/build/install process completed.
84         #
85         # We also do a "make distclean", so that we don't have leftovers from
86         # old configurations.
87         #
88         if [ "$GEOIP_VERSION" -a -f geoip-$GEOIP_VERSION-done ]
89         then
90             echo "Uninstalling GeoIP API:"
91             cd GeoIP-$GEOIP_VERSION
92             $DO_MAKE_UNINSTALL || exit 1
93             make distclean || exit 1
94             cd ..
95             rm geoip-$GEOIP_VERSION-done
96         fi
97
98         if [ "$PORTAUDIO_VERSION" -a -f portaudio-done ] ; then
99             echo "Uninstalling PortAudio:"
100             cd portaudio
101             $DO_MAKE_UNINSTALL || exit 1
102             make distclean || exit 1
103             cd ..
104             rm portaudio-done
105         fi
106
107         if [ "$LUA_VERSION" -a -f lua-$LUA_VERSION-done ] ; then
108             echo "Uninstalling Lua:"
109             #
110             # Lua has no "make uninstall", so just remove stuff manually.
111             # There's no configure script, so there's no need for
112             # "make distclean", either; just do "make clean".
113             #
114             (cd /usr/local/bin; $DO_RM -f lua luac)
115             (cd /usr/local/include; $DO_RM -f lua.h luaconf.h lualib.h lauxlib.h lua.hpp)
116             (cd /usr/local/lib; $DO_RM -f liblua.a)
117             (cd /usr/local/man; $DO_RM -f lua.1 luac.1)
118             cd lua-$LUA_VERSION
119             make clean || exit 1
120             cd ..
121             rm lua-$LUA_VERSION-done
122         fi
123
124         if [ "$GNUTLS_VERSION" -a -f gnutls-$GNUTLS_VERSION-done ] ; then
125             echo "Uninstalling GnuTLS:"
126             cd gnutls-$GNUTLS_VERSION
127             $DO_MAKE_UNINSTALL || exit 1
128             make distclean || exit 1
129             cd ..
130             rm gnutls-$GNUTLS_VERSION-done
131         fi
132
133         if [ "$LIBGCRYPT_VERSION" -a -f libgcrypt-$LIBGCRYPT_VERSION-done ] ; then
134             echo "Uninstalling libgcrypt:"
135             cd libgcrypt-$LIBGCRYPT_VERSION
136             $DO_MAKE_UNINSTALL || exit 1
137             make distclean || exit 1
138             cd ..
139             rm libgcrypt-$LIBGCRYPT_VERSION-done
140         fi
141
142         if [ "$LIBGPG_ERROR_VERSION" -a -f libgpg-error-$LIBGPG_ERROR_VERSION-done ] ; then
143             echo "Uninstalling libgpg-error:"
144             cd libgpg-error-$LIBGPG_ERROR_VERSION
145             $DO_MAKE_UNINSTALL || exit 1
146             make distclean || exit 1
147             cd ..
148             rm libgpg-error-$LIBGPG_ERROR_VERSION-done
149         fi
150
151         if [ "$LIBSMI_VERSION" -a -f libsmi-$LIBSMI_VERSION-done ] ; then
152             echo "Uninstalling libsmi:"
153             cd libsmi-$LIBSMI_VERSION
154             $DO_MAKE_UNINSTALL || exit 1
155             make distclean || exit 1
156             cd ..
157             rm libsmi-$LIBSMI_VERSION-done
158         fi
159
160         if [ -f gtk+-$GTK_VERSION-done ] ; then
161             echo "Uninstalling GTK+:"
162             cd gtk+-$GTK_VERSION
163             $DO_MAKE_UNINSTALL || exit 1
164             make distclean || exit 1
165             cd ..
166             rm gtk+-$GTK_VERSION-done
167         fi
168
169         if [ -f gdk-pixbuf-$GDK_PIXBUF_VERSION-done ] ; then
170             echo "Uninstalling gdk-pixbuf:"
171             cd gdk-pixbuf-$GDK_PIXBUF_VERSION
172             $DO_MAKE_UNINSTALL || exit 1
173             make distclean || exit 1
174             cd ..
175             rm gdk-pixbuf-$GDK_PIXBUF_VERSION-done
176         fi
177
178         if [ -f pango-$PANGO_VERSION-done ] ; then
179             echo "Uninstalling Pango:"
180             cd pango-$PANGO_VERSION
181             $DO_MAKE_UNINSTALL || exit 1
182             make distclean || exit 1
183             cd ..
184             rm pango-$PANGO_VERSION-done
185         fi
186
187         if [ -f atk-$ATK_VERSION-done ] ; then
188             echo "Uninstalling ATK:"
189             cd atk-$ATK_VERSION
190             $DO_MAKE_UNINSTALL || exit 1
191             make distclean || exit 1
192             cd ..
193             rm atk-$ATK_VERSION-done
194         fi
195
196         if [ -f cairo-$CAIRO_VERSION-done ] ; then
197             echo "Uninstalling Cairo:"
198             cd cairo-$CAIRO_VERSION
199             $DO_MAKE_INSTALL || exit 1
200             make distclean || exit 1
201             cd ..
202             rm cairo-$CAIRO_VERSION-done
203         fi
204
205         if [ -f pixman-$PIXMAN_VERSION-done ] ; then
206             echo "Uninstalling pixman:"
207             cd pixman-$PIXMAN_VERSION
208             $DO_MAKE_UNINSTALL || exit 1
209             make distclean || exit 1
210             cd ..
211             rm pixman-$PIXMAN_VERSION-done
212         fi
213
214         if [ -f libpng-$PNG_VERSION-done ] ; then
215             echo "Uninstalling libpng:"
216             cd libpng-$PNG_VERSION
217             $DO_MAKE_UNINSTALL || exit 1
218             make distclean || exit 1
219             cd ..
220             rm libpng-$PNG_VERSION-done
221         fi
222
223         if [ -f pkg-config-$PKG_CONFIG_VERSION-done ] ; then
224             echo "Uninstalling pkg-config:"
225             cd pkg-config-$PKG_CONFIG_VERSION
226             $DO_MAKE_UNINSTALL || exit 1
227             make distclean || exit 1
228             cd ..
229             rm pkg-config-$PKG_CONFIG_VERSION-done
230         fi
231
232         if [ -f glib-$GLIB_VERSION-done ] ; then
233             echo "Uninstalling GLib:"
234             cd glib-$GLIB_VERSION
235             $DO_MAKE_UNINSTALL || exit 1
236             make distclean || exit 1
237             cd ..
238             rm glib-$GLIB_VERSION-done
239         fi
240
241         if [ -f gettext-$GETTEXT_VERSION-done ] ; then
242             echo "Uninstalling GNU gettext:"
243             cd gettext-$GETTEXT_VERSION
244             $DO_MAKE_UNINSTALL || exit 1
245             make distclean || exit 1
246             cd ..
247             rm gettext-$GETTEXT_VERSION-done
248         fi
249
250         if [ -n "$CMAKE" -a -f cmake-$CMAKE_VERSION-done ]; then
251             echo "Uninstalling CMAKE:"
252             cd cmake-$CMAKE_VERSION
253             $DO_MAKE_UNINSTALL || exit 1
254             make distclean || exit 1
255             cd ..
256             rm cmake-$CMAKE_VERSION-done
257         fi
258
259         if [ "$LIBTOOL_VERSION" -a -f libtool-$LIBTOOL_VERSION-done ] ; then
260             echo "Uninstalling GNU libtool:"
261             cd libtool-$LIBTOOL_VERSION
262             mv /usr/local/bin/glibtool /usr/local/bin/libtool
263             mv /usr/local/bin/glibtoolize /usr/local/bin/libtoolize
264             $DO_MAKE_UNINSTALL || exit 1
265             make distclean || exit 1
266             cd ..
267             rm libtool-$LIBTOOL_VERSION-done
268         fi
269
270         if [ "$AUTOMAKE_VERSION" -a -f automake-$AUTOMAKE_VERSION-done ] ; then
271             echo "Uninstalling GNU automake:"
272             cd automake-$AUTOMAKE_VERSION
273             $DO_MAKE_UNINSTALL || exit 1
274             make distclean || exit 1
275             cd ..
276             rm automake-$AUTOMAKE_VERSION-done
277         fi
278
279         if [ "$AUTOCONF_VERSION" -a -f autoconf-$AUTOCONF_VERSION-done ] ; then
280             echo "Uninstalling GNU autoconf:"
281             cd autoconf-$AUTOCONF_VERSION
282             $DO_MAKE_UNINSTALL || exit 1
283             make distclean || exit 1
284             cd ..
285             rm autoconf-$AUTOCONF_VERSION-done
286         fi
287
288         if [ "$XZ_VERSION" -a -f xz-$XZ_VERSION-done ] ; then
289             echo "Uninstalling xz:"
290             cd xz-$XZ_VERSION
291             $DO_MAKE_UNINSTALL || exit 1
292             make distclean || exit 1
293             cd ..
294             rm xz-$XZ_VERSION-done
295         fi
296     fi
297 }
298
299 #
300 # Do we have permission to write in /usr/local?
301 #
302 # If so, assume we have permission to write in its subdirectories.
303 # (If that's not the case, this test needs to check the subdirectories
304 # as well.)
305 #
306 # If not, do "make install", "make uninstall", and the removes for Lua
307 # with sudo.
308 #
309 if [ -w /usr/local ]
310 then
311         DO_MAKE_INSTALL="make install"
312         DO_MAKE_UNINSTALL="make uninstall"
313         DO_RM="rm"
314 else
315         DO_MAKE_INSTALL="sudo make install"
316         DO_MAKE_UNINSTALL="sudo make uninstall"
317         DO_RM="sudo rm"
318 fi
319
320
321 #
322 # Parse command-line flags:
323 #
324 # -h - print help.
325 # -u - do an uninstall.
326 #
327 while getopts hu name
328 do
329     case $name in
330     u)
331         do_uninstall=yes
332         ;;
333     h|?)
334         echo "Usage: macosx-setup.sh [ -u ]" 1>&1
335         exit 0
336         ;;
337     esac
338 done
339
340 if [ "$do_uninstall" = "yes" ]
341 then
342     uninstall
343     exit 0
344 fi
345
346 DARWIN_MAJOR_VERSION=`uname -r | sed 's/\([0-9]*\).*/\1/'`
347
348 #
349 # To make this work on Leopard will take a lot of work.
350 #
351 # First of all, Leopard's /usr/X11/lib/libXdamage.la claims, at least
352 # with all software updates applied, that the Xdamage shared library
353 # is libXdamage.1.0.0.dylib, but it is, in fact, libXdamage.1.1.0.dylib.
354 # This causes problems when building GTK+, so the script would have to
355 # fix that file.
356 #
357 # Second of all, the version of fontconfig that comes with Leopard
358 # doesn't support FC_WEIGHT_EXTRABLACK, so we can't use any version
359 # of Pango newer than 1.22.4.
360 #
361 # However, Pango 1.22.4 doesn't work with versions of GLib after
362 # 2.29.6, because Pango 1.22.4 uses G_CONST_RETURN and GLib 2.29.8
363 # and later deprecate it (there doesn't appear to be a GLib 2.29.7).
364 # That means we'd either have to patch Pango not to use it (just
365 # use "const"; G_CONST_RETURN was there to allow code to choose whether
366 # to use "const" or not), or use GLib 2.29.6 or earlier.
367 #
368 # GLib 2.29.6 includes an implementation of g_bit_lock() that, on x86
369 # (32-bit and 64-bit), uses asms in a fashion ("asm volatile goto") that
370 # doesn't work with the Apple version of GCC 4.0.1, which is the compiler
371 # you get with Leopard+updates.  Apparently, that requires GCC 4.5 or
372 # later; recent versions of GLib check for that, but 2.29.6 doesn't.
373 # Therefore, we would have to patch glib/gbitlock.c to do what the
374 # newer versions of GLib do:
375 #
376 #  define a USE_ASM_GOTO macro that indicates whether "asm goto"
377 #  can be used:
378 #    #if (defined (i386) || defined (__amd64__))
379 #      #if __GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 5)
380 #        #define USE_ASM_GOTO 1
381 #      #endif
382 #    #endif
383 #
384 #  replace all occurrences of
385 #
386 #    #if defined (__GNUC__) && (defined (i386) || defined (__amd64__))
387 #
388 #  with
389 #
390 #    #ifdef USE_ASM_GOTO
391 #
392 # Using GLib 2.29.6 or earlier, however, would mean that we can't
393 # use a version of ATK later than 2.3.93, as those versions don't
394 # work with GLib 2.29.6.  The same applies to gdk-pixbuf; versions
395 # of gdk-pixbuf after 2.24.1 won't work with GLib 2.29.6.
396 #
397 # Once you've set this script up to use the older versions of the
398 # libraries, and built and installed them, you find that Wireshark,
399 # when built with them, crashes the X server that comes with Leopard,
400 # at least with all updates from Apple.  Maybe patching Pango rather
401 # than going with an older version of Pango would work.
402 #
403 # The Leopard Wireshark buildbot uses GTK+ 2.12.9, Cairo 1.6.4,
404 # Pango 1.20.2, and GLib 2.16.3, with an unknown version of ATK,
405 # and, I think, without gdk-pixbuf, as it hadn't been made a
406 # separate library from GTK+ as of GTK+ 2.12.9.  Its binaries
407 # don't crash the X server.
408 #
409 # However, if you try various older versions of Cairo, including
410 # 1.6.4 and at least some 1.8.x versions, when you try to build
411 # it, the build fails because it can't find png_set_longjmp_fn().
412 # I vaguely remember dealing with that, ages ago, but don't
413 # remember what I did; fixing *that* is left as an exercise for
414 # the reader.
415 #
416 # Oh, and if you're building with a version of GTK+ that doesn't
417 # have the gdk-pixbuf stuff in a separate library, you probably
418 # don't want to bother downloading or installing the gdk-pixbuf
419 # library, *and* you will need to configure GTK+ with
420 # --without-libtiff and --without-libjpeg (as we currently do
421 # with gdk-pixbuf).
422 #
423 if [[ $DARWIN_MAJOR_VERSION -le 9 ]]; then
424         echo "This script does not support any versions of OS X before Snow Leopard" 1>&2 
425         exit 1
426 fi
427
428 # To set up a GTK3 environment
429 # GTK3=1
430 # To build cmake
431 # CMAKE=1
432 #
433 # To build all libraries as 32-bit libraries uncomment the following three lines.
434 # export CFLAGS="$CFLAGS -arch i386"
435 # export CXXFLAGS="$CXXFLAGS -arch i386"
436 # export LDFLAGS="$LDFLAGS -arch i386"
437 #
438
439 # if no make options are present, set default options
440 if [ -z "$MAKE_BUILD_OPTS" ] ; then
441     # by default use 1.5x number of cores for parallel build
442     MAKE_BUILD_OPTS="-j $(( $(sysctl -n hw.logicalcpu) * 3 / 2))"
443 fi
444
445 #
446 # You need Xcode installed to get the compilers.
447 #
448 if [ ! -x /usr/bin/xcodebuild ]; then
449         echo "Please install Xcode first (should be available on DVD or from http://developer.apple.com/xcode/index.php)."
450         exit 1
451 fi
452
453 #
454 # You also need the X11 SDK; with at least some versions of OS X and
455 # Xcode, that is, I think, an optional install.  (Or it might be
456 # installed with X11, but I think *that* is an optional install on
457 # at least some versions of OS X.)
458 #
459 if [ ! -d /usr/X11/include ]; then
460         echo "Please install X11 and the X11 SDK first."
461         exit 1
462 fi
463
464 export PKG_CONFIG_PATH=/usr/local/lib/pkgconfig:/usr/X11/lib/pkgconfig
465
466 #
467 # Do all the downloads and untarring in a subdirectory, so all that
468 # stuff can be removed once we've installed the support libraries.
469 #
470 if [ ! -d macosx-support-libs ]
471 then
472         mkdir macosx-support-libs || exit 1
473 fi
474 cd macosx-support-libs
475
476 # Start with xz: It is the sole download format of glib later than 2.31.2
477 #
478 if [ "$XZ_VERSION" -a ! -f xz-$XZ_VERSION-done ] ; then
479     echo "Downloading, building, and installing xz:"
480     [ -f xz-$XZ_VERSION.tar.bz2 ] || curl -O http://tukaani.org/xz/xz-$XZ_VERSION.tar.bz2 || exit 1
481     bzcat xz-$XZ_VERSION.tar.bz2 | tar xf - || exit 1
482     cd xz-$XZ_VERSION
483     CFLAGS="$CFLAGS -D_FORTIFY_SOURCE=0" ./configure || exit 1
484     make $MAKE_BUILD_OPTS || exit 1
485     $DO_MAKE_INSTALL || exit 1
486     cd ..
487     touch xz-$XZ_VERSION-done
488 fi
489
490 if [ "$AUTOCONF_VERSION" -a ! -f autoconf-$AUTOCONF_VERSION-done ] ; then
491     echo "Downloading, building and installing GNU autoconf..."
492     [ -f autoconf-$AUTOCONF_VERSION.tar.xz ] || curl -O ftp://ftp.gnu.org/gnu/autoconf/autoconf-$AUTOCONF_VERSION.tar.xz || exit 1
493     xzcat autoconf-$AUTOCONF_VERSION.tar.xz | tar xf - || exit 1
494     cd autoconf-$AUTOCONF_VERSION
495     ./configure || exit 1
496     make $MAKE_BUILD_OPTS || exit 1
497     $DO_MAKE_INSTALL || exit 1
498     cd ..
499     touch autoconf-$AUTOCONF_VERSION-done
500 fi
501
502 if [ "$AUTOMAKE_VERSION" -a ! -f automake-$AUTOMAKE_VERSION-done ] ; then
503     echo "Downloading, building and installing GNU automake..."
504     [ -f automake-$AUTOMAKE_VERSION.tar.xz ] || curl -O ftp://ftp.gnu.org/gnu/automake/automake-$AUTOMAKE_VERSION.tar.xz || exit 1
505     xzcat automake-$AUTOMAKE_VERSION.tar.xz | tar xf - || exit 1
506     cd automake-$AUTOMAKE_VERSION
507     ./configure || exit 1
508     make $MAKE_BUILD_OPTS || exit 1
509     $DO_MAKE_INSTALL || exit 1
510     cd ..
511     touch automake-$AUTOMAKE_VERSION-done
512 fi
513
514 if [ "$LIBTOOL_VERSION" -a ! -f libtool-$LIBTOOL_VERSION-done ] ; then
515     echo "Downloading, building and installing GNU libtool..."
516     [ -f libtool-$LIBTOOL_VERSION.tar.xz ] || curl -O ftp://ftp.gnu.org/gnu/libtool/libtool-$LIBTOOL_VERSION.tar.xz || exit 1
517     xzcat libtool-$LIBTOOL_VERSION.tar.xz | tar xf - || exit 1
518     cd libtool-$LIBTOOL_VERSION
519     ./configure || exit 1
520     make $MAKE_BUILD_OPTS || exit 1
521     $DO_MAKE_INSTALL || exit 1
522     mv /usr/local/bin/libtool /usr/local/bin/glibtool
523     mv /usr/local/bin/libtoolize /usr/local/bin/glibtoolize
524     cd ..
525     touch libtool-$LIBTOOL_VERSION-done
526 fi
527
528 if [ -n "$CMAKE" -a ! -f cmake-$CMAKE_VERSION-done ]; then
529   echo "Downloading, building, and installing CMAKE:"
530   cmake_dir=`expr $CMAKE_VERSION : '\([0-9][0-9]*\.[0-9][0-9]*\).*'`
531   [ -f cmake-$CMAKE_VERSION.tar.gz ] || curl -O http://www.cmake.org/files/v$cmake_dir/cmake-$CMAKE_VERSION.tar.gz || exit 1
532   gzcat cmake-$CMAKE_VERSION.tar.gz | tar xf - || exit 1
533   cd cmake-$CMAKE_VERSION
534   ./bootstrap || exit 1
535   make $MAKE_BUILD_OPTS || exit 1
536   $DO_MAKE_INSTALL || exit 1
537   cd ..
538   touch cmake-$CMAKE_VERSION-done
539 fi
540
541 #
542 # Start with GNU gettext; GLib requires it, and OS X doesn't have it
543 # or a BSD-licensed replacement.
544 #
545 # At least on Lion with Xcode 4, _FORTIFY_SOURCE gets defined as 2
546 # by default, which causes, for example, stpncpy to be defined as
547 # a hairy macro that collides with the GNU gettext configure script's
548 # attempts to workaround AIX's lack of a declaration for stpncpy,
549 # with the result being a huge train wreck.  Define _FORTIFY_SOURCE
550 # as 0 in an attempt to keep the trains on separate tracks.
551 #
552 if [ ! -f gettext-$GETTEXT_VERSION-done ] ; then
553     echo "Downloading, building, and installing GNU gettext:"
554     [ -f gettext-$GETTEXT_VERSION.tar.gz ] || curl -O http://ftp.gnu.org/pub/gnu/gettext/gettext-$GETTEXT_VERSION.tar.gz || exit 1
555     gzcat gettext-$GETTEXT_VERSION.tar.gz | tar xf - || exit 1
556     cd gettext-$GETTEXT_VERSION
557     CFLAGS="$CFLAGS -D_FORTIFY_SOURCE=0" ./configure || exit 1
558     make $MAKE_BUILD_OPTS || exit 1
559     $DO_MAKE_INSTALL || exit 1
560     cd ..
561     touch gettext-$GETTEXT_VERSION-done
562 fi
563
564 if [ ! -f glib-$GLIB_VERSION-done ] ; then
565     echo "Downloading, building, and installing GLib:"
566     glib_dir=`expr $GLIB_VERSION : '\([0-9][0-9]*\.[0-9][0-9]*\).*'`
567     [ -f glib-$GLIB_VERSION.tar.xz ] || curl -L -O http://ftp.gnome.org/pub/gnome/sources/glib/$glib_dir/glib-$GLIB_VERSION.tar.xz || exit 1
568     xzcat glib-$GLIB_VERSION.tar.xz | tar xf - || exit 1
569     cd glib-$GLIB_VERSION
570     #
571     # OS X ships with libffi, but doesn't provide its pkg-config file;
572     # explicitly specify LIBFFI_CFLAGS and LIBFFI_LIBS, so the configure
573     # script doesn't try to use pkg-config to get the appropriate
574     # C flags and loader flags.
575     #
576     # And, what's worse, at least with the version of Xcode that comes
577     # with Leopard, /usr/include/ffi/fficonfig.h doesn't define MACOSX,
578     # which causes the build of GLib to fail.  If we don't find
579     # "#define.*MACOSX" in /usr/include/ffi/fficonfig.h, explictly
580     # define it.
581     #
582     # While we're at it, suppress -Wformat-nonliteral to avoid a case
583     # where clang's stricter rules on when not to complain about
584     # non-literal format arguments cause it to complain about code
585     # that's safe but it wasn't told that.  See my comment #25 in
586     # GNOME bug 691608:
587     #
588     #   https://bugzilla.gnome.org/show_bug.cgi?id=691608#c25
589     #
590     # First, determine where the system include files are.  (It's not
591     # necessarily /usr/include.)  There's a bit of a greasy hack here;
592     # pre-5.x versions of the developer tools don't support the
593     # --show-sdk-path option, and will produce no output, so includedir
594     # will be set to /usr/include (in those older versions of the
595     # developer tools, there is a /usr/include directory).
596     #
597     includedir=`xcrun --show-sdk-path 2>/dev/null`/usr/include
598     if grep -qs '#define.*MACOSX' $includedir/ffi/fficonfig.h
599     then
600         # It's defined, nothing to do
601         LIBFFI_CFLAGS="-I $includedir/ffi" LIBFFI_LIBS="-lffi" CFLAGS="$CFLAGS -Wno-format-nonliteral" ./configure || exit 1
602     else
603         LIBFFI_CFLAGS="-I $includedir/ffi" LIBFFI_LIBS="-lffi" CFLAGS="$CFLAGS -DMACOSX -Wno-format-nonliteral" ./configure || exit 1
604     fi
605     make $MAKE_BUILD_OPTS || exit 1
606     # Apply patch: we depend on libffi, but pkg-config doesn't get told.
607     patch -p0 <../../macosx-support-lib-patches/glib-pkgconfig.patch || exit 1
608     $DO_MAKE_INSTALL || exit 1
609     cd ..
610     touch glib-$GLIB_VERSION-done
611 fi
612
613 if [ ! -f pkg-config-$PKG_CONFIG_VERSION-done ] ; then
614     echo "Downloading, building, and installing pkg-config:"
615     [ -f pkg-config-$PKG_CONFIG_VERSION.tar.gz ] || curl -O http://pkgconfig.freedesktop.org/releases/pkg-config-$PKG_CONFIG_VERSION.tar.gz || exit 1
616     gzcat pkg-config-$PKG_CONFIG_VERSION.tar.gz | tar xf - || exit 1
617     cd pkg-config-$PKG_CONFIG_VERSION
618     # Avoid another pkgconfig call
619     GLIB_CFLAGS="$CFLAGS -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include" GLIB_LIBS="$LDFLAGS -L/usr/local/lib -lglib-2.0 -lintl" ./configure || exit 1
620     make $MAKE_BUILD_OPTS || exit 1
621     $DO_MAKE_INSTALL || exit 1
622     cd ..
623     touch pkg-config-$PKG_CONFIG_VERSION-done
624 fi
625
626 #
627 # Now we have reached a point where we can build everything but
628 # the GUI (Wireshark).
629 #
630 # Cairo is part of Mac OS X 10.6 and 10.7.
631 # The *headers* are supplied by 10.5, but the *libraries* aren't, so
632 # we have to build it on 10.5.
633 # GTK+ 3 requires a newer Cairo build than the one that comes with
634 # 10.6, so we build Cairo if we are using GTK+ 3.
635 # In 10.6 and 10.7, it's an X11 library; if we build with "native" GTK+
636 # rather than X11 GTK+, we might have to build and install Cairo.
637 # The major version number of Darwin in 10.5 is 9.
638 #
639 if [[ -n "$GTK3" || $DARWIN_MAJOR_VERSION = "9" ]]; then
640   #
641   # Requirements for Cairo first
642   #
643   # The libpng that comes with the X11 for leopard has a bogus
644   # pkg-config file that lies about where the header files are,
645   # which causes other packages not to be able to find its
646   # headers.
647   #
648   if [ ! -f libpng-$PNG_VERSION-done ] ; then
649       echo "Downloading, building, and installing libpng:"
650       [ -f libpng-$PNG_VERSION.tar.xz ] || curl -O ftp://ftp.simplesystems.org/pub/libpng/png/src/libpng-$PNG_VERSION.tar.xz
651       xzcat libpng-$PNG_VERSION.tar.xz | tar xf - || exit 1
652       cd libpng-$PNG_VERSION
653       ./configure || exit 1
654       make $MAKE_BUILD_OPTS || exit 1
655       $DO_MAKE_INSTALL || exit 1
656       cd ..
657         touch libpng-$PNG_VERSION-done
658     fi
659
660   #
661   # The libpixman that comes with the X11 for Leopard is too old
662   # to support Cairo's image surface backend feature (which requires
663   # pixman-1 >= 0.22.0).
664   #
665   if [ ! -f pixman-$PIXMAN_VERSION-done ] ; then
666       echo "Downloading, building, and installing pixman:"
667       [ -f pixman-$PIXMAN_VERSION.tar.gz ] || curl -O http://www.cairographics.org/releases/pixman-$PIXMAN_VERSION.tar.gz
668       gzcat pixman-$PIXMAN_VERSION.tar.gz | tar xf - || exit 1
669       cd pixman-$PIXMAN_VERSION
670       ./configure || exit 1
671       make $MAKE_BUILD_OPTS || exit 1
672       $DO_MAKE_INSTALL || exit 1
673       cd ..
674       touch pixman-$PIXMAN_VERSION-done
675   fi
676
677   #
678   # And now Cairo itself.
679   #
680   if [ ! -f cairo-$CAIRO_VERSION-done ] ; then
681       echo "Downloading, building, and installing Cairo:"
682       CAIRO_MAJOR_VERSION="`expr $CAIRO_VERSION : '\([0-9][0-9]*\).*'`"
683       CAIRO_MINOR_VERSION="`expr $CAIRO_VERSION : '[0-9][0-9]*\.\([0-9][0-9]*\).*'`"
684       CAIRO_DOTDOT_VERSION="`expr $CAIRO_VERSION : '[0-9][0-9]*\.[0-9][0-9]*\.\([0-9][0-9]*\).*'`"
685       if [[ $CAIRO_MAJOR_VERSION -gt 1 ||
686             $CAIRO_MINOR_VERSION -gt 12 ||
687            ($CAIRO_MINOR_VERSION -eq 12 && $CAIRO_DOTDOT_VERSION -ge 2) ]]
688       then
689         #
690         # Starting with Cairo 1.12.2, the tarballs are compressed with
691         # xz rather than gzip.
692         #
693           [ -f cairo-$CAIRO_VERSION.tar.xz ] || curl -O http://cairographics.org/releases/cairo-$CAIRO_VERSION.tar.xz || exit 1
694           xzcat cairo-$CAIRO_VERSION.tar.xz | tar xf - || exit 1
695       else
696           [ -f cairo-$CAIRO_VERSION.tar.gz ] || curl -O http://cairographics.org/releases/cairo-$CAIRO_VERSION.tar.gz || exit 1
697           gzcat cairo-$CAIRO_VERSION.tar.gz | tar xf - || exit 1
698       fi
699       cd cairo-$CAIRO_VERSION
700       #./configure --enable-quartz=no || exit 1
701       # Maybe follow http://cairographics.org/end_to_end_build_for_mac_os_x/
702       ./configure --enable-quartz=yes || exit 1
703       #
704       # We must avoid the version of libpng that comes with X11; the
705       # only way I've found to force that is to forcibly set INCLUDES
706       # when we do the build, so that this comes before CAIRO_CFLAGS,
707       # which has -I/usr/X11/include added to it before anything
708       # connected to libpng is.
709       #
710       INCLUDES="-I/usr/local/include/libpng15" make $MAKE_BUILD_OPTS || exit 1
711       $DO_MAKE_INSTALL || exit 1
712       cd ..
713       touch cairo-$CAIRO_VERSION-done
714   fi
715 fi
716
717 if [ ! -f atk-$ATK_VERSION-done ] ; then
718     echo "Downloading, building, and installing ATK:"
719     atk_dir=`expr $ATK_VERSION : '\([0-9][0-9]*\.[0-9][0-9]*\).*'`
720     [ -f atk-$ATK_VERSION.tar.xz ] || curl -O http://ftp.gnome.org/pub/gnome/sources/atk/$atk_dir/atk-$ATK_VERSION.tar.xz || exit 1
721     xzcat atk-$ATK_VERSION.tar.xz | tar xf - || exit 1
722     cd atk-$ATK_VERSION
723     ./configure || exit 1
724     make $MAKE_BUILD_OPTS || exit 1
725     $DO_MAKE_INSTALL || exit 1
726     cd ..
727     touch atk-$ATK_VERSION-done
728 fi
729
730 if [ ! -f pango-$PANGO_VERSION-done ] ; then
731     echo "Downloading, building, and installing Pango:"
732     pango_dir=`expr $PANGO_VERSION : '\([0-9][0-9]*\.[0-9][0-9]*\).*'`
733     PANGO_MAJOR_VERSION="`expr $PANGO_VERSION : '\([0-9][0-9]*\).*'`"
734     PANGO_MINOR_VERSION="`expr $PANGO_VERSION : '[0-9][0-9]*\.\([0-9][0-9]*\).*'`"
735     if [[ $PANGO_MAJOR_VERSION -gt 1 ||
736           $PANGO_MINOR_VERSION -ge 29 ]]
737     then
738         #
739         # Starting with Pango 1.29, the tarballs are compressed with
740         # xz rather than bzip2.
741         #
742         [ -f pango-$PANGO_VERSION.tar.xz ] || curl -L -O http://ftp.gnome.org/pub/gnome/sources/pango/$pango_dir/pango-$PANGO_VERSION.tar.xz || exit 1
743         xzcat pango-$PANGO_VERSION.tar.xz | tar xf - || exit 1
744     else
745         [ -f pango-$PANGO_VERSION.tar.bz2 ] || curl -L -O http://ftp.gnome.org/pub/gnome/sources/pango/$pango_dir/pango-$PANGO_VERSION.tar.bz2 || exit 1
746         gzcat pango-$PANGO_VERSION.tar.bz2 | tar xf - || exit 1
747     fi
748     cd pango-$PANGO_VERSION
749     ./configure || exit 1
750     make $MAKE_BUILD_OPTS || exit 1
751     $DO_MAKE_INSTALL || exit 1
752     cd ..
753     touch pango-$PANGO_VERSION-done
754 fi
755
756 if [ ! -f gdk-pixbuf-$GDK_PIXBUF_VERSION-done ] ; then
757     echo "Downloading, building, and installing gdk-pixbuf:"
758     gdk_pixbuf_dir=`expr $GDK_PIXBUF_VERSION : '\([0-9][0-9]*\.[0-9][0-9]*\).*'`
759     [ -f gdk-pixbuf-$GDK_PIXBUF_VERSION.tar.xz ] || curl -L -O http://ftp.gnome.org/pub/gnome/sources/gdk-pixbuf/$gdk_pixbuf_dir/gdk-pixbuf-$GDK_PIXBUF_VERSION.tar.xz || exit 1
760     xzcat gdk-pixbuf-$GDK_PIXBUF_VERSION.tar.xz | tar xf - || exit 1
761     cd gdk-pixbuf-$GDK_PIXBUF_VERSION
762     ./configure --without-libtiff --without-libjpeg || exit 1
763     make $MAKE_BUILD_OPTS || exit 1
764     $DO_MAKE_INSTALL || exit 1
765     cd ..
766     touch gdk-pixbuf-$GDK_PIXBUF_VERSION-done
767 fi
768
769 if [ ! -f gtk+-$GTK_VERSION-done ] ; then
770     echo "Downloading, building, and installing GTK+:"
771     gtk_dir=`expr $GTK_VERSION : '\([0-9][0-9]*\.[0-9][0-9]*\).*'`
772     GTK_MAJOR_VERSION="`expr $GTK_VERSION : '\([0-9][0-9]*\).*'`"
773     GTK_MINOR_VERSION="`expr $GTK_VERSION : '[0-9][0-9]*\.\([0-9][0-9]*\).*'`"
774     GTK_DOTDOT_VERSION="`expr $GTK_VERSION : '[0-9][0-9]*\.[0-9][0-9]*\.\([0-9][0-9]*\).*'`"
775     if [[ $GTK_MAJOR_VERSION -gt 2 ||
776           $GTK_MINOR_VERSION -gt 24 ||
777          ($GTK_MINOR_VERSION -eq 24 && $GTK_DOTDOT_VERSION -ge 5) ]]
778     then
779         #
780         # Starting with GTK+ 2.24.5, the tarballs are compressed with
781         # xz rather than gzip, in addition to bzip2; use xz, as we've
782         # built and installed it, and as xz compresses better than
783         # bzip2 so the tarballs take less time to download.
784         #
785         [ -f gtk+-$GTK_VERSION.tar.xz ] || curl -L -O http://ftp.gnome.org/pub/gnome/sources/gtk+/$gtk_dir/gtk+-$GTK_VERSION.tar.xz || exit 1
786         xzcat gtk+-$GTK_VERSION.tar.xz | tar xf - || exit 1
787     else
788         [ -f gtk+-$GTK_VERSION.tar.bz2 ] || curl -L -O http://ftp.gnome.org/pub/gnome/sources/gtk+/$gtk_dir/gtk+-$GTK_VERSION.tar.bz2 || exit 1
789         gzcat gtk+-$GTK_VERSION.tar.bz2 | tar xf - || exit 1
790     fi
791     cd gtk+-$GTK_VERSION
792     if [ $DARWIN_MAJOR_VERSION -ge "12" ]
793     then
794         #
795         # GTK+ 2.24.10, at least, doesn't build on Mountain Lion with the
796         # CUPS printing backend - either the CUPS API changed incompatibly
797         # or the backend was depending on non-API implementation details.
798         #
799         # Configure it out, on Mountain Lion and later, for now.
800         # (12 is the Darwin major version number in Mountain Lion.)
801         #
802         ./configure --disable-cups || exit 1
803     else
804         ./configure || exit 1
805     fi
806     make $MAKE_BUILD_OPTS || exit 1
807     $DO_MAKE_INSTALL || exit 1
808     cd ..
809     touch gtk+-$GTK_VERSION-done
810 fi
811
812 #
813 # Now we have reached a point where we can build everything including
814 # the GUI (Wireshark), but not with any optional features such as
815 # SNMP OID resolution, some forms of decryption, Lua scripting, playback
816 # of audio, or GeoIP mapping of IP addresses.
817 #
818 # We now conditionally download optional libraries to support them;
819 # the default is to download them all.
820 #
821
822 if [ "$LIBSMI_VERSION" -a ! -f libsmi-$LIBSMI_VERSION-done ] ; then
823         echo "Downloading, building, and installing libsmi:"
824         [ -f libsmi-$LIBSMI_VERSION.tar.gz ] || curl -L -O ftp://ftp.ibr.cs.tu-bs.de/pub/local/libsmi/libsmi-$LIBSMI_VERSION.tar.gz || exit 1
825         gzcat libsmi-$LIBSMI_VERSION.tar.gz | tar xf - || exit 1
826         cd libsmi-$LIBSMI_VERSION
827         ./configure || exit 1
828         make $MAKE_BUILD_OPTS || exit 1
829         $DO_MAKE_INSTALL || exit 1
830         cd ..
831         touch libsmi-$LIBSMI_VERSION-done
832 fi
833
834 if [ "$LIBGPG_ERROR_VERSION" -a ! -f libgpg-error-$LIBGPG_ERROR_VERSION-done ] ; then
835         echo "Downloading, building, and installing libgpg-error:"
836         [ -f libgpg-error-$LIBGPG_ERROR_VERSION.tar.bz2 ] || curl -L -O ftp://ftp.gnupg.org/gcrypt/libgpg-error/libgpg-error-$LIBGPG_ERROR_VERSION.tar.bz2 || exit 1
837         bzcat libgpg-error-$LIBGPG_ERROR_VERSION.tar.bz2 | tar xf - || exit 1
838         cd libgpg-error-$LIBGPG_ERROR_VERSION
839         ./configure || exit 1
840         make $MAKE_BUILD_OPTS || exit 1
841         $DO_MAKE_INSTALL || exit 1
842         cd ..
843         touch libgpg-error-$LIBGPG_ERROR_VERSION-done
844 fi
845
846 if [ "$LIBGCRYPT_VERSION" -a ! -f libgcrypt-$LIBGCRYPT_VERSION-done ] ; then
847         #
848         # libgpg-error is required for libgcrypt.
849         #
850         if [ -z $LIBGPG_ERROR_VERSION ]
851         then
852                 echo "libgcrypt requires libgpg-error, but you didn't install libgpg-error." 1>&2
853                 exit 1
854         fi
855
856         echo "Downloading, building, and installing libgcrypt:"
857         [ -f libgcrypt-$LIBGCRYPT_VERSION.tar.gz ] || curl -L -O ftp://ftp.gnupg.org/gcrypt/libgcrypt/libgcrypt-$LIBGCRYPT_VERSION.tar.gz || exit 1
858         gzcat libgcrypt-$LIBGCRYPT_VERSION.tar.gz | tar xf - || exit 1
859         cd libgcrypt-$LIBGCRYPT_VERSION
860         #
861         # The assembler language code is not compatible with the OS X
862         # x86 assembler (or is it an x86-64 vs. x86-32 issue?).
863         #
864         # libgcrypt expects gnu89, not c99/gnu99, semantics for
865         # "inline".  See, for example:
866         #
867         #       http://lists.freebsd.org/pipermail/freebsd-ports-bugs/2010-October/198809.html
868         #
869         CFLAGS="$CFLAGS -std=gnu89" ./configure --disable-asm || exit 1
870         make $MAKE_BUILD_OPTS || exit 1
871         $DO_MAKE_INSTALL || exit 1
872         cd ..
873         touch libgcrypt-$LIBGCRYPT_VERSION-done
874 fi
875
876 if [ "$GNUTLS_VERSION" -a ! -f gnutls-$GNUTLS_VERSION-done ] ; then
877         #
878         # GnuTLS requires libgcrypt (or nettle, in newer versions).
879         #
880         if [ -z $LIBGCRYPT_VERSION ]
881         then
882                 echo "GnuTLS requires libgcrypt, but you didn't install libgcrypt" 1>&2
883                 exit 1
884         fi
885
886         echo "Downloading, building, and installing GnuTLS:"
887         [ -f gnutls-$GNUTLS_VERSION.tar.bz2 ] || curl -L -O http://ftp.gnu.org/gnu/gnutls/gnutls-$GNUTLS_VERSION.tar.bz2 || exit 1
888         bzcat gnutls-$GNUTLS_VERSION.tar.bz2 | tar xf - || exit 1
889         cd gnutls-$GNUTLS_VERSION
890         #
891         # Use libgcrypt, not nettle.
892         # XXX - is there some reason to prefer nettle?  Or does
893         # Wireshark directly use libgcrypt routines?
894         #
895         ./configure --with-libgcrypt --without-p11-kit || exit 1
896         make $MAKE_BUILD_OPTS || exit 1
897         #
898         # The pkgconfig file for GnuTLS says "requires zlib", but OS X,
899         # while it supplies zlib, doesn't supply a pkgconfig file for
900         # it.
901         #
902         # Patch the GnuTLS pkgconfig file not to require zlib.
903         # (If the capabilities of GnuTLS that Wireshark uses don't
904         # depend on building GnuTLS with zlib, an alternative would be
905         # to configure it not to use zlib.)
906         #
907         patch -p0 lib/gnutls.pc.in <../../macosx-support-lib-patches/gnutls-pkgconfig.patch || exit 1
908         $DO_MAKE_INSTALL || exit 1
909         cd ..
910         touch gnutls-$GNUTLS_VERSION-done
911 fi
912
913 if [ "$LUA_VERSION" -a ! -f lua-$LUA_VERSION-done ] ; then
914         echo "Downloading, building, and installing Lua:"
915         [ -f lua-$LUA_VERSION.tar.gz ] || curl -L -O http://www.lua.org/ftp/lua-$LUA_VERSION.tar.gz || exit 1
916         gzcat lua-$LUA_VERSION.tar.gz | tar xf - || exit 1
917         cd lua-$LUA_VERSION
918         make $MAKE_BUILD_OPTS macosx || exit 1
919         $DO_MAKE_INSTALL || exit 1
920         cd ..
921         touch lua-$LUA_VERSION-done
922 fi
923
924 if [ "$PORTAUDIO_VERSION" -a ! -f portaudio-done ] ; then
925         echo "Downloading, building, and installing PortAudio:"
926         [ -f $PORTAUDIO_VERSION.tgz ] || curl -L -O http://www.portaudio.com/archives/$PORTAUDIO_VERSION.tgz || exit 1
927         gzcat $PORTAUDIO_VERSION.tgz | tar xf - || exit 1
928         cd portaudio
929         #
930         # Un-comment an include that's required on Lion.
931         #
932         patch -p0 include/pa_mac_core.h <../../macosx-support-lib-patches/portaudio-pa_mac_core.h.patch
933         #
934         # Fix a bug that showed up with clang (but is a bug with any
935         # compiler).
936         #
937         patch -p0 src/hostapi/coreaudio/pa_mac_core.c <../../macosx-support-lib-patches/portaudio-pa_mac_core.c.patch
938         #
939         # Disable fat builds - the configure script doesn't work right
940         # with Xcode 4 if you leave them enabled, and we don't build
941         # any other libraries fat (GLib, for example, would be very
942         # hard to build fat), so there's no advantage to having PortAudio
943         # built fat.
944         #
945         # Set the minimum OS X version to 10.4, to suppress some
946         # deprecation warnings.
947         #
948         CFLAGS="$CFLAGS -mmacosx-version-min=10.4" ./configure --disable-mac-universal || exit 1
949         make $MAKE_BUILD_OPTS || exit 1
950         $DO_MAKE_INSTALL || exit 1
951         cd ..
952         touch portaudio-done
953 fi
954
955 if [ "$GEOIP_VERSION" -a ! -f geoip-$GEOIP_VERSION-done ]
956 then
957         echo "Downloading, building, and installing GeoIP API:"
958         [ -f GeoIP-$GEOIP_VERSION.tar.gz ] || curl -L -O http://geolite.maxmind.com/download/geoip/api/c/GeoIP-$GEOIP_VERSION.tar.gz || exit 1
959         gzcat GeoIP-$GEOIP_VERSION.tar.gz | tar xf - || exit 1
960         cd GeoIP-$GEOIP_VERSION
961         ./configure || exit 1
962         #
963         # Grr.  Their man pages "helpfully" have an ISO 8859-1
964         # copyright symbol in the copyright notice, but OS X's
965         # default character encoding is UTF-8.  sed on Mountain
966         # Lion barfs at the "illegal character sequence" represented
967         # by an ISO 8859-1 copyright symbol, as it's not a valid
968         # UTF-8 sequence.
969         #
970         # iconv the relevant man pages into UTF-8.
971         #
972         for i in geoipupdate.1.in geoiplookup6.1.in geoiplookup.1.in
973         do
974                 iconv -f iso8859-1 -t utf-8 man/"$i" >man/"$i".tmp &&
975                     mv man/"$i".tmp man/"$i"
976         done
977         make $MAKE_BUILD_OPTS || exit 1
978         $DO_MAKE_INSTALL || exit 1
979         cd ..
980         touch geoip-$GEOIP_VERSION-done
981 fi
982
983 echo ""
984
985 echo "You are now prepared to build Wireshark. To do so do:"
986 echo "export PKG_CONFIG_PATH=/usr/local/lib/pkgconfig:/usr/X11/lib/pkgconfig"
987 echo ""
988 if [ -n "$CMAKE" ]; then
989   echo "mkdir build; cd build"
990   echo "cmake .."
991   echo
992   echo "or"
993   echo
994 fi
995 echo "./autogen.sh"
996 echo "mkdir build; cd build"
997 echo "../configure"
998 echo ""
999 echo "make $MAKE_BUILD_OPTS"
1000 echo "make install"
1001
1002 echo ""
1003
1004 echo "Make sure you are allowed capture access to the network devices"
1005 echo "See: http://wiki.wireshark.org/CaptureSetup/CapturePrivileges"
1006
1007 echo ""
1008
1009 exit 0