Actually, that's not a clang bug; my test case had a typo. It's still a
[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 # To build all libraries as 32-bit libraries uncomment the following three lines.
99 # export CFLAGS="$CFLAGS -arch i386"
100 # export CXXFLAGS="$CXXFLAGS -arch i386"
101 # export LDFLAGS="$LDFLAGS -arch i386"
102 #
103
104 # if no make options are present, set default options
105 if [ -z "$MAKE_BUILD_OPTS" ] ; then
106     # by default use 1.5x number of cores for parallel build
107     MAKE_BUILD_OPTS="-j $(( $(sysctl -n hw.logicalcpu) * 3 / 2))"
108 fi
109
110 #
111 # Versions to download and install.
112 #
113 # The following libraries and tools are required.
114 #
115 GETTEXT_VERSION=0.18.2
116 GLIB_VERSION=2.36.0
117 PKG_CONFIG_VERSION=0.28
118 ATK_VERSION=2.8.0
119 PANGO_VERSION=1.30.1
120 PNG_VERSION=1.5.14
121 PIXMAN_VERSION=0.26.0
122 CAIRO_VERSION=1.12.2
123 GDK_PIXBUF_VERSION=2.28.0
124 if [ -z "$GTK3" ]; then
125   GTK_VERSION=2.24.17
126 else
127   GTK_VERSION=3.5.2
128 fi
129
130 #
131 # Some package need xz to unpack their current source.
132 # xz is not available on OSX (Snow Leopard).
133 #
134 XZ_VERSION=5.0.4
135
136 # In case we want to build with cmake
137 CMAKE_VERSION=2.8.10.2
138
139 #
140 # The following libraries are optional.
141 # Comment them out if you don't want them, but note that some of
142 # the optional libraries are required by other optional libraries.
143 #
144 LIBSMI_VERSION=0.4.8
145 #
146 # libgpg-error is required for libgcrypt.
147 #
148 LIBGPG_ERROR_VERSION=1.10
149 #
150 # libgcrypt is required for GnuTLS.
151 # XXX - the link for "Libgcrypt source code" at
152 # http://www.gnupg.org/download/#libgcrypt is for 1.5.0, and is a bzip2
153 # file, but http://directory.fsf.org/project/libgcrypt/ lists only
154 # 1.4.6.
155 #
156 LIBGCRYPT_VERSION=1.5.0
157 GNUTLS_VERSION=2.12.19
158 # Stay with Lua 5.1 when updating until the code has been changed
159 # to support 5.2
160 LUA_VERSION=5.1.5
161 PORTAUDIO_VERSION=pa_stable_v19_20111121
162 #
163 # XXX - they appear to have an unversioned gzipped tarball for the
164 # current version; should we just download that, with some other
165 # way of specifying whether to download the GeoIP API?
166 #
167 GEOIP_VERSION=1.4.8
168
169 # GNU auto tools
170 AUTOCONF_VERSION=2.69
171 AUTOMAKE_VERSION=1.13.3
172 LIBTOOL_VERSION=2.4.2
173
174 #
175 # You need Xcode installed to get the compilers.
176 #
177 if [ ! -x /usr/bin/xcodebuild ]; then
178         echo "Please install Xcode first (should be available on DVD or from http://developer.apple.com/xcode/index.php)."
179         exit 1
180 fi
181
182 #
183 # You also need the X11 SDK; with at least some versions of OS X and
184 # Xcode, that is, I think, an optional install.  (Or it might be
185 # installed with X11, but I think *that* is an optional install on
186 # at least some versions of OS X.)
187 #
188 if [ ! -d /usr/X11/include ]; then
189         echo "Please install X11 and the X11 SDK first."
190         exit 1
191 fi
192
193 #
194 # Do we have permission to write in /usr/local?
195 #
196 # If so, assume we have permission to write in its subdirectories.
197 # (If that's not the case, this test needs to check the subdirectories
198 # as well.)
199 #
200 # If not, do "make install" with sudo.
201 #
202 if [ -w /usr/local ]
203 then
204         DO_MAKE_INSTALL="make install"
205 else
206         DO_MAKE_INSTALL="sudo make install"
207 fi
208
209 export PKG_CONFIG_PATH=/usr/local/lib/pkgconfig:/usr/X11/lib/pkgconfig
210
211 #
212 # Do all the downloads and untarring in a subdirectory, so all that
213 # stuff can be removed once we've installed the support libraries.
214 #
215 if [ ! -d macosx-support-libs ]
216 then
217         mkdir macosx-support-libs || exit 1
218 fi
219 cd macosx-support-libs
220
221 # Start with xz: It is the sole download format of glib later than 2.31.2
222 #
223 if [ "$XZ_VERSION" -a ! -f xz-$XZ_VERSION-done ] ; then
224     echo "Downloading, building, and installing xz:"
225     [ -f xz-$XZ_VERSION.tar.bz2 ] || curl -O http://tukaani.org/xz/xz-$XZ_VERSION.tar.bz2 || exit 1
226     bzcat xz-$XZ_VERSION.tar.bz2 | tar xf - || exit 1
227     cd xz-$XZ_VERSION
228     CFLAGS="$CFLAGS -D_FORTIFY_SOURCE=0" ./configure || exit 1
229     make $MAKE_BUILD_OPTS || exit 1
230     $DO_MAKE_INSTALL || exit 1
231     cd ..
232     touch xz-$XZ_VERSION-done
233 fi
234
235 if [ "$AUTOCONF_VERSION" -a ! -f autoconf-$AUTOCONF_VERSION-done ] ; then
236     echo "Downloading, building and installing GNU autoconf..."
237     [ -f autoconf-$AUTOCONF_VERSION.tar.xz ] || curl -O ftp://ftp.gnu.org/gnu/autoconf/autoconf-$AUTOCONF_VERSION.tar.xz || exit 1
238     xzcat autoconf-$AUTOCONF_VERSION.tar.xz | tar xf - || exit 1
239     cd autoconf-$AUTOCONF_VERSION
240     ./configure || exit 1
241     make $MAKE_BUILD_OPTS || exit 1
242     $DO_MAKE_INSTALL || exit 1
243     cd ..
244     touch autoconf-$AUTOCONF_VERSION-done
245 fi
246
247 if [ "$AUTOMAKE_VERSION" -a ! -f automake-$AUTOMAKE_VERSION-done ] ; then
248     echo "Downloading, building and installing GNU automake..."
249     [ -f automake-$AUTOMAKE_VERSION.tar.xz ] || curl -O ftp://ftp.gnu.org/gnu/automake/automake-$AUTOMAKE_VERSION.tar.xz || exit 1
250     xzcat automake-$AUTOMAKE_VERSION.tar.xz | tar xf - || exit 1
251     cd automake-$AUTOMAKE_VERSION
252     ./configure || exit 1
253     make $MAKE_BUILD_OPTS || exit 1
254     $DO_MAKE_INSTALL || exit 1
255     cd ..
256     touch automake-$AUTOMAKE_VERSION-done
257 fi
258
259 if [ "$LIBTOOL_VERSION" -a ! -f libtool-$LIBTOOL_VERSION-done ] ; then
260     echo "Downloading, building and installing GNU libtool..."
261     [ -f libtool-$LIBTOOL_VERSION.tar.xz ] || curl -O ftp://ftp.gnu.org/gnu/libtool/libtool-$LIBTOOL_VERSION.tar.xz || exit 1
262     xzcat libtool-$LIBTOOL_VERSION.tar.xz | tar xf - || exit 1
263     cd libtool-$LIBTOOL_VERSION
264     ./configure || exit 1
265     make $MAKE_BUILD_OPTS || exit 1
266     $DO_MAKE_INSTALL || exit 1
267     mv /usr/local/bin/libtool /usr/local/bin/glibtool
268     mv /usr/local/bin/libtoolize /usr/local/bin/glibtoolize
269     cd ..
270     touch libtool-$LIBTOOL_VERSION-done
271 fi
272
273 if [ -n "$CMAKE" -a ! -f cmake-$CMAKE_VERSION-done ]; then
274   echo "Downloading, building, and installing CMAKE:"
275   cmake_dir=`expr $CMAKE_VERSION : '\([0-9][0-9]*\.[0-9][0-9]*\).*'`
276   [ -f cmake-$CMAKE_VERSION.tar.gz ] || curl -O http://www.cmake.org/files/v$cmake_dir/cmake-$CMAKE_VERSION.tar.gz || exit 1
277   gzcat cmake-$CMAKE_VERSION.tar.gz | tar xf - || exit 1
278   cd cmake-$CMAKE_VERSION
279   ./bootstrap || exit 1
280   make $MAKE_BUILD_OPTS || exit 1
281   $DO_MAKE_INSTALL || exit 1
282   cd ..
283   touch cmake-$CMAKE_VERSION-done
284 fi
285
286 #
287 # Start with GNU gettext; GLib requires it, and OS X doesn't have it
288 # or a BSD-licensed replacement.
289 #
290 # At least on Lion with Xcode 4, _FORTIFY_SOURCE gets defined as 2
291 # by default, which causes, for example, stpncpy to be defined as
292 # a hairy macro that collides with the GNU gettext configure script's
293 # attempts to workaround AIX's lack of a declaration for stpncpy,
294 # with the result being a huge train wreck.  Define _FORTIFY_SOURCE
295 # as 0 in an attempt to keep the trains on separate tracks.
296 #
297 if [ ! -f gettext-$GETTEXT_VERSION-done ] ; then
298     echo "Downloading, building, and installing GNU gettext:"
299     [ -f gettext-$GETTEXT_VERSION.tar.gz ] || curl -O http://ftp.gnu.org/pub/gnu/gettext/gettext-$GETTEXT_VERSION.tar.gz || exit 1
300     gzcat gettext-$GETTEXT_VERSION.tar.gz | tar xf - || exit 1
301     cd gettext-$GETTEXT_VERSION
302     CFLAGS="$CFLAGS -D_FORTIFY_SOURCE=0" ./configure || exit 1
303     make $MAKE_BUILD_OPTS || exit 1
304     $DO_MAKE_INSTALL || exit 1
305     cd ..
306     touch gettext-$GETTEXT_VERSION-done
307 fi
308
309 if [ ! -f glib-$GLIB_VERSION-done ] ; then
310     echo "Downloading, building, and installing GLib:"
311     glib_dir=`expr $GLIB_VERSION : '\([0-9][0-9]*\.[0-9][0-9]*\).*'`
312     [ -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
313     xzcat glib-$GLIB_VERSION.tar.xz | tar xf - || exit 1
314     cd glib-$GLIB_VERSION
315     #
316     # OS X ships with libffi, but doesn't provide its pkg-config file;
317     # explicitly specify LIBFFI_CFLAGS and LIBFFI_LIBS, so the configure
318     # script doesn't try to use pkg-config to get the appropriate
319     # CFLAGS and LIBS.
320     #
321     # And, what's worse, at least with the version of Xcode that comes
322     # with Leopard, /usr/include/ffi/fficonfig.h doesn't define MACOSX,
323     # which causes the build of GLib to fail.  If we don't find
324     # "#define.*MACOSX" in /usr/include/ffi/fficonfig.h, explictly
325     # define it.
326     #
327     # While we're at it, suppress -Wformat-nonliteral to avoid a case
328     # where clang's stricter rules on when not to complain about
329     # non-literal format arguments cause it to complain about code
330     # that's safe but it wasn't told that.  See my comment #25 in
331     # GNOME bug 691608:
332     #
333     #   https://bugzilla.gnome.org/show_bug.cgi?id=691608#c25
334     #
335     # First, determine where the system include files are.  (It's not
336     # necessarily /usr/include.)
337     #
338     testfile=/tmp/test$$.c
339     trap "rm -f $testfile" 0
340     echo "#include <ffi/ffi.h>" > $testfile
341     includedir=`gcc -M $testfile | sed -n -e 's;[\\];;' -e 's/^ *//' -e 's/ *$//' -e 's;/ffi/ffi\.h;;p'`
342     rm -f $testfile
343     if grep -qs '#define.*MACOSX' $includedir/ffi/fficonfig.h
344     then
345         # It's defined, nothing to do
346         CFLAGS="$CFLAGS -Wno-format-nonliteral" LIBFFI_CFLAGS="$CFLAGS -I$includedir/ffi" LIBFFI_LIBS="$LDFLAGS -lffi" ./configure || exit 1
347         CFLAGS="$CFLAGS -Wno-format-nonliteral" LIBFFI_CFLAGS="$CFLAGS -I$includedir/ffi" LIBFFI_LIBS="$LDFLAGS -lffi" env | egrep LIBFFI_CFLAGS
348     else
349         CFLAGS="$CFLAGS -DMACOSX -Wno-format-nonliteral" LIBFFI_CFLAGS="$CFLAGS -I$includedir/ffi" LIBFFI_LIBS="LDFLAGS-lffi" ./configure || exit 1
350         CFLAGS="$CFLAGS -DMACOSX -Wno-format-nonliteral" LIBFFI_CFLAGS="$CFLAGS -I$includedir/ffi" LIBFFI_LIBS="LDFLAGS-lffi" env | egrep LIBFFI_CFLAGS
351     fi
352     make $MAKE_BUILD_OPTS || exit 1
353     # Apply patch: we depend on libffi, but pkg-config doesn't get told.
354     patch -p0 <../../macosx-support-lib-patches/glib-pkgconfig.patch || exit 1
355     $DO_MAKE_INSTALL || exit 1
356     cd ..
357     touch glib-$GLIB_VERSION-done
358 fi
359
360 if [ ! -f pkg-config-$PKG_CONFIG_VERSION-done ] ; then
361     echo "Downloading, building, and installing pkg-config:"
362     [ -f pkg-config-$PKG_CONFIG_VERSION.tar.gz ] || curl -O http://pkgconfig.freedesktop.org/releases/pkg-config-$PKG_CONFIG_VERSION.tar.gz || exit 1
363     gzcat pkg-config-$PKG_CONFIG_VERSION.tar.gz | tar xf - || exit 1
364     cd pkg-config-$PKG_CONFIG_VERSION
365     # Avoid another pkgconfig call
366     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
367     make $MAKE_BUILD_OPTS || exit 1
368     $DO_MAKE_INSTALL || exit 1
369     cd ..
370     touch pkg-config-$PKG_CONFIG_VERSION-done
371 fi
372
373 #
374 # Now we have reached a point where we can build everything but
375 # the GUI (Wireshark).
376 #
377 # Cairo is part of Mac OS X 10.6 and 10.7.
378 # The *headers* are supplied by 10.5, but the *libraries* aren't, so
379 # we have to build it on 10.5.
380 # GTK+ 3 requires a newer Cairo build than the one that comes with
381 # 10.6, so we build Cairo if we are using GTK+ 3.
382 # In 10.6 and 10.7, it's an X11 library; if we build with "native" GTK+
383 # rather than X11 GTK+, we might have to build and install Cairo.
384 # The major version number of Darwin in 10.5 is 9.
385 #
386 if [[ -n "$GTK3" || $DARWIN_MAJOR_VERSION = "9" ]]; then
387   #
388   # Requirements for Cairo first
389   #
390   # The libpng that comes with the X11 for leopard has a bogus
391   # pkg-config file that lies about where the header files are,
392   # which causes other packages not to be able to find its
393   # headers.
394   #
395   if [ ! -f libpng-$PNG_VERSION-done ] ; then
396       echo "Downloading, building, and installing libpng:"
397       [ -f libpng-$PNG_VERSION.tar.xz ] || curl -O ftp://ftp.simplesystems.org/pub/libpng/png/src/libpng-$PNG_VERSION.tar.xz
398       xzcat libpng-$PNG_VERSION.tar.xz | tar xf - || exit 1
399       cd libpng-$PNG_VERSION
400       ./configure || exit 1
401       make $MAKE_BUILD_OPTS || exit 1
402       $DO_MAKE_INSTALL || exit 1
403       cd ..
404         touch libpng-$PNG_VERSION-done
405     fi
406
407   #
408   # The libpixman that comes with the X11 for Leopard is too old
409   # to support Cairo's image surface backend feature (which requires
410   # pixman-1 >= 0.22.0).
411   #
412   if [ ! -f pixman-$PIXMAN_VERSION-done ] ; then
413       echo "Downloading, building, and installing pixman:"
414       [ -f pixman-$PIXMAN_VERSION.tar.gz ] || curl -O http://www.cairographics.org/releases/pixman-$PIXMAN_VERSION.tar.gz
415       gzcat pixman-$PIXMAN_VERSION.tar.gz | tar xf - || exit 1
416       cd pixman-$PIXMAN_VERSION
417       ./configure || exit 1
418       make $MAKE_BUILD_OPTS || exit 1
419       $DO_MAKE_INSTALL || exit 1
420       cd ..
421       touch pixman-$PIXMAN_VERSION-done
422   fi
423
424   #
425   # And now Cairo itself.
426   #
427   if [ ! -f cairo-$CAIRO_VERSION-done ] ; then
428       echo "Downloading, building, and installing Cairo:"
429       CAIRO_MAJOR_VERSION="`expr $CAIRO_VERSION : '\([0-9][0-9]*\).*'`"
430       CAIRO_MINOR_VERSION="`expr $CAIRO_VERSION : '[0-9][0-9]*\.\([0-9][0-9]*\).*'`"
431       CAIRO_DOTDOT_VERSION="`expr $CAIRO_VERSION : '[0-9][0-9]*\.[0-9][0-9]*\.\([0-9][0-9]*\).*'`"
432       if [[ $CAIRO_MAJOR_VERSION -gt 1 ||
433             $CAIRO_MINOR_VERSION -gt 12 ||
434            ($CAIRO_MINOR_VERSION -eq 12 && $CAIRO_DOTDOT_VERSION -ge 2) ]]
435       then
436         #
437         # Starting with Cairo 1.12.2, the tarballs are compressed with
438         # xz rather than gzip.
439         #
440           [ -f cairo-$CAIRO_VERSION.tar.xz ] || curl -O http://cairographics.org/releases/cairo-$CAIRO_VERSION.tar.xz || exit 1
441           xzcat cairo-$CAIRO_VERSION.tar.xz | tar xf - || exit 1
442       else
443           [ -f cairo-$CAIRO_VERSION.tar.gz ] || curl -O http://cairographics.org/releases/cairo-$CAIRO_VERSION.tar.gz || exit 1
444           gzcat cairo-$CAIRO_VERSION.tar.gz | tar xf - || exit 1
445       fi
446       cd cairo-$CAIRO_VERSION
447       #./configure --enable-quartz=no || exit 1
448       # Maybe follow http://cairographics.org/end_to_end_build_for_mac_os_x/
449       ./configure --enable-quartz=yes || exit 1
450       #
451       # We must avoid the version of libpng that comes with X11; the
452       # only way I've found to force that is to forcibly set INCLUDES
453       # when we do the build, so that this comes before CAIRO_CFLAGS,
454       # which has -I/usr/X11/include added to it before anything
455       # connected to libpng is.
456       #
457       INCLUDES="-I/usr/local/include/libpng15" make $MAKE_BUILD_OPTS || exit 1
458       $DO_MAKE_INSTALL || exit 1
459       cd ..
460       touch cairo-$CAIRO_VERSION-done
461   fi
462 fi
463
464 if [ ! -f atk-$ATK_VERSION-done ] ; then
465     echo "Downloading, building, and installing ATK:"
466     atk_dir=`expr $ATK_VERSION : '\([0-9][0-9]*\.[0-9][0-9]*\).*'`
467     [ -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
468     xzcat atk-$ATK_VERSION.tar.xz | tar xf - || exit 1
469     cd atk-$ATK_VERSION
470     ./configure || exit 1
471     make $MAKE_BUILD_OPTS || exit 1
472     $DO_MAKE_INSTALL || exit 1
473     cd ..
474     touch atk-$ATK_VERSION-done
475 fi
476
477 if [ ! -f pango-$PANGO_VERSION-done ] ; then
478     echo "Downloading, building, and installing Pango:"
479     pango_dir=`expr $PANGO_VERSION : '\([0-9][0-9]*\.[0-9][0-9]*\).*'`
480     PANGO_MAJOR_VERSION="`expr $PANGO_VERSION : '\([0-9][0-9]*\).*'`"
481     PANGO_MINOR_VERSION="`expr $PANGO_VERSION : '[0-9][0-9]*\.\([0-9][0-9]*\).*'`"
482     if [[ $PANGO_MAJOR_VERSION -gt 1 ||
483           $PANGO_MINOR_VERSION -ge 29 ]]
484     then
485         #
486         # Starting with Pango 1.29, the tarballs are compressed with
487         # xz rather than bzip2.
488         #
489         [ -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
490         xzcat pango-$PANGO_VERSION.tar.xz | tar xf - || exit 1
491     else
492         [ -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
493         gzcat pango-$PANGO_VERSION.tar.bz2 | tar xf - || exit 1
494     fi
495     cd pango-$PANGO_VERSION
496     ./configure || exit 1
497     make $MAKE_BUILD_OPTS || exit 1
498     $DO_MAKE_INSTALL || exit 1
499     cd ..
500     touch pango-$PANGO_VERSION-done
501 fi
502
503 if [ ! -f gdk-pixbuf-$GDK_PIXBUF_VERSION-done ] ; then
504     echo "Downloading, building, and installing gdk-pixbuf:"
505     gdk_pixbuf_dir=`expr $GDK_PIXBUF_VERSION : '\([0-9][0-9]*\.[0-9][0-9]*\).*'`
506     [ -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
507     xzcat gdk-pixbuf-$GDK_PIXBUF_VERSION.tar.xz | tar xf - || exit 1
508     cd gdk-pixbuf-$GDK_PIXBUF_VERSION
509     ./configure --without-libtiff --without-libjpeg || exit 1
510     make $MAKE_BUILD_OPTS || exit 1
511     $DO_MAKE_INSTALL || exit 1
512     cd ..
513     touch gdk-pixbuf-$GDK_PIXBUF_VERSION-done
514 fi
515
516 if [ ! -f gtk+-$GTK_VERSION-done ] ; then
517     echo "Downloading, building, and installing GTK+:"
518     gtk_dir=`expr $GTK_VERSION : '\([0-9][0-9]*\.[0-9][0-9]*\).*'`
519     GTK_MAJOR_VERSION="`expr $GTK_VERSION : '\([0-9][0-9]*\).*'`"
520     GTK_MINOR_VERSION="`expr $GTK_VERSION : '[0-9][0-9]*\.\([0-9][0-9]*\).*'`"
521     GTK_DOTDOT_VERSION="`expr $GTK_VERSION : '[0-9][0-9]*\.[0-9][0-9]*\.\([0-9][0-9]*\).*'`"
522     if [[ $GTK_MAJOR_VERSION -gt 2 ||
523           $GTK_MINOR_VERSION -gt 24 ||
524          ($GTK_MINOR_VERSION -eq 24 && $GTK_DOTDOT_VERSION -ge 5) ]]
525     then
526         #
527         # Starting with GTK+ 2.24.5, the tarballs are compressed with
528         # xz rather than gzip, in addition to bzip2; use xz, as we've
529         # built and installed it, and as xz compresses better than
530         # bzip2 so the tarballs take less time to download.
531         #
532         [ -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
533         xzcat gtk+-$GTK_VERSION.tar.xz | tar xf - || exit 1
534     else
535         [ -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
536         gzcat gtk+-$GTK_VERSION.tar.bz2 | tar xf - || exit 1
537     fi
538     cd gtk+-$GTK_VERSION
539     if [ $DARWIN_MAJOR_VERSION -ge "12" ]
540     then
541         #
542         # GTK+ 2.24.10, at least, doesn't build on Mountain Lion with the
543         # CUPS printing backend - either the CUPS API changed incompatibly
544         # or the backend was depending on non-API implementation details.
545         #
546         # Configure it out, on Mountain Lion and later, for now.
547         # (12 is the Darwin major version number in Mountain Lion.)
548         #
549         ./configure --disable-cups || exit 1
550     else
551         ./configure || exit 1
552     fi
553     make $MAKE_BUILD_OPTS || exit 1
554     $DO_MAKE_INSTALL || exit 1
555     cd ..
556     touch gtk+-$GTK_VERSION-done
557 fi
558
559 #
560 # Now we have reached a point where we can build everything including
561 # the GUI (Wireshark), but not with any optional features such as
562 # SNMP OID resolution, some forms of decryption, Lua scripting, playback
563 # of audio, or GeoIP mapping of IP addresses.
564 #
565 # We now conditionally download optional libraries to support them;
566 # the default is to download them all.
567 #
568
569 if [ "$LIBSMI_VERSION" -a ! -f libsmi-$LIBSMI_VERSION-done ] ; then
570         echo "Downloading, building, and installing libsmi:"
571         [ -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
572         gzcat libsmi-$LIBSMI_VERSION.tar.gz | tar xf - || exit 1
573         cd libsmi-$LIBSMI_VERSION
574         ./configure || exit 1
575         make $MAKE_BUILD_OPTS || exit 1
576         $DO_MAKE_INSTALL || exit 1
577         cd ..
578         touch libsmi-$LIBSMI_VERSION-done
579 fi
580
581 if [ "$LIBGPG_ERROR_VERSION" -a ! -f libgpg-error-$LIBGPG_ERROR_VERSION-done ] ; then
582         echo "Downloading, building, and installing libgpg-error:"
583         [ -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
584         bzcat libgpg-error-$LIBGPG_ERROR_VERSION.tar.bz2 | tar xf - || exit 1
585         cd libgpg-error-$LIBGPG_ERROR_VERSION
586         ./configure || exit 1
587         make $MAKE_BUILD_OPTS || exit 1
588         $DO_MAKE_INSTALL || exit 1
589         cd ..
590         touch libgpg-error-$LIBGPG_ERROR_VERSION-done
591 fi
592
593 if [ "$LIBGCRYPT_VERSION" -a ! -f libgcrypt-$LIBGCRYPT_VERSION-done ] ; then
594         #
595         # libgpg-error is required for libgcrypt.
596         #
597         if [ -z $LIBGPG_ERROR_VERSION ]
598         then
599                 echo "libgcrypt requires libgpg-error, but you didn't install libgpg-error." 1>&2
600                 exit 1
601         fi
602
603         echo "Downloading, building, and installing libgcrypt:"
604         [ -f libgcrypt-$LIBGCRYPT_VERSION.tar.gz ] || curl -L -O ftp://ftp.gnupg.org/gcrypt/libgcrypt/libgcrypt-$LIBGCRYPT_VERSION.tar.gz || exit 1
605         gzcat libgcrypt-$LIBGCRYPT_VERSION.tar.gz | tar xf - || exit 1
606         cd libgcrypt-$LIBGCRYPT_VERSION
607         #
608         # The assembler language code is not compatible with the OS X
609         # x86 assembler (or is it an x86-64 vs. x86-32 issue?).
610         #
611         # libgcrypt expects gnu89, not c99/gnu99, semantics for
612         # "inline".  See, for example:
613         #
614         #       http://lists.freebsd.org/pipermail/freebsd-ports-bugs/2010-October/198809.html
615         #
616         CFLAGS="$CFLAGS -std=gnu89" ./configure --disable-asm || exit 1
617         make $MAKE_BUILD_OPTS || exit 1
618         $DO_MAKE_INSTALL || exit 1
619         cd ..
620         touch libgcrypt-$LIBGCRYPT_VERSION-done
621 fi
622
623 if [ "$GNUTLS_VERSION" -a ! -f gnutls-$GNUTLS_VERSION-done ] ; then
624         #
625         # GnuTLS requires libgcrypt (or nettle, in newer versions).
626         #
627         if [ -z $LIBGCRYPT_VERSION ]
628         then
629                 echo "GnuTLS requires libgcrypt, but you didn't install libgcrypt" 1>&2
630                 exit 1
631         fi
632
633         echo "Downloading, building, and installing GnuTLS:"
634         [ -f gnutls-$GNUTLS_VERSION.tar.bz2 ] || curl -L -O http://ftp.gnu.org/gnu/gnutls/gnutls-$GNUTLS_VERSION.tar.bz2 || exit 1
635         bzcat gnutls-$GNUTLS_VERSION.tar.bz2 | tar xf - || exit 1
636         cd gnutls-$GNUTLS_VERSION
637         #
638         # Use libgcrypt, not nettle.
639         # XXX - is there some reason to prefer nettle?  Or does
640         # Wireshark directly use libgcrypt routines?
641         #
642         ./configure --with-libgcrypt --without-p11-kit || exit 1
643         make $MAKE_BUILD_OPTS || exit 1
644         #
645         # The pkgconfig file for GnuTLS says "requires zlib", but OS X,
646         # while it supplies zlib, doesn't supply a pkgconfig file for
647         # it.
648         #
649         # Patch the GnuTLS pkgconfig file not to require zlib.
650         # (If the capabilities of GnuTLS that Wireshark uses don't
651         # depend on building GnuTLS with zlib, an alternative would be
652         # to configure it not to use zlib.)
653         #
654         patch -p0 lib/gnutls.pc.in <../../macosx-support-lib-patches/gnutls-pkgconfig.patch || exit 1
655         $DO_MAKE_INSTALL || exit 1
656         cd ..
657         touch gnutls-$GNUTLS_VERSION-done
658 fi
659
660 if [ "$LUA_VERSION" -a ! -f lua-$LUA_VERSION-done ] ; then
661         echo "Downloading, building, and installing Lua:"
662         [ -f lua-$LUA_VERSION.tar.gz ] || curl -L -O http://www.lua.org/ftp/lua-$LUA_VERSION.tar.gz || exit 1
663         gzcat lua-$LUA_VERSION.tar.gz | tar xf - || exit 1
664         cd lua-$LUA_VERSION
665         make $MAKE_BUILD_OPTS macosx || exit 1
666         $DO_MAKE_INSTALL || exit 1
667         cd ..
668         touch lua-$LUA_VERSION-done
669 fi
670
671 if [ "$PORTAUDIO_VERSION" -a ! -f portaudio-done ] ; then
672         echo "Downloading, building, and installing PortAudio:"
673         [ -f $PORTAUDIO_VERSION.tgz ] || curl -L -O http://www.portaudio.com/archives/$PORTAUDIO_VERSION.tgz || exit 1
674         gzcat $PORTAUDIO_VERSION.tgz | tar xf - || exit 1
675         cd portaudio
676         #
677         # Un-comment an include that's required on Lion.
678         #
679         patch -p0 include/pa_mac_core.h <../../macosx-support-lib-patches/portaudio-pa_mac_core.h.patch
680         #
681         # Fix a bug that showed up with clang (but is a bug with any
682         # compiler).
683         #
684         patch -p0 src/hostapi/coreaudio/pa_mac_core.c <../../macosx-support-lib-patches/portaudio-pa_mac_core.c.patch
685         #
686         # Disable fat builds - the configure script doesn't work right
687         # with Xcode 4 if you leave them enabled, and we don't build
688         # any other libraries fat (GLib, for example, would be very
689         # hard to build fat), so there's no advantage to having PortAudio
690         # built fat.
691         #
692         # Set the minimum OS X version to 10.4, to suppress some
693         # deprecation warnings.
694         #
695         CFLAGS="$CFLAGS -mmacosx-version-min=10.4" ./configure --disable-mac-universal || exit 1
696         make $MAKE_BUILD_OPTS || exit 1
697         $DO_MAKE_INSTALL || exit 1
698         cd ..
699         touch portaudio-done
700 fi
701
702 if [ "$GEOIP_VERSION" -a ! -f geoip-$GEOIP_VERSION-done ]
703 then
704         echo "Downloading, building, and installing GeoIP API:"
705         [ -f GeoIP-$GEOIP_VERSION.tar.gz ] || curl -L -O http://geolite.maxmind.com/download/geoip/api/c/GeoIP-$GEOIP_VERSION.tar.gz || exit 1
706         gzcat GeoIP-$GEOIP_VERSION.tar.gz | tar xf - || exit 1
707         cd GeoIP-$GEOIP_VERSION
708         ./configure || exit 1
709         #
710         # Grr.  Their man pages "helpfully" have an ISO 8859-1
711         # copyright symbol in the copyright notice, but OS X's
712         # default character encoding is UTF-8.  sed on Mountain
713         # Lion barfs at the "illegal character sequence" represented
714         # by an ISO 8859-1 copyright symbol, as it's not a valid
715         # UTF-8 sequence.
716         #
717         # iconv the relevant man pages into UTF-8.
718         #
719         for i in geoipupdate.1.in geoiplookup6.1.in geoiplookup.1.in
720         do
721                 iconv -f iso8859-1 -t utf-8 man/"$i" >man/"$i".tmp &&
722                     mv man/"$i".tmp man/"$i"
723         done
724         make $MAKE_BUILD_OPTS || exit 1
725         $DO_MAKE_INSTALL || exit 1
726         cd ..
727         touch geoip-$GEOIP_VERSION-done
728 fi
729
730 echo ""
731
732 echo "You are now prepared to build Wireshark. To do so do:"
733 echo "export PKG_CONFIG_PATH=/usr/local/lib/pkgconfig:/usr/X11/lib/pkgconfig"
734 echo ""
735 if [ -n "$CMAKE" ]; then
736   echo "mkdir build; cd build"
737   echo "cmake .."
738   echo
739   echo "or"
740   echo
741 fi
742 echo "./autogen.sh"
743 echo "mkdir build; cd build"
744 echo "../configure"
745 echo ""
746 echo "make $MAKE_BUILD_OPTS"
747 echo "make install"
748
749 echo ""
750
751 echo "Make sure you are allowed capture access to the network devices"
752 echo "See: http://wiki.wireshark.org/CaptureSetup/CapturePrivileges"
753
754 echo ""
755
756 exit 0