list the new file format on the manpage
[metze/wireshark/wip.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 DARWIN_MAJOR_VERSION=`uname -r | sed 's/\([0-9]*\).*/\1/'`
12
13 #
14 # To make this work on Leopard will take a lot of work.
15 #
16 # First of all, Leopard's /usr/X11/lib/libXdamage.la claims, at least
17 # with all software updates applied, that the Xdamage shared library
18 # is libXdamage.1.0.0.dylib, but it is, in fact, libXdamage.1.1.0.dylib.
19 # This causes problems when building GTK+, so the script would have to
20 # fix that file.
21 #
22 # Second of all, the version of fontconfig that comes with Leopard
23 # doesn't support FC_WEIGHT_EXTRABLACK, so we can't use any version
24 # of Pango newer than 1.22.4.
25 #
26 # However, Pango 1.22.4 doesn't work with versions of GLib after
27 # 2.29.6, because Pango 1.22.4 uses G_CONST_RETURN and GLib 2.29.8
28 # and later deprecate it (there doesn't appear to be a GLib 2.29.7).
29 # That means we'd either have to patch Pango not to use it (just
30 # use "const"; G_CONST_RETURN was there to allow code to choose whether
31 # to use "const" or not), or use GLib 2.29.6 or earlier.
32 #
33 # GLib 2.29.6 includes an implementation of g_bit_lock() that, on x86
34 # (32-bit and 64-bit), uses asms in a fashion ("asm volatile goto") that
35 # doesn't work with the Apple version of GCC 4.0.1, which is the compiler
36 # you get with Leopard+updates.  Apparently, that requires GCC 4.5 or
37 # later; recent versions of GLib check for that, but 2.29.6 doesn't.
38 # Therefore, we would have to patch glib/gbitlock.c to do what the
39 # newer versions of GLib do:
40 #
41 #  define a USE_ASM_GOTO macro that indicates whether "asm goto"
42 #  can be used:
43 #    #if (defined (i386) || defined (__amd64__))
44 #      #if __GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 5)
45 #        #define USE_ASM_GOTO 1
46 #      #endif
47 #    #endif
48 #
49 #  replace all occurrences of
50 #
51 #    #if defined (__GNUC__) && (defined (i386) || defined (__amd64__))
52 #
53 #  with
54 #
55 #    #ifdef USE_ASM_GOTO
56 #
57 # Using GLib 2.29.6 or earlier, however, would mean that we can't
58 # use a version of ATK later than 2.3.93, as those versions don't
59 # work with GLib 2.29.6.  The same applies to gdk-pixbuf; versions
60 # of gdk-pixbuf after 2.24.1 won't work with GLib 2.29.6.
61 #
62 # Once you've set this script up to use the older versions of the
63 # libraries, and built and installed them, you find that Wireshark,
64 # when built with them, crashes the X server that comes with Leopard,
65 # at least with all updates from Apple.  Maybe patching Pango rather
66 # than going with an older version of Pango would work.
67 #
68 # The Leopard Wireshark buildbot uses GTK+ 2.12.9, Cairo 1.6.4,
69 # Pango 1.20.2, and GLib 2.16.3, with an unknown version of ATK,
70 # and, I think, without gdk-pixbuf, as it hadn't been made a
71 # separate library from GTK+ as of GTK+ 2.12.9.  Its binaries
72 # don't crash the X server.
73 #
74 # However, if you try various older versions of Cairo, including
75 # 1.6.4 and at least some 1.8.x versions, when you try to build
76 # it, the build fails because it can't find png_set_longjmp_fn().
77 # I vaguely remember dealing with that, ages ago, but don't
78 # remember what I did; fixing *that* is left as an exercise for
79 # the reader.
80 #
81 # Oh, and if you're building with a version of GTK+ that doesn't
82 # have the gdk-pixbuf stuff in a separate library, you probably
83 # don't want to bother downloading or installing the gdk-pixbuf
84 # library, *and* you will need to configure GTK+ with
85 # --without-libtiff and --without-libjpeg (as we currently do
86 # with gdk-pixbuf).
87 #
88 if [[ $DARWIN_MAJOR_VERSION -le 9 ]]; then
89         echo "This script does not support any versions of OS X before Snow Leopard" 1>&2 
90         exit 1
91 fi
92
93 # To set up a GTK3 environment
94 # GTK3=1
95 # To build cmake
96 # CMAKE=1
97 #
98 # Versions to download and install.
99 #
100 # The following libraries and tools are required.
101 #
102 GETTEXT_VERSION=0.18.2
103 GLIB_VERSION=2.36.0
104 PKG_CONFIG_VERSION=0.28
105 ATK_VERSION=2.8.0
106 PANGO_VERSION=1.30.1
107 PNG_VERSION=1.5.14
108 PIXMAN_VERSION=0.26.0
109 CAIRO_VERSION=1.12.2
110 GDK_PIXBUF_VERSION=2.28.0
111 if [ -z "$GTK3" ]; then
112   GTK_VERSION=2.24.17
113 else
114   GTK_VERSION=3.5.2
115 fi
116
117 #
118 # Some package need xz to unpack their current source.
119 # xz is not available on OSX (Snow Leopard).
120 #
121 XZ_VERSION=5.0.4
122
123 # In case we want to build with cmake
124 CMAKE_VERSION=2.8.10.2
125
126 #
127 # The following libraries are optional.
128 # Comment them out if you don't want them, but note that some of
129 # the optional libraries are required by other optional libraries.
130 #
131 LIBSMI_VERSION=0.4.8
132 #
133 # libgpg-error is required for libgcrypt.
134 #
135 LIBGPG_ERROR_VERSION=1.10
136 #
137 # libgcrypt is required for GnuTLS.
138 # XXX - the link for "Libgcrypt source code" at
139 # http://www.gnupg.org/download/#libgcrypt is for 1.5.0, and is a bzip2
140 # file, but http://directory.fsf.org/project/libgcrypt/ lists only
141 # 1.4.6.
142 #
143 LIBGCRYPT_VERSION=1.5.0
144 GNUTLS_VERSION=2.12.19
145 # Stay with Lua 5.1 when updating until the code has been changed
146 # to support 5.2
147 LUA_VERSION=5.1.5
148 PORTAUDIO_VERSION=pa_stable_v19_20111121
149 #
150 # XXX - they appear to have an unversioned gzipped tarball for the
151 # current version; should we just download that, with some other
152 # way of specifying whether to download the GeoIP API?
153 #
154 GEOIP_VERSION=1.4.8
155
156 #
157 # You need Xcode installed to get the compilers.
158 #
159 if [ ! -x /usr/bin/xcodebuild ]; then
160         echo "Please install Xcode first (should be available on DVD or from http://developer.apple.com/xcode/index.php)."
161         exit 1
162 fi
163
164 #
165 # You also need the X11 SDK; with at least some versions of OS X and
166 # Xcode, that is, I think, an optional install.  (Or it might be
167 # installed with X11, but I think *that* is an optional install on
168 # at least some versions of OS X.)
169 #
170 if [ ! -d /usr/X11/include ]; then
171         echo "Please install X11 and the X11 SDK first."
172         exit 1
173 fi
174
175 #
176 # Do we have permission to write in /usr/local?
177 #
178 # If so, assume we have permission to write in its subdirectories.
179 # (If that's not the case, this test needs to check the subdirectories
180 # as well.)
181 #
182 # If not, do "make install" with sudo.
183 #
184 if [ -w /usr/local ]
185 then
186         DO_MAKE_INSTALL="make install"
187 else
188         DO_MAKE_INSTALL="sudo make install"
189 fi
190
191 export PKG_CONFIG_PATH=/usr/local/lib/pkgconfig:/usr/X11/lib/pkgconfig
192
193 #
194 # Do all the downloads and untarring in a subdirectory, so all that
195 # stuff can be removed once we've installed the support libraries.
196 #
197 if [ ! -d macosx-support-libs ]
198 then
199         mkdir macosx-support-libs || exit 1
200 fi
201 cd macosx-support-libs
202
203 # Start with xz: It is the sole download format of glib later than 2.31.2
204 #
205 echo "Downloading, building, and installing xz:"
206 curl -O http://tukaani.org/xz/xz-$XZ_VERSION.tar.bz2 || exit 1
207 tar xf xz-$XZ_VERSION.tar.bz2 || exit 1
208 cd xz-$XZ_VERSION
209 CFLAGS="-D_FORTIFY_SOURCE=0" ./configure || exit 1
210 make -j 3 || exit 1
211 $DO_MAKE_INSTALL || exit 1
212 cd ..
213
214 if [ -n "$CMAKE" ]; then
215   echo "Downloading, building, and installing CMAKE:"
216   cmake_dir=`expr $CMAKE_VERSION : '\([0-9][0-9]*\.[0-9][0-9]*\).*'`
217   curl -O http://www.cmake.org/files/v$cmake_dir/cmake-$CMAKE_VERSION.tar.gz || exit 1
218   gzcat cmake-$CMAKE_VERSION.tar.gz | tar xf - || exit 1
219   cd cmake-$CMAKE_VERSION
220   ./bootstrap || exit 1
221   make -j 3 || exit 1
222   $DO_MAKE_INSTALL || exit 1
223   cd ..
224 fi
225
226 #
227 # Start with GNU gettext; GLib requires it, and OS X doesn't have it
228 # or a BSD-licensed replacement.
229 #
230 # At least on Lion with Xcode 4, _FORTIFY_SOURCE gets defined as 2
231 # by default, which causes, for example, stpncpy to be defined as
232 # a hairy macro that collides with the GNU gettext configure script's
233 # attempts to workaround AIX's lack of a declaration for stpncpy,
234 # with the result being a huge train wreck.  Define _FORTIFY_SOURCE
235 # as 0 in an attempt to keep the trains on separate tracks.
236 #
237 echo "Downloading, building, and installing GNU gettext:"
238 curl -O http://ftp.gnu.org/pub/gnu/gettext/gettext-$GETTEXT_VERSION.tar.gz || exit 1
239 tar xf gettext-$GETTEXT_VERSION.tar.gz || exit 1
240 cd gettext-$GETTEXT_VERSION
241 CFLAGS="-D_FORTIFY_SOURCE=0" ./configure || exit 1
242 make -j 3 || exit 1
243 $DO_MAKE_INSTALL || exit 1
244 cd ..
245
246 echo "Downloading, building, and installing GLib:"
247 glib_dir=`expr $GLIB_VERSION : '\([0-9][0-9]*\.[0-9][0-9]*\).*'`
248 curl -L -O http://ftp.gnome.org/pub/gnome/sources/glib/$glib_dir/glib-$GLIB_VERSION.tar.xz || exit 1
249 xzcat glib-$GLIB_VERSION.tar.xz | tar xf - || exit 1
250 cd glib-$GLIB_VERSION
251 #
252 # OS X ships with libffi, but doesn't provide its pkg-config file;
253 # explicitly specify LIBFFI_CFLAGS and LIBFFI_LIBS, so the configure
254 # script doesn't try to use pkg-config to get the appropriate
255 # CFLAGS and LIBS.
256 #
257 # And, what's worse, at least with the version of Xcode that comes
258 # with Leopard, /usr/include/ffi/fficonfig.h doesn't define MACOSX,
259 # which causes the build of GLib to fail.  If we don't find
260 # "#define.*MACOSX" in /usr/include/ffi/fficonfig.h, explictly
261 # define it.
262 #
263 if grep -qs '#define.*MACOSX' /usr/include/ffi/fficonfig.h
264 then
265         # It's defined, nothing to do
266         LIBFFI_CFLAGS="-I/usr/include/ffi" LIBFFI_LIBS="-lffi" ./configure || exit 1
267 else
268         CFLAGS="-DMACOSX" LIBFFI_CFLAGS="-I/usr/include/ffi" LIBFFI_LIBS="-lffi" ./configure || exit 1
269 fi
270 make -j 3 || exit 1
271 # Apply patch: we depend on libffi, but pkg-config doesn't get told.
272 patch -p0 <../../macosx-support-lib-patches/glib-pkgconfig.patch || exit 1
273 $DO_MAKE_INSTALL || exit 1
274 cd ..
275
276 echo "Downloading, building, and installing pkg-config:"
277 curl -O http://pkgconfig.freedesktop.org/releases/pkg-config-$PKG_CONFIG_VERSION.tar.gz || exit 1
278 tar xf pkg-config-$PKG_CONFIG_VERSION.tar.gz || exit 1
279 cd pkg-config-$PKG_CONFIG_VERSION
280 # Avoid another pkgconfig call
281 GLIB_CFLAGS="-I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include" GLIB_LIBS="-L/usr/local/lib -lglib-2.0 -lintl" ./configure || exit 1
282 # ./configure || exit 1
283 make -j 3 || exit 1
284 $DO_MAKE_INSTALL || exit 1
285 cd ..
286
287 #
288 # Now we have reached a point where we can build everything but
289 # the GUI (Wireshark).
290 #
291 # Cairo is part of Mac OS X 10.6 and 10.7.
292 # The *headers* are supplied by 10.5, but the *libraries* aren't, so
293 # we have to build it on 10.5.
294 # GTK+ 3 requires a newer Cairo build than the one that comes with
295 # 10.6, so we build Cairo if we are using GTK+ 3.
296 # In 10.6 and 10.7, it's an X11 library; if we build with "native" GTK+
297 # rather than X11 GTK+, we might have to build and install Cairo.
298 # The major version number of Darwin in 10.5 is 9.
299 #
300 if [[ -n "$GTK3" || $DARWIN_MAJOR_VERSION = "9" ]]; then
301   #
302   # Requirements for Cairo first
303   #
304   # The libpng that comes with the X11 for leopard has a bogus
305   # pkg-config file that lies about where the header files are,
306   # which causes other packages not to be able to find its
307   # headers.
308   #
309   echo "Downloading, building, and installing libpng:"
310   curl -O ftp://ftp.simplesystems.org/pub/libpng/png/src/libpng-$PNG_VERSION.tar.xz
311   xzcat libpng-$PNG_VERSION.tar.xz | tar xf - || exit 1
312   cd libpng-$PNG_VERSION
313   ./configure || exit 1
314   make -j 3 || exit 1
315   $DO_MAKE_INSTALL || exit 1
316   cd ..
317
318   #
319   # The libpixman that comes with the X11 for Leopard is too old
320   # to support Cairo's image surface backend feature (which requires
321   # pixman-1 >= 0.22.0).
322   #
323   echo "Downloading, building, and installing pixman:"
324   curl -O http://www.cairographics.org/releases/pixman-$PIXMAN_VERSION.tar.gz
325   gzcat pixman-$PIXMAN_VERSION.tar.gz | tar xf - || exit 1
326   cd pixman-$PIXMAN_VERSION
327   ./configure || exit 1
328   make -j 3 || exit 1
329   $DO_MAKE_INSTALL || exit 1
330   cd ..
331
332   #
333   # And now Cairo itself.
334   #
335   echo "Downloading, building, and installing Cairo:"
336   CAIRO_MAJOR_VERSION="`expr $CAIRO_VERSION : '\([0-9][0-9]*\).*'`"
337   CAIRO_MINOR_VERSION="`expr $CAIRO_VERSION : '[0-9][0-9]*\.\([0-9][0-9]*\).*'`"
338   CAIRO_DOTDOT_VERSION="`expr $CAIRO_VERSION : '[0-9][0-9]*\.[0-9][0-9]*\.\([0-9][0-9]*\).*'`"
339   if [[ $CAIRO_MAJOR_VERSION -gt 1 ||
340         $CAIRO_MINOR_VERSION -gt 12 ||
341         ($CAIRO_MINOR_VERSION -eq 12 && $CAIRO_DOTDOT_VERSION -ge 2) ]]
342   then
343         #
344         # Starting with Cairo 1.12.2, the tarballs are compressed with
345         # xz rather than gzip.
346         #
347         curl -O http://cairographics.org/releases/cairo-$CAIRO_VERSION.tar.xz || exit 1
348         xzcat cairo-$CAIRO_VERSION.tar.xz | tar xf - || exit 1
349   else
350         curl -O http://cairographics.org/releases/cairo-$CAIRO_VERSION.tar.gz || exit 1
351         tar xf cairo-$CAIRO_VERSION.tar.gz || exit 1
352   fi
353   cd cairo-$CAIRO_VERSION
354   #./configure --enable-quartz=no || exit 1
355   # Maybe follow http://cairographics.org/end_to_end_build_for_mac_os_x/
356   ./configure --enable-quartz=yes || exit 1
357   #
358   # We must avoid the version of libpng that comes with X11; the
359   # only way I've found to force that is to forcibly set INCLUDES
360   # when we do the build, so that this comes before CAIRO_CFLAGS,
361   # which has -I/usr/X11/include added to it before anything
362   # connected to libpng is.
363   #
364   INCLUDES="-I/usr/local/include/libpng15" make -j 3 || exit 1
365   $DO_MAKE_INSTALL || exit 1
366   cd ..
367 fi
368
369 echo "Downloading, building, and installing ATK:"
370 atk_dir=`expr $ATK_VERSION : '\([0-9][0-9]*\.[0-9][0-9]*\).*'`
371 curl -O http://ftp.gnome.org/pub/gnome/sources/atk/$atk_dir/atk-$ATK_VERSION.tar.xz || exit 1
372 xzcat atk-$ATK_VERSION.tar.xz | tar xf - || exit 1
373 cd atk-$ATK_VERSION
374 ./configure || exit 1
375 make -j 3 || exit 1
376 $DO_MAKE_INSTALL || exit 1
377 cd ..
378
379 echo "Downloading, building, and installing Pango:"
380 pango_dir=`expr $PANGO_VERSION : '\([0-9][0-9]*\.[0-9][0-9]*\).*'`
381 PANGO_MAJOR_VERSION="`expr $PANGO_VERSION : '\([0-9][0-9]*\).*'`"
382 PANGO_MINOR_VERSION="`expr $PANGO_VERSION : '[0-9][0-9]*\.\([0-9][0-9]*\).*'`"
383 if [[ $PANGO_MAJOR_VERSION -gt 1 ||
384       $PANGO_MINOR_VERSION -ge 29 ]]
385 then
386         #
387         # Starting with Pango 1.29, the tarballs are compressed with
388         # xz rather than bzip2.
389         #
390         curl -L -O http://ftp.gnome.org/pub/gnome/sources/pango/$pango_dir/pango-$PANGO_VERSION.tar.xz
391         xzcat pango-$PANGO_VERSION.tar.xz | tar xf - || exit 1
392 else
393         curl -L -O http://ftp.gnome.org/pub/gnome/sources/pango/$pango_dir/pango-$PANGO_VERSION.tar.bz2
394         tar xf pango-$PANGO_VERSION.tar.bz2 || exit 1
395 fi
396 cd pango-$PANGO_VERSION
397 ./configure || exit 1
398 make -j 3 || exit 1
399 $DO_MAKE_INSTALL || exit 1
400 cd ..
401
402 echo "Downloading, building, and installing gdk-pixbuf:"
403 gdk_pixbuf_dir=`expr $GDK_PIXBUF_VERSION : '\([0-9][0-9]*\.[0-9][0-9]*\).*'`
404 curl -L -O http://ftp.gnome.org/pub/gnome/sources/gdk-pixbuf/$gdk_pixbuf_dir/gdk-pixbuf-$GDK_PIXBUF_VERSION.tar.xz || exit 1
405 xzcat gdk-pixbuf-$GDK_PIXBUF_VERSION.tar.xz | tar xf - || exit 1
406 cd gdk-pixbuf-$GDK_PIXBUF_VERSION
407 ./configure --without-libtiff --without-libjpeg || exit 1
408 make -j 3 || exit 1
409 $DO_MAKE_INSTALL || exit 1
410 cd ..
411
412 echo "Downloading, building, and installing GTK+:"
413 gtk_dir=`expr $GTK_VERSION : '\([0-9][0-9]*\.[0-9][0-9]*\).*'`
414 GTK_MAJOR_VERSION="`expr $GTK_VERSION : '\([0-9][0-9]*\).*'`"
415 GTK_MINOR_VERSION="`expr $GTK_VERSION : '[0-9][0-9]*\.\([0-9][0-9]*\).*'`"
416 GTK_DOTDOT_VERSION="`expr $GTK_VERSION : '[0-9][0-9]*\.[0-9][0-9]*\.\([0-9][0-9]*\).*'`"
417 if [[ $GTK_MAJOR_VERSION -gt 2 ||
418       $GTK_MINOR_VERSION -gt 24 ||
419       ($GTK_MINOR_VERSION -eq 24 && $GTK_DOTDOT_VERSION -ge 5) ]]
420 then
421         #
422         # Starting with GTK+ 2.24.5, the tarballs are compressed with
423         # xz rather than gzip, in addition to bzip2; use xz, as we've
424         # built and installed it, and as xz compresses better than
425         # bzip2 so the tarballs take less time to download.
426         #
427         curl -L -O http://ftp.gnome.org/pub/gnome/sources/gtk+/$gtk_dir/gtk+-$GTK_VERSION.tar.xz
428         xzcat gtk+-$GTK_VERSION.tar.xz | tar xf - || exit 1
429 else
430         curl -L -O http://ftp.gnome.org/pub/gnome/sources/gtk+/$gtk_dir/gtk+-$GTK_VERSION.tar.bz2
431         tar xf gtk+-$GTK_VERSION.tar.bz2 || exit 1
432 fi
433 cd gtk+-$GTK_VERSION
434 if [ $DARWIN_MAJOR_VERSION -ge "12" ]
435 then
436         #
437         # GTK+ 2.24.10, at least, doesn't build on Mountain Lion with the
438         # CUPS printing backend - either the CUPS API changed incompatibly
439         # or the backend was depending on non-API implementation details.
440         #
441         # Configure it out, on Mountain Lion and later, for now.
442         # (12 is the Darwin major version number in Mountain Lion.)
443         #
444         ./configure --disable-cups || exit 1
445 else
446         ./configure || exit 1
447 fi
448 make -j 3 || exit 1
449 $DO_MAKE_INSTALL || exit 1
450 cd ..
451
452 #
453 # Now we have reached a point where we can build everything including
454 # the GUI (Wireshark), but not with any optional features such as
455 # SNMP OID resolution, some forms of decryption, Lua scripting, playback
456 # of audio, or GeoIP mapping of IP addresses.
457 #
458 # We now conditionally download optional libraries to support them;
459 # the default is to download them all.
460 #
461
462 if [ ! -z $LIBSMI_VERSION ]
463 then
464         echo "Downloading, building, and installing libsmi:"
465         curl -L -O ftp://ftp.ibr.cs.tu-bs.de/pub/local/libsmi/libsmi-$LIBSMI_VERSION.tar.gz || exit 1
466         tar xf libsmi-$LIBSMI_VERSION.tar.gz || exit 1
467         cd libsmi-$LIBSMI_VERSION
468         ./configure || exit 1
469         make -j 3 || exit 1
470         $DO_MAKE_INSTALL || exit 1
471         cd ..
472 fi
473
474 if [ ! -z $LIBGPG_ERROR_VERSION ]
475 then
476         echo "Downloading, building, and installing libgpg-error:"
477         curl -L -O ftp://ftp.gnupg.org/gcrypt/libgpg-error/libgpg-error-$LIBGPG_ERROR_VERSION.tar.bz2 || exit 1
478         bzcat libgpg-error-$LIBGPG_ERROR_VERSION.tar.bz2 | tar xf - || exit 1
479         cd libgpg-error-$LIBGPG_ERROR_VERSION
480         ./configure || exit 1
481         make -j 3 || exit 1
482         $DO_MAKE_INSTALL || exit 1
483         cd ..
484 fi
485
486 if [ ! -z $LIBGCRYPT_VERSION ]
487 then
488         #
489         # libgpg-error is required for libgcrypt.
490         #
491         if [ -z $LIBGPG_ERROR_VERSION ]
492         then
493                 echo "libgcrypt requires libgpg-error, but you didn't install libgpg-error." 1>&2
494                 exit 1
495         fi
496
497         echo "Downloading, building, and installing libgcrypt:"
498         curl -L -O ftp://ftp.gnupg.org/gcrypt/libgcrypt/libgcrypt-$LIBGCRYPT_VERSION.tar.gz || exit 1
499         tar xf libgcrypt-$LIBGCRYPT_VERSION.tar.gz || exit 1
500         cd libgcrypt-$LIBGCRYPT_VERSION
501         #
502         # The assembler language code is not compatible with the OS X
503         # x86 assembler (or is it an x86-64 vs. x86-32 issue?).
504         #
505         ./configure --disable-asm || exit 1
506         make -j 3 || exit 1
507         $DO_MAKE_INSTALL || exit 1
508         cd ..
509 fi
510
511 if [ ! -z $GNUTLS_VERSION ]
512 then
513         #
514         # GnuTLS requires libgcrypt (or nettle, in newer versions).
515         #
516         if [ -z $LIBGCRYPT_VERSION ]
517         then
518                 echo "GnuTLS requires libgcrypt, but you didn't install libgcrypt" 1>&2
519                 exit 1
520         fi
521
522         echo "Downloading, building, and installing GnuTLS:"
523         curl -L -O http://ftp.gnu.org/gnu/gnutls/gnutls-$GNUTLS_VERSION.tar.bz2 || exit 1
524         bzcat gnutls-$GNUTLS_VERSION.tar.bz2 | tar xf - || exit 1
525         cd gnutls-$GNUTLS_VERSION
526         #
527         # Use libgcrypt, not nettle.
528         # XXX - is there some reason to prefer nettle?  Or does
529         # Wireshark directly use libgcrypt routines?
530         #
531         ./configure --with-libgcrypt --without-p11-kit || exit 1
532         make -j 3 || exit 1
533         #
534         # The pkgconfig file for GnuTLS says "requires zlib", but OS X,
535         # while it supplies zlib, doesn't supply a pkgconfig file for
536         # it.
537         #
538         # Patch the GnuTLS pkgconfig file not to require zlib.
539         # (If the capabilities of GnuTLS that Wireshark uses don't
540         # depend on building GnuTLS with zlib, an alternative would be
541         # to configure it not to use zlib.)
542         #
543         patch -p0 lib/gnutls.pc.in <../../macosx-support-lib-patches/gnutls-pkgconfig.patch || exit 1
544         $DO_MAKE_INSTALL || exit 1
545         cd ..
546 fi
547
548 if [ ! -z $LUA_VERSION ]
549 then
550         echo "Downloading, building, and installing Lua:"
551         curl -L -O http://www.lua.org/ftp/lua-$LUA_VERSION.tar.gz || exit 1
552         tar xf lua-$LUA_VERSION.tar.gz || exit 1
553         cd lua-$LUA_VERSION
554         make -j 3 macosx || exit 1
555         $DO_MAKE_INSTALL || exit 1
556         cd ..
557 fi
558
559 if [ ! -z $PORTAUDIO_VERSION ]
560 then
561         echo "Downloading, building, and installing PortAudio:"
562         curl -L -O http://www.portaudio.com/archives/$PORTAUDIO_VERSION.tgz || exit 1
563         tar xf $PORTAUDIO_VERSION.tgz || exit 1
564         cd portaudio
565         #
566         # Un-comment an include that's required on Lion.
567         #
568         patch -p0 include/pa_mac_core.h <../../macosx-support-lib-patches/portaudio-pa_mac_core.h.patch
569         #
570         # Disable fat builds - the configure script doesn't work right
571         # with Xcode 4 if you leave them enabled, and we don't build
572         # any other libraries fat (GLib, for example, would be very
573         # hard to build fat), so there's no advantage to having PortAudio
574         # built fat.
575         #
576         # Set the minimum OS X version to 10.4, to suppress some
577         # deprecation warnings.
578         #
579         CFLAGS="-mmacosx-version-min=10.4" ./configure --disable-mac-universal || exit 1
580         make -j 3 || exit 1
581         $DO_MAKE_INSTALL || exit 1
582         cd ..
583 fi
584
585 if [ ! -z $GEOIP_VERSION ]
586 then
587         echo "Downloading, building, and installing GeoIP API:"
588         curl -L -O http://geolite.maxmind.com/download/geoip/api/c/GeoIP-$GEOIP_VERSION.tar.gz || exit 1
589         tar xf GeoIP-$GEOIP_VERSION.tar.gz || exit 1
590         cd GeoIP-$GEOIP_VERSION
591         ./configure || exit 1
592         #
593         # Grr.  Their man pages "helpfully" have an ISO 8859-1
594         # copyright symbol in the copyright notice, but OS X's
595         # default character encoding is UTF-8.  sed on Mountain
596         # Lion barfs at the "illegal character sequence" represented
597         # by an ISO 8859-1 copyright symbol, as it's not a valid
598         # UTF-8 sequence.
599         #
600         # iconv the relevant man pages into UTF-8.
601         #
602         for i in geoipupdate.1.in geoiplookup6.1.in geoiplookup.1.in
603         do
604                 iconv -f iso8859-1 -t utf-8 man/"$i" >man/"$i".tmp &&
605                     mv man/"$i".tmp man/"$i"
606         done
607         make -j 3 || exit 1
608         $DO_MAKE_INSTALL || exit 1
609         cd ..
610 fi
611
612 echo ""
613
614 echo "You are now prepared to build Wireshark. To do so do:"
615 echo "export PKG_CONFIG_PATH=/usr/local/lib/pkgconfig:/usr/X11/lib/pkgconfig"
616 echo ""
617 if [ -n "$CMAKE" ]; then
618   echo "mkdir build; cd build"
619   echo "cmake .."
620   echo
621   echo "or"
622   echo
623 fi
624 echo "./autogen.sh"
625 echo "mkdir build; cd build"
626 echo "../configure"
627 echo ""
628 echo "make -j 3"
629 echo "make install"
630
631 echo ""
632
633 echo "Make sure you are allowed capture access to the network devices"
634 echo "See: http://wiki.wireshark.org/CaptureSetup/CapturePrivileges"
635
636 echo ""
637
638 exit 0