Commit Graph

1152 Commits

Author SHA1 Message Date
Anders Broman 42cccf3e3c Add the idl dir to distro (second try).
svn path=/trunk/; revision=27246
2009-01-16 17:30:23 +00:00
Anders Broman c53b519345 Add the idl dir to distro.
svn path=/trunk/; revision=27242
2009-01-16 07:10:05 +00:00
Tomas Kukosa b32079575b fix non-Windows dumpcap linking, it uses version_info which requires GnuTLS libs
svn path=/trunk/; revision=27197
2009-01-08 15:06:09 +00:00
Jörg Mayer 9781112aaa Bugfix: "make rpm-package" would fail if help/faq.txt didn't exist already.
The reason was that FAQ incorrectly depended on help/faq.txt. Correct
  dependency is, that both files depend only on the generator.

svn path=/trunk/; revision=27080
2008-12-22 12:28:27 +00:00
Stig Bjørlykke adf9b77ac1 From Didier Gautheron (bug 3121):
User srcdir in Makefiles for faq.py.

svn path=/trunk/; revision=26996
2008-12-14 23:56:51 +00:00
Gerald Combs 8a1109396a Update faq.py to generate a full HTML document by default. Pull in a typo
fix from FAQ. Update the makefiles to build help/faq.txt and FAQ. Remove
help/faq.txt and FAQ from the repository, since they're automatically
generated now. Remove the make-faq script.

svn path=/trunk/; revision=26980
2008-12-13 00:58:43 +00:00
Stig Bjørlykke 2de0812f1d From Alexis La Goutte (bug 3104):
Add Aruba dictionary.

svn path=/trunk/; revision=26945
2008-12-09 13:57:55 +00:00
Anders Broman 41671d662e From Marc Moussali:
Make it easier to add custom plugins.

svn path=/trunk/; revision=26627
2008-10-30 19:45:40 +00:00
Gerald Combs 11e406d6bf Make the vgcore glob a little less restrictive.
svn path=/trunk/; revision=26548
2008-10-25 03:52:40 +00:00
Gerald Combs 4a0dad5d7f aclocal-fallback/glib.m4 and aclocal-fallback/gtk.m4 are no longer part of
the distribution.

svn path=/trunk/; revision=26513
2008-10-22 15:16:13 +00:00
Jeff Morriss c08a1f420e Turn on -Werror for the top level targets, excluding text2pcap (which includes some generated code).
svn path=/trunk/; revision=26245
2008-09-21 14:59:05 +00:00
Jeff Morriss dcca906f30 http://www.gnu.org/software/libtool/manual/libtool.html#Inter_002dlibrary-dependencies
says:

"However, most shared library systems are restricted in that they only allow a
single level of dependencies. In these systems, programs may depend on shared
libraries, but shared libraries may not depend on other shared libraries."

So reverse the top-level Makefile.am change of rev 26218.  That is: link the
executables against libwsutil again.

This hopefully will fix:
https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=1677#c23

svn path=/trunk/; revision=26227
2008-09-18 13:31:14 +00:00
Jeff Morriss 98fd7b71df Link libwireshark and wiretap against libwsutil. That was the original intent
of adding libwsutil but somehow I missed it/got it wrong.  This should solve
https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=1677#c18

Also remove the _DEPENDENCIES lines in epan and wiretap (as was done in the
top-level Makefile in rev 25930) so that automake will automatically figure out
the dependencies for us.

Since the those 2 libraries now link against libwsutil, don't make every
executable link against the library.  (If this works I think we can
significantly trim the list of libraries the executables link against and just
let the libraries pull in what they need--which is, apparently, the point of
the --as-needed flag: http://www.gentoo.org/proj/en/qa/asneeded.xml ).

svn path=/trunk/; revision=26218
2008-09-16 19:24:25 +00:00
Guy Harris d7304a880b Include a missing Diameter dictionary file.
svn path=/trunk/; revision=26167
2008-09-09 03:23:13 +00:00
Stig Bjørlykke 2e3039d7e8 Added image/libwsutil.rc.in to EXTRA_DIST
svn path=/trunk/; revision=25998
2008-08-13 10:34:59 +00:00
Stig Bjørlykke 8c66299585 Remove an obsolete slash.
svn path=/trunk/; revision=25971
2008-08-09 16:17:19 +00:00
Gerald Combs 9fbab46ad4 Add support for c-ares to the GNU toolchain.
svn path=/trunk/; revision=25955
2008-08-08 00:04:38 +00:00
Luis Ontanon 99331d7b99 Remove obsolete "example_snmp_users_file"
svn path=/trunk/; revision=25936
2008-08-05 20:39:31 +00:00
Jeff Morriss f695f6f531 There's no need to have _DEPENDENCIES variables (which have only a very limited
subset of the real dependencies as specified in the _LDADD variables) for
Wireshark, tshark, and the rest of the programs: by specifying the
_DEPENDENCIES variable we just prevent automake from doing its job and
automatically figuring out the dependencies for us.

This should fix https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=2765

svn path=/trunk/; revision=25930
2008-08-05 14:51:34 +00:00
Jeff Morriss 86e10880c9 Remove iconv/libiconv checks from *NIX builds: GLIB-2 provides iconv replacements.
svn path=/trunk/; revision=25765
2008-07-18 12:11:08 +00:00
Guy Harris 6b1c9b4948 Push EXTRA_DIST entries into the lowest-level Makefile.am available.
svn path=/trunk/; revision=25661
2008-07-02 07:12:42 +00:00
Guy Harris e937ed67bb Put the EXTRA_DIST items for the doc directory in doc/Makefile.am (which
doesn't need to be one of those items).

svn path=/trunk/; revision=25660
2008-07-02 05:08:43 +00:00
Guy Harris 6995b0b392 Combine the cd and the make on one lien for the checkapi rules;
otherwise, the cd runs independently of the make, and the make runs in
the current directory and thus runs another "make checkapi" (forkbomb
los!).

svn path=/trunk/; revision=25657
2008-07-02 01:53:29 +00:00
Guy Harris a04774395f Add Makefile.common files for epan/dfilter and epan/ftypes.
Add checkapi rules to Makefile.am files.

svn path=/trunk/; revision=25656
2008-07-02 01:44:30 +00:00
Guy Harris b5fc663751 libwireshark.def is in the EXTRA_DIST in epan/Makefile.am; we don't need
it in our EXTRA_DIST.

svn path=/trunk/; revision=25654
2008-07-02 01:40:51 +00:00
Stig Bjørlykke 673a730de3 Added a new make target, osx-app, to build only the app and not the dmg.
This is usefull when using the app locally.

svn path=/trunk/; revision=25646
2008-07-01 13:39:09 +00:00
Jeff Morriss 83f9ecf96f Move privileges.c and unicode-utils.c from epan to wsutil (so things like
capinfos and dumpcap don't need to depend on libwireshark nor directly pull
in those modules).  Because capinfos and editcap were only being linked with
privileges.c if we had plugins, this allows those programs to be linked when
someone is compiling --without-plugins.

svn path=/trunk/; revision=25640
2008-06-30 17:16:29 +00:00
Gerald Combs 495ddc2830 Make it obvious that this is a development version. Fix a makefile
dependency on the splash images.

svn path=/trunk/; revision=25594
2008-06-24 22:53:52 +00:00
Jeff Morriss 7eca9942fd Fix *NIX builds where we need our own inet_pton.c or inet_ntop.c . This should fix https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=2607
svn path=/trunk/; revision=25579
2008-06-24 17:57:44 +00:00
Guy Harris d1acd0ac9a Fix list of files in the debian directory.
svn path=/trunk/; revision=25448
2008-06-13 05:54:22 +00:00
Jeff Morriss 58459d3fba Create a new "Wireshark utility" library and move the mpeg-audio stuff from
wiretap to this new libwsutil.  This solves
http://bugs.wireshark.org/bugzilla/show_bug.cgi?id=1677 by making libwireshark
no longer depend on libwiretap.

svn path=/trunk/; revision=25330
2008-05-20 21:51:01 +00:00
Jaap Keuter cacee64927 From Hans-Peter Bock:
Attached to this post you find a patch for integration into wireshark that adds
a dissector for SERCOS III, ethertype 0x88cd.

svn path=/trunk/; revision=25270
2008-05-10 14:44:32 +00:00
Stig Bjørlykke 3931473bb8 Add adns_dll.dep and adns_dll.rc to the tarball, as requested by Sake
and indicated by Anders.

svn path=/trunk/; revision=25183
2008-04-27 10:54:25 +00:00
Ulf Lamping be75f6fa16 remove the copied xpm stock icon files from SVN and use the "GTK built in" stock icons
this will also prevent us from showing different stock icons for "our" xpm stock icons and the "system defaults". GTK (for Windows?) changed the icon theme somewhere around V2.10 (or later?) and/or the user might use a different icon theme, so this isn't an esoteric case ;-)

svn path=/trunk/; revision=25075
2008-04-16 09:54:55 +00:00
Jörg Mayer 8ff2e54cb0 Fix "make distcheck"
Reorder some files to alphabetical order

Fix "make rpm-package" for out-of-tree builds

svn path=/trunk/; revision=25032
2008-04-14 23:29:54 +00:00
Ulf Lamping e7fde0351e add stock icons for expert info and flow graph
svn path=/trunk/; revision=25012
2008-04-14 02:09:54 +00:00
Stig Bjørlykke 3de66e38ec Renamed image/win32-file-dlg.rc to image/file_dlg_win32.rc
svn path=/trunk/; revision=24988
2008-04-13 16:21:22 +00:00
Ulf Lamping 579e6e586e remove the deleted stock items from the distribution list (missed some not mentioned in the mail)
svn path=/trunk/; revision=24804
2008-04-06 21:24:50 +00:00
Ulf Lamping 7318d58727 remove the deleted stock items from the distribution list
svn path=/trunk/; revision=24802
2008-04-06 16:24:04 +00:00
Stephen Fisher 2b1a1e2b98 Fix bug #2405: build debian-package broken: misspelled variable in Makefile.am
svn path=/trunk/; revision=24768
2008-04-04 06:24:10 +00:00
Jeff Morriss b59322ecc1 Don't link plugins against libwireshark: any program that loads the dissector
plugins should already be linked against libwireshark.

Don't link capinfos and editcap against libwireshark: they only needed to be
because the plugins were linked against libwireshark (see rev 24123 and the
ensuing discussion on -dev).

capinfos and editcap: don't complain if plugins fail to load: dissector
plugins should fail to load because they need libwireshark.  I am assuming
here that wiretap plugins don't need libwireshark (I've never seen such a
plugin but LEGO's code and comments suggest this is the case).

(The goal of this checkin is to stop linking capinfos and editcap against
libwireshark while still allowing wiretap plugins.  Since we don't have any
such plugins in the tree I do somewhat doubt the need for all this but I don't
want to be the one to remove the functionality.)

svn path=/trunk/; revision=24650
2008-03-16 00:58:15 +00:00
Gerald Combs 46bcad885a Check in the OS X packaging patch from bug 2341, since I've had
confirmation that the OS X package works on at least one system
other than my laptop.

svn path=/trunk/; revision=24640
2008-03-15 18:31:52 +00:00
Gerald Combs 68d23708bc From Stephen Donnelly via bug 2235:
This plugin implements a dissector for Infiniband. It is released 
under the GPL v2.

Rather than using say libpcap to capture raw (unframed) IP packets 
from near the top of an IPoIB stack, this plugin dissects link level
Infiniband frames.

Infiniband trace files can be read from Endace ERF format trace 
files, or from libpcap DLT_ERF files containing ERF TYPE_INFINIBAND 
records. There is currently no native DLT_INFINIBAND in libpcap.

Each record contains a hardware timestamp, capture metadata such as 
port Id, and a complete link level Infiniband frame starting from
the Local Route Header.

svn path=/trunk/; revision=24628
2008-03-14 17:47:53 +00:00
Gerald Combs 2d92baa2d1 Add files to the tarball that are necessary to compile and create
packages under Windows.

svn path=/trunk/; revision=24466
2008-02-26 00:52:12 +00:00
Guy Harris 885fec709b Include docbook/ws.css in the release tarball, as we need it for
building man pages.  Make ws.css in the current directory depend on
$(srcdir)/docbook/ws.css, not just docbook/ws.css, so that builds work
outside the source directory.  Clean up ws.css in the current directory
when doing "make distclean".

svn path=/trunk/; revision=24449
2008-02-24 02:00:40 +00:00
Gerald Combs 4f996bd670 Use the docbook CSS for the man pages (which assumes your version of
pod2html supports the "--css" flag). Package up the CSS file, and add
missing HTML files where needed.

svn path=/trunk/; revision=24428
2008-02-22 20:03:36 +00:00
Stig Bjørlykke 4215b61779 Add rawshark.rc.in to tarball.
svn path=/trunk/; revision=24388
2008-02-19 09:45:59 +00:00
Gerald Combs 7706f9e17e Fix compilation on non-Windows systems.
svn path=/trunk/; revision=24340
2008-02-16 01:00:01 +00:00
Gerald Combs 98bacb3556 Add rawshark, a utility that, when given raw pcap-formatted packets and
a list of fields, prints the field values found in each packet.

Packet data can be specified as a libpcap DLT, e.g. "EN10MB" or an upper-layer protocol, e.g. "http".

svn path=/trunk/; revision=24339
2008-02-15 23:20:32 +00:00
Anders Broman fc1244edbe Split out the Gmb application AVP:s to at least make it simpler to handle the
AVP "collision".
http://bugs.wireshark.org/bugzilla/show_bug.cgi?id=1494

svn path=/trunk/; revision=24236
2008-01-31 21:53:26 +00:00
Jeff Morriss 00356bd4c7 Now that we have wiretap plugins, capinfos and editcap need to be linked against libwireshark (because the non-wiretap plugins use it but also init_progfile_dir() is in epan and they use that to load the plugins)
svn path=/trunk/; revision=24123
2008-01-17 19:44:04 +00:00
Gerald Combs 10176064a6 TShark doesn't need setuid permissions any more.
svn path=/trunk/; revision=23925
2007-12-20 00:42:40 +00:00
Stig Bjørlykke 9e0327ef80 Added icon_color_*.xpm to Makefile.am
svn path=/trunk/; revision=23863
2007-12-14 17:49:53 +00:00
Gerald Combs 036ae7407c Add missing files to the distribution.
svn path=/trunk/; revision=23849
2007-12-12 22:13:58 +00:00
Jörg Mayer ac4dbaacf3 Another attempt to fix
http://bugs.wireshark.org/bugzilla/show_bug.cgi?id=1413

We need to make sure that things look the way we expect them,
no matter which language the user is using.

svn path=/trunk/; revision=23784
2007-12-06 11:51:21 +00:00
Gerald Combs 36f0b417ea Add a directory argument and some default directories to "configure
--with-libsmi".

svn path=/trunk/; revision=23676
2007-11-30 00:45:12 +00:00
Gerald Combs 118aad0977 Add the portableapps files to the distribution.
svn path=/trunk/; revision=23521
2007-11-20 21:27:45 +00:00
Gerald Combs 58914b5248 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
2007-11-20 16:53:01 +00:00
Anders Broman 405be3098f From Valery Sigalov:
New dissector for TPNCP protocol.
http://bugs.wireshark.org/bugzilla/show_bug.cgi?id=1853

svn path=/trunk/; revision=23428
2007-11-11 13:23:17 +00:00
Stephen Fisher 432aa1788a Add MacOS X version next to the Darwin version in version outputs.
svn path=/trunk/; revision=23418
2007-11-10 00:57:41 +00:00
Anders Broman e69d68f57d Fix some typos.
svn path=/trunk/; revision=23376
2007-11-06 18:10:34 +00:00
Jeff Morriss b33945ca1f text2pcap now depends on libwiretap (for eth_fopen()) but only on Windows. Make it depend on libwiretap on *NIX, too, only to keep things in sync.
svn path=/trunk/; revision=23209
2007-10-16 18:28:27 +00:00
Anders Broman 3c419f798c Make MGCP a builtin dissector to reduce the number of plugins.
(Leave the MGCP plugin dir for now).

svn path=/trunk/; revision=23190
2007-10-15 18:57:10 +00:00
Anders Broman 721796617d From Peter Johansson:
addressing the compilation problems

svn path=/trunk/; revision=23188
2007-10-15 18:39:58 +00:00
Martin Mathieson bafcd03634 In source tree, move wimaxasncp TLV files from plugin folder -> new top-level wimaxasncp folder.
svn path=/trunk/; revision=23184
2007-10-15 12:32:19 +00:00
Jörg Mayer 094e2a9a5f Get rid of the remains of NET-SNMP in the build process.
svn path=/trunk/; revision=22934
2007-09-24 06:59:40 +00:00
Stig Bjørlykke 4a58028897 Fixed a typo: setuid-root.in -> setuid-root.pl.in
Added setuid-root.pl to svn:ignore

svn path=/trunk/; revision=22744
2007-08-30 08:50:05 +00:00
Gerald Combs 92802883a6 Change the "--enable-setuid-install" option to install dumpcap and TShark
setuid instead of Wireshark.  Remove the "DANGEROUS" notices, but leave it
disabled by default.  Whine if the user runs Wireshark or TShark as root.
Add a preference to disable the whining.  Add a "setuid-root" script that
can be used to switch dumpcap and TShark's setuid-ness on and off for
development and testing.  Update the release notes and README.packaging.

svn path=/trunk/; revision=22733
2007-08-30 00:24:40 +00:00
Luis Ontanon 15948507ae Get smi_modules in the distrib
svn path=/trunk/; revision=22694
2007-08-27 22:06:47 +00:00
Richard van der Hoff e184617c04 complete the death of the h223 plugin
svn path=/trunk/; revision=22635
2007-08-24 13:44:59 +00:00
Jaap Keuter b65cc92385 Add the UNISTIM plugin to Wireshark.
svn path=/trunk/; revision=22558
2007-08-20 20:50:29 +00:00
Martin Mathieson d5b50f6f82 Add etsie2e4.xml to Makefile.am
svn path=/trunk/; revision=22495
2007-08-13 21:17:02 +00:00
Ulf Lamping b2cba56d8c as noted by Stig Bjørlykke: Also adding "services" to pkgdata_DATA will install the services file correctly.
svn path=/trunk/; revision=22488
2007-08-12 21:46:50 +00:00
Ulf Lamping 0a4e09493a add IANA port-numbers file as a file named "services", with some minor explanations from me at the top of that file
add it to the distributed files, to the Win32 NSIS and U3 packages. UNIX packages will still miss this (optional) file.

svn path=/trunk/; revision=22487
2007-08-12 20:54:30 +00:00
Guy Harris 46be54cee3 Add a Makefile.nmake.inc file, to hold rules etc. used by multiple
Makefile.nmake files; currently, it has the (F)lex-to-C rule and a
.SUFFIXES pseudo-rule to add .l to the list of suffixes.  Have
Makefile.nmake files with .l.c rules include Makefile.nmake.inc to get
that rule.

The names Makefile.am.inc and Makefile.nmake.inc aren't necessarily the
right names for the files in question.

Use $(PACKAGE) in the Mate plugin's Makefile, rather than "mate".

svn path=/trunk/; revision=22437
2007-08-01 22:20:38 +00:00
Guy Harris 159e795100 Add a Makefile.am.inc file, to hold rules etc. used by multiple
Makefile.am files; currently, it has the (F)lex-to-C rule.  Have
Makefile.am files with .l.c rules include Makefile.am.inc to get that
rule.

svn path=/trunk/; revision=22436
2007-08-01 20:35:05 +00:00
Guy Harris 09804baa2b Add some missing files from the doc directory, and sort them in the
order that "ls" produces them.

svn path=/trunk/; revision=22302
2007-07-13 22:09:58 +00:00
Martin Mathieson ffb54d975a Add DTD file for xcap-error (RFC 4825)
svn path=/trunk/; revision=22148
2007-06-21 11:37:42 +00:00
Luis Ontanon 162382dcb1 Have editcap and capinfos compile --without-plugins
Should go in 0.99.6


svn path=/trunk/; revision=22116
2007-06-17 04:58:16 +00:00
Martin Mathieson a06723a7fb Diameter update:
- add IMS Gq interface (same AVPs seem to be used by IMS Rx and ETSI Gq' interfaces)
- other small corrections

svn path=/trunk/; revision=22079
2007-06-12 11:09:22 +00:00
Gerald Combs f60e81aaac Fix compilation under VS6 (hopefully without breaking compilation
anywhere else).  Instead of using getaddrinfo() and getnameinfo(),
promote inet_pton.c and inet_ntop.c to the top level and use those
routines instead.

(It's 2007, for crying out loud.  Why is this even an issue?)

svn path=/trunk/; revision=22075
2007-06-11 18:26:09 +00:00
Gerald Combs a491fec183 From Mike Harvey: Support for WiMAX and the WiMAX M2M encapsulation protocol.
Add support for WiMAX and M2M to various makefiles and installer files.  Add
basic support for M2M to randpkt.

svn path=/trunk/; revision=21945
2007-05-25 23:40:42 +00:00
Ulf Lamping dd8feca514 from Gerhard Gappmeier (ascolab):
new dissector for OPCUA protocol

svn path=/trunk/; revision=21760
2007-05-14 13:58:54 +00:00
Sebastien Tandel ee7919cc42 even this repo contains code generated by lex!
svn path=/trunk/; revision=21434
2007-04-14 16:09:59 +00:00
Jeff Morriss 5a0cd55e15 Remove references to the megaco plugin from the top level Makefiles.
svn path=/trunk/; revision=21198
2007-03-26 01:56:51 +00:00
Stephen Fisher 62f88a4a04 From Sebastien Tandel:
(Temporarily disable the warnings as errors default on Unix to get
to get the buildbots and people with gcc40 going again until those
additional warnings gcc40 generates can be fixed-I'm working on it
ASAP)

   Patch for configure.in which disables by default the treatment of
warnings as errors.
It can be enabled with './configure --with-warnings-as-errors'.
The macro will test first if GCC is present. If it's the case,
HAVE_WARNINGS_AS_ERRORS is defined. All the USING_GCC have been replaced
by HAVE_WARNINGS_AS_ERRORS.
With this switch, people won't suffer from unexpected warnings when
downloading svn sources during the transition time ;)


svn path=/trunk/; revision=21153
2007-03-23 17:49:59 +00:00
Stephen Fisher cdf47e536b Add -Werror when using GCC only to the Makefile.am of the base
directory and most of the plugins to match the same command 
put in the Makefile.nmake files for Windows compliations.  Fix
a few warnings when compiling under gcc 3.4.4 on FreeBSD.  Create
new automake file variable called USING_GCC in configure.in and
wiretap/configure.in to acomplish the above -Werror addition. 


svn path=/trunk/; revision=21127
2007-03-22 23:03:39 +00:00
Jeff Morriss 280521cead rdps is built to run on the compile server, not on the target machine: use CC and CFLAGS instead of CC_FOR_BUILD and CFLAGS_FOR_BUILD, respectively
svn path=/trunk/; revision=20727
2007-02-06 06:24:34 +00:00
Gerald Combs e586b60477 Fix dist.
svn path=/trunk/; revision=20686
2007-02-02 20:07:58 +00:00
Gerald Combs 320be55388 Add a Windows installer icon. Remove the ARGB versions from the other
Windows icons.

svn path=/trunk/; revision=20685
2007-02-02 18:45:23 +00:00
Gerald Combs 5d89a093c5 Add an installer icon.
svn path=/trunk/; revision=20684
2007-02-02 18:43:25 +00:00
Luis Ontanon c8e3f9209c Fix version_info.c compilation
svn path=/trunk/; revision=20478
2007-01-18 14:04:49 +00:00
Luis Ontanon 9998032c59 Add the example_snmp_users_file to the ditribution
svn path=/trunk/; revision=20385
2007-01-10 21:48:22 +00:00
Guy Harris 14ad19db5f The stuff we were doing with {programname}_DEPENDENCIES macros was to
work around a deficiency in older versions of automake; we now require
automake 1.6, which doesn't have that deficiency, so we get rid of that
stuff and simplify things.

svn path=/trunk/; revision=20249
2006-12-30 04:40:59 +00:00
Guy Harris 04da496b8d Bring all the {programname}_* macros together into one section.
Split bin_PROGRAMS and man1_MANS into multiple lines, and put them in
the same order as the corresponding {programname}_* macro sections.

Get rid of the separate {programname}_DEPENDENCIES macros in cases where
they can be constructed from the corresponding {programname}_LDADD
macro, and explain why they're different in cases where they can't be.

svn path=/trunk/; revision=20248
2006-12-30 01:15:05 +00:00
Guy Harris c0363f445f Regularize the setting of variables for various executable targets.
svn path=/trunk/; revision=20242
2006-12-30 00:14:25 +00:00
Gerald Combs bd282b4114 Move the contents of airpdcap to epan/crypt. Try to fix the current
distcheck failure.  Move the nmake build targets for airpdcap from 
epan/dissectors to epan.  This will probably break the Windows build.

svn path=/trunk/; revision=20231
2006-12-28 17:22:12 +00:00
Gerald Combs 2437fd2e77 Prepare to move the airpdcap code to epan/crypt (SVN won't let me actually
move the files until these changes are checked in).  Add an AC_DEFINE
for airpdcap (which will be removed once the changes have settled).
Update the airpdcap code to compile on non-Windows systems.  Fix up
comments and whitespace to conform more closely to the rest of the
code base.  Verified to compile under Windows and OS X.

svn path=/trunk/; revision=20227
2006-12-27 23:05:55 +00:00
Martin Mathieson b14829d151 From Olivier Jacques:
Here is a DTD for the MSCML protocol, draft-07. This implementation is not entirely up-to-date (draft-09 is out), but this is a good base to start from.
 
I updated the WIKI with info, snapshot and sample capture: http://wiki.wireshark.org/MSCML

svn path=/trunk/; revision=19901
2006-11-15 17:27:04 +00:00
Jörg Mayer 0d413cf57e didier gautheron:
idl2wrs.sh is a generated file.


svn path=/trunk/; revision=19893
2006-11-14 20:01:41 +00:00
Anders Broman 3b48829115 Add SIP application AVP:s.
svn path=/trunk/; revision=19890
2006-11-14 06:31:47 +00:00
Jörg Mayer 46df9a118a albert chin:
version_info.c has:
  #ifdef HAVE_LIBGCRYPT
  #include <gcrypt.h>
  #endif /* HAVE_LIBGCRYPT */

  #ifdef HAVE_LIBGNUTLS
  #include <gnutls/gnutls.h>
  #endif /* HAVE_LIBGNUTLS */

However, Makefile.am doesn't include the necessary CPPFLAGS/LDFLAGS to
resolve symbols from the above. Patch attached.


Note: dumpcap should not need to be linked to gnutls, but that's a
problem with the version infrastructure.

svn path=/trunk/; revision=19853
2006-11-07 08:41:46 +00:00
Guy Harris 0c0c517dae Get rid of more ACN plugin references.
svn path=/trunk/; revision=19841
2006-11-07 00:55:14 +00:00
Jaap Keuter 29e756cb38 Add image/wiresharkdoc.ico to the EXTRA_DIST symbol
svn path=/trunk/; revision=19823
2006-11-06 14:20:59 +00:00
Gerald Combs 0cb19ab909 Fix distcheck.
svn path=/trunk/; revision=19789
2006-11-04 00:35:04 +00:00
Jörg Mayer 63f00dfdc7 Robert Schwebel:
Fix for http://bugs.wireshark.org/bugzilla/attachment.cgi?id=419&action=view
  cross compilation fails

With the following change: Use only AC_CANONICAL_TARGET

From the autoconf manual:
     The user is encouraged to use either `AC_CANONICAL_BUILD', or
     `AC_CANONICAL_HOST', or `AC_CANONICAL_TARGET', depending on the
     needs.  Using `AC_CANONICAL_TARGET' is enough to run the two other
     macros.


svn path=/trunk/; revision=19753
2006-10-31 11:35:55 +00:00
Jörg Mayer 1069b24680 carsten.prescher@eads.com:
Fix for http://bugs.wireshark.org/bugzilla/show_bug.cgi?id=1114
@SHELL@ not replaced in idl2wrs

svn path=/trunk/; revision=19742
2006-10-30 18:17:10 +00:00
Martin Mathieson 7958903f7c Add DTD for RFC 4662 (Event Notification Extension for Resource Lists) XML schema.
svn path=/trunk/; revision=19611
2006-10-19 17:37:15 +00:00
Guy Harris 631a4936c5 Install the COPYING file, as the license tab in the About box needs it.
svn path=/trunk/; revision=19607
2006-10-19 09:31:11 +00:00
Jaap Keuter a3f017648f From Shaun Jackman
The RDM protocol has been accepted as ANSI standard E1.20-2006. The following patch updates the decoder to that spec. 
At the same time it is promoted to a build-in dissector.

svn path=/trunk/; revision=19596
2006-10-18 19:29:05 +00:00
Gerald Combs 0714d09091 Add the u3 packaging directory to the distribution.
svn path=/trunk/; revision=19443
2006-10-06 17:50:51 +00:00
Luis Ontanon 6462d05044 Move the Lua interface into epan... (not a plugin anymore).
- Rename Tap into Listener
- add a mechanism to pass protocols' tap data to the Listener


svn path=/trunk/; revision=19319
2006-09-25 01:09:00 +00:00
Guy Harris 0ec3e5661f Move the codecs into a top-level "codecs" subdirectory; there's no
guarantee that all programs using the codecs will necessarily be using
GTK+.

svn path=/trunk/; revision=19117
2006-09-02 06:39:43 +00:00
Jörg Mayer a2761ac6d7 don't recycle ethereal-icons
svn path=/trunk/; revision=19102
2006-08-31 13:12:09 +00:00
Ronnie Sahlberg 607f73cd71 dont include config.nmake in the codecs makefile it appears it is not needed
dont link with libcodec.a
1, this should be a shared library not a static one?
2, its not built on unix so it is missing


making unix/linux build work again



svn path=/trunk/; revision=19101
2006-08-31 12:13:12 +00:00
Anders Broman 7eac3c2879 From Alejandro Vaquero:
- Change the "listen_rtp" to "rtp_player"
- Change from a plugin to be part of the core
- By default it will not compile with the rtp_player. In order to 
compile it is necessary to:
       + For windows: uncomment the line 
"PORTAUDIO_DIR=$(WIRESHARK_LIBS)\portaudio_v18_1" in config.nmake
       + For linux: using the "--with-portaudio=yes"

svn path=/trunk/; revision=19094
2006-08-30 21:51:31 +00:00
Ulf Lamping 2efc830279 add a missing icon from yesterdays commit
svn path=/trunk/; revision=19024
2006-08-25 07:24:58 +00:00
Gerald Combs 3e2e72ba80 Add missing files to the distribution.
svn path=/trunk/; revision=19012
2006-08-24 16:19:49 +00:00
Ronnie Sahlberg 40cd131dfb remove another reference to snprintf
svn path=/trunk/; revision=18772
2006-07-20 10:34:01 +00:00
Anders Broman f53c99a9fa From Martin Mathieson:
Here is a DTD for xcap-caps and changes needed to install it (nsi change 
is untested).

svn path=/trunk/; revision=18767
2006-07-19 19:00:36 +00:00
Jörg Mayer 9da948e295 Fix to http://bugs.wireshark.org/bugzilla/show_bug.cgi?id=333
The additional libs need to be added to the final linking
	stage of all programs using it - not just the libs that
	pull in the dependencies (that doesn't work on all platforms,
	just most).

svn path=/trunk/; revision=18765
2006-07-19 15:08:46 +00:00
Jörg Mayer 2406710eb1 Jeff Morriss:
Fix for
	http://bugs.wireshark.org/bugzilla/show_bug.cgi?id=1006
	"wireshark link fails on systems with no TLS library but
	with grypt library (missing -lgrcyprt)"


svn path=/trunk/; revision=18764
2006-07-19 14:02:22 +00:00
Gerald Combs a832d689c6 Under Solaris (9, at least) the "iconv.h" header supplied with GNU libiconv
is incompatible with the iconv routines in libc.  Add an aclocal macro from
Bruno Haible that sorts everything out.

svn path=/trunk/; revision=18729
2006-07-13 18:17:32 +00:00
Gerald Combs 1f4873db0b Add the asn1 directory to the distribution.
svn path=/trunk/; revision=18676
2006-07-06 22:34:41 +00:00
Jaap Keuter 1205ee2a14 From Christian Durrer:
I hope this is the right place to send a patch for a new dissector
plugin. The telegram it dissects are for the communication between PLCs
(Programmable logic controller) from the company Saia Burgess Controls
Ltd. (http://www.start-controls.com, http://www.saia-burgess.com or
http://www.sbc-support.ch). The protocol is named Ether-S-Bus (the PLCs
are called PCD2, PCD3, PCD4).

svn path=/trunk/; revision=18526
2006-06-21 06:31:06 +00:00
Anders Broman 81bda938ff From Martin Mathieson:
This patch:
- treats the variant field as a variable-length string field.  This is 
needed for some of the more complicated protocols where the variant 
number of the embedded protocol is also represented

- the patch to Makefile.am was not applied from 
http://www.wireshark.org/lists/wireshark-dev/200606/msg00009.html

svn path=/trunk/; revision=18427
2006-06-11 08:26:55 +00:00
Guy Harris c923538b5a do_subst wasn't defined, so just use "cp" for now. (Is there anything
in there that needs substitution?)

svn path=/trunk/; revision=18417
2006-06-10 00:07:02 +00:00
Gerald Combs 811209bd73 Switch back to the 2d icons.
svn path=/trunk/; revision=18385
2006-06-07 15:18:32 +00:00
Gerald Combs 227b8c7bb7 In all Wireshark images and icons, make the fin point left (which
signifies moving west, in case you're wondering).  Convert many Ethereal
icons to Wireshark, and remove a few.  (Notably Ethereal.icns, for which
we don't currently have a counterpart.)

svn path=/trunk/; revision=18376
2006-06-07 02:49:58 +00:00
Gerald Combs 47f8216d1c Remove more unused icons.
svn path=/trunk/; revision=18365
2006-06-06 22:30:46 +00:00
Gerald Combs a4a7e7c4f9 Icon cleanup.
svn path=/trunk/; revision=18350
2006-06-05 19:32:44 +00:00
Gerald Combs 8400e6972e Remove recently-deleted images.
svn path=/trunk/; revision=18337
2006-06-05 01:40:49 +00:00
Tomas Kukosa 62179dd08f eicon3d*.xpm -> wsicon*.xpm
svn path=/trunk/; revision=18309
2006-06-02 05:43:38 +00:00
Gerald Combs 6a14b9a383 Fix dist/distcheck.
svn path=/trunk/; revision=18302
2006-06-01 14:28:13 +00:00
Gerald Combs b86c16e2f9 Add the Wireshark logos and icons to the distribution.
svn path=/trunk/; revision=18298
2006-05-31 23:20:27 +00:00
Gerald Combs 8d6c73e567 More ethereal -> wireshark.
svn path=/trunk/; revision=18292
2006-05-31 22:34:21 +00:00
Gerald Combs d63374e248 ethereal.rc -> wireshark.rc
svn path=/trunk/; revision=18283
2006-05-31 20:32:52 +00:00
Gerald Combs 8f6c23ae6b Rename the manifest file. Remove some unused images.
svn path=/trunk/; revision=18277
2006-05-31 20:05:54 +00:00
Gerald Combs eb71f7fb96 Rename the main executable to "wireshark", along with more conversions:
ethereal.com -> wireshark.org
  mailing lists and addresses
  ETHEREAL -> WIRESHARK
  Man pages
  Automake/Autoconf names


svn path=/trunk/; revision=18271
2006-05-31 19:12:15 +00:00
Gerald Combs 8958bab6de Tethereal/tethereal -> TShark/tshark.
svn path=/trunk/; revision=18268
2006-05-31 17:38:42 +00:00
Gerald Combs d585c41420 Fix building idl2wrs (after looking through previous versions of Makefile.am
it's not apparent how it was working before).

svn path=/trunk/; revision=18266
2006-05-31 15:00:02 +00:00
Gerald Combs b15974d094 libethereal -> libwireshark. idl2eth -> idl2wrs. There are a _lot_ of
changes here.  It compiles OK on OS X, but hasn't been tested anywhere else.

svn path=/trunk/; revision=18260
2006-05-31 00:23:01 +00:00
Ronnie Sahlberg 18ffc28bb1 ethereal->wireshark
svn path=/trunk/; revision=18208
2006-05-22 09:05:24 +00:00
Ronnie Sahlberg f0b33a4789 ethereal->wireshark updates
svn path=/trunk/; revision=18206
2006-05-22 08:14:01 +00:00
Ronnie Sahlberg 89f022b12b name change
svn path=/trunk/; revision=18197
2006-05-21 05:12:17 +00:00
Guy Harris ac146caf5c Anything linked with @PCAP_LIBS@ needs, on at least some platforms
(e.g., Solaris 2 and later), to be linked with @SOCKET_LIBS@ and
@NSL_LIBS@ as well.

svn path=/trunk/; revision=18082
2006-05-03 08:48:52 +00:00
Luis Ontanon 25ff5cd787 Move init.lua and family to plugins/lua
svn path=/trunk/; revision=17600
2006-03-12 16:41:34 +00:00
Gerald Combs 705e454915 Remove the test-splint target. Splint never did work on the Ethereal sources
and it doesn't look like that will change any time soon.

svn path=/trunk/; revision=17481
2006-03-06 16:30:45 +00:00
Jörg Mayer c7a3dd2938 Remove references to README.tvbuff. The Makefile.am should fix the
buildbot failure.

svn path=/trunk/; revision=17405
2006-02-25 02:02:36 +00:00
Guy Harris 3442ed9e32 Check for getopt in the configure script, as we do for other routines
not available on all platforms.  Include getopt.c in
EXTRA_ethereal_SOURCES and include getopt.h in EXTRA_ethereal_INCLUDES,
as we do with the other files that supply routines not available on all
platforms, rather than always including them in the source for dumpcap.

svn path=/trunk/; revision=17311
2006-02-15 19:20:36 +00:00
Jörg Mayer e35eef9c0a Change suid to take dumpcap into account
svn path=/trunk/; revision=17299
2006-02-14 14:42:37 +00:00
Gerald Combs ee12c30d2c Add a manifest, so that styled widgets are drawn correcltly. The
"version" field in the manifest is picky about formatting, so setting
a custom version in config.nmake (e.g. "0.10.14-test") will probably
break the Windows build.

svn path=/trunk/; revision=17291
2006-02-13 23:09:51 +00:00
Luis Ontanon 184349063f - disable print
- add a log facility to lua (so far just prints to stderr)
- add settings to disable lua even if installed, to load or not to load user scripts when superuser
- create a default /usr/local/share/ethereal/init.lua that blocks all the io/system calls when running as superuser



svn path=/trunk/; revision=17290
2006-02-13 22:13:31 +00:00
Gerald Combs 80e5e0fb15 Copy over the file open/save code from the Win32 native branch.
The Windows-native routines were integrated by inserting

#if GTK_MAJOR_VERSION >= 2 && _WIN32
  win32_native_routine(GDK_WINDOW_HWND(top_level->window));
  return;
#endif

at the beginning of each GTK+ file routine.  There's probably a prettier
way to do this.

Some of the sizes need to be tweaked in win32-file-dlg.rc, but everything
seems to work.

Fix up whitespace.

svn path=/trunk/; revision=17285
2006-02-13 21:25:43 +00:00
Ulf Lamping 02885fd76d add generation of dumpcap manpage
svn path=/trunk/; revision=17264
2006-02-12 01:40:20 +00:00
Jörg Mayer 9ba6da080a Paolo Abeni
I have developed an external plugin to enable ssl decryption in
ethereal.

Me

- Remove unnecessary $Id$ from acinclude.m4
- Added packet-ssl-utils.h to Makefile.common
- Fixed a few warnings

TODO

- Lots of warning fixes (see separate mail)
- Reformat function headers to read like the others do
  (return value<newline>function-name...)
- Test on Windows platform
- Review the patch to packet-ssl.c and new files packet-ssl-utils.[hc]


svn path=/trunk/; revision=17156
2006-02-04 23:44:05 +00:00
Luis Ontanon c8dd927e0c It was hard.. but at the end I won (or at least i believe so...).
After install hello_world.lua works.


svn path=/trunk/; revision=17137
2006-01-31 22:22:05 +00:00
Ulf Lamping 8b7477f57c GTK 2.x only: show a slightly different Ethereal main icon while capturing.
I very often forget to stop a running capture, so Ethereal keeps capturing packets on and on, leaving me with a lot of unrequired packets.

On the other hand (because of the above) I often maximize Ethereal just to see that it's really not capturing any longer.

Looking at the window title isn't of much help, as this title changes with every capture file name loaded, so there's no title which can be easily remembered.

We probably might use this icon mechanism as well, when Ethereal loads a (huge) file, so the user get's a more visual feedback when the capture loading is finished (and probably for other potential "lengthy" tasks as well).

svn path=/trunk/; revision=17042
2006-01-17 00:40:32 +00:00
Jörg Mayer 1e4d8c9170 Don't link dumpcap with -lm
svn path=/trunk/; revision=16968
2006-01-07 00:37:58 +00:00
Jörg Mayer fc2169de53 Found by henning.treu
doc/README.malloc and  doc/README.stats_tree were missing from the
distribution.


svn path=/trunk/; revision=16936
2006-01-03 23:17:49 +00:00
Anders Broman 476059c8b8 From Martin Warnes
Attached a small patch to top level Makefile.am to include the recently 
added diamter data files chargecontrol.xml and TGPPSh.xml

From jaaap Keuter:
I've polished up the README.malloc describing ememified memory management. It's basically the same information, but made a bit more accessable. All this in response to bug 511

svn path=/trunk/; revision=16845
2005-12-18 18:15:24 +00:00
Jörg Mayer 743ab00c60 Don't link dumpcap against libethereal etc.
It might be, that I've removed too many options:

in that case, replace
@PCAP_LIBS@
by some of
@PCAP_LIBS@ @SOCKET_LIBS@ @NSL_LIBS@

and let me know which of the options are needed

svn path=/trunk/; revision=16824
2005-12-16 17:05:37 +00:00
Ulf Lamping 7e3a24418c rename pcap-....c/.h files to capture-pcap-....c/.h
this way, the capture prefix will "logically" group the files together and file browsers will also group them

we may want to move the files into a subdir capture later

svn path=/trunk/; revision=16691
2005-12-06 00:07:13 +00:00
Guy Harris 4e4c2942e7 Add support for building dumpcap, and fix dumpcap to build on UN*X.
svn path=/trunk/; revision=16618
2005-11-28 11:40:28 +00:00
Ulf Lamping fc61a1de25 first steps towards a separated capture tool, working title "dumpcap"
personal backup only, not meant for public testing!

I've copied main.c into dumpcap.c and carved out all things not needed

currently won't work as a command line tool, capture_loop.c wants an input pipe
console output is also very ugly and the whole code needs a lot of further cleanup

shouldn't break the unix build as I've only changed the nmake files so far, but who knows ...

svn path=/trunk/; revision=16615
2005-11-28 08:54:52 +00:00
Ulf Lamping 590537c968 remove cleanbld.bat (use the distclean target instead)
svn path=/trunk/; revision=16355
2005-10-29 09:48:29 +00:00
Guy Harris a275cd2495 Move the Diameter dictionary files to a "diameter" subdirectory, along
the lines of what's done for RADIUS.  That keeps them together (and
separate from other files), and makes the layout of the top-level source
directory closer to the layout of the installation directory, so that if
you run Ethereal or Tethereal from the top-level directory on Windows
it'll pick up the Diameter dictionary files (if it supports loading
them), and can do so on UN*X if we support a mechanism to let it find
its control files in the directory in which the binary resides.

Use the diameter_DATA, dtds_DATA, and radius_DATA macros in the
EXTRA_DIST macro, so you only have to change the lists of Diameter, DTD,
and RADIUS files in one place if you add or remove a file.

svn path=/trunk/; revision=16050
2005-09-29 02:20:29 +00:00
Anders Broman 84e00aa0f3 Add radius/dictionary.ericsson \
svn path=/trunk/; revision=16044
2005-09-28 20:06:58 +00:00
Anders Broman 58534475ef Add dictionarry.ericsson
svn path=/trunk/; revision=16034
2005-09-28 05:16:51 +00:00
Ulf Lamping 7f97d9e9e7 add a new stop icon 48x48 for (simple) dialogs (derived from the openoffice stock icons and slightly enlarged using the Gimp)
svn path=/trunk/; revision=15885
2005-09-20 01:45:35 +00:00
Luis Ontanon 5066d538c4 add dtds to EXTRA_DIST
svn path=/trunk/; revision=15854
2005-09-18 09:10:03 +00:00
Luis Ontanon 5aa2e7bf23 Get the first few dtds installed.
svn path=/trunk/; revision=15852
2005-09-17 17:17:42 +00:00
Gerald Combs dfe0d739d0 Add Valgrind core files to CLEANFILES.
svn path=/trunk/; revision=15716
2005-09-07 20:49:16 +00:00
Gerald Combs f0cf1e9f64 The .spec file now refers to "ethereal.desktop". Link to it when we
create our RPMs.

svn path=/trunk/; revision=15166
2005-08-01 19:51:06 +00:00
Gerald Combs 40101cf2b1 Update RPM builds.
svn path=/trunk/; revision=15165
2005-08-01 18:04:37 +00:00
Guy Harris aef7edb1d1 It's "plugins", not "Plugins".
svn path=/trunk/; revision=14934
2005-07-16 00:45:22 +00:00
Luis Ontanon 853501a452 Radius Dictionary Support
Part 3: the makefiles


svn path=/trunk/; revision=14926
2005-07-15 21:18:32 +00:00
Jörg Mayer e7c4db81c1 Remove/replace SPACES at the beginning of Makefile.am/Makefile.common
files as not all make implementation work with this.

Found by running
grep '^ ' `find . -name "Makefile.am" -o -name "Makefile.common"`

Gerald: Maybe adding this to the buildbot would be a good idea after all.

svn path=/trunk/; revision=14904
2005-07-12 12:44:42 +00:00
Jörg Mayer 5b442f2279 After doing "make maintainer-clean", "svn status --no-ignore | grep ^I"
returned quite a list of files. Add them to MAINTAINERCLEANFILES.

Whitespace changes (replace multiple spaces by TABs, in a few cases this
needed to be done at the beginning of Makefile lines.


svn path=/trunk/; revision=14891
2005-07-10 08:04:27 +00:00
Jörg Mayer 557b714e71 Remove a leftover dummy list
svn path=/trunk/; revision=14687
2005-06-18 00:10:59 +00:00
Gerald Combs dacd1736fa Read .svn/entries directly instead of calling "svn info", as suggested by
Thomas Anders.  This should make things more locale-independent and remove
a dependency on "svn" being present.

svn path=/trunk/; revision=14620
2005-06-13 16:31:01 +00:00
Gerald Combs 45e13ff5fb Change "colorfilter" to "colorfilters". Fix up whitespace.
svn path=/trunk/; revision=14598
2005-06-09 18:24:55 +00:00
Ulf Lamping 45bac4dda7 provide global default files for cfilters/colorfilters/dfilters
at least the colorfilters file needs some more "finetuning"

NSIS (Win32): install these files into the Ethereal Program dir, but don't overwrite existing ones

makefile.am: I've added the three files to EXTRA_DIST and pkgdata_DATA, which *seems* to be the right places

svn path=/trunk/; revision=14595
2005-06-09 07:43:32 +00:00
Ulf Lamping d817ddf513 win32 only: get interface details from WinPcap's packet.dll (direct access to NDIS specific driver information, lower first part)
svn path=/trunk/; revision=14406
2005-05-20 22:16:47 +00:00
Ulf Lamping 8087f8ccb7 add icons for the "File Set" menu items
svn path=/trunk/; revision=14326
2005-05-07 20:47:39 +00:00
Michael Tüxen 9125cf4c7e Get profinet compiling on Unix.
svn path=/trunk/; revision=14282
2005-05-02 22:15:00 +00:00
Ulf Lamping f315d0976c add "Decode As" and "Checkbox" (Enabled Protocols) Icons
svn path=/trunk/; revision=14116
2005-04-17 21:38:52 +00:00
Ulf Lamping e571cbfa9d add 12 new toolbar/menu icons
add two toolbar toggle buttons
add icons to various menu items

create new Statistics telephony group and put telephony and alike protocols in it

svn path=/trunk/; revision=14098
2005-04-16 10:53:09 +00:00
Gerald Combs 46d347ed7e Add a missing backslash.
svn path=/trunk/; revision=14095
2005-04-15 16:18:34 +00:00
Gerald Combs 6b6dde3aa8 Update to reflect recent toolbar changes.
svn path=/trunk/; revision=14093
2005-04-15 14:26:37 +00:00
Ulf Lamping 854c387c0b add clear toolbar icon (from GTK stock icons)
svn path=/trunk/; revision=14061
2005-04-12 22:55:40 +00:00
Guy Harris 3d38e6bcea We don't have a TODO file any more; it's on the Wiki.
svn path=/trunk/; revision=13727
2005-03-12 02:16:28 +00:00
Gerald Combs add9c22616 Remove AUTHORS-SHORT and AUTHORS-SHORT-FORMAT from the distribution.
(They're automatically generated.)


svn path=/trunk/; revision=13587
2005-03-04 17:42:42 +00:00
Guy Harris 955dd3ea82 "docboook/Makefile.auto.in" is presumably generated from
"docbook/Makefile.auto.am", so it shouldn't need to be included in
EXTRA_DIST - and including it causes "make distcheck" to fail very early
with

	make: *** No rule to make target `docbook/Makefile.auto.in',
	    needed by `distdir'.  Stop.

svn path=/trunk/; revision=13514
2005-02-25 09:58:50 +00:00
Jörg Mayer a9b26f409f Didier Gautheron: Fix out of tree compilation
svn path=/trunk/; revision=13497
2005-02-24 09:08:20 +00:00
Jörg Mayer dedcc5cc2d Preliminary cleanup of static plugin linking
svn path=/trunk/; revision=13496
2005-02-24 07:23:18 +00:00
Jörg Mayer 4af0fd9443 Makefile.autoi.* isn't automagically added to tarball - add to EXTRA_DIST for now
svn path=/trunk/; revision=13440
2005-02-20 05:06:28 +00:00
Guy Harris 6616a3770c Make the "maintainer-clean" rules get rid of some additional generated
files.  Do this with GENERATED_HEADER_FILES, GENERATED_C_FILES, and
GENERATED_FILES macros in Makefile.common files, along the lines of what
wiretap/Makefile.common has.

Clean up "*~" files with "make clean" rather than only "make distclean"
in some additional places.

Add "maintainer-clean" rules to the Makefile.nmake files, paralelling
the ones in the automake-generated Makefile.in files, using the
GENERATED_FILES macros from Makefile.common files.  In some cases, move
the cleanup of files from "make distclean" to "make maintainer-clean",
and in other cases, put in a comment indicating why we're not doing that
(because some files that are distributed in the source tarballs, namely
Flex output, were built with a UN*X Flex and won't compile on Windows,
so we get rid of them with "make distclean" so you can clean up stuff
that *has* to be re-generated for Windows).

Clean up some *CLEANFILES definitions - get rid of ones that no longer
apply as files were moved or that add to the definition a name that's
already there.

svn path=/trunk/; revision=13402
2005-02-14 20:33:57 +00:00
Guy Harris ba7e8f3b81 From Oleg Terletsky: AgentX support.
svn path=/trunk/; revision=13372
2005-02-10 06:36:21 +00:00
Guy Harris 3dcde58708 From Yoshihiro Oyama: include the names of all the IrDA plugin's .o
files in the ENABLE_STATIC plugin_ldadd list.  (This one was missing
from the previous checkin.)

svn path=/trunk/; revision=13187
2005-01-28 09:55:24 +00:00
Guy Harris 4bc45c0d2c From Yoshihiro Oyama: include the names of all the IrDA plugin's .o
files in the ENABLE_STATIC plugin_ldadd list.

svn path=/trunk/; revision=13186
2005-01-28 09:47:52 +00:00
Ulf Lamping 0f80fa5c7d renamed capinfo to capinfos, as the former name capinfo was already used in a program called tcprelay, so that might confuse packaging managers and users. Hopefully I got all the places need to be changed.
svn path=/trunk/; revision=12358
2004-10-20 18:50:58 +00:00
Guy Harris 7e1521119f From Graeme Hewson: make AUTHORS-SHORT not include formatting codes,
with AUTHORS-SHORT-FORMAT containing the formatting codes.

svn path=/trunk/; revision=12334
2004-10-17 23:03:11 +00:00
Guy Harris 716985d56f From Olivier Jacques: add imscxdx.xml to the source tarball and NSIS
packaging information.

svn path=/trunk/; revision=12260
2004-10-11 08:24:46 +00:00
Guy Harris 9c2ece3d96 From Graeme Hewson: translate accented UTF-8 characters to Pod E<>
escapes so they turn into *roff escapes and HTML entities in the output,
in case raw UTF-8 doesn't work.

svn path=/trunk/; revision=11975
2004-09-11 23:42:03 +00:00
Jörg Mayer 4f312f13fb It looks like Debian, Fedora and Suse all use ethereal.desktop instead of Ethereal.desktop
svn path=/trunk/; revision=11808
2004-08-22 09:22:15 +00:00
Gerald Combs d84ec2a1e9 Add capinfo.rc.in and wiretap.rc.in to the distribution.
svn path=/trunk/; revision=11729
2004-08-12 22:45:59 +00:00
Olivier Biot cb6b29786b From Ian Schorr: capinfo - provides capture file information.
svn path=/trunk/; revision=11555
2004-07-28 20:51:29 +00:00
Ronnie Sahlberg 9bbc41e501 reverse part of jmayer's last patch to make tethereal build again
svn path=/trunk/; revision=11456
2004-07-21 09:00:56 +00:00
Guy Harris 6041d12dde From Laurent Rabret: OPSI support.
svn path=/trunk/; revision=11454
2004-07-21 06:31:33 +00:00
Jörg Mayer 66e1c280a3 make "make dist" work again. Well, almost: currently you
need to run
STCHECK_CONFIGURE_FLAGS=--with-ssl=/usr make distcheck
at least on my system.

svn path=/trunk/; revision=11442
2004-07-20 16:58:11 +00:00
Guy Harris 8a8b883450 Set the svn:eol-style property on all text files to "native", so that
they have LF at the end of the line on UN*X and CR/LF on Windows;
hopefully this means that if a CR/LF version is checked in on Windows,
the CRs will be stripped so that they show up only when checked out on
Windows, not on UN*X.

svn path=/trunk/; revision=11400
2004-07-18 00:24:25 +00:00
Guy Harris 506605d771 From Graham Bloice: add resource information to libethereal.dll.
svn path=/trunk/; revision=11388
2004-07-17 09:49:32 +00:00
Gerald Combs 8106dc0862 Convert make-version.pl and the associated cvsversion.h and CVSVERSION
definition to Subversion.  "svn info" prints out the last changed date
of the repository, so we don't have to go hunting through "CVS/Entries"
files anymore.


svn path=/trunk/; revision=11379
2004-07-15 21:09:33 +00:00
Gerald Combs 5648314c03 Some of the documentation files don't depend on [t]ethereal any more. Remove
the dependencies, since it was messing up builds on systems without GTK.

svn path=/trunk/; revision=11262
2004-06-29 03:04:02 +00:00
Jörg Mayer 392a0d43c0 doxygen changes:
- moved doxygen.cfg to doxygen.cfg.in and let configure to the substitution
  on unix. Adapted the namke files accordingly.
- Don't add doxygen as a dependency for libethereal and libui: As doxygen is
  an unconditional target, this would cause the applications to be rebuild
  every time make was called, even when nothing changed in the meantime.
  This means that by now we need to do "make doxygen" manually in case we
  want updated documentation.

svn path=/trunk/; revision=11238
2004-06-25 07:10:55 +00:00
Guy Harris fc1023772c Build and install the HTMLized man pages on UN*X.
svn path=/trunk/; revision=11217
2004-06-23 08:39:07 +00:00
Guy Harris 9bb3e4cf9e On Mac OS X, use Launch Services to start a Web browser with a given URL.
svn path=/trunk/; revision=11208
2004-06-22 00:40:03 +00:00
Jörg Mayer 4651530481 Add the kerberos linking options to the right magic variable
svn path=/trunk/; revision=11178
2004-06-18 12:19:24 +00:00
Jörg Mayer 7abd8a323d Link the Kerberos into the main app, not libethereal
svn path=/trunk/; revision=11164
2004-06-17 08:53:42 +00:00
Ulf Lamping c5196c4a76 split doxygen.cfg into common Ethereal things and module specifics
svn path=/trunk/; revision=11044
2004-05-31 13:42:17 +00:00
Guy Harris 96afc1755d Make "ethereal.1" depend on "AUTHORS-SHORT", so that "AUTHORS-SHORT"
(which is built in the top-level directory) is built before we try to
build "ethereal.1" (which is built in the "doc" directory).

svn path=/trunk/; revision=10966
2004-05-22 21:51:30 +00:00
Guy Harris 76895c41b9 Put "make-authors-short.pl" into the release tarball.
Use it to generate the "AUTHORS-SHORT" file, put that file into the
release tarball, and install it in the data directory.

Add "AUTHORS-SHORT" to the .cvsignore file.

svn path=/trunk/; revision=10953
2004-05-22 07:24:28 +00:00
Guy Harris 15af0f656f From Lars Roland: add support for building a libethereal.dll with MSVC:
add a config.nmake option to control whether to build
	libethereal.dll or not;

	remove "./wiretap" from PATH to prevent problems due to
	wrongly-loaded files;

	build dissector.lib with MSVC;

	move "print.c" and "ps.c" to the dissector helpers, as "print.c"
	imports variables from packet-frame.c and packet-data.c, which
	are in libethereal;

	move "g711.c" out of the dissector helpers, as they're used only
	by Ethereal in a tap, not in Tethereal or in any dissector;

	add a .def file for libethereal;

	arrange to declare global variables exported from libethereal
	with "__declspec(dllimport)" when building programs that import
	those variables;

	update the NSIS installer.

Make the "configure" script define ETH_VAR_IMPORT as "extern".

svn path=/trunk/; revision=10834
2004-05-09 10:03:41 +00:00
Ulf Lamping 9cd7838304 added pane layout icons coming from pan (gnome newsreader)
svn path=/trunk/; revision=10728
2004-04-29 16:49:30 +00:00
Guy Harris 37df1a5847 From Albert Chin: on IRIX, if -la depends on -lb, you must link with -lb
-la.

svn path=/trunk/; revision=10526
2004-03-30 19:34:32 +00:00
Guy Harris a1467c86e1 From Duncan Sargeant: Cisco SS7 RUDP, RLM, and Session Management
support.

svn path=/trunk/; revision=10480
2004-03-25 11:21:07 +00:00
Gerald Combs f5bda7829c Back out previous accidentally-committed change.
svn path=/trunk/; revision=10435
2004-03-22 16:19:53 +00:00
Gerald Combs eaafb5af48 Handle null RADIUS attribute information without crashing. Found by
Jonathan Heusser.

svn path=/trunk/; revision=10434
2004-03-22 16:05:48 +00:00
Jörg Mayer 26875d5b71 Correctly spell REAMDE.macos
svn path=/trunk/; revision=10397
2004-03-17 19:57:28 +00:00
Jörg Mayer 9920ca9112 Experimental Heimdal Kerberos detection.
As this is experimental and does not yet work reliably this feature is
off by default. Enable it by using --with-krb5 during configure.
Please do not yet make use of this feature (i.e. please do not *use* the
defines provided by this option), until it has received further testing
and fixing.
Please run and check what the configure says.

svn path=/trunk/; revision=10395
2004-03-17 18:20:58 +00:00
Jörg Mayer f7aa9e6a3d Whitespace change
svn path=/trunk/; revision=10378
2004-03-14 08:07:16 +00:00
Jörg Mayer b7803c8fc6 Make libethereal and libwiretap shared libs.
svn path=/trunk/; revision=10368
2004-03-13 10:15:36 +00:00
Gerald Combs 3fe295ffd9 Add cvsversion.h, x11-declarations.h, and x11-register-info.h to
CLEANFILES so that "make distcheck" will work.

svn path=/trunk/; revision=10364
2004-03-12 16:31:35 +00:00
Jörg Mayer 0974869dea Move the x11 generation into epan.
aclocal-missing isn't needed any more.

svn path=/trunk/; revision=10299
2004-03-04 08:26:20 +00:00
Jörg Mayer 3fb8f84842 Remove generation of register.c from toplevel - it's in epan now
svn path=/trunk/; revision=10292
2004-03-03 23:51:31 +00:00
Jörg Mayer 771bcfb014 Return of the .PHONY target (aka cvsversion.h)
svn path=/trunk/; revision=10284
2004-03-03 00:18:21 +00:00
Jörg Mayer 2e0e2b30ab Jeff Morriss: Move generation of packet-ncp2222.c to epan to make things work again
svn path=/trunk/; revision=10283
2004-03-03 00:07:01 +00:00
Jörg Mayer 4a6e73c84a Move the dissectors into libethereal (no static/shared lib changes):
- Create epan/Makefile.common
- Move dissector_src and helper files from Makefile.common to
  epan/Makefile.common
- Create register.c in epan/
- link all the files into libethereal
- put plugin_src into epan/Makefile.am

Try to make rpms build with rpm v4 again (sorry, I've forgotten who to
attribute this to).

svn path=/trunk/; revision=10273
2004-03-02 01:21:56 +00:00
Guy Harris 77b2def203 Add "make-version.pl" to the distribution.
svn path=/trunk/; revision=10228
2004-02-24 18:54:35 +00:00
Jörg Mayer d64179efcd build randpkt similar to dftest
svn path=/trunk/; revision=10177
2004-02-22 08:58:19 +00:00
Ulf Lamping d830fd0f90 make the Makefile.common really common between automake and nmake,
as lot's of definitions were used in the automake process only

svn path=/trunk/; revision=10176
2004-02-22 08:30:41 +00:00
Guy Harris b30269de64 Add a few more new toolbar icons.
svn path=/trunk/; revision=10130
2004-02-20 11:06:20 +00:00
Ulf Lamping 8588506f32 added missing distribution files
svn path=/trunk/; revision=10110
2004-02-19 08:24:44 +00:00
Jörg Mayer f2cfcd15a2 Undo last change for cvsversion.h generation. It causes make to loop on some systems
svn path=/trunk/; revision=10020
2004-02-10 12:11:22 +00:00
Jörg Mayer 70539ced27 Run make-version.pl on every make (at least with gnu make)
svn path=/trunk/; revision=10019
2004-02-10 00:50:04 +00:00
Jörg Mayer 591edcfd03 Move sourcelists into Makefile.common
svn path=/trunk/; revision=9941
2004-02-01 10:07:20 +00:00
Gerald Combs 0ca3ad93b8 Add the new dialog images to the distribution.
svn path=/trunk/; revision=9936
2004-02-01 04:34:53 +00:00
Guy Harris c979950fc6 From Sam Leffler: support for BSD radiotap header for 802.11.
svn path=/trunk/; revision=9919
2004-01-31 04:40:09 +00:00
Guy Harris 580a8706eb From Alastair Maw: IAX2 support.
svn path=/trunk/; revision=9875
2004-01-27 01:35:25 +00:00