The data contained in this repository can be downloaded to your computer using one of several clients.
Please see the documentation of your version control software client for more information.

Please select the desired protocol below to get the URL.

This URL has Read-Only access.

Statistics
| Branch: | Revision:

main_repo / acinclude.m4 @ master

History | View | Annotate | Download (61.8 KB)

# Date Author Comment
df335d52 08/22/2014 07:24 PM Garming Sam

Cope with MIT being line wrapped when compiling with kerberos

The line "Massachusetts Institute of Technology" now appears
across two lines in the header file.

Change-Id: I618b520d6c15f51180b47d93c75e29a6f43b868b
Reviewed-on: https://code.wireshark.org/review/3790...

d434e08b 08/04/2014 04:42 PM Guy Harris

Fix a comment.

Change-Id: I4dff4912ad8355552ba9efee73c0aae9a2a55000
Reviewed-on: https://code.wireshark.org/review/3415
Reviewed-by: Guy Harris <>

27cfea64 08/03/2014 02:49 PM Guy Harris

Define INET6 in config.h rather than in the Makefile.

That's what we do with nmake and CMake; this makes it uniform, so it's
easier to compare compiler commands.

Change-Id: Ice2c4bd796e921fa3089e8a45a32ad14d9b0e0a4
Reviewed-on: https://code.wireshark.org/review/3387...

aa0f8098 07/01/2014 03:47 PM Guy Harris

Don't check for -Wl,{option} support.

Not all AC_WIRESHARK_LDFLAGS_CHECK flags are -Wl,{option} flags, so
don't check for that first. If we want to check for specific compilers
and linkers, we should do that, not for -Wl,{option} support.

Change-Id: Ib9581d4a1573a1ffa2493ce08e6d5845d2601352...

b378f725 07/01/2014 03:27 PM Guy Harris

Fix comments to reflect reality.

Change-Id: Id56f5844932371a89785f4ddce87eb66789acdc8
Reviewed-on: https://code.wireshark.org/review/2754
Reviewed-by: Guy Harris <>

c507304d 06/18/2014 01:47 AM Guy Harris

If we don't check for something, don't print a result.

This caues a bunch of bogus "no"s to be printed when testing for
various compiler options when the compiler isn't GCC-like enough to
accept GCC-style -W, -f, and -m flags.

Change-Id: I16cf45729c61d166644cbddccfbaeb9b7770b045...

20accf34 06/18/2014 12:58 AM Guy Harris

Don't do the check for clang/clang++.

Adding -Qunused-arguments to CXXFLAGS causes the checks for -f and -m
flags not to fail with clang++, causing the configure script to warn
about -f flags supported by clang but not clang++ indicating that the
compilers are a mismatched pair....

4cebb068 06/18/2014 12:27 AM Guy Harris

Add -Werror when testing -m compiler flags.

As with -f flags, some compilers need -Werror to force the compiler to
fail when passed an unknown -m flag.

Also, if it's not a -W or -f or -m flag, don't forget to add it to
CFLAGS and/or CXXFLAGS.

And propagate a comment to the C++ flag testing....

d58ac9ad 06/16/2014 06:54 PM Guy Harris

Get rid of the last bits of Python, as they break the build.

Bereft of life, it rests in peace.

Change-Id: I8b9bc8c6cef0635d5526aa6b389aa33bc41fbc66
Reviewed-on: https://code.wireshark.org/review/2284
Reviewed-by: Guy Harris <>

68f9811b 04/20/2014 06:47 PM Guy Harris

Don't distinguish between "GCC" and "Clang" extra -W flags.

We test whether a given compiler supports a given -W flag, so we don't
need to separate them and check them only for particular compilers.

To make that even clearer, rename the --enable option from...

81c0091c 03/09/2014 06:42 PM Guy Harris

Try to improve the "Kerberos requested but not OpenSSL" message.

At least one person didn't realize that it meant that you have to
specify --with-ssl when configuring, so try saying that a bit more
explicitly.

Change-Id: If15a9cfaeaf7d4aca2c570602fc09ff3ae489d35...

24129136 12/26/2013 04:45 PM Guy Harris

Fix configure-script errors with some versions of autoconf.

svn path=/trunk/; revision=54470

0893e063 12/26/2013 04:03 PM Guy Harris

OK, "i686-apple-darwin11-llvm-g++-4.2 (GCC) 4.2.1 (Based on Apple Inc.
build 5658) (LLVM build 2336.11.00)" likes -Wmissing-prototypes but not
-Wmissing-declarations and G++ 4.8.2 likes -Wmissing-declarations but
not -Wmissing-prototypes, so check whether either of them requires...

b5baf01b 12/24/2013 01:51 PM Guy Harris

No need for quotes around the arguments to AC_MSG_ macros.

svn path=/trunk/; revision=54448

8713e045 12/24/2013 01:43 PM Guy Harris

Some warning options are, for reasons not entirely obvious to me, not
supported by some versions of g++ even though the corresponding version
of gcc supports them. Other versions of g++, and clang, support them.

Check, before adding a -W option for C++, whether the compiler supports...

f6884b59 10/16/2013 06:39 PM Gerald Combs

Add checks to see if CC and/or CXX are Clang. Add "-Qunused-arguments"
to CFLAGS and/or CXXFLAGS as needed.

svn path=/trunk/; revision=52654

2accaae6 10/10/2013 06:56 PM Guy Harris

Fix other HAVE_LUA entry.

svn path=/trunk/; revision=52517

36fe610b 10/10/2013 04:20 PM Guy Harris

Just describe HAVE_LUA as "Define to use Lua"; it's not tied to a
version, and this matches cmakeconfig.h.in.

svn path=/trunk/; revision=52511

d353e38a 09/18/2013 05:51 PM Balint Reczey

Revert "Prefer newer Lua versions"

The original version was OK, obviously.

svn path=/trunk/; revision=52141

3db47e65 09/18/2013 05:13 PM Balint Reczey

Prefer newer Lua versions

svn path=/trunk/; revision=52140

f9faa339 09/14/2013 03:00 AM Jörg Mayer

Fix a typo

svn path=/trunk/; revision=52030

bebe1200 08/12/2013 04:01 PM Guy Harris

Just check whether dladdr() is available; we check in the code whether
it succeeds, so there's no point in checking whether it succeeds in a
sample program.

svn path=/trunk/; revision=51322

70523b50 08/12/2013 05:09 AM Guy Harris

On some platforms, to get dladdr() you need to link with -ldl. First
try it without -ldl (in case the OS doesn't have it - not a good idea,
as it complicates the build process for cross-platform tools that might
require it on other platforms, but "not a good idea" never stopped UN*X...

05a7ab12 07/24/2013 07:44 PM Guy Harris

Add a AC_WIRESHARK_QT_MODULE_CHECK that checks for a particular Qt
module, and use that in AC_WIRESHARK_QT_CHECK.

svn path=/trunk/; revision=50882

f317c782 07/24/2013 06:34 PM Guy Harris

The files in aclocal-fallback are copies of .m4 files from various
packages, providing macros that we use in our configure script in case
somebody building from SVN doesn't happen to have the package installed
and thus doesn't happen to have those macros defined....

f4361b8e 07/02/2013 07:56 PM Guy Harris

If the LHS of an "expr LHS : RHS" expression has an X added to avoid
confusing expr if the LHS is an empty string, the RHS needs it as well.

Also, fix some typoes ("$X" rather than "X$"), and use lower-case "x",
as that's what's used elsewhere when doing that sort of thing....

b4dca0fb 07/02/2013 07:28 PM Stephen Fisher

Change additions from r50178 from if expr "$GCC_OPTION" to if expr
"X$GCC_OPTION" so expr doesn't get confused by the GCC_OPTION that
starts with a hyphen and spit out messages like this (on FreeBSD):

checking whether we can add -fexcess-precision=fast to CXXFLAGS... expr:...

70075fa7 06/28/2013 06:00 PM Guy Harris

Rename AC_WIRESHARK_GCC_CFLAGS_CHECK to
AC_WIRESHARK_COMPILER_FLAGS_CHECK, because it doesn't just affect CFLAGS
and it doesn't just affect the flags for GCC.

svn path=/trunk/; revision=50222

eea87ac6 06/28/2013 05:51 PM Guy Harris

Change formatting in the hopes of making the code a bit easier to figure
out, and update a comment.

svn path=/trunk/; revision=50221

623cca36 06/28/2013 05:38 PM Guy Harris

When checking whether a given option should be added to the compiler
flags, if the option should be added to the flags for both C and C++,
test both the C and C++ compilers and, if the answers are different,
print a warning; the user might have (intentionally or unintentionally)...

04cc1e2f 06/26/2013 08:45 PM Guy Harris

Don't assume that compilers not named "clang" will, by default, report
an error, or not issue warnings, by default if you give them an unknown
-f flag. Instead, test that flag with all compilers, and use -Werror to
force it to error out.

As with C/C++ flags, so with C++-only flags....

eaf5e3fd 06/26/2013 06:43 PM Guy Harris

Don't assume that compilers that need an extra option to report errors,
rather than just warnings, for unknown warning options are named
"clang"; they might not be.

svn path=/trunk/; revision=50177

ffc5183f 06/26/2013 02:19 PM Jeff Morriss

(Attempt to) fix https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=8813 :

Enable INET6 checking on Solaris versions other than 5.8.

(Yes, theoretically this should be checking for Solaris 5.7 or later. I'm
going to go out on a limb and assume that no one is actually still using 5.7...

43db8103 03/06/2013 04:48 PM Martin Kaiser

look for /usr/include/lua5.x directories to determine the lua version

(Debian squeeze installs lua includes in /usr/include/lua5.1 and libs
under /usr/lib, there's no --with-lua=<dir> setting for this
configuration)

see also https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=8438...

1d3e62c0 02/04/2013 05:23 PM Guy Harris

Add the warning flags to CFLAGS_FOR_BUILD, so any build tools we build
are built with warnings.

Also add compiler-specific flags (in this case, just the flags to enable
ANSI C compilation) to CFLAGS_FOR_BUILD.

svn path=/trunk/; revision=47479

3be49bed 01/03/2013 09:12 PM Jeff Morriss

In AC_WIRESHARK_GCC_CFLAGS_CHECK() don't check if $3 (the program to be run)
exists by doing:

if test "x$3" != "x" ; then

because if the program contains quotes it breaks the shell's parsing.
Instead test for the existence of $4 (which is mandatory if $3 is given)....

b961881f 12/08/2012 09:52 PM Guy Harris

Add some additional arguments to AC_WIRESHARK_GCC_CFLAGS_CHECK() to make
it do an additional check, if it finds that a given compiler option is
supported by the compiler, to see whether it's supported but
undesirable. The arguments are a chunk of code to try to compile with...

d54b681f 11/02/2012 05:58 AM Anders Broman

From Jim Young and updated by Max Romanov:

The modification to acinclude.m4 adds a new test in the
AC_WIRESHARK_OSX_INTEGRATION_CHECK section to first look for the library
gtkmacintegration. "gtkmacintegration" is the new internal name for GTK+ MAC
OSX library after the project was moved to www.gtk.org. Previously this...

88c8b921 07/07/2012 06:35 PM Bill Meier

Use -D_FORTIFY_SOURCE=2 only if the gc optimization level is greater than 0.

Fixes Bug #7449: https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=7449

-----
Issue:

Building Wireshark with '-O0 -D_FORTIFY_SOURCE=2 ...' fails

The warning [error] message:...

e6e6d621 06/25/2012 04:42 PM Anders Broman

From Tony Trinh:
Update Lua from 5.1 to 5.2

https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=7400

svn path=/trunk/; revision=43482

aeceb172 06/25/2012 04:31 PM Anders Broman

From Tony Trinh:
Update autoconf script to check for Lua 5.2

https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=7400

svn path=/trunk/; revision=43480

7e108049 06/17/2012 08:07 AM Jörg Mayer

Whitespace fix

svn path=/trunk/; revision=43305

68a49715 06/02/2012 02:53 PM Guy Harris

If the user tries to save a capture file atop a file that has all its
write bits turned off or, on 4.4-Lite-based systems, has its "user
immutable" bit turned on, ask them if they really want to overwrite the
file (as those are both used to say "this file is precious, don't let me...

931acaff 03/16/2012 04:02 AM Guy Harris

Fix some comments and some indentation.

svn path=/trunk/; revision=41596

04acb749 03/15/2012 11:27 PM Guy Harris

Put -D and -I flags into CPPFLAGS rather than into CFLAGS; that should
make them apply to C++ as well as C. That seems to be what the autoconf
documentation suggests:

- Variable: CFLAGS
Debugging and optimization options for the C compiler. If it is not set...

b53e3794 03/15/2012 08:49 PM Guy Harris

Have AC_WIRESHARK_GCC_CFLAGS_CHECK take an optional second flag to
indicate whether the flag is C-only, C++-only, or for both compilers;
pass the appropriate value for C-only flags. Have the "Checking for..."
message indicate whether we're adding to CFLAGS, CXXFLAGS, or both....

e42d0d35 12/09/2011 04:15 PM Guy Harris

Referring to pcap_version[] doesn't do what you want on at least some
UN*Xes (Fedora 16 and probably other Linux distributions, probably at
least some if not all other ELF-based systems, and perhaps also Mac OS
X), and causes problems if pcap_version[] has a different length in the...

0b41604b 10/30/2011 12:19 PM Anders Broman

From Kevin Hildebrand:
Typo in acinclude.m4 breaks Heimdal kerberos builds

https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=6512

svn path=/trunk/; revision=39677

b9b05239 10/05/2011 06:27 PM Gerald Combs

Add GeoIP IPv6 database support. Tested with GeoIP 1.4.7, but older
versions should be supported.

svn path=/trunk/; revision=39280

5603cef9 08/23/2011 05:25 AM Stig Bjørlykke

Remove support for libpcre, we use GRegex in GLib.

svn path=/trunk/; revision=38683

3ba6316a 08/09/2011 03:49 PM Jeff Morriss

Fix https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=5607 :

When testing if we can add things to LDFLAGS, don't set LDFLAGS to CFLAGS
if the test determines that the flag cannot be added to LDFLAGS.

(Simple typo: LDFLAGS_saved was being set to CFLAGS instead of LDFLAGS.)...

0bd4a1ac 06/11/2011 05:49 PM Guy Harris

Use spaces uniformly in AC_WIRESHARK_PYTHON_CHECK.

If we don't find python-config, set want_python to no, so the
end-of-configuration message says we're not using the Python
interpreter. Also fix some cases where we were setting want_zlib rather
than want_python (cut-and-pasteo)....

350ec69e 06/11/2011 03:05 PM Guy Harris

Do the Python embedding similarly to other "default = yes, if available"
items.

Add some quoting to the zlib tests, just in case the argument contains
white space.

Clean up capitalization of Lua and Python.

Link programs that use libwireshark with the Python libraries, and build...

7eb47231 05/03/2011 12:48 AM Guy Harris

Don't bother checking for gzgets(), as we don't use it, and don't even
need to use its presence in zlib as a proxy for "not the crufty old zlib
that comes with some versions of X11".

Do, however, check for inflatePrime() there, instead, just in case the
crufty old zlib that comes with some versions of X11 lack it; this is to...

ed8ea7bb 04/27/2011 10:24 PM Jeff Morriss

After testing for the presence of python-config, fix typo so that we actually
test whether we found it or not.

If the user asked for Python support, error out if we find we can't use it.

svn path=/trunk/; revision=36924

f4ed7e89 04/20/2011 05:16 AM Guy Harris

By default, clang only warns about unknown -W options, it doesn't
generate an error for them. Force them to be treated as errors, so we
correctly test whether an option is supported.

svn path=/trunk/; revision=36732

b9d4c025 04/20/2011 04:37 AM Guy Harris

Instead of having GCC and CLANG variables, just have
ac_supports_gcc_flags and ac_supports_W_linker_passthrough flags, the
first of which, for now, we set for GCC and clang, and the latter of
which we set for GCC, clang, and xlc (probably true for some other...

05e06f7a 04/19/2011 11:22 PM Guy Harris

First cut at support for clang. We may want to have specific items for
"supports GCC-style -W flags", etc., and may want to improve the check
for "is this clang", as well as deciding what other stuff should be done
if we have clang as well. clang should, I think, largely be...

4d6cb744 07/13/2010 07:26 PM Guy Harris

Add a "-d" flag to dumpcap, to print out the generated code for the
capture filter in human-readable form. (Well, readable by humans who
know BPF machine language, at least. :-))

svn path=/trunk/; revision=33509

22c9dd27 06/05/2010 06:04 PM Guy Harris

First check for the new GTK+/OS X integration functions, then the old
ones; it appears that at least one user's -ligemacintegration has both
(see bug 4823), and we should choose the new ones in that case.

Also, always set have_ige_mac if we have the functions....

36623bcb 05/24/2010 08:35 PM Guy Harris

From H.sivank: GtkOSXApplication support.

Call the various flavors of OS X integration just "OS X integration",
not anything with "IGE" in it - it appears that, in some places,
"ige-mac-integration" refers only to the older Carbon-based functions,
although the library still appears to be called -ligemacintegration....

3e3cb2d6 05/09/2010 02:33 AM Stephen Fisher

As of release 1.5, MIT Kerberos moved krb5.h to krb5/krb5.h. Check both
places. Fix prompted by report on -dev from Jeff Blaine using MIT Kerberos
1.8.

svn path=/trunk/; revision=32727

7dbbb8c5 05/06/2010 07:33 PM Guy Harris

Just check for pcap_create(); it first appeared in libpcap 1.0.0, and
pcap_set_buffer_size() did as well, so there aren't any libpcap releases
with pcap_create() but not pcap_set_buffer_size().

Only do one check for pcap_create.

svn path=/trunk/; revision=32695

f9981411 05/06/2010 02:34 PM Anders Broman

Checking in Stigs changes from
https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=475
BUT not activating the check for
pcap_create()
pcap_set_buffer_size()
This should make it possible to build with support for setting the buffersize if not capturing 802.11 traffic....

c911b010 05/06/2010 11:39 AM Anders Broman

Check for pcap_create
Using pcap create and pcap_activate should make it possible
to set the capture buffer size on Linux systems as well as Windows.
Help to implement it would be apreciated :-)

Ref:
http://seclists.org/tcpdump/2009/q3/151

svn path=/trunk/; revision=32687

980ac596 02/18/2010 07:15 PM Guy Harris

Don't say "Checking for broken pcap-config" if we don't have a
pcap-config to check for brokenness.

svn path=/trunk/; revision=31919

56cffa11 12/11/2009 04:11 AM Guy Harris

Put in missing comma.

svn path=/trunk/; revision=31241

488253bf 12/10/2009 10:39 PM Guy Harris

Add the time zone abbreviation to the result of abs_time_to_str() and
abs_time_secs_to_str().

svn path=/trunk/; revision=31234

b6cffe40 08/07/2009 02:49 PM Jörg Mayer

- Add an AC macro to test linker flags.
- Test whether the linker supports --as-needed and if so,
adds it to LDFLAGS

svn path=/trunk/; revision=29327

e411397e 06/08/2009 01:23 PM Guy Harris

Check for libpcap 1.0's broken pcap-config, which put a space between -L
and its argument - that doesn't work on some platforms (e.g., OS X).

svn path=/trunk/; revision=28664

923b8ae8 06/07/2009 10:12 PM Guy Harris

Check for a pcap-config script (as provided by libpcap 1.x) and, if we
find it, use it to determine where to find libpcap and what additional
libraries it requires.

svn path=/trunk/; revision=28653

31a2a306 06/03/2009 11:40 AM Stig Bjørlykke

Don't reuse lua_dir in a for loop.

svn path=/trunk/; revision=28625

863e456e 06/03/2009 11:28 AM Stig Bjørlykke

Fixed setting of LUA_INCLUDES when having extraneous lua heder directory.
Fixed resetting flags after negative check for Lua.

svn path=/trunk/; revision=28624

d861a1a6 06/03/2009 09:45 AM Stig Bjørlykke

Only give a failure message if configuring with --with-lua=yes.

svn path=/trunk/; revision=28623

76520bcc 06/03/2009 09:21 AM Stig Bjørlykke

Added check for extraneous lua header directories, as some systems
apparently put the headers in a "lua5.1" subdirectory.

svn path=/trunk/; revision=28622

39d71380 06/03/2009 08:13 AM Stig Bjørlykke

Use liblua by default, if available.

svn path=/trunk/; revision=28621

52cc5fb1 05/29/2009 05:10 PM Sebastien Tandel

python binding for wireshark (first commit)

svn path=/trunk/; revision=28529

26424033 03/06/2009 01:56 PM Stig Bjørlykke

From Petr Sumbera (bug 3305):
Recognize Solaris Kerberos (which is based on MIT Kerberos).

svn path=/trunk/; revision=27622

3a50c006 12/22/2008 10:25 PM Stephen Fisher

Fix bug #3152 for good.

svn path=/trunk/; revision=27092

6c81d84e 12/22/2008 11:10 AM Jeff Morriss

Fix bug 3152: when searching for igemacintegration manually set GTK_LIBS to
the found library (AC_SEARCH_LIBS sets the LIBS variable but we really don't
want that).

svn path=/trunk/; revision=27088

44f8cae6 12/21/2008 06:22 PM Guy Harris

If we don't have any of the pcap_datalink_XXX_to_YYY routines,
substitute our own (I wrote them all, so I can steal them from the
BSD-licensed libpcap if I want :-)). This means that
linktype_name_to_val() and linktype_val_to_name() are always available,...

5b9a2fdd 12/18/2008 09:48 PM Jeff Morriss

After checking for ige_mac_menu_set_menu_bar reset CFLAGS and LIBS
back to what they were before the test (without GTK_LIBS).
This prevents tshark (and every other program) from unnecessarily linking
against GTK_LIBS.

svn path=/trunk/; revision=27056

2b90b483 11/18/2008 09:55 AM Balint Reczey

Require Lua 5.1 for Lua plugin.
This fixes bug 2510.

svn path=/trunk/; revision=26805

1b7064bb 10/27/2008 12:50 AM Gerald Combs

Add support for the GeoIP library. Using different database files,
GeoIP can map IP addresses to Countries, Cities, AS numbers, ISPs,
etc. If any library paths are defined AND any database files are found,
corresponding columns are added to the endpoint tables in the GUI....

812ecb21 10/26/2008 04:09 PM Stephen Fisher

Tweak Mac IGE integration detection so that it can find the functions not
only in the Gtk+ OS X framework, but also in the separate igemacintegration
library. Also add call to ite_mac_menu_set_menu_bar() to synchronize the
OS X menu bar with the Gtk menu bar in Wireshark. The Gtk menu bar in...

e8aee91b 10/24/2008 02:08 PM Gerald Combs

Add an option to look for the presence of Imendio's Mac OS X integration
functions in GTK+.

svn path=/trunk/; revision=26539

9fbab46a 08/07/2008 08:04 PM Gerald Combs

Add support for c-ares to the GNU toolchain.

svn path=/trunk/; revision=25955

e82d99d2 07/03/2008 11:33 PM Guy Harris

If we have pcap_free_datalinks(), use it. If not, then, on Windows,
just leak the list returned by pcap_list_datalinks(), as there's no
guarantee that if you have a library built with one version of the
MSVC++ run-time library, and it returns a pointer to allocated data, you...

31cae6e4 05/05/2008 06:47 PM Guy Harris

Require GLib 2.4 or later.

That means that G_GINT64_MODIFIER will be defined, so don't check
whether it's defined.

We don't use the PRI[douxX]64 macros, as we use the GLib print routines
and thus use G_GINT64_MODIFIER instead. Get rid of the checks for...

ac59b6dc 04/20/2008 07:41 PM Guy Harris

Don't define AC_WIRESHARK_CHECK_64BIT_FORMAT twice; just define the one
that works with GLib's print routines. Make that version compile and
link the test programs with GLib.

svn path=/trunk/; revision=25127

545d54ae 04/07/2008 12:38 AM Stephen Fisher

Remove GTK1 code.

svn path=/trunk/; revision=24828

454fbec2 02/07/2008 01:19 PM Guy Harris

Only check for pcap_breakloop()'s "usability" if it might be present but
unusable; it'd only be unusable if we require that functions be declared
before they're used (i.e., if we check for that with -Wimplicit and if
we fail if the check produces a warning because we're using -Werror)....

08bbd29c 12/04/2007 06:19 AM Tomas Kukosa

Support for RPCAP features in GUI (from Boris Misenov, see Bug 1366)
- retrieving the list of remote PCAP interfaces
- password authentication support
- UDP data fransfer
- packet sampling (available in WinPcap 4.x)
etc.

fix problem if non-default rpcap port is used...

58914b52 11/20/2007 11:53 AM Gerald Combs

If libcap is present, have dumpcap use it to drop privileges while
retaining CAP_NET_ADMIN and CAP_NET_RAW. Update some Makefile
dependencies for dumpcap.

svn path=/trunk/; revision=23511

094e2a9a 09/24/2007 02:59 AM Jörg Mayer

Get rid of the remains of NET-SNMP in the build process.

svn path=/trunk/; revision=22934

c2dcd299 06/13/2007 01:27 AM Jaap Keuter

YAE2W

svn path=/trunk/; revision=22085

a1d2d9c7 05/29/2007 07:29 PM Ronnie Sahlberg

we dont link with g_snprintf in the configure for gtk1-2 so fall back to
snprintf instead

svn path=/trunk/; revision=21995

d2ac4f71 05/29/2007 02:56 AM Guy Harris

Check for G_GINT64_MODIFIER in Wireshark as we do in Wiretap.

In all the places where a cast to "long long" or "unsigned long long"
was done, use G_GINT64_MODIFIER and get rid of the cast, as

1) there's no guarantee that "%ll" works

and

2) there's no guarantee that "long long" works...
a265df64 04/22/2007 09:38 AM Sebastien Tandel

update of AC_WIRESHARK_PCAP_CHECK to detect if pcap header version is
corresponding to the library version for pcap_breakloop. Issue a warning if the
pcap_breakloop is present but not usable.

svn path=/trunk/; revision=21498

706627f8 04/22/2007 05:27 AM Sebastien Tandel

adding AC_(WIRESHARK|WIRETAP)_GCC_CFLAGS_OPTION macro to test whether gcc
supports the options passed as arguments. If the options are supported, they
are added to CFLAGS.

svn path=/trunk/; revision=21493