aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/giop
AgeCommit message (Collapse)AuthorFilesLines
2011-02-02A bit of Windows makefiles rework and cleanup:Bill Meier1-2/+3
- Define macros for certain CFLAGS in config.nmake iso of having defs in each makefile; a. -DHAVE_CONFIG_H and -D_U_="" are now part of a macro named STANDARD_CFLAGS; b. -WX has been replaced by WARNINGS_ARE_ERRORS (defined as -WX in config.nmake) (This allows disabling "Warnings as Errors" by just changing config.nmake) c. CVARSDLL definitions (not usage) have been removed from the various makefiles. XXX: It appears the usage of CVARSDLL can also be removed (not yet done) since: -DWIN32 and -DNULL=0 do not appear to be needed (any more); -D_MT and _D_DLL are not needed since /MP causes these definitions. d. Define a macro WARNINGS_CFLAGS with additional specific compiler (level4) warnings to be enabled. E.G., 4295: array is too small to include a terminating null character - config.nmake: reformat some long lines for readability; - plugins\Makefile.nmake: clean-deps does nothing: remove it (and usage in top-level makefile); - dissectors/Makefile.nmake: test to enable packet-rrc.obj target needs to include MSVC2010 ... svn path=/trunk/; revision=35747
2011-01-16Do Windows compile with /WX flag: treat warnings as errors.Bill Meier1-1/+1
svn path=/trunk/; revision=35565
2010-09-24Plugins are not shared libraries, so:Guy Harris1-4/+0
1) don't set thei SOVERSION - run-time-loaded modules don't have an SOVERSION; 2) build them with link mode MODULE, not SHARED, on all platforms. (Fixing 1) also fixes the problem with building them as MODULE on OS X.) svn path=/trunk/; revision=34243
2010-09-23H. Sivank <hsivank@gmail.com>Jörg Mayer1-4/+4
I try to configure Wireshark with cmake on macosx 10.6. It fails with : set_target_properties called with incorrect number of arguments. Attached a patch to fix this issue. svn path=/trunk/; revision=34201
2010-05-24Refer to the endianness arguments as "encoding" rather thanGuy Harris4-4/+4
"representation" - we already use "representation" to refer to the text representation of fields. Change some routines with an endianness argument to make it a representation argument instead; svn path=/trunk/; revision=32929
2010-05-14Add Cmake stuff to the source distribution so more people can try it out.Jeff Morriss1-5/+6
svn path=/trunk/; revision=32807
2010-05-13Create a new REP_NA value for fields where there are no representationsGuy Harris4-4/+4
from which to choose; use that for protocol fields in some protocols (modify the CORBA generator to use it, and manually update the generated CORBA dissectors accordingly). svn path=/trunk/; revision=32777
2010-04-07Remove some uneeded #includesBill Meier4-8/+0
svn path=/trunk/; revision=32419
2010-04-05Get rid of a bunch of check_col().Anders Broman4-4/+0
svn path=/trunk/; revision=32388
2010-03-18cmake changes:Jörg Mayer1-8/+12
- Add checking for linker flags - Install plugins with the name including the Wireshark version. This will make it easier to find matching plugin versions if files get just copied over. svn path=/trunk/; revision=32231
2010-02-24- Remove the lib prefix for plugin names.Jörg Mayer1-4/+8
- Remove a (resolved) comment. - Add a commented out line how to add version infos to the plugin's file name. svn path=/trunk/; revision=31995
2009-11-17Beginnings of enabling static builds. Still to do:Jörg Mayer1-4/+4
* Add -static * Registration may need different handling * Add plugins * Build error in wslua svn path=/trunk/; revision=30987
2009-11-07cmake will now honor -Werror if configured (default: on)Jörg Mayer1-12/+27
svn path=/trunk/; revision=30852
2009-10-06Build plugins with cmake on OSX.Stig Bjørlykke1-0/+8
svn path=/trunk/; revision=30373
2009-09-25Try to add tpg, but it seems it doesn't build with autofoo either.Jörg Mayer1-0/+84
svn path=/trunk/; revision=30151
2009-09-09We no longer support the old plugin API so remove it completely from the ↵Kovarththanan Rajaratnam1-1/+1
build system svn path=/trunk/; revision=29821
2009-08-09Don't guard col_set_str (COL_PROTOCOL) with col_checkKovarththanan Rajaratnam4-8/+4
svn path=/trunk/; revision=29340
2009-03-02Disable manifest building for our DLLs. This attempts to fix bug 3272.Gerald Combs1-13/+1
svn path=/trunk/; revision=27579
2009-02-02add missing mt.exe calls, to include manifest files into exe / dll filesUlf Lamping1-0/+12
svn path=/trunk/; revision=27357
2008-07-29Allow checkapis target to work in out-of-tree builds (s#../../#$(top_srcdir)).Jeff Morriss1-1/+1
Also use $(top_builddir) instead of ../../ in a couple of other spots. svn path=/trunk/; revision=25863
2008-07-02Add Makefile.common files for epan/dfilter and epan/ftypes.Guy Harris2-1/+7
Add checkapi rules to Makefile.am files. svn path=/trunk/; revision=25656
2008-07-01Put printf into a separate "termoutput" API group. For most files,Guy Harris1-1/+1
check for it - but not for TShark plugins, as they are expected to print to the standard output. svn path=/trunk/; revision=25653
2008-06-26Add support for "API groups" in checkAPIs.pl. Make the "prohibited"Gerald Combs1-1/+1
and "deprecated" groups the default. Add an "abort" group for code that shouldn't exit the program. Update the makefiles to call "checkAPIs.pl -g abort" for dissectors. Remove a dependency on "cat" in checkAPIs.pl. svn path=/trunk/; revision=25614
2008-05-22Move the file utility functions from wiretap to libwsutil so thatJeff Morriss1-6/+6
libwireshark (and the plugins using those functions) do not depend on wiretap on Windows. While doing that, rename the eth_* functions to ws_*. svn path=/trunk/; revision=25354
2008-05-09Use PROTO_ITEM_SET_HIDDEN().Anders Broman5-1/+18
Fix ID marking Add checkapi to makefiles svn path=/trunk/; revision=25260
2008-05-05Make it possible to run checkapi on all plugins trough makefile.nmakeAnders Broman1-0/+3
Note: Commented out in the plugins giving errors for now. svn path=/trunk/; revision=25231
2007-05-29Use G_GINT64_MODIFIER, rather than the PRI[douxX]64 macros, for GLibGuy Harris1-11/+11
routines and routines using those routines. GLib might use different modifiers for 64-bit quantities than the platform's C library does. svn path=/trunk/; revision=21990
2007-03-28Removed /Wx from CFLAGS to allow buildbot to proceedGraham Bloice1-1/+1
svn path=/trunk/; revision=21248
2007-03-28from Gisle Vanem: some more #pragma's that MingW don't likeUlf Lamping1-1/+1
svn path=/trunk/; revision=21240
2007-03-27add missing #pragma warning disable (now using _MSC_VER)Ulf Lamping3-0/+12
svn path=/trunk/; revision=21227
2007-03-27set "WX" and "#pragma warning(disable:4101)"Ulf Lamping2-2/+5
svn path=/trunk/; revision=21222
2007-01-03clean should also remove generated plugin.c and manifest filesUlf Lamping1-2/+5
svn path=/trunk/; revision=20291
2007-01-02Align build target names.Jaap Keuter1-2/+2
svn path=/trunk/; revision=20269
2007-01-02More Ethereal -> Wireshark renaming.Jaap Keuter1-1/+1
svn path=/trunk/; revision=20268
2007-01-02More Ethereal -> Wireshark renamingJaap Keuter1-2/+2
svn path=/trunk/; revision=20267
2006-06-02remove plugin.c in distlcleanJörg Mayer1-1/+2
svn path=/trunk/; revision=18312
2006-05-31libethereal -> libwireshark. idl2eth -> idl2wrs. There are a _lot_ ofGerald Combs6-9/+9
changes here. It compiles OK on OS X, but hasn't been tested anywhere else. svn path=/trunk/; revision=18260
2006-05-29Ethereal->WiresharkAnders Broman3-525/+16
svn path=/trunk/; revision=18239
2006-05-28Ethereal->WiresharkAnders Broman1-1/+1
svn path=/trunk/; revision=18231
2006-05-22ethereal->wireshark updatesRonnie Sahlberg1-1/+1
svn path=/trunk/; revision=18206
2006-05-21name changeRonnie Sahlberg5-6/+6
svn path=/trunk/; revision=18197
2006-04-19Handle 64bits signed/unsigned integers and get rid of some extra LF:s.Anders Broman1-12814/+945
svn path=/trunk/; revision=17911
2006-04-19From W.Borgert:Anders Broman3-6328/+3164
this patch leads to a more condensed representation of strings in the GIOP module, e.g. in Parlay instead of having: length = 42 TpAddress_AddrString = sip:anyone@somebody.thehost.whose.es:5432 you have now: TpAddress_AddrString (42) = sip:anyone@somebody.thehost.whose.es:5432 The former was not as concise, if you have a lot of strings (as in CosNaming) and it was not clear whether the protocol had a explicit field named "length" in the IDL. svn path=/trunk/; revision=17902
2006-04-17From W. Borgert:Anders Broman4-7480/+9268
- Regenerated files. - Use .sort() on one or two of the lists in ethereal_gen.py to make generated files more diff-friendly in the future. svn path=/trunk/; revision=17885
2005-08-31Parlay re-generated with the updated idl2eth generator.Anders Broman1-978/+904
svn path=/trunk/; revision=15644
2005-07-10After doing "make maintainer-clean", "svn status --no-ignore | grep ^I"Jörg Mayer1-1/+4
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-06-28Regenerated Tango with the latest idl2eth and the tango.idlAnders Broman1-470/+509
svn path=/trunk/; revision=14806
2005-06-25In generated GIOP dissectors, don't set the Protocol or Info columns, orGuy Harris3-10992/+12138
create the top-level protocol tree item, until the dissector accepts the packet as being for it. "strcmp()" isn't a Boolean; don't treat it as such. Get rid of trailing white space. svn path=/trunk/; revision=14750
2005-06-24Re-generate the CosNaming, CosEventComm, and Parlay dissectors from theGuy Harris4-2218/+2228
IDL (and re-insert an earlier bug fix into the CosNaming and CosEventComm dissectors), and add a new check added to ethereal_gen.py to the Tango dissector. svn path=/trunk/; revision=14745
2005-06-21Fix the line endings.Guy Harris1-120741/+120735
Get rid of include of "snprintf.h", and _U_-ify arguments, as per changes made to idl2eth. svn path=/trunk/; revision=14719