Replace all strerror() with g_strerror().
[obnox/wireshark/wip.git] / configure.in
1 # $Id$
2 #
3 AC_PREREQ(2.60)
4
5 AC_INIT(wireshark, 1.7.0)
6
7 dnl Check for CPU / vendor / OS
8 dnl The user is encouraged to use either `AC_CANONICAL_BUILD', or
9 dnl `AC_CANONICAL_HOST', or `AC_CANONICAL_TARGET', depending on the
10 dnl needs.  Using `AC_CANONICAL_TARGET' is enough to run the two other
11 dnl macros.
12 dnl
13 dnl As nothing in the Wireshark is itself a build tool (we are not,
14 dnl for example, a compiler that generates machine code), we probably
15 dnl don't need AC_CANONICAL_TARGET, so, in theory, we should be able
16 dnl to use AC_CANONICAL_BUILD and AC_CANONICAL_HOST - or perhaps just
17 dnl AC_CANONICAL_HOST - instead.  Note that we do have tools, such as
18 dnl lemon, that need to be built for the build machine, not for the
19 dnl host machine, so we might need both.
20 dnl
21 dnl This has to be done *after* AC_INIT, otherwise autogen.sh fails.
22
23 dnl AC_CANONICAL_BUILD
24 dnl AC_CANONICAL_HOST
25 AC_CANONICAL_TARGET
26
27 AM_INIT_AUTOMAKE([1.9 tar-ustar dist-bzip2 no-dist-gzip])
28
29 AM_DISABLE_STATIC
30
31 dnl Checks for programs.
32 AC_PROG_CC
33 AM_PROG_CC_C_O
34 AC_PROG_CXX
35 AC_PROG_CPP
36 dnl Work around libtool bug (fixed in the version 1.5a?)
37 AC_DEFUN([AC_PROVIDE_AC_LIBTOOL_DLOPEN], )
38 AC_LIBTOOL_DLOPEN
39 AC_PROG_LIBTOOL
40 AC_PATH_PROG(PERL, perl)
41 #
42 # XXX - should autogen.sh check for YACC/Bison and Flex?  A user building
43 # from a distribution tarball shouldn't have to have YACC/Bison or Flex,
44 # as the tarball should contain the results of running YACC/Bison on .y
45 # files and running Flex on .l files, but a user building from SVN
46 # will have to run YACC/Bison and Flex to process those files.
47 #
48 # On the other hand, what about users who use a distribution tarball to
49 # do development?  They *shouldn't* - that's what the SVN repository is
50 # for - but they might.  They'd get errors if they modify a .y or .l
51 # file and try to do a build - but the error should tell them that they
52 # need to get YACC/Bison and/or Flex.
53 #
54 # Then again, getting them shouldn't be too big of a burden.
55 #
56 # XXX - is the same true of pod2man and pod2html, or are they needed
57 # even when building from a distribution tarball?
58 #
59 #
60 AC_PROG_YACC
61 AC_PATH_PROG(YACCDUMMY, $YACC)
62 if test "x$YACCDUMMY" = x
63 then
64         AC_MSG_ERROR(I couldn't find yacc (or bison or ...); make sure it's installed and in your path)
65 fi
66 AM_PROG_LEX
67 AC_PATH_PROG(LEX, flex)
68 if test "x$LEX" = x
69 then
70         AC_MSG_ERROR(I couldn't find flex; make sure it's installed and in your path)
71 fi
72 AC_PATH_PROG(POD2MAN, pod2man)
73 if test "x$POD2MAN" = x
74 then
75         #
76         # The alternative is not to build the man pages....
77         #
78         AC_MSG_ERROR(I couldn't find pod2man; make sure it's installed and in your path)
79 fi
80 AC_PATH_PROG(POD2HTML, pod2html)
81 if test "x$POD2HTML" = x
82 then
83         #
84         # The alternative is not to build the HTML man pages....
85         #
86         AC_MSG_ERROR(I couldn't find pod2html; make sure it's installed and in your path)
87 fi
88
89 #
90 # XXX - this looks for various HTML viewers on the host, not the target;
91 # we really want to know what's available on the target, for cross-builds.
92 # That would probably require us to, at run time, look for xdg-open and,
93 # if we don't find it, look for mozilla, htmlview, etc.
94 #
95 AC_PATH_PROG(HTML_VIEWER, xdg-open)
96 if test "x$HTML_VIEWER" != x
97 then
98         #
99         # XXX - the HTML_VIEWER shell variable is the full path of xdg-open.
100         # Define some variable to be that, so we just run that?
101         #
102         AC_DEFINE(HAVE_XDG_OPEN, 1, [Define if we have xdg-open])
103
104         #
105         # XXX - we have to define HTML_VIEWER for the prefs.c code that
106         # sets the default value of the Web browser preference, even
107         # though that preference won't be offered.
108         #
109         AC_DEFINE_UNQUOTED(HTML_VIEWER, "xdg-open", [HTML viewer, e.g. mozilla])
110 else
111         AC_PATH_PROG(HTML_VIEWER, htmlview)
112         if test "x$HTML_VIEWER" = x
113         then
114                 AC_DEFINE_UNQUOTED(HTML_VIEWER, "mozilla", [HTML viewer, e.g. mozilla])
115         else
116                 AC_DEFINE_UNQUOTED(HTML_VIEWER, "htmlview", [HTML viewer, e.g. mozilla])
117         fi
118 fi
119
120 AC_PATH_PROG(PYTHON, python)
121
122 AC_SUBST(PERL)
123 AC_SUBST(LEX)
124 AC_SUBST(POD2MAN)
125 AC_SUBST(POD2HTML)
126 AC_SUBST(PYTHON)
127 AC_SUBST(XSLTPROC)
128 AC_SUBST(XMLLINT)
129
130 #
131 # Set "ac_supports_gcc_flags" if the compiler is known to support GCC-style
132 # flags such as -pedantic, -W warning flags and -f feature flags.  Currently,
133 # we assume GCC and clang do; other compilers should be added here.
134 #
135 # This is done to avoid getting tripped up by compilers that support
136 # those flags but give them a different meaning.
137 #
138 if test "x$GCC" = "xyes" -o "x$CC" = "xclang" ; then
139         ac_supports_gcc_flags=yes
140 fi
141
142 #
143 # Set "ac_supports_W_linker_passthrough" if the compiler is known to
144 # support "-Wl,{options}" to pass options through to the linker.
145 # Currently, we assume GCC, xlc, and clang do; other compilers should
146 # be added here.
147 #
148 if test "x$GCC" = "xyes" -o "x$CC" = "xxlc" -o "x$CC" = "xclang" ; then
149         ac_supports_W_linker_passthrough=yes
150 fi
151
152 #
153 # Set "ac_supports_attribute_unused" if the compiler is known to
154 # support "__attribute__(unused)".
155 # Currently, we assume GCC and clang do; other compilers should
156 # be added here.
157 #
158 # XXX - do this with a compiler test?
159 #
160 if test "x$GCC" = "xyes" -o "x$CC" = "xclang" ; then
161         ac_supports_W_linker_passthrough=yes
162 fi
163
164 if test "x$CC_FOR_BUILD" = x
165 then
166        CC_FOR_BUILD=$CC
167 fi
168 AC_SUBST(CC_FOR_BUILD)
169
170 # Check for doxygen
171 AC_PATH_PROG(DOXYGEN, doxygen)
172 AC_CHECK_PROG(HAVE_DOXYGEN, doxygen, "yes", "no")
173 AM_CONDITIONAL(HAVE_DOXYGEN, test x$HAVE_DOXYGEN = xyes)
174
175 #
176 # Try to arrange for large file support.
177 #
178 AC_SYS_LARGEFILE
179
180 # gnu tls
181 tls_message="no"
182 AC_ARG_WITH([gnutls],
183   AC_HELP_STRING( [--with-gnutls=@<:@yes/no@:>@],
184                   [use gnutls library @<:@default=yes@:>@]),
185   with_gnutls="$withval", with_gnutls="yes")
186 if test "x$with_gnutls" = "xyes"; then
187   PKG_CHECK_MODULES([LIBGNUTLS], [gnutls >= 1.2.0],
188         [
189                 echo "gnuTLS found, enabling ssl decryption"
190                 AC_DEFINE(HAVE_LIBGNUTLS, 1, [Define to use gnutls library])
191                 tls_message="yes"
192         ]
193         , [
194                 echo "gnuTLS not found, disabling ssl decryption"
195                 tls_message="no"
196         ]
197   )
198 fi
199
200 # libgrypt
201 gcrypt_message="no"
202 AC_ARG_WITH([gcrypt],
203   AC_HELP_STRING( [--with-gcrypt=@<:@yes/no@:>@],
204                   [use gcrypt library @<:@default=yes@:>@]),
205   with_gcrypt="$withval", with_gcrypt="yes")
206 if test "x$with_gcrypt" = "xyes"; then
207   AM_PATH_LIBGCRYPT(1.1.92,
208         [
209                 echo "libgcrypt found, enabling ipsec decryption"
210                 AC_DEFINE(HAVE_LIBGCRYPT, 1, [Define to use libgcrypt])
211                 gcrypt_message="yes"
212         ]
213         , [
214                 if test x$libgcrypt_config_prefix != x ; then
215                         AC_MSG_ERROR([[libgcrypt not found; install libgcrypt-devel package for your system]])
216                 else
217                         echo "libgcrypt not found, disabling ipsec decryption"
218                         gcrypt_message="no"
219                 fi
220         ]
221   )
222 fi
223
224 AC_ARG_WITH([gtk3],
225   AC_HELP_STRING( [--with-gtk3=@<:@yes/no@:>@],
226                   [use GTK+ 3.0 instead of 2.0 @<:@default=no@:>@]),
227   with_gtk3="$withval", with_gtk="no")
228
229
230 # libsmi
231 # FIXME: currently the path argument to with-libsmi is being ignored
232 AX_LIBSMI
233
234 # Check for xsltproc
235 AC_PATH_PROG(XSLTPROC, xsltproc)
236 AC_CHECK_PROG(HAVE_XSLTPROC, xsltproc, "yes", "no")
237 AM_CONDITIONAL(HAVE_XSLTPROC, test x$HAVE_XSLTPROC = xyes)
238
239 # Check for xmllint
240 AC_PATH_PROG(XMLLINT, xmllint)
241 AC_CHECK_PROG(HAVE_XMLLINT, xmllint, "yes", "no")
242 AM_CONDITIONAL(HAVE_XMLLINT, test x$HAVE_XMLLINT = xyes)
243
244 # Check for fop (translate .fo to e.g. pdf)
245 AC_PATH_PROG(FOP, fop)
246 AC_CHECK_PROG(HAVE_FOP, fop, "yes", "no")
247 AM_CONDITIONAL(HAVE_FOP, test x$HAVE_FOP = xyes)
248
249 #
250 # Look for something to convert HTML to text (for docbook/)
251 #
252 AC_PATH_PROG(ELINKS, elinks)
253 AC_CHECK_PROG(HAVE_ELINKS, elinks, "yes", "no")
254 AM_CONDITIONAL(HAVE_ELINKS, test x$HAVE_ELINKS = xyes)
255
256 ## links: Fails as used in docbook/Makefile.am
257 ## (Rather than fixing things we'll just disable the use of links).
258 ##AC_PATH_PROG(LINKS, links)
259 ##AC_CHECK_PROG(HAVE_LINKS, links, "yes", "no")
260 ##AM_CONDITIONAL(HAVE_LINKS, test x$HAVE_LINKS = xyes)
261
262 AC_PATH_PROG(LYNX, lynx)
263 AC_CHECK_PROG(HAVE_LYNX, lynx, "yes", "no")
264 AM_CONDITIONAL(HAVE_LYNX, test x$HAVE_LYNX = xyes)
265
266
267 # Check for hhc (html help compiler)
268 AC_PATH_PROG(HHC, hhc.exe)
269 AC_CHECK_PROG(HAVE_HHC, hhc.exe, "yes", "no")
270 AM_CONDITIONAL(HAVE_HHC, test x$HAVE_HHC = xyes)
271
272 # Check for packaging utilities
273 # For now, we check to see if the various packaging utilites are in our
274 # path.  I'm too lazy to write code to go hunt for them.  -  Gerald
275
276 # SVR4/Solaris
277 AC_CHECK_PROG(HAVE_PKGPROTO, pkgproto, "yes", "no")
278 AC_CHECK_PROG(HAVE_PKGMK, pkgmk, "yes", "no")
279 AC_CHECK_PROG(HAVE_PKGTRANS, pkgtrans, "yes", "no")
280
281 if test x$HAVE_PKGPROTO = xyes -a x$HAVE_PKGMK = xyes \
282      -a x$HAVE_PKGTRANS = xyes ; then
283   HAVE_SVR4_PACKAGING=yes
284 else
285   HAVE_SVR4_PACKAGING=no
286 fi
287 AC_SUBST(HAVE_SVR4_PACKAGING)
288
289 # RPM
290 AC_WIRESHARK_RPM_CHECK
291 AC_SUBST(HAVE_RPM)
292
293 # Debian
294 AC_CHECK_PROG(HAVE_DPKG_BUILDPACKAGE, dpkg-buildpackage, "yes", "no")
295
296 # Mac OS X
297 AC_CHECK_PROG(HAVE_XCODEBUILD, xcodebuild, "yes", "no")
298 AC_CHECK_PROG(HAVE_HDIUTIL, hdiutil, "yes", "no")
299 AC_CHECK_PROG(HAVE_BLESS, bless, "yes", "no")
300
301 if test x$HAVE_XCODEBUILD = xyes -a x$HAVE_HDIUTIL = xyes \
302      -a x$HAVE_BLESS = xyes ; then
303   HAVE_OSX_PACKAGING=yes
304 else
305   HAVE_OSX_PACKAGING=no
306 fi
307 AC_SUBST(HAVE_OSX_PACKAGING)
308
309 #
310 # Try to add some additional gcc checks to CFLAGS
311 #
312 AC_ARG_ENABLE(extra-gcc-checks,
313   AC_HELP_STRING( [--enable-extra-gcc-checks],
314                   [Do additional -W checks in GCC.  @<:@default=no@:>@]),
315 [
316         wireshark_extra_gcc_flags=$enableval
317         if test $enableval != no
318         then
319                 AC_WIRESHARK_GCC_CFLAGS_CHECK(-pedantic)
320                 AC_WIRESHARK_GCC_CFLAGS_CHECK(-Woverflow)
321                 AC_WIRESHARK_GCC_CFLAGS_CHECK(-Wlogical-op)
322                 AC_WIRESHARK_GCC_CFLAGS_CHECK(-Wno-overlength-strings)
323 #               AC_WIRESHARK_GCC_CFLAGS_CHECK(-fstrict-overflow -Wstrict-overflow=4)
324 #               AC_WIRESHARK_GCC_CFLAGS_CHECK(-Wunreachable-code)
325 #               AC_WIRESHARK_GCC_CFLAGS_CHECK(-Wunsafe-loop-optimizations)
326                 AC_WIRESHARK_GCC_CFLAGS_CHECK(-Wno-long-long)
327                 AC_WIRESHARK_GCC_CFLAGS_CHECK(-Wbad-function-cast)
328                 AC_WIRESHARK_GCC_CFLAGS_CHECK(-Wcast-qual)
329                 AC_WIRESHARK_GCC_CFLAGS_CHECK(-Waddress)
330                 AC_WIRESHARK_GCC_CFLAGS_CHECK(-Wattributes)
331                 AC_WIRESHARK_GCC_CFLAGS_CHECK(-Wdiv-by-zero)
332                 AC_WIRESHARK_GCC_CFLAGS_CHECK(-Wformat-security)
333                 AC_WIRESHARK_GCC_CFLAGS_CHECK(-Wignored-qualifiers)
334                 AC_WIRESHARK_GCC_CFLAGS_CHECK(-Wpragmas)
335                 AC_WIRESHARK_GCC_CFLAGS_CHECK(-Wredundant-decls)
336                 AC_WIRESHARK_GCC_CFLAGS_CHECK(-Wvla)
337                 AC_WIRESHARK_GCC_CFLAGS_CHECK(-Wc++-compat)
338                 AC_WIRESHARK_GCC_CFLAGS_CHECK(-Wjump-misses-init)
339                 #
340                 # epan/dissectors/packet-ncp2222.inc blocks this one
341                 # for now.
342                 #
343                 AC_WIRESHARK_GCC_CFLAGS_CHECK(-Wwrite-strings)
344                 #
345                 # GLib blocks this for now.
346                 #
347                 AC_WIRESHARK_GCC_CFLAGS_CHECK(-Wstrict-prototypes)
348                 #
349                 # All the registration functions block these for now.
350                 #
351                 AC_WIRESHARK_GCC_CFLAGS_CHECK(-Wmissing-prototypes)
352                 AC_WIRESHARK_GCC_CFLAGS_CHECK(-Wmissing-declarations)
353                 #
354                 # epan/dissectors/packet-afs.c blocks this one for now.
355                 #
356                 AC_WIRESHARK_GCC_CFLAGS_CHECK(-Wshadow)
357                 #
358                 # More cleanup needed for this on LP64.
359                 #
360                 AC_WIRESHARK_GCC_CFLAGS_CHECK(-Wshorten-64-to-32)
361         fi
362 ],)
363 AC_WIRESHARK_GCC_CFLAGS_CHECK(-Wall -W) # -W is now known as -Wextra
364 AC_WIRESHARK_GCC_CFLAGS_CHECK(-Wextra) # -W is now known as -Wextra
365 AC_WIRESHARK_GCC_CFLAGS_CHECK(-Wdeclaration-after-statement)
366 AC_WIRESHARK_GCC_CFLAGS_CHECK(-Wendif-labels)
367 AC_WIRESHARK_GCC_CFLAGS_CHECK(-Wpointer-arith)
368 AC_WIRESHARK_GCC_CFLAGS_CHECK(-Wno-pointer-sign)
369 AC_WIRESHARK_GCC_CFLAGS_CHECK(-Warray-bounds)
370 AC_WIRESHARK_GCC_CFLAGS_CHECK(-Wcast-align)
371 AC_WIRESHARK_GCC_CFLAGS_CHECK(-Wformat-security)
372 AC_WIRESHARK_GCC_CFLAGS_CHECK(-Wold-style-definition)
373
374 #
375 # Use the faster pre gcc 4.5 floating point precision if available;
376 # clang doesn't error out on -f options that it doesn't know about,
377 # it just warns and ignores them, so this check doesn't cause us
378 # to omit -fexcess-precision=fast, which produces a pile of
379 # annoying warnings.
380 #
381 if test "x$CC" != "xclang" ; then
382 AC_WIRESHARK_GCC_CFLAGS_CHECK(-fexcess-precision=fast)
383 fi
384
385 AC_WIRESHARK_LDFLAGS_CHECK([-Wl,--as-needed])
386 ###AC_WIRESHARK_LDFLAGS_CHECK([-Wl,-M])
387 ###AC_WIRESHARK_LDFLAGS_CHECK([-Wl,--cref])
388 # AC_WIRESHARK_LDFLAGS_CHECK([-flto])
389 # AC_WIRESHARK_LDFLAGS_CHECK([-fwhopr])
390 # AC_WIRESHARK_LDFLAGS_CHECK([-fwhole-program])
391
392 #
393 # If we're running GCC or clang, add '-D_U_="__attribute__((unused))"' to
394 # CFLAGS as well, so we can use _U_ to flag unused function arguments and
395 # not get warnings about them. Otherwise, add '-D_U_=""', so that _U_ used
396 # to flag an unused function argument will compile with non-GCC, non-clang
397 # compilers.
398 #
399 # XXX - other compilers?
400 #
401 if test "x$GCC" = "xyes" -o "x$CC" = "xclang" ; then
402   CFLAGS="-D_U_=\"__attribute__((unused))\" $CFLAGS"
403 else
404   CFLAGS="-D_U_=\"\" $CFLAGS"
405 fi
406
407 #
408 # If the compiler supports GCC-style flags, enable a barrier "stop on
409 # warning".
410 # This barrier is set for a very large part of the code. However, it is
411 # typically not set for "generated" code  (flex, ans2wrs, idl2wrs, ...)
412 #
413 warnings_as_errors_default="yes"
414 AC_MSG_CHECKING(whether we should treat compiler warnings as errors)
415 AC_ARG_ENABLE(warnings-as-errors,
416   AC_HELP_STRING( [--enable-warnings-as-errors],
417                   [Treat warnings as errors (only for GCC or clang). @<:@default=yes@:>@]),
418 [
419   if test "x$ac_supports_gcc_flags" = "xyes" -a "x$enableval" = "xyes" -a "x$wireshark_extra_gcc_flags" != "xyes"; then
420     with_warnings_as_errors="yes"
421     AC_MSG_RESULT(yes)
422   else
423     with_warnings_as_errors="no"
424     AC_MSG_RESULT(no)
425   fi
426 ],
427   if test "x$ac_supports_gcc_flags" = "xyes" -a "x$wireshark_extra_gcc_flags" = "x" -a "x$warnings_as_errors_default" = "xyes"; then
428     with_warnings_as_errors="yes"
429     AC_MSG_RESULT(yes)
430   else
431     with_warnings_as_errors="no"
432     AC_MSG_RESULT(no)
433   fi
434 )
435 AM_CONDITIONAL(HAVE_WARNINGS_AS_ERRORS, test "x$with_warnings_as_errors" = "xyes")
436
437 #
438 # Add any platform-specific compiler flags needed.
439 #
440 AC_MSG_CHECKING(for platform-specific compiler flags)
441 if test "x$GCC" = "xyes" ; then
442         #
443         # GCC - do any platform-specific tweaking necessary.
444         #
445         case "$host_os" in
446         solaris*)
447                 # the X11 headers don't automatically include prototype info
448                 # and a lot don't include the return type
449                 CFLAGS="$CFLAGS -Wno-return-type -DFUNCPROTO=15"
450                 AC_MSG_RESULT(GCC on Solaris - added -Wno-return-type -DFUNCPROTO=15)
451                 ;;
452         darwin*)
453                 #
454                 # See comments above about Apple's lovely C compiler.
455                 #
456                 # NOTE: to AC_PROG_CC, "GCC" means "any compiler that
457                 # defines __GNUC__"; clang defines __GNUC__, so that
458                 # means we think clang is GCC.
459                 #
460                 # clang whines about -no-cpp-precomp being unused
461                 # so we check whether this is really clang, and
462                 # only add -no-cpp-precomp if it's not.
463                 #
464                 if test "x$CC" != "xclang" ; then
465                         CFLAGS="-no-cpp-precomp $CFLAGS"
466                         AC_MSG_RESULT(Apple GCC - added -no-cpp-precomp)
467                 else
468                         #
469                         # Clang, clang, clang went the trolley....
470                         #
471                         AC_MSG_RESULT(none needed)
472                 fi
473                 ;;
474         *)
475                 AC_MSG_RESULT(none needed)
476                 ;;
477         esac
478 else
479         #
480         # Not GCC - assume it's the vendor's compiler.
481         #
482         case "$host_os" in
483         hpux*)
484                 #
485                 # HP's ANSI C compiler; flags suggested by Jost Martin.
486                 # "-Ae" for ANSI C plus extensions such as "long long".
487                 # "+O2", for optimization.  XXX - works with "-g"?
488                 #
489                 CFLAGS="-Ae +O2 $CFLAGS"
490                 AC_MSG_RESULT(HP ANSI C compiler - added -Ae +O2)
491                 ;;
492         darwin*)
493                 #
494                 # It may be called "cc", but it's really a GCC derivative
495                 # with a problematic special precompiler and precompiled
496                 # headers; turn off the special precompiler, as some
497                 # apparently-legal code won't compile with its precompiled
498                 # headers.
499                 #
500                 # On the other hand, if it's called "clang", it's not a
501                 # GCC derivative, and it whines if you pass it
502                 # -no-cpp-precomp.
503                 #
504                 # XXX - is there any version of autoconf we support
505                 # where it uses another way to decide if the compiler
506                 # is GCC or not?
507                 #
508                 if test "x$CC" != "xclang" ; then
509                         CFLAGS="-no-cpp-precomp $CFLAGS"
510                         AC_MSG_RESULT(Apple CC - added -no-cpp-precomp)
511                 else
512                         #
513                         # Clang, clang, clang went the trolley....
514                         #
515                         AC_MSG_RESULT(none needed)
516                 fi
517                 ;;
518         *)
519                 AC_MSG_RESULT(none needed)
520                 ;;
521         esac
522 fi
523
524 #
525 # Add any platform-specific linker flags needed.
526 #
527 AC_MSG_CHECKING(for platform-specific linker flags)
528 case "$host_os" in
529 darwin*)
530         #
531         # Add -Wl,-single_module to the LDFLAGS used with shared
532         # libraries, to fix some error that show up in some cases;
533         # some Apple documentation recommends it for most shared
534         # libraries.
535         #
536         LDFLAGS_SHAREDLIB="-Wl,-single_module"
537         #
538         # Add -Wl,-search_paths_first to make sure that if we search
539         # directories A and B, in that order, for a given library, a
540         # non-shared version in directory A, rather than a shared
541         # version in directory B, is chosen (so we can use
542         # --with-pcap=/usr/local to force all programs to be linked
543         # with a static version installed in /usr/local/lib rather than
544         # the system version in /usr/lib).
545         #
546         LDFLAGS="-Wl,-search_paths_first $LDFLAGS"
547         AC_MSG_RESULT([Apple linker - added -Wl,-single_module and -Wl,-search_paths_first])
548         ;;
549 cygwin*)
550         #
551         # Shared libraries in cygwin/Win32 must never contain
552         # undefined symbols.
553         #
554         LDFLAGS="$LDFLAGS -no-undefined"
555         AC_MSG_RESULT(CygWin GNU ld - added -no-undefined)
556         ;;
557 *)
558         AC_MSG_RESULT(none needed)
559         ;;
560 esac
561 AC_SUBST(LDFLAGS_SHAREDLIB)
562
563 # Control silent compiling
564 m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([no])])
565
566 #
567 # On OS X, if we find the headers for Core Foundation, Launch Services,
568 # and Core Services, add -framework options to link with Application
569 # Services (of which Launch Services is a subframework), Core Foundation
570 # (required by the Launch Services APIs), and Core Services, so we can
571 # use them to launch a Web browser from the Help menu and to use
572 # Gestalt() to get the Mac OS X version number.
573 #
574 case "$host_os" in
575
576 darwin*)
577         AC_MSG_CHECKING([whether we can build with Core Foundation, Launch Services, and Core Services])
578         ac_save_LIBS="$LIBS"
579         ac_coreservices_frameworks="-framework CoreServices"
580         ac_launchservices_frameworks="-framework ApplicationServices -framework CoreFoundation $ac_coreservices_frameworks"
581         LIBS="$LIBS $ac_launchservices_frameworks $ac_coreservices_frameworks"
582         AC_TRY_LINK(
583            [
584 #       include <CoreFoundation/CFBase.h>
585 #       include <CoreFoundation/CFString.h>
586 #       include <CoreFoundation/CFURL.h>
587 #       include <ApplicationServices/ApplicationServices.h>
588 #       include <CoreServices/CoreServices.h>
589            ],
590            [
591         CFStringRef url_CFString;
592         CFURLRef url_CFURL;
593         OSStatus status;
594         long os_version;
595
596         url_CFString = CFStringCreateWithCString(NULL, "", kCFStringEncodingASCII);
597         url_CFURL = CFURLCreateWithString(NULL, url_CFString, NULL);
598         status = LSOpenCFURLRef(url_CFURL, NULL);
599
600         Gestalt(gestaltSystemVersion, &os_version);
601            ],
602            ac_cv_can_use_osx_frameworks=yes,
603            ac_cv_can_use_osx_frameworks=no,
604            [echo $ac_n "cross compiling; assumed OK... $ac_c"])
605         if test "$ac_cv_can_use_osx_frameworks" = yes ; then
606                 AC_DEFINE(HAVE_OS_X_FRAMEWORKS, 1, [Define to 1 if you have OS X frameworks])
607                 CORESERVICES_FRAMEWORKS="$ac_coreservices_frameworks"
608                 LAUNCHSERVICES_FRAMEWORKS="$ac_launchservices_frameworks"
609                 AC_MSG_RESULT(yes)
610         else
611                 AC_MSG_RESULT(no)
612         fi
613         LIBS="$ac_save_LIBS"
614         ;;
615 esac
616 AC_SUBST(CORESERVICES_FRAMEWORKS)
617 AC_SUBST(LAUNCHSERVICES_FRAMEWORKS)
618
619 #
620 # If using $prefix we add "$prefix/include" to the include search path
621 # and "$prefix/lib" to the library search path.
622 #
623 if test "x$prefix" != "x" ; then
624         AC_MSG_CHECKING(whether to use $prefix for headers and libraries)
625         if test -d $prefix/include ; then
626                 AC_MSG_RESULT(yes)
627                 #
628                 # Arrange that we search for header files in "$prefix/include", as
629                 # various packages we use may have been installed under "$prefix/include".
630                 #
631                 CFLAGS="$CFLAGS -I$prefix/include"
632                 CPPFLAGS="$CPPFLAGS -I$prefix/include"
633
634                 #
635                 # Arrange that we search for libraries in "$prefix/lib".
636                 #
637                 AC_WIRESHARK_ADD_DASH_L(LDFLAGS, $prefix/lib)
638         else
639                 AC_MSG_RESULT(no)
640         fi
641 fi
642
643 dnl Look in /usr/local for header files and libraries ?
644 dnl XXX FIXME don't include /usr/local if it is already in the system
645 dnl search path as this causes gcc 3.2 on Linux to complain about a change
646 dnl of the system search order for includes
647 AC_ARG_ENABLE(usr-local,
648   AC_HELP_STRING( [--enable-usr-local],
649                   [look for headers and libs in /usr/local tree.  @<:@default=yes@:>@]),
650     ac_cv_enable_usr_local=$enableval,ac_cv_enable_usr_local=yes)
651
652 AC_MSG_CHECKING(whether to use /usr/local for headers and libraries)
653 if test "x$ac_cv_enable_usr_local" = "xyes" ; then
654         if test -d "/usr/local"; then
655                 AC_MSG_RESULT(yes)
656                 #
657                 # Arrange that we search for header files in the source directory
658                 # and in its "wiretap" subdirectory, as well as in "/usr/local/include",
659                 # as various packages we use ("libpcap", "zlib", "adns", "pcre")
660                 # may have been installed under "/usr/local/include".
661                 #
662                 CFLAGS="$CFLAGS -I/usr/local/include"
663                 CPPFLAGS="$CPPFLAGS -I/usr/local/include"
664
665                 #
666                 # Arrange that we search for libraries in "/usr/local/lib".
667                 #
668                 AC_WIRESHARK_ADD_DASH_L(LDFLAGS, /usr/local/lib)
669         else
670                 AC_MSG_RESULT(no)
671         fi
672 else
673         AC_MSG_RESULT(no)
674 fi
675
676 #
677 # If we're running Solaris, and LD_LIBRARY_PATH is defined, add it as a
678 # link directory.
679 #
680 case "$host_os" in
681   solaris*)
682     AC_MSG_CHECKING(for LD_LIBRARY_PATH, since you appear to be running Solaris)
683     if test x$LD_LIBRARY_PATH != x ; then
684       LIBS="$LIBS -R$LD_LIBRARY_PATH"
685       AC_MSG_RESULT(yes -- added LD_LIBRARY_PATH to run-time linker path)
686     else
687       AC_MSG_RESULT(no -- this may be a problem in a few seconds)
688     fi
689   ;;
690 esac
691
692 #
693 # Check for versions of "sed" inadequate to handle, in libtool, a list
694 # of object files as large as the list in Wireshark.
695 #
696 # On Solaris, we check for "/bin/sed", "/usr/bin/sed", and "/usr/ucb/sed",
697 # as both "/usr/bin/sed" (which is also "/bin/sed", as "/bin" is just a
698 # symlink to "/usr/bin", but people may have "/bin" before "/usr/bin" in
699 # their search path) and "/usr/ucb/sed" are inadequate; "/usr/xpg4/bin/sed"
700 # is the only "sed" that comes with Solaris that can handle Wireshark.
701 #
702 # Add any checks here that are necessary for other OSes.
703 #
704 AC_WIRESHARK_GNU_SED_CHECK
705 if test "$HAVE_GNU_SED" = no ; then
706         case "$host_os" in
707         solaris*)
708                 AC_MSG_CHECKING(whether one of /usr/bin/sed or /bin/sed or /usr/ucb/sed will be used)
709                 case `which sed` in
710                         /bin/sed|/usr/bin/sed|/usr/ucb/sed)
711                         AC_MSG_RESULT(yes)
712                         AC_MSG_ERROR([change your path to search /usr/xpg4/bin or directory containing GNU sed before /usr/bin (and /bin and /usr/ucb)])
713                         ;;
714
715                         *)
716                         AC_MSG_RESULT(no)
717                         ;;
718                 esac
719                 ;;
720
721         *)
722                 :
723                 ;;
724         esac
725 fi
726
727 # Enable/disable tshark
728
729 AC_ARG_ENABLE(wireshark,
730   AC_HELP_STRING( [--enable-wireshark],
731                   [build GTK+-based wireshark.  @<:@default=yes, if GTK+ available@:>@]),
732     enable_wireshark=$enableval,enable_wireshark=yes)
733
734 AC_ARG_ENABLE(packet-editor,
735   AC_HELP_STRING( [--enable-packet-editor],
736                   [add support for packet editor in wireshark.  @<:@default=no@:>@]),
737     enable_packet_editor=$enableval,enable_packet_editor=no)
738 if test x$enable_packet_editor = xyes; then
739         AC_DEFINE(WANT_PACKET_EDITOR, 1, [Support for packet editor])
740 fi
741
742 AC_ARG_ENABLE(threads,
743   AC_HELP_STRING( [--enable-threads],
744                   [use threads in wireshark.  @<:@default=no@:>@]),
745     enable_threads=$enableval,enable_threads=no)
746 AM_CONDITIONAL(USE_THREADS, test x$enable_threads = xyes)
747
748 AC_ARG_ENABLE(profile-build,
749   AC_HELP_STRING( [--enable-profile-build],
750                   [build profile-ready binaries.  @<:@default=no@:>@]),
751     enable_profile_build=$enableval,enable_profile_build=no)
752 AM_CONDITIONAL(USE_PROFILE_BUILD, test x$enable_profile_build = xyes)
753 AC_MSG_CHECKING(if profile builds must be generated)
754 if test "x$enable_profile_build" = "xyes" ; then
755         if test "x$GCC" = "xyes" -o "x$CLANG" = "xyes" ; then
756                 AC_MSG_RESULT(yes)
757                 CFLAGS=" -pg $CFLAGS"
758         else
759                 AC_MSG_RESULT(no)
760                 echo "Building profile binaries currently only supported for GCC and clang."
761         fi
762 else
763         AC_MSG_RESULT(no)
764 fi
765
766 # Create DATAFILE_DIR #define for config.h
767 datafiledir=$datadir/wireshark
768 datafiledir=`(
769     test "x$prefix" = xNONE && prefix=$ac_default_prefix
770     test "x$exec_prefix" = xNONE && exec_prefix=${prefix}
771     # Ugly hack, but I don't see how this problem can be solved
772     # properly that DATAFILE_DIR had a value starting with
773     # "${prefix}/" instead of e.g. "/usr/local/"
774     eval eval echo "$datafiledir"
775 )`
776 AC_DEFINE_UNQUOTED(DATAFILE_DIR,"$datafiledir", [Directory for data])
777
778 # Create DOC_DIR #define for config.h
779 docdir=`(
780     test "x$prefix" = xNONE && prefix=$ac_default_prefix
781     test "x$exec_prefix" = xNONE && exec_prefix=${prefix}
782     # Ugly hack, but I don't see how this problem can be solved
783     # properly that DOC_DIR had a value starting with
784     # "${prefix}/" instead of e.g. "/usr/local/"
785     eval eval echo "$docdir"
786 )`
787 AC_DEFINE_UNQUOTED(DOC_DIR, "$docdir", [Directory for docs])
788
789 # GTK checks; we require GTK+ 2.4 or later.
790 # We don't add $GLIB_LIBS to LIBS, because we don't want to force all
791 # programs to be built with GTK+.
792 #
793 if test "x$enable_wireshark" = "xyes"; then
794 if test "x$with_gtk3" = "xyes"; then
795         AM_PATH_GTK_3_0(3.0.0,
796         [
797                 CFLAGS="$CFLAGS $GTK_CFLAGS"
798                 CXXFLAGS="$CXXFLAGS $GTK_CFLAGS"
799                 AC_DEFINE(HAVE_GTK, 1, [Define to 1 if compiling with GTK])
800         ], GTK_OK=no, gthread)
801
802 else
803         AM_PATH_GTK_2_0(2.4.0,
804         [
805                 CFLAGS="$CFLAGS $GTK_CFLAGS"
806                 CXXFLAGS="$CXXFLAGS $GTK_CFLAGS"
807                 AC_DEFINE(HAVE_GTK, 1, [Define to 1 if compiling with GTK])
808         ], GTK_OK=no, gthread)
809 fi
810 else
811         GTK_OK=no
812 fi
813
814 # GLib checks; we require GLib 2.4 or later, and require gmodule
815 # support, as we need that for dynamically loading plugins.
816 # If we found GTK+, this doesn't add GLIB_CFLAGS to CFLAGS, because
817 # AM_PATH_GTK will add GTK_CFLAGS to CFLAGS, and GTK_CFLAGS is a
818 # superset of GLIB_CFLAGS.  If we didn't find GTK+, it does add
819 # GLIB_CFLAGS to CFLAGS.
820 # However, this means that both @GLIB_LIBS@ and @GTK_LIBS@ will be
821 # set when generating the Makefile, so we can make programs that require
822 # only GLib link with @GLIB_LIBS@ and make programs that require GTK+
823 # link with @GTK_LIBS@ (which includes @GLIB_LIBS@).
824 # We don't add $GLIB_LIBS to LIBS, because we don't want to force all
825 # programs to be built with GLib.
826 #
827 if test "$GTK_OK" = "no" ; then
828         #
829         # We don't have GTK+.
830         # If they didn't explicitly say "--disable-wireshark", fail (so
831         # that, unless they explicitly indicated that they don't want
832         # Wireshark, we stop so they know they won't be getting
833         # Wireshark unless they fix the GTK+ problem).
834         #
835         if test "x$enable_wireshark" = "xyes"; then
836                 AC_MSG_ERROR([GTK+ 2.4 or later isn't available, so Wireshark can't be compiled])
837         fi
838         wireshark_bin=""
839         wireshark_man=""
840         # Use GLIB_CFLAGS
841         AM_PATH_GLIB_2_0(2.4.0,
842         [
843                 CFLAGS="$CFLAGS $GLIB_CFLAGS"
844                 CXXFLAGS="$CXXFLAGS $GLIB_CFLAGS"
845         ], AC_MSG_ERROR(GLib 2.4 or later distribution not found.), gthread gmodule)
846 else
847         #
848         # We have GTK+, and thus will be building Wireshark unless the
849         # user explicitly disabled it.
850         #
851         wireshark_bin="wireshark\$(EXEEXT)"
852         wireshark_man="wireshark.1"
853         wireshark_SUBDIRS="codecs gtk"
854         # Don't use GLIB_CFLAGS
855         AM_PATH_GLIB_2_0(2.4.0, , AC_MSG_ERROR(GLib 2.4 or later distribution not found.), gthread gmodule)
856 fi
857
858 #
859 # Check whether GLib includes GRegex support.
860 # We just assume that everybody builds GLib 2.14.0 and later
861 # with GRegex support; it's possible to compile GLib without
862 # GRegex but it doesn't look as if anyone does.
863 #
864 AC_MSG_CHECKING(for GLIB - version >= 2.14.0)
865 if test x$PKG_CONFIG != xno ; then
866     ## don't try to run the test against uninstalled libtool libs
867     if $PKG_CONFIG --uninstalled $pkg_config_args; then
868         echo "Will use uninstalled version of GLib found in PKG_CONFIG_PATH"
869         enable_glibtest=no
870     fi
871
872     if $PKG_CONFIG --atleast-version 2.14.0 glib-2.0; then
873         have_gregex=yes
874     else
875         have_gregex=no
876     fi
877     AC_MSG_RESULT($have_gregex)
878 fi
879
880 #
881 # Check whether GLib modules are supported, to determine whether we
882 # can support plugins.
883 #
884 AC_MSG_CHECKING(whether GLib supports loadable modules)
885 ac_save_CFLAGS="$CFLAGS"
886 ac_save_LIBS="$LIBS"
887 CFLAGS="$CFLAGS $GLIB_CFLAGS"
888 LIBS="$GLIB_LIBS $LIBS"
889 AC_TRY_RUN([
890 #include <glib.h>
891 #include <gmodule.h>
892 #include <stdio.h>
893 #include <stdlib.h>
894
895 int
896 main ()
897 {
898   if (g_module_supported())
899     return 0;   /* success */
900   else
901     return 1;   /* failure */
902 }
903 ], ac_cv_glib_supports_modules=yes, ac_cv_glib_supports_modules=no,
904    [echo $ac_n "cross compiling; assumed OK... $ac_c"
905     ac_cv_glib_supports_modules=yes])
906 CFLAGS="$ac_save_CFLAGS"
907 LIBS="$ac_save_LIBS"
908 if test "$ac_cv_glib_supports_modules" = yes ; then
909   AC_MSG_RESULT(yes)
910   have_plugins=yes
911 else
912   AC_MSG_RESULT(no)
913   have_plugins=no
914 fi
915
916 #
917 # If we have <dlfcn.h>, check whether we can use dladdr to find a
918 # filename (hopefully, a full pathname, but no guarantees) for
919 # the executable.
920 #
921 if test "$ac_cv_header_dlfcn_h" = "yes"
922 then
923         AC_MSG_CHECKING(whether dladdr can be used to find the pathname of an executable)
924         ac_save_CFLAGS="$CFLAGS"
925         ac_save_LIBS="$LIBS"
926         CFLAGS="$CFLAGS $GLIB_CFLAGS"
927         LIBS="$GLIB_LIBS $LIBS"
928         AC_TRY_RUN([
929 #define _GNU_SOURCE     /* required on Linux, sigh */
930 #include <dlfcn.h>
931
932 int
933 main(void)
934 {
935         Dl_info info;
936
937         if (!dladdr((void *)main, &info))
938                 return 1;       /* failure */
939         return 0;               /* assume success */
940 }
941 ], ac_cv_dladdr_finds_executable_path=yes, ac_cv_dladdr_finds_executable_path=no,
942    [echo $ac_n "cross compiling; assumed OK... $ac_c"
943     ac_cv_dladdr_finds_executable_path=yes])
944         CFLAGS="$ac_save_CFLAGS"
945         LIBS="$ac_save_LIBS"
946         if test x$ac_cv_dladdr_finds_executable_path = xyes
947         then
948                 AC_DEFINE(DLADDR_FINDS_EXECUTABLE_PATH, 1, [Define if dladdr can be used to find the path of the executable])
949         fi
950         AC_MSG_RESULT($ac_cv_dladdr_finds_executable_path)
951 fi
952
953 if test "x$no_gtk" != "xyes"
954 then
955     #
956     # We have GTK+; do we want the OS X integration functions and,
957     # if so, do we have them and, if so, which versions do we have,
958     # the old Carbon-based ones or the new Cocoa-based ones?
959     #
960     AC_MSG_CHECKING(whether to use OS X integration functions)
961
962     AC_ARG_WITH(osx-integration,
963       AC_HELP_STRING( [--with-osx-integration],
964                       [use OS X integration functions (@<:@default=yes, if available@:>@]),
965     [
966         if test $withval = no
967         then
968             want_osx_integration=no
969         else
970             want_osx_integration=yes
971         fi
972     ],[
973         want_osx_integration=yes
974     ])
975     if test "x$want_osx_integration" = "xno"; then
976         AC_MSG_RESULT(no)
977     else
978         AC_MSG_RESULT(yes)
979         AC_WIRESHARK_OSX_INTEGRATION_CHECK
980     fi
981 fi
982
983 AC_SUBST(wireshark_bin)
984 AC_SUBST(wireshark_man)
985
986
987 # Enable/disable tshark
988
989 AC_ARG_ENABLE(tshark,
990   AC_HELP_STRING( [--enable-tshark],
991                   [build tshark.  @<:@default=yes@:>@]),
992     tshark=$enableval,enable_tshark=yes)
993
994 if test "x$enable_tshark" = "xyes" ; then
995         tshark_bin="tshark\$(EXEEXT)"
996         tshark_man="tshark.1"
997         wiresharkfilter_man="wireshark-filter.4"
998 else
999         tshark_bin=""
1000         tshark_man=""
1001 fi
1002 AC_SUBST(tshark_bin)
1003 AC_SUBST(tshark_man)
1004 AC_SUBST(wiresharkfilter_man)
1005
1006
1007
1008 # Enable/disable editcap
1009
1010 AC_ARG_ENABLE(editcap,
1011   AC_HELP_STRING( [--enable-editcap],
1012                   [build editcap.  @<:@default=yes@:>@]),
1013     enable_editcap=$enableval,enable_editcap=yes)
1014
1015 if test "x$enable_editcap" = "xyes" ; then
1016         editcap_bin="editcap\$(EXEEXT)"
1017         editcap_man="editcap.1"
1018 else
1019         editcap_bin=""
1020         editcap_man=""
1021 fi
1022 AC_SUBST(editcap_bin)
1023 AC_SUBST(editcap_man)
1024
1025 # Enabling/disabling of dumpcap is done later (after we know if we have PCAP
1026 # or not)
1027
1028 # Enable/disable capinfos
1029
1030 AC_ARG_ENABLE(capinfos,
1031   AC_HELP_STRING( [--enable-capinfos],
1032                   [build capinfos.  @<:@default=yes@:>@]),
1033     enable_capinfos=$enableval,enable_capinfos=yes)
1034
1035 if test "x$enable_capinfos" = "xyes" ; then
1036         capinfos_bin="capinfos\$(EXEEXT)"
1037         capinfos_man="capinfos.1"
1038 else
1039         capinfos_bin=""
1040         capinfos_man=""
1041 fi
1042 AC_SUBST(capinfos_bin)
1043 AC_SUBST(capinfos_man)
1044
1045
1046 # Enable/disable mergecap
1047
1048 AC_ARG_ENABLE(mergecap,
1049   AC_HELP_STRING( [--enable-mergecap],
1050                   [build mergecap.  @<:@default=yes@:>@]),
1051     enable_mergecap=$enableval,enable_mergecap=yes)
1052
1053 if test "x$enable_mergecap" = "xyes" ; then
1054         mergecap_bin="mergecap\$(EXEEXT)"
1055         mergecap_man="mergecap.1"
1056 else
1057         mergecap_bin=""
1058         mergecap_man=""
1059 fi
1060 AC_SUBST(mergecap_bin)
1061 AC_SUBST(mergecap_man)
1062
1063
1064 # Enable/disable text2pcap
1065
1066 AC_ARG_ENABLE(text2pcap,
1067   AC_HELP_STRING( [--enable-text2pcap],
1068                   [build text2pcap.  @<:@default=yes@:>@]),
1069     text2pcap=$enableval,enable_text2pcap=yes)
1070
1071 if test "x$enable_text2pcap" = "xyes" ; then
1072         text2pcap_bin="text2pcap\$(EXEEXT)"
1073         text2pcap_man="text2pcap.1"
1074 else
1075         text2pcap_bin=""
1076         text2pcap_man=""
1077 fi
1078 AC_SUBST(text2pcap_bin)
1079 AC_SUBST(text2pcap_man)
1080
1081 # Enable/disable idl2wrs
1082
1083 AC_ARG_ENABLE(idl2wrs,
1084   AC_HELP_STRING( [--enable-idl2wrs],
1085                   [build idl2wrs.  @<:@default=yes@:>@]),
1086     enable_idl2wrs=$enableval,enable_idl2wrs=yes)
1087
1088 if test "x$enable_idl2wrs" = "xyes" ; then
1089         idl2wrs_bin="idl2wrs"
1090         idl2wrs_man="idl2wrs.1"
1091 else
1092         idl2wrs_bin=""
1093         idl2wrs_man=""
1094 fi
1095 AC_SUBST(idl2wrs_bin)
1096 AC_SUBST(idl2wrs_man)
1097
1098
1099 # Enable/disable dftest
1100
1101 AC_ARG_ENABLE(dftest,
1102   AC_HELP_STRING( [--enable-dftest],
1103                   [build dftest.  @<:@default=yes@:>@]),
1104     enable_dftest=$enableval,enable_dftest=yes)
1105
1106 if test "x$enable_dftest" = "xyes" ; then
1107         dftest_bin="dftest\$(EXEEXT)"
1108         dftest_man="dftest.1"
1109 else
1110         dftest_bin=""
1111         dftest_man=""
1112 fi
1113 AC_SUBST(dftest_bin)
1114 AC_SUBST(dftest_man)
1115
1116
1117 # Enable/disable randpkt
1118
1119 AC_ARG_ENABLE(randpkt,
1120   AC_HELP_STRING( [--enable-randpkt],
1121                   [build randpkt.  @<:@default=yes@:>@]),
1122     enable_randpkt=$enableval,enable_randpkt=yes)
1123
1124 if test "x$enable_randpkt" = "xyes" ; then
1125         randpkt_bin="randpkt\$(EXEEXT)"
1126         randpkt_man="randpkt.1"
1127 else
1128         randpkt_bin=""
1129         randpkt_man=""
1130 fi
1131 AC_SUBST(randpkt_bin)
1132 AC_SUBST(randpkt_man)
1133
1134
1135
1136 dnl Checks for "gethostbyname()" - and "-lnsl", if we need it to get
1137 dnl "gethostbyname()".
1138 AC_WIRESHARK_GETHOSTBY_LIB_CHECK
1139
1140 dnl Checks for "connect()", used as a proxy for "socket()" - and
1141 dnl "-lsocket", if we need it to get "connect()".
1142 AC_WIRESHARK_SOCKET_LIB_CHECK
1143
1144 dnl pcap check
1145 AC_MSG_CHECKING(whether to use libpcap for packet capture)
1146
1147 AC_ARG_WITH(pcap,
1148   AC_HELP_STRING( [--with-pcap@<:@=DIR@:>@],
1149                   [use libpcap for packet capturing.  @<:@default=yes@:>@]),
1150 [
1151         if test $withval = no
1152         then
1153                 want_pcap=no
1154         elif test $withval = yes
1155         then
1156                 want_pcap=yes
1157         else
1158                 want_pcap=yes
1159                 pcap_dir=$withval
1160         fi
1161 ],[
1162         want_pcap=yes
1163         pcap_dir=
1164 ])
1165 if test "x$want_pcap" = "xno" ; then
1166         AC_MSG_RESULT(no)
1167 else
1168         AC_MSG_RESULT(yes)
1169         AC_WIRESHARK_PCAP_CHECK
1170 fi
1171
1172 # Enable/disable dumpcap
1173
1174 dnl dumpcap check
1175 AC_MSG_CHECKING(whether to build dumpcap)
1176
1177 AC_ARG_ENABLE(dumpcap,
1178   AC_HELP_STRING( [--enable-dumpcap],
1179                   [build dumpcap.  @<:@default=yes@:>@]),
1180     enable_dumpcap=$enableval,enable_dumpcap=yes)
1181
1182 if test "x$enable_dumpcap" = "xyes" ; then
1183         if test "x$want_pcap" = "xno" ; then
1184                 enable_dumpcap=no
1185                 AC_MSG_RESULT(pcap not available - disabling dumpcap)
1186         else
1187                 AC_MSG_RESULT(yes)
1188         fi
1189 else
1190         AC_MSG_RESULT(no)
1191 fi
1192
1193 if test "x$enable_dumpcap" = "xyes" ; then
1194         dumpcap_bin="dumpcap\$(EXEEXT)"
1195         dumpcap_man="dumpcap.1"
1196 else
1197         dumpcap_bin=""
1198         dumpcap_man=""
1199 fi
1200 AC_SUBST(dumpcap_bin)
1201 AC_SUBST(dumpcap_man)
1202
1203 # Enable/disable rawshark
1204
1205 dnl rawshark check
1206 AC_MSG_CHECKING(whether to build rawshark)
1207
1208 AC_ARG_ENABLE(rawshark,
1209   AC_HELP_STRING( [--enable-rawshark],
1210                   [build rawshark.  @<:@default=yes@:>@]),
1211     rawshark=$enableval,enable_rawshark=yes)
1212
1213 if test "x$enable_rawshark" = "xyes" ; then
1214         if test "x$want_pcap" = "xno" ; then
1215                 enable_rawshark=no
1216                 AC_MSG_RESULT(pcap not available - disabling rawshark)
1217         else
1218                 AC_MSG_RESULT(yes)
1219         fi
1220 else
1221         AC_MSG_RESULT(no)
1222 fi
1223
1224 if test "x$enable_rawshark" = "xyes" ; then
1225         rawshark_bin="rawshark\$(EXEEXT)"
1226         rawshark_man="rawshark.1"
1227 else
1228         rawshark_bin=""
1229         rawshark_man=""
1230 fi
1231 AC_SUBST(rawshark_bin)
1232 AC_SUBST(rawshark_man)
1233
1234 dnl Use pcap-ng by default
1235 AC_ARG_ENABLE(pcap-ng-default,
1236   AC_HELP_STRING( [--enable-pcap-ng-default],
1237                   [use the pcap-ng file format by default instead of pcap.  @<:@default=yes@:>@]),
1238     enable_pcap_ng_default=$enableval,enable_pcap_ng_default=yes)
1239 if test x$enable_pcap_ng_default = xyes; then
1240         AC_DEFINE(PCAP_NG_DEFAULT, 1, [Support for pcap-ng])
1241 fi
1242
1243 dnl pcap remote check
1244 AC_MSG_CHECKING(whether to use libpcap remote capturing feature)
1245
1246 AC_ARG_WITH(pcap-remote,
1247     AC_HELP_STRING([--with-pcap-remote],
1248                    [use libpcap remote capturing (requires libpcap)]),
1249 [
1250     if test $withval = no
1251     then
1252         want_pcap_remote=no
1253     else
1254         want_pcap_remote=yes
1255     fi
1256 ],[
1257     want_pcap_remote=no
1258 ])
1259 if test "x$want_pcap_remote" = "xno" -o "x$want_pcap" = "xno" ; then
1260     AC_MSG_RESULT(no)
1261 else
1262     AC_MSG_RESULT(yes)
1263     AC_WIRESHARK_PCAP_REMOTE_CHECK
1264 fi
1265
1266 dnl zlib check
1267 AC_MSG_CHECKING(whether to use zlib for gzip compression and decompression)
1268
1269 AC_ARG_WITH(zlib,
1270   AC_HELP_STRING([--with-zlib@<:@=DIR@:>@],
1271                  [use zlib (located in directory DIR, if supplied) for gzip compression and decompression .  @<:@default=yes, if available@:>@]),
1272 [
1273         if test "x$withval" = "xno"
1274         then
1275                 want_zlib=no
1276         elif test "x$withval" = "xyes"
1277         then
1278                 want_zlib=yes
1279         else
1280                 want_zlib=yes
1281                 zlib_dir="$withval"
1282         fi
1283 ],[
1284         #
1285         # Use zlib if it's present, otherwise don't.
1286         #
1287         want_zlib=ifavailable
1288         zlib_dir=
1289 ])
1290 if test "x$want_zlib" = "xno" ; then
1291         AC_MSG_RESULT(no)
1292 else
1293         AC_MSG_RESULT(yes)
1294         AC_WIRESHARK_ZLIB_CHECK
1295         if test "x$want_zlib" = "xno" ; then
1296                 AC_MSG_RESULT(zlib not found - disabling gzip compression and decompression)
1297         else
1298                 if test "x$ac_cv_func_inflatePrime" = "xno" ; then
1299                         AC_MSG_RESULT(inflatePrime not found in zlib - disabling gzipped capture file support)
1300                 fi
1301         fi
1302 fi
1303
1304 dnl pcre check
1305 AC_MSG_CHECKING(whether to use libpcre for regular expressions in dfilters)
1306
1307 AC_ARG_WITH(pcre,
1308   AC_HELP_STRING( [--with-pcre@<:@=DIR@:>@],
1309                   [use libpcre (located in directory DIR, if supplied) to use in dfilter regular expressions. Not needed if you have GLib 2.14 or later. @<:@default=yes, if available and GLib < 2.14@:>@]),
1310 [
1311         if test $withval = no
1312         then
1313                 want_pcre=no
1314         elif test $withval = yes
1315         then
1316                 want_pcre=yes
1317         else
1318                 want_pcre=yes
1319                 pcre_dir=$withval
1320         fi
1321 ],[
1322         #
1323         # Use libpcre if it's present and GRegex isn't, otherwise don't.
1324         #
1325         if test $have_gregex = yes ; then
1326                 want_pcre=no
1327         else
1328                 want_pcre=ifavailable
1329         fi
1330         pcre_dir=
1331 ])
1332 if test "x$want_pcre" = "xno" ; then
1333         AC_MSG_RESULT(no)
1334 else
1335         AC_MSG_RESULT(yes)
1336         AC_WIRESHARK_LIBPCRE_CHECK
1337         if test "x$want_pcre" = "xno" ; then
1338                 AC_MSG_RESULT(libpcre not found - disabling support for perl compatible regular expressions in dfilters)
1339         fi
1340 fi
1341
1342
1343 dnl Lua check
1344 AC_MSG_CHECKING(whether to use liblua for the Lua scripting plugin)
1345
1346 AC_ARG_WITH(lua,
1347   AC_HELP_STRING( [--with-lua@<:@=DIR@:>@],
1348                   [use liblua (located in directory DIR, if supplied) for the Lua scripting plugin.  @<:@default=yes, if available@:>@]),
1349 [
1350         if test $withval = no
1351         then
1352                 want_lua=no
1353         elif test $withval = yes
1354         then
1355                 want_lua=yes
1356         else
1357                 want_lua=yes
1358                 lua_dir=$withval
1359         fi
1360 ],[
1361         #
1362         # Use liblua by default
1363         #
1364         want_lua=ifavailable
1365         lua_dir=
1366 ])
1367 if test "x$want_lua" = "xno" ; then
1368         AC_MSG_RESULT(no)
1369 else
1370         AC_MSG_RESULT(yes)
1371         AC_WIRESHARK_LIBLUA_CHECK
1372         if test "x$want_lua" = "xno" ; then
1373                 AC_MSG_RESULT(liblua not found - disabling support for the lua scripting plugin)
1374         fi
1375 fi
1376 AM_CONDITIONAL(HAVE_LIBLUA, test x$want_lua = xyes)
1377
1378
1379 dnl portaudio check
1380 AC_MSG_CHECKING(whether to use libportaudio for the rtp_player)
1381
1382 AC_ARG_WITH(portaudio,
1383   AC_HELP_STRING( [--with-portaudio@<:@=DIR@:>@],
1384                   [use libportaudio (located in directory DIR, if supplied) for the rtp_player.  @<:@default=yes, if available@:>@]),
1385 [
1386         if test $withval = no
1387         then
1388                 want_portaudio=no
1389         elif test $withval = yes
1390         then
1391                 want_portaudio=yes
1392         else
1393                 want_portaudio=yes
1394                 portaudio_dir=$withval
1395         fi
1396 ],[
1397         #
1398         # Use libportaudio by default
1399         #
1400         want_portaudio=ifavailable
1401         portaudio_dir=
1402 ])
1403 if test "x$want_portaudio" = "xno" ; then
1404         AC_MSG_RESULT(no)
1405 else
1406         AC_MSG_RESULT(yes)
1407         AC_WIRESHARK_LIBPORTAUDIO_CHECK
1408         if test "x$want_portaudio" = "xno" ; then
1409                 AC_MSG_RESULT(libportaudio not found - disabling support for the rtp_player)
1410         fi
1411 fi
1412 AM_CONDITIONAL(HAVE_LIBPORTAUDIO, test x$want_portaudio = xyes)
1413
1414
1415 dnl ipv6 check
1416 AC_ARG_ENABLE(ipv6,
1417   AC_HELP_STRING( [--enable-ipv6],
1418                   [use ipv6 name resolution, if available.  @<:@default=yes@:>@]),
1419     enable_ipv6=$enableval,enable_ipv6=yes)
1420
1421 AC_MSG_CHECKING(whether to enable ipv6 name resolution if available)
1422 if test "x$enable_ipv6" = "xno" ; then
1423         AC_MSG_RESULT(no)
1424 else
1425         AC_MSG_RESULT(yes)
1426         AC_WIRESHARK_IPV6_STACK
1427 fi
1428
1429
1430 dnl Check if dumpcap should be installed with filesystem capabilities
1431 AC_PATH_PROG(SETCAP, setcap)
1432 AC_ARG_ENABLE(setcap-install,
1433   AC_HELP_STRING( [--enable-setcap-install],
1434                   [install dumpcap with cap_net_admin and cap_net_raw @<:@default=no@:>@]),
1435     enable_setcap_install=$enableval,enable_setcap_install=no)
1436
1437 AC_MSG_CHECKING(whether to install dumpcap with cap_net_admin and cap_net_raw capabilities)
1438 if test "x$enable_setcap_install" = "xno" ; then
1439         AC_MSG_RESULT(no)
1440 else
1441         if test "x$SETCAP" = "x" ; then
1442                 AC_MSG_RESULT(no. Setcap not found)
1443         elif test "x$enable_dumpcap" = "xno" ; then
1444                 AC_MSG_ERROR(Setcap install works only with dumpcap but dumpcap is disabled)
1445         else
1446                 AC_MSG_RESULT(yes)
1447         fi
1448 fi
1449
1450 AM_CONDITIONAL(SETCAP_INSTALL, test x$enable_setcap_install = xyes)
1451
1452 dnl Check if dumpcap should be installed setuid
1453 AC_ARG_ENABLE(setuid-install,
1454   AC_HELP_STRING( [--enable-setuid-install],
1455                   [install dumpcap as setuid @<:@default=no@:>@]),
1456     enable_setuid_install=$enableval,enable_setuid_install=no)
1457
1458 AC_MSG_CHECKING(whether to install dumpcap setuid)
1459 if test "x$enable_setuid_install" = "xno" ; then
1460         AC_MSG_RESULT(no)
1461 else
1462         if test "x$enable_setcap_install" = "xyes" ; then
1463                 enable_setuid_install=no
1464                 AC_MSG_RESULT(no; using setcap instead)
1465         elif test "x$enable_dumpcap" = "xno" ; then
1466                 AC_MSG_ERROR(Setuid install works only with dumpcap but dumpcap is disabled)
1467         else
1468                 AC_MSG_RESULT(yes)
1469         fi
1470 fi
1471
1472 AM_CONDITIONAL(SETUID_INSTALL, test x$enable_setuid_install = xyes)
1473 AC_CHECK_FUNCS(setresuid setresgid)
1474
1475 dnl ...but our Network Operations group is named "no"!
1476 DUMPCAP_GROUP=''
1477 AC_ARG_WITH(dumpcap-group,
1478   AC_HELP_STRING( [--with-dumpcap-group=GROUP],
1479                   [restrict dumpcap to GROUP]),
1480 [
1481   if test "x$withval" = "xyes"; then
1482       AC_MSG_ERROR([No dumpcap group specified.])
1483   elif test "x$withval" != "xno"; then
1484       if test "x$enable_dumpcap" = "xno" ; then
1485           AC_MSG_ERROR(dumpcap group install works only with dumpcap but dumpcap is disabled)
1486       fi
1487       AC_MSG_RESULT($withval)
1488       DUMPCAP_GROUP="$withval"
1489   fi
1490 ])
1491 AC_SUBST(DUMPCAP_GROUP)
1492 AM_CONDITIONAL(HAVE_DUMPCAP_GROUP, test x$DUMPCAP_GROUP != x)
1493
1494 dnl libcap (not libpcap) check
1495 LIBCAP_LIBS=''
1496 AC_MSG_CHECKING(whether to use the libcap capabilities library)
1497
1498 AC_ARG_WITH(libcap,
1499   AC_HELP_STRING( [--with-libcap@<:@=DIR@:>@],
1500                   [use libcap (located in directory DIR, if supplied) for POSIX.1e capabilities management.   @<:@default=yes, if present@:>@]),
1501 [
1502 if   test "x$withval" = "xno";  then
1503         want_libcap=no
1504 elif test "x$withval" = "xyes"; then
1505         want_libcap=yes
1506 elif test -d "$withval"; then
1507         want_libcap=yes
1508         AC_WIRESHARK_ADD_DASH_L(LDFLAGS, ${withval}/lib)
1509 fi
1510 ])
1511 if test "x$with_libcap" = "xno" ; then
1512         AC_MSG_RESULT(no)
1513 else
1514         AC_MSG_RESULT(yes)
1515         AC_WIRESHARK_LIBCAP_CHECK
1516 fi
1517 AC_SUBST(LIBCAP_LIBS)
1518
1519 dnl Checks for header files.
1520 AC_CHECK_HEADERS(direct.h dirent.h fcntl.h grp.h inttypes.h netdb.h pwd.h stdarg.h stddef.h unistd.h)
1521 AC_CHECK_HEADERS(sys/ioctl.h sys/param.h sys/socket.h sys/sockio.h sys/stat.h sys/time.h sys/types.h sys/utsname.h sys/wait.h)
1522 AC_CHECK_HEADERS(netinet/in.h)
1523 AC_CHECK_HEADERS(arpa/inet.h arpa/nameser.h)
1524
1525 dnl SSL Check
1526 SSL_LIBS=''
1527 AC_MSG_CHECKING(whether to use SSL library)
1528
1529 AC_ARG_WITH(ssl,
1530   AC_HELP_STRING( [--with-ssl@<:@=DIR@:>@],
1531                   [use SSL crypto library (located in directory DIR, if supplied).   @<:@default=no@:>@]),
1532 [
1533 if test "x$withval" = "xno";  then
1534         want_ssl=no
1535 elif test "x$withval" = "xyes"; then
1536         want_ssl=yes
1537 elif test -d "$withval"; then
1538         want_ssl=yes
1539         AC_WIRESHARK_ADD_DASH_L(LDFLAGS, ${withval}/lib)
1540 fi
1541 ],[
1542         want_ssl=no
1543 ])
1544 if test "x$want_ssl" = "xyes"; then
1545         AC_MSG_RESULT(yes)
1546         AC_CHECK_LIB(crypto,EVP_md5,
1547             [
1548                 SSL_LIBS=-lcrypto
1549             ],
1550             [
1551                 AC_MSG_ERROR([SSL crypto library was requested, but is not available])
1552             ])
1553 else
1554         AC_MSG_RESULT(no)
1555 fi
1556 AC_SUBST(SSL_LIBS)
1557
1558 dnl kerberos check
1559 AC_MSG_CHECKING(whether to use kerberos)
1560
1561 AC_ARG_WITH(krb5,
1562   AC_HELP_STRING( [--with-krb5@<:@=DIR@:>@],
1563                   [use kerberos (located in directory DIR, if supplied) to use in kerberos dissection  @<:@default=yes@:>@]),
1564 [
1565         if test $withval = no
1566         then
1567                 want_krb5=no
1568         elif test $withval = yes
1569         then
1570                 want_krb5=yes
1571         else
1572                 want_krb5=yes
1573                 krb5_dir=$withval
1574         fi
1575 ],[
1576         #
1577         # Use kerberos if specified, otherwise don't.
1578         #
1579         want_krb5=ifavailable
1580         krb5_dir=
1581 ])
1582 if test "x$want_krb5" = "xno" ; then
1583         AC_MSG_RESULT(no)
1584 else
1585         AC_MSG_RESULT(yes)
1586         AC_WIRESHARK_KRB5_CHECK
1587 fi
1588
1589
1590 dnl c-ares Check
1591 C_ARES_LIBS=''
1592 AC_MSG_CHECKING(whether to use the c-ares library if available)
1593
1594 AC_ARG_WITH(c-ares,
1595   AC_HELP_STRING( [--with-c-ares@<:@=DIR@:>@],
1596                   [use c-ares (located in directory DIR, if supplied). Supersedes --with-adns.   @<:@default=yes, if present@:>@]),
1597 [
1598 if   test "x$withval" = "xno";  then
1599         want_c_ares=no
1600 elif test "x$withval" = "xyes"; then
1601         want_c_ares=yes
1602 elif test -d "$withval"; then
1603         want_c_ares=yes
1604         AC_WIRESHARK_ADD_DASH_L(LDFLAGS, ${withval}/lib)
1605 fi
1606 ])
1607 if test "x$want_c_ares" = "xno" ; then
1608         AC_MSG_RESULT(no)
1609 else
1610         AC_MSG_RESULT(yes)
1611         AC_WIRESHARK_C_ARES_CHECK
1612 fi
1613 AC_SUBST(C_ARES_LIBS)
1614
1615 dnl ADNS Check
1616 ADNS_LIBS=''
1617 AC_MSG_CHECKING(whether to use the GNU ADNS library if available)
1618
1619 AC_ARG_WITH(adns,
1620   AC_HELP_STRING( [--with-adns@<:@=DIR@:>@],
1621                   [use GNU ADNS (located in directory DIR, if supplied).   @<:@default=yes, if present@:>@]),
1622 [
1623 if   test "x$withval" = "xno";  then
1624         want_adns=no
1625 elif test "x$withval" = "xyes"; then
1626         want_adns=yes
1627 elif test -d "$withval"; then
1628         want_adns=yes
1629         AC_WIRESHARK_ADD_DASH_L(LDFLAGS, ${withval}/lib)
1630 fi
1631 ])
1632 if test "x$want_adns" = "xno" -o "x$have_good_c_ares" = "xyes" ; then
1633         AC_MSG_RESULT(no)
1634 else
1635         AC_MSG_RESULT(yes)
1636         AC_WIRESHARK_ADNS_CHECK
1637 fi
1638 AC_SUBST(ADNS_LIBS)
1639
1640 dnl GEOIP Check
1641 GEOIP_LIBS=''
1642 AC_MSG_CHECKING(whether to use the GeoIP IP address mapping library if available)
1643
1644 AC_ARG_WITH(geoip,
1645   AC_HELP_STRING( [--with-geoip@<:@=DIR@:>@],
1646                   [use GeoIP (located in directory DIR, if supplied).   @<:@default=yes, if present@:>@]),
1647 [
1648 if   test "x$withval" = "xno";  then
1649         want_geoip=no
1650 elif test "x$withval" = "xyes"; then
1651         want_geoip=yes
1652 elif test -d "$withval"; then
1653         want_geoip=yes
1654         AC_WIRESHARK_ADD_DASH_L(LDFLAGS, ${withval}/lib)
1655 fi
1656 ])
1657 if test "x$want_geoip" = "xno"; then
1658         AC_MSG_RESULT(no)
1659 else
1660         AC_MSG_RESULT(yes)
1661         AC_WIRESHARK_GEOIP_CHECK
1662 fi
1663 AC_SUBST(GEOIP_LIBS)
1664
1665 dnl Python devel Check
1666 AC_MSG_CHECKING(whether to use the Python interpreter for scripting)
1667
1668 AC_ARG_WITH(python,
1669     AC_HELP_STRING( [--with-python@<:@=DIR@:>@],
1670                     [use Python interpreter (installed in DIR, if supplied). @<:@default=yes, if available@:>@ (EXPERIMENTAL)]),
1671 [
1672         pythondir='${libdir}/wireshark/python/${VERSION}'
1673         if test "x$withval" = "xno"
1674         then
1675                 want_python=no
1676         elif test "x$withval" = "xyes"
1677         then
1678                 want_python=yes
1679         else
1680                 want_python=yes
1681                 pythondir="$withval"
1682         fi
1683 ],[
1684         #
1685         # Use the embeddable Python interpreter if it's present,
1686         # otherwise don't.
1687         #
1688         want_pythin=ifavailable
1689         pythondir='${libdir}/wireshark/python/${VERSION}'
1690 ])
1691 if test "x$want_python" = "xno" ; then
1692         AC_MSG_RESULT(no)
1693 else
1694         AC_MSG_RESULT(yes)
1695         AC_WIRESHARK_PYTHON_CHECK
1696 fi
1697 AM_CONDITIONAL(HAVE_LIBPY, test x$want_python != xno)
1698 AC_SUBST(pythondir)
1699
1700 #
1701 # Define WS_VAR_IMPORT appropriately for declarations of external
1702 # variables exported from dynamically-linked libraries.
1703 #
1704 AC_DEFINE(WS_VAR_IMPORT, extern, [Define as the string to precede external variable declarations in dynamically-linked libraries])
1705
1706 #
1707 # Define WS_MSVC_NORETURN appropriately for declarations of routines that
1708 # never return (just like Charlie on the MTA).
1709 #
1710 # Note that MSVC++ expects __declspec(noreturn) to precede the function
1711 # name and GCC, as far as I know, expects __attribute__((noreturn)) to
1712 # follow the function name, so we need two different flavors of
1713 # noreturn tag.
1714 #
1715 AC_DEFINE(WS_MSVC_NORETURN,, [Define as the string to precede declarations of routines that never return])
1716
1717 AC_ARG_ENABLE(airpcap,
1718   AC_HELP_STRING( [--enable-airpcap],
1719                   [use airpcap in wireshark.  @<:@default=no@:>@]),
1720   enable_airpcap=$enableval
1721   if test x$enable_airpcap != xno; then
1722         AC_DEFINE(HAVE_AIRPCAP, 1, [Enable AirPcap])
1723   fi
1724 )
1725
1726 dnl Checks for typedefs, structures, and compiler characteristics.
1727 # AC_C_CONST
1728
1729 # Check how we can get the time zone abbreviation
1730 AC_WIRESHARK_TIMEZONE_ABBREV
1731
1732 # We need to know whether "struct sockaddr" has an "sa_len" member
1733 # for get_interface_list().
1734
1735 AC_WIRESHARK_STRUCT_SA_LEN
1736
1737 # We must know our byte order
1738 AC_C_BIGENDIAN
1739
1740 # Checks whether "-traditional" is needed when using "ioctl".
1741 # XXX - do we need this?
1742 AC_PROG_GCC_TRADITIONAL
1743
1744 GETOPT_LO=""
1745 AC_CHECK_FUNC(getopt,
1746   [GETOPT_LO=""
1747    AC_DEFINE(HAVE_GETOPT_H, 1, [Define to 1 if you have the <getopt.h> header file.])
1748   ],
1749   GETOPT_LO="wsgetopt.lo"
1750 )
1751 if test "$ac_cv_func_getopt" = no ; then
1752   GETOPT_LO="wsgetopt.lo"
1753 fi
1754 AM_CONDITIONAL(NEED_GETOPT_LO, test "x$ac_cv_func_getopt" = "xno")
1755 AC_SUBST(GETOPT_LO)
1756
1757 AC_CHECK_FUNC(strncasecmp, STRNCASECMP_LO="",
1758   STRNCASECMP_LO="strncasecmp.lo")
1759 if test "$ac_cv_func_strncasecmp" = no ; then
1760   STRNCASECMP_LO="strncasecmp.lo"
1761 fi
1762 AM_CONDITIONAL(NEED_STRNCASECMP_LO, test "x$ac_cv_func_strncasecmp" = "xno")
1763 AC_SUBST(STRNCASECMP_LO)
1764
1765 AC_CHECK_FUNCS(mkstemp mkdtemp)
1766
1767 AC_SEARCH_LIBS(inet_aton, [socket nsl], have_inet_aton=yes,
1768     have_inet_aton=no)
1769 if test "$have_inet_aton" = no; then
1770   INET_ATON_LO="inet_aton.lo"
1771   AC_DEFINE(NEED_INET_ATON_H, 1, [Define if inet/aton.h needs to be included])
1772 else
1773   INET_ATON_LO=""
1774 fi
1775 AM_CONDITIONAL(NEED_INET_ATON_LO, test "x$have_inet_aton" = "xno")
1776 AC_SUBST(INET_ATON_LO)
1777
1778 AC_SEARCH_LIBS(inet_pton, [socket nsl], [
1779   dnl check for pre-BIND82 inet_pton() bug.
1780   AC_MSG_CHECKING(for broken inet_pton)
1781   AC_TRY_RUN([#include <sys/types.h>
1782 #include <sys/socket.h>
1783 #include <netinet/in.h>
1784 #include <arpa/inet.h>
1785 int main()
1786 {
1787 #ifdef AF_INET6
1788   char buf[16];
1789   /* this should return 0 (error) */
1790   return inet_pton(AF_INET6, "0:1:2:3:4:5:6:7:", buf);
1791 #else
1792   return 1;
1793 #endif
1794 }], [AC_MSG_RESULT(ok);
1795 have_inet_pton=yes], [AC_MSG_RESULT(broken);
1796 have_inet_pton=no], [AC_MSG_RESULT(cross compiling, assume it is broken);
1797 have_inet_pton=no])],
1798 have_inet_pton=no)
1799 if test "$have_inet_pton" = no; then
1800   INET_PTON_LO="inet_pton.lo"
1801 else
1802   INET_PTON_LO=""
1803 fi
1804 AM_CONDITIONAL(NEED_INET_PTON_LO, test "x$have_inet_pton" = "xno")
1805 AC_SUBST(INET_PTON_LO)
1806
1807 AC_SEARCH_LIBS(inet_ntop, [socket nsl], [
1808   AC_MSG_CHECKING([for inet_ntop prototype])
1809   AC_TRY_COMPILE([#include <stdio.h>
1810 #include <sys/types.h>
1811 #include <sys/socket.h>
1812 #include <netinet/in.h>
1813 #include <arpa/inet.h>
1814
1815 extern const char *inet_ntop(int, const void *, char *, size_t);],, [
1816     AC_MSG_RESULT(yes)
1817     AC_DEFINE(HAVE_INET_NTOP_PROTO, 1,
1818     [Define if inet_ntop() prototype exists])], [
1819     AC_TRY_COMPILE([#include <stdio.h>
1820 #include <sys/types.h>
1821 #include <sys/socket.h>
1822 #include <netinet/in.h>
1823 #include <arpa/inet.h>
1824
1825 extern const char *inet_ntop(int, const void *, char *, socklen_t);],, [
1826       AC_MSG_RESULT(yes)
1827       AC_DEFINE(HAVE_INET_NTOP_PROTO, 1,
1828       [Define if inet_ntop() prototype exists])], [
1829       AC_MSG_RESULT(no)])])
1830   INET_NTOP_LO=""], [
1831   INET_NTOP_LO="inet_ntop.lo"
1832   AC_DEFINE(NEED_INET_V6DEFS_H, 1,
1833   [Define if inet/v6defs.h needs to be included])])
1834 AM_CONDITIONAL(NEED_INET_NTOP_LO, test "x$INET_NTOP_LO" != "x")
1835 AC_SUBST(INET_NTOP_LO)
1836
1837 AC_CHECK_FUNC(strptime, STRPTIME_LO="",
1838   [STRPTIME_LO="strptime.lo"
1839    AC_DEFINE(NEED_STRPTIME_H, 1, [Define if strptime.h needs to be included])
1840 ])
1841 if test "$ac_cv_func_strptime" = no ; then
1842   STRPTIME_LO="strptime.lo"
1843 fi
1844 AC_SUBST(STRPTIME_C)
1845 AM_CONDITIONAL(NEED_STRPTIME_LO, test "x$ac_cv_func_strptime" = "no")
1846 AC_SUBST(STRPTIME_LO)
1847
1848 AC_CHECK_FUNCS(getprotobynumber gethostbyname2)
1849 AC_CHECK_FUNCS(issetugid)
1850 AC_CHECK_FUNCS(mmap mprotect sysconf)
1851 AC_CHECK_FUNCS(strtoll)
1852
1853 dnl blank for now, but will be used in future
1854 AC_SUBST(wireshark_SUBDIRS)
1855
1856 dnl
1857 dnl check whether plugins should be enabled and, if they should be,
1858 dnl check for plugins directory - stolen from Amanda's configure.in
1859 dnl
1860 dnl we don't wish to expand ${libdir} yet
1861 plugindir='${libdir}/wireshark/plugins/${VERSION}'
1862 AC_ARG_WITH(plugins,
1863   AC_HELP_STRING( [--with-plugins@<:@=DIR@:>@],
1864                   [support plugins (installed in DIR, if supplied).   @<:@default=yes, if possible@:>@]),
1865 [
1866   if test "x$withval" = "xno"; then
1867     have_plugins=no
1868   elif test "x$have_plugins" = "xno"; then
1869       AC_MSG_ERROR([GLib on this platform doesn't support loadable modules, so you can't enable plugins.])
1870   elif test "x$withval" != "xyes"; then
1871       plugindir="$withval"
1872   fi
1873 ])
1874 AM_CONDITIONAL(HAVE_PLUGINS, test "x$have_plugins" = "xyes")
1875 if test x$have_plugins = xyes
1876 then
1877   AC_DEFINE(HAVE_PLUGINS, 1, [Define if plugins are enabled])
1878 fi
1879 AC_SUBST(plugindir)
1880 CPPFLAGS="$CPPFLAGS '-DPLUGIN_DIR=\"\$(plugindir)\"'"
1881
1882 #
1883 # The plugin dissectors reside in ./plugins/PROTO/
1884 #
1885 PLUGIN_LIBS=""
1886 AC_SUBST(PLUGIN_LIBS)
1887
1888 dnl libtool defs
1889 #
1890 # Yes, AM_PROG_LIBTOOL is redundant with newer version(s) of some tool(s)
1891 # (autoconf?  automake?  libtool?) - with the newer version(s), it's
1892 # just an alias for AC_PROG_LIBTOOL, which is called earlier.
1893 #
1894 # With older version(s) of those tool(s), however, it's not just an
1895 # alias, and the configure scripts don't work without it.
1896 #
1897 AM_PROG_LIBTOOL
1898 AC_SUBST(LIBTOOL_DEPS)
1899
1900 AM_CONDITIONAL(ENABLE_STATIC, test x$enable_static = xyes)
1901 if test x$enable_static = xyes -a x$have_plugins = xyes
1902 then
1903   AC_DEFINE(ENABLE_STATIC, 1, [Link plugins statically into Wireshark])
1904 fi
1905 AC_SUBST(ENABLE_STATIC)
1906
1907 dnl Save the cacheable configure results to config.cache before recursing
1908 AC_CACHE_SAVE
1909
1910 sinclude(plugins/Custom.m4) dnl
1911 ifdef(_CUSTOM_AC_OUTPUT_,, define(_CUSTOM_AC_OUTPUT_, )) dnl
1912
1913 sinclude(asn1/Custom.m4) dnl
1914 ifdef(_CUSTOM_ASN1_AC_OUTPUT_,, define(_CUSTOM_ASN1_AC_OUTPUT_, )) dnl
1915
1916 AM_CONFIG_HEADER(config.h)
1917 AC_OUTPUT(
1918   Makefile
1919   doxygen.cfg
1920   asn1/Makefile
1921   _CUSTOM_ASN1_AC_OUTPUT_
1922   asn1/acp133/Makefile
1923   asn1/acse/Makefile
1924   asn1/ansi_map/Makefile
1925   asn1/ansi_tcap/Makefile
1926   asn1/camel/Makefile
1927   asn1/cdt/Makefile
1928   asn1/charging_ase/Makefile
1929   asn1/cmip/Makefile
1930   asn1/cmp/Makefile
1931   asn1/crmf/Makefile
1932   asn1/cms/Makefile
1933   asn1/dap/Makefile
1934   asn1/disp/Makefile
1935   asn1/dop/Makefile
1936   asn1/dsp/Makefile
1937   asn1/ess/Makefile
1938   asn1/ftam/Makefile
1939   asn1/gnm/Makefile
1940   asn1/goose/Makefile
1941   asn1/gprscdr/Makefile
1942   asn1/gsm_map/Makefile
1943   asn1/h225/Makefile
1944   asn1/h235/Makefile
1945   asn1/h245/Makefile
1946   asn1/h248/Makefile
1947   asn1/h282/Makefile
1948   asn1/h283/Makefile
1949   asn1/h323/Makefile
1950   asn1/h450/Makefile
1951   asn1/h450-ros/Makefile
1952   asn1/h460/Makefile
1953   asn1/h501/Makefile
1954   asn1/HI2Operations/Makefile
1955   asn1/hnbap/Makefile
1956   asn1/idmp/Makefile
1957   asn1/inap/Makefile
1958   asn1/kerberos/Makefile
1959   asn1/ldap/Makefile
1960   asn1/logotypecertextn/Makefile
1961   asn1/lte-rrc/Makefile
1962   asn1/mms/Makefile
1963   asn1/mpeg-audio/Makefile
1964   asn1/mpeg-pes/Makefile
1965   asn1/nbap/Makefile
1966   asn1/ns_cert_exts/Makefile
1967   asn1/ocsp/Makefile
1968   asn1/p1/Makefile
1969   asn1/p22/Makefile
1970   asn1/p7/Makefile
1971   asn1/p772/Makefile
1972   asn1/pcap/Makefile
1973   asn1/pkcs1/Makefile
1974   asn1/pkcs12/Makefile
1975   asn1/pkinit/Makefile
1976   asn1/pkixac/Makefile
1977   asn1/pkix1explicit/Makefile
1978   asn1/pkix1implicit/Makefile
1979   asn1/pkixproxy/Makefile
1980   asn1/pkixqualified/Makefile
1981   asn1/pkixtsp/Makefile
1982   asn1/pres/Makefile
1983   asn1/q932/Makefile
1984   asn1/q932-ros/Makefile
1985   asn1/qsig/Makefile
1986   asn1/ranap/Makefile
1987   asn1/rnsap/Makefile
1988   asn1/ros/Makefile
1989   asn1/rrc/Makefile
1990   asn1/rrlp/Makefile
1991   asn1/rtse/Makefile
1992   asn1/rua/Makefile
1993   asn1/s1ap/Makefile
1994   asn1/sabp/Makefile
1995   asn1/smrse/Makefile
1996   asn1/snmp/Makefile
1997   asn1/spnego/Makefile
1998   asn1/sv/Makefile
1999   asn1/t125/Makefile
2000   asn1/t38/Makefile
2001   asn1/tcap/Makefile
2002   asn1/tetra/Makefile
2003   asn1/ulp/Makefile
2004   asn1/wlancertextn/Makefile
2005   asn1/x2ap/Makefile
2006   asn1/x509af/Makefile
2007   asn1/x509ce/Makefile
2008   asn1/x509if/Makefile
2009   asn1/x509sat/Makefile
2010   asn1/x721/Makefile
2011   doc/Makefile
2012   docbook/Makefile
2013   epan/Makefile
2014   epan/crc/Makefile
2015   epan/crypt/Makefile
2016   epan/doxygen.cfg
2017   epan/dfilter/Makefile
2018   epan/dissectors/Makefile
2019   epan/dissectors/dcerpc/Makefile
2020   epan/dissectors/pidl/Makefile
2021   epan/ftypes/Makefile
2022   epan/wslua/Makefile
2023   epan/wspython/Makefile
2024   codecs/Makefile
2025   gtk/Makefile
2026   gtk/doxygen.cfg
2027   help/Makefile
2028   packaging/Makefile
2029   packaging/macosx/Info.plist
2030   packaging/macosx/Makefile
2031   packaging/nsis/Makefile
2032   packaging/rpm/Makefile
2033   packaging/rpm/SPECS/Makefile
2034   packaging/rpm/SPECS/wireshark.spec
2035   packaging/svr4/Makefile
2036   packaging/svr4/checkinstall
2037   packaging/svr4/pkginfo
2038   plugins/Makefile
2039   plugins/asn1/Makefile
2040   plugins/docsis/Makefile
2041   plugins/ethercat/Makefile
2042   plugins/giop/Makefile
2043   plugins/gryphon/Makefile
2044   plugins/irda/Makefile
2045   plugins/m2m/Makefile
2046   plugins/mate/Makefile
2047   plugins/opcua/Makefile
2048   plugins/profinet/Makefile
2049   plugins/stats_tree/Makefile
2050   plugins/unistim/Makefile
2051   plugins/wimax/Makefile
2052   plugins/wimaxasncp/Makefile
2053   tools/Makefile
2054   tools/idl2wrs.sh
2055   tools/lemon/Makefile
2056   wiretap/Makefile
2057   wsutil/Makefile
2058   _CUSTOM_AC_OUTPUT_
2059   ,)
2060 dnl AC_CONFIG_FILES([tools/setuid-root.pl], [chmod +x tools/setuid-root.pl])
2061
2062
2063 # Pretty messages
2064
2065 if test "x$enable_setcap_install" = "xyes" ; then
2066         setcap_message="yes"
2067 else
2068         setcap_message="no"
2069 fi
2070
2071
2072 if test "x$enable_setuid_install" = "xyes" ; then
2073         setuid_message="yes"
2074 else
2075         setuid_message="no"
2076 fi
2077
2078 if test "x$DUMPCAP_GROUP" = "x" ; then
2079         dumpcap_group_message="(none)"
2080 else
2081         dumpcap_group_message="$DUMPCAP_GROUP"
2082 fi
2083
2084 if test "x$want_zlib" = "xno" ; then
2085         zlib_message="no"
2086 else
2087         zlib_message="yes"
2088 fi
2089
2090 if test "x$want_pcre" = "xno" ; then
2091         if test $have_gregex = yes
2092         then
2093                 pcre_message="no (using GRegex instead)"
2094         else
2095                 pcre_message="no"
2096         fi
2097 else
2098         pcre_message="yes"
2099 fi
2100
2101 if test "x$want_lua" = "xyes" ; then
2102         lua_message="yes"
2103 else
2104         lua_message="no"
2105 fi
2106
2107 if test "x$want_python" = "xno"; then
2108         python_message="no"
2109 else
2110         python_message="yes"
2111 fi
2112
2113 if test "x$want_portaudio" = "xyes" ; then
2114         portaudio_message="yes"
2115 else
2116         portaudio_message="no"
2117 fi
2118
2119 if test "x$want_ssl" = "xno" ; then
2120         ssl_message="no"
2121 else
2122         ssl_message="yes"
2123 fi
2124
2125 if test "x$want_krb5" = "xno" ; then
2126         krb5_message="no"
2127 else
2128         krb5_message="yes ($ac_krb5_version)"
2129 fi
2130
2131 if test "x$have_good_c_ares" = "xyes" ; then
2132         c_ares_message="yes"
2133 else
2134         c_ares_message="no"
2135 fi
2136
2137 if test "x$have_good_adns" = "xyes" ; then
2138         adns_message="yes"
2139 else
2140         if test "x$have_good_c_ares" = "xyes" ; then
2141                 adns_message="no (using c-ares instead)"
2142         else
2143                 adns_message="no"
2144         fi
2145 fi
2146
2147 if test "x$have_good_libcap" = "xyes" ; then
2148         libcap_message="yes"
2149 else
2150         libcap_message="no"
2151 fi
2152
2153 if test "x$have_good_geoip" = "xyes" ; then
2154         geoip_message="yes"
2155 else
2156         geoip_message="no"
2157 fi
2158
2159 echo ""
2160 echo "The Wireshark package has been configured with the following options."
2161 echo "                    Build wireshark : $enable_wireshark"
2162 echo "                       Build tshark : $enable_tshark"
2163 echo "                     Build capinfos : $enable_capinfos"
2164 echo "                      Build editcap : $enable_editcap"
2165 echo "                      Build dumpcap : $enable_dumpcap"
2166 echo "                     Build mergecap : $enable_mergecap"
2167 echo "                    Build text2pcap : $enable_text2pcap"
2168 echo "                      Build idl2wrs : $enable_idl2wrs"
2169 echo "                      Build randpkt : $enable_randpkt"
2170 echo "                       Build dftest : $enable_dftest"
2171 echo "                     Build rawshark : $enable_rawshark"
2172 echo ""
2173 echo "   Save files as pcap-ng by default : $enable_pcap_ng_default"
2174 echo "  Install dumpcap with capabilities : $setcap_message"
2175 echo "             Install dumpcap setuid : $setuid_message"
2176 echo "                  Use dumpcap group : $dumpcap_group_message"
2177 echo "                        Use plugins : $have_plugins"
2178 echo "                    Use Lua library : $lua_message"
2179 echo "                 Use Python binding : $python_message"
2180 echo "                   Build rtp_player : $portaudio_message"
2181 echo "                        Use threads : $enable_threads"
2182 echo "             Build profile binaries : $enable_profile_build"
2183 echo "                   Use pcap library : $want_pcap"
2184 echo "                   Use zlib library : $zlib_message"
2185 echo "                   Use pcre library : $pcre_message"
2186 echo "               Use kerberos library : $krb5_message"
2187 echo "                 Use c-ares library : $c_ares_message"
2188 echo "               Use GNU ADNS library : $adns_message"
2189 echo "                Use SMI MIB library : $libsmi_message"
2190 echo "             Use GNU crypto library : $gcrypt_message"
2191 echo "             Use SSL crypto library : $ssl_message"
2192 echo "           Use IPv6 name resolution : $enable_ipv6"
2193 echo "                 Use gnutls library : $tls_message"
2194 echo "     Use POSIX capabilities library : $libcap_message"
2195 echo "                  Use GeoIP library : $geoip_message"