aboutsummaryrefslogtreecommitdiffstats
path: root/wiretap/Makefile.am
AgeCommit message (Collapse)AuthorFilesLines
2011-06-07Add more missing files.Anders Broman1-0/+1
svn path=/trunk/; revision=37593
2011-06-06Add links to libtool's recommendations for library versions.Gerald Combs1-0/+1
svn path=/trunk/; revision=37582
2011-06-04Reorganize dumpabi targets to keep temporary filesBalint Reczey1-2/+3
svn path=/trunk/; revision=37540
2011-05-31Add dumpabi target to Makefiles in wsutil, epan and wiretap directories.Balint Reczey1-0/+10
We can use the dumped ABI description for comparing ABI changes between revisions. svn path=/trunk/; revision=37474
2011-02-04(As in the Windows builds) don't have checkapi check the 'abort' group in ↵Jeff Morriss1-1/+3
wiretap. svn path=/trunk/; revision=35797
2010-12-07Fill out libwiretap's DEPENDENCIES line with the rest of the dependencies ↵Jeff Morriss1-2/+1
(from LIBADD). svn path=/trunk/; revision=35146
2010-12-07Make libtool export only symbols listed in *.def filesBalint Reczey1-1/+4
svn path=/trunk/; revision=35145
2010-06-30Add Visual C++ project files to the distribution.Gerald Combs1-0/+1
svn path=/trunk/; revision=33386
2009-08-07* Tue May 26 2009 cmorve69@yahoo.esJörg Mayer1-1/+1
- made it compile with --as-needed This patch was taken from the opensuse wireshark.spec file. No thanks go to the author and the package maintainers of this package for not sending this upstream - it would have made it into 1.2.0. svn path=/trunk/; revision=29326
2009-06-15Rename all of the ascend files:Jörg Mayer1-3/+3
That way we hopefully won't need the runlex.sh hack any more. Also the ylwrap stuff is (hopefully) obsolete. ascend.[hc] -> ascendtext.[hc] ascend-scanner.l -> ascend_scanner.l ascend-grammar.y -> ascend.y svn path=/trunk/; revision=28744
2008-09-16Link libwireshark and wiretap against libwsutil. That was the original intentJeff Morriss1-2/+1
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-07-02Add Makefile.common files for epan/dfilter and epan/ftypes.Guy Harris1-0/+3
Add checkapi rules to Makefile.am files. svn path=/trunk/; revision=25656
2008-05-23file_util.c isn't part of Wiretap any more.Guy Harris1-1/+0
svn path=/trunk/; revision=25357
2008-05-20Create a new "Wireshark utility" library and move the mpeg-audio stuff fromJeff Morriss1-0/+2
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-20Undo rev 24518 and (re)fix ↵Jeff Morriss1-1/+1
http://bugs.wireshark.org/bugzilla/show_bug.cgi?id=2291 . svn path=/trunk/; revision=25327
2008-03-01All our programs link against glib so don't there's no need to link our ↵Jeff Morriss1-1/+1
libraries against it too. This should allow us to build Wireshark (with dynamic libs) with static glib (read: it should fix the OS X buildbot building with glib-1.2). svn path=/trunk/; revision=24518
2008-02-22From Peter via http://bugs.wireshark.org/bugzilla/show_bug.cgi?id=2291 : ↵Jeff Morriss1-1/+1
libwiretap uses glib so add it to LIBADD. svn path=/trunk/; revision=24432
2007-12-17_SOURCE has magic meaning and isn't to be used by non-wizards.Jörg Mayer1-1/+1
Aka: Newer autofoo tools broke because of the _SOURCE ending. svn path=/trunk/; revision=23904
2007-12-07Run runlex.sh from the tools directory. Get rid of the extra copy inGuy Harris1-7/+2
the top-level directory. Don't build config.h in the wiretap directory - it now uses config.h from the top-level directory. Get rid of the template config.h.win32 in that directory. Get rid of files that are no longer in the wiretap directory or are no longer constructed in that directory. svn path=/trunk/; revision=23797
2007-10-16Bug 1704 is fixed in the main branch by the simpler expedient of notGuy Harris1-2/+2
using modf() and thus not requiring libm. In addition, adding -lm to the dependencies upsets the build on at least some platforms because "-lm" isn't a pathname. svn path=/trunk/; revision=23210
2007-09-24Add ascend-grammar.h explicitely to the generation rules, otherwiseJörg Mayer1-1/+1
make distclean on a really clean source tree will fail. svn path=/trunk/; revision=22933
2007-08-09Fix for bug 1704:Jaap Keuter1-2/+2
libm required if C library is not libc (like uclibc) svn path=/trunk/; revision=22475
2007-08-04Add a script as a front-end for Flex, to work around various problems,Guy Harris1-0/+7
such as the fact that Flex strips all but the last component of the "-o" argument, and that it doesn't generate a header file to declare routines the generated lexical analyzer defines. Use that script when building lexical analyzers, and, for each lexical analyzer, include the generated header file in the generated analyzer. svn path=/trunk/; revision=22446
2007-08-01Add a Makefile.am.inc file, to hold rules etc. used by multipleGuy Harris1-7/+2
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-07-30Add comments to various %option items to explain what they're doing. Guy Harris1-5/+2
Move the %options to the beginning if they weren't already there, and put them in the same order in all files. Add "prefix=" options to .l files that don't already have them, so we don't have to pass a "-P" option. Add "never-interactive" and "noyywrap" options to our lexical analyzers, to remove extra isatty() checks and to eliminate the need for yywrap() from the Flex library. Get rid of %option nostdinit - that's the default. Add .l.c: rules to Makefile.am files, replacing the rules for specific .l files. Have those rules all check that $(LEX) is set. Update the address for the FSF. svn path=/trunk/; revision=22424
2007-05-18include generator sources in EXTRA_DISTSebastien Tandel1-0/+1
svn path=/trunk/; revision=21820
2007-05-17Since code generated by lex may trigger gcc warnings, we are now generating twoSebastien Tandel1-3/+24
libraries. A single library is generated with the lex code without the barrier "stop on warning". An other library is generated from the remaining source files with the "stop on warning" barrier. svn path=/trunk/; revision=21817
2007-05-02add support for the text export format of textronix k1[25]Luis Ontanon1-0/+3
svn path=/trunk/; revision=21651
2007-04-23Grr. Flex. Can't make warnings errors yet - we'd have to keep thatGuy Harris1-4/+0
from being done on Flex-generated files, or fix the problems that pop up on some platforms. svn path=/trunk/; revision=21520
2007-04-23Make warnings errors when possible.Guy Harris1-0/+3
svn path=/trunk/; revision=21519
2007-04-14remove "treat warnings as errors" barrier for every repo containing codeSebastien Tandel1-3/+0
generated by $(LEX) until a solution is found to compile them separately. svn path=/trunk/; revision=21432
2007-03-23From Sebastien Tandel:Stephen Fisher1-1/+1
(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-22Add -Werror when using GCC only to the Makefile.am of the baseStephen Fisher1-0/+4
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-01-12Automake variables ending with _LDFLAGS are special:Guy Harris1-1/+1
http://sources.redhat.com/ml/automake/2001-08/msg00046.html so call it LDFLAGS_SHAREDLIB rather than SHAREDLIB_LDFLAGS. svn path=/trunk/; revision=20410
2007-01-12second try for file_util.c ... (at least OS X didn't liked it)Ulf Lamping1-0/+1
svn path=/trunk/; revision=20403
2007-01-04On Darwin, build shared libraries with -Wl,-single_module to the LDFLAGSGuy Harris1-1/+1
used with shared libraries, to fix some error that shows up in some cases; some Apple documentation recommends it for most shared libraries. svn path=/trunk/; revision=20312
2006-10-19If we have to use Lex or Flex, check whether we found it, first, and ifGuy Harris1-0/+4
we didn't, report an error and fail, rather than blithely executing commands with the command a blank string. svn path=/trunk/; revision=19602
2006-05-21name changeRonnie Sahlberg1-2/+2
svn path=/trunk/; revision=18197
2005-07-10After doing "make maintainer-clean", "svn status --no-ignore | grep ^I"Jörg Mayer1-1/+6
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
2004-07-27Rename HEADER_FILES to NONGENERATED_HEADER_FILES, so that it's clearGuy Harris1-1/+3
that it contains only the .h files not generated from other files. svn path=/trunk/; revision=11531
2004-07-26Add a Makefile.common for Wiretap, and have Makefile.am andGuy Harris1-72/+7
Makefile.nmake include it. svn path=/trunk/; revision=11528
2004-07-18Set the svn:eol-style property on all text files to "native", so thatGuy Harris1-1/+1
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-03-24Fix the CLEANFILES target so both static and shared libraries are cleaned.Olivier Biot1-1/+2
svn path=/trunk/; revision=10475
2004-03-13Make libethereal and libwiretap shared libs.Jörg Mayer1-6/+5
svn path=/trunk/; revision=10368
2004-03-06From Jeff Morriss: delete "ascend-grammar.c" and "ascend-grammar.h" withGuy Harris1-1/+5
"make maintainer-clean", as they're generated files. svn path=/trunk/; revision=10336
2004-02-11From Rolf Fiedler: support for reading EyeSDN USB S0 trace files.Guy Harris1-1/+3
svn path=/trunk/; revision=10038
2003-12-02From Martijn Schipper: support for reading AiroPeek files in V9 captureGuy Harris1-1/+3
file format (AiroPeek 2.x). svn path=/trunk/; revision=9144
2003-10-31From Scott Emberley: support for reading Network Instruments version 9Guy Harris1-1/+3
capture files. svn path=/trunk/; revision=8840
2003-10-30From Marcel Holtmann: support for reading Linux Bluez Bluetooth stackGuy Harris1-1/+3
"hcidump -w" traces. Note that Jesper Peterson contributed support for reading Endace ERF files. svn path=/trunk/; revision=8824
2003-08-26From Jesper Peterson: support for Endace ERF file format.Guy Harris1-1/+3
svn path=/trunk/; revision=8272