| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
| |
svn path=/trunk/; revision=52699
|
|
|
|
| |
svn path=/trunk/; revision=51023
|
|
|
|
| |
svn path=/trunk/; revision=50977
|
|
|
|
|
|
|
|
|
|
| |
fixes the build errors we're seeing, with complaints about
tvbtest.obj : warning LNK4217: locally defined symbol tvb_XX imported in function test
tvbtest.obj : error LNK2019: unresolved external symbol __imp_tvb_XXX referenced in function run_tests
tvbuff.obj : error LNK2019: unresolved external symbol tvb_XXX referenced in function tvb_new_YYY
svn path=/trunk/; revision=50573
|
|
|
|
| |
svn path=/trunk/; revision=50526
|
|
|
|
| |
svn path=/trunk/; revision=50140
|
|
|
|
| |
svn path=/trunk/; revision=48515
|
|
|
|
|
|
|
| |
the library, it's a test program that links with the library and imports
stuff from the library.
svn path=/trunk/; revision=48514
|
|
|
|
| |
svn path=/trunk/; revision=48027
|
|
|
|
|
|
| |
(inconsistent DLL linkage) warnings when compiling for Windows
svn path=/trunk/; revision=48021
|
|
|
|
|
|
|
| |
Also remove old WS_VAR_IMPORT define and related Makefile magic
everywhere in the project.
svn path=/trunk/; revision=47992
|
|
|
|
|
|
|
| |
Pull in a change from that Makefile.nmake to keep us from trying to hand
a header file to the compiler as if it were a C source file.
svn path=/trunk/; revision=47600
|
|
|
|
|
|
| |
directory.
svn path=/trunk/; revision=47599
|
|
|
|
|
|
|
| |
dtd_parse.obj by handing dtd_parse.c *and* dtd_grammar.h to the C
compiler - dtd_grammar.h gets included by dtd_parse.c.
svn path=/trunk/; revision=47488
|
|
|
|
|
|
| |
before trying to compile dtd_parse.c
svn path=/trunk/; revision=47487
|
|
|
|
|
|
|
|
|
|
|
| |
ourselves.
Clean up various bits of "distribute" vs. "don't distribute" stuff in
the process - use similar names, and make the "distribute vs. don't
distribute" distinction the same as the "don't clean with "make
distclean" vs. clean with "make distclean"" distinction.
svn path=/trunk/; revision=47485
|
|
|
|
|
|
| |
https://www.wireshark.org/lists/wireshark-dev/201210/msg00178.html
svn path=/trunk/; revision=45746
|
|
|
|
|
|
| |
directory (wireshark-gtk2 is one dir up from here).
svn path=/trunk/; revision=42659
|
|
|
|
|
|
|
|
|
|
|
|
| |
from makefiles (and thus from the buildbot).
The intention is to be able to tell when a human is running the tool so we
can provide more code-review guidance.
As a starter, enable the "too many proto_tree_add_text() calls" check when
a human is running the tool.
svn path=/trunk/; revision=41943
|
|
|
|
|
|
| |
going up a directory; getting to epan things does not require 'epan' in the path.
svn path=/trunk/; revision=41225
|
|
|
|
| |
svn path=/trunk/; revision=41224
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
selectively pick up particular object files is just too much of a mess.
Alas, this requires that we add some additional symbols to the list
exported by libwireshark; the DCE RPC ones shouldn't be global, but
reassemble_test uses them, so....
Get rid of stubs in reassemble_test.c - they just stub out routines from
libwireshark, but that's not necessary any more.
svn path=/trunk/; revision=41223
|
|
|
|
|
|
|
| |
requires packet.c. (If it requires any more, we should just make it
link with libwireshark in its entirety.)
svn path=/trunk/; revision=41219
|
|
|
|
| |
svn path=/trunk/; revision=41180
|
|
|
|
| |
svn path=/trunk/; revision=40762
|
|
|
|
| |
svn path=/trunk/; revision=38813
|
|
|
|
| |
svn path=/trunk/; revision=38811
|
|
|
|
|
|
|
|
| |
This time keep the tvb routines in epan.
Now we can use common crc routines outside epan.
svn path=/trunk/; revision=38810
|
|
|
|
| |
svn path=/trunk/; revision=38803
|
|
|
|
|
|
| |
This way we can use the crc routines in wiretap.
svn path=/trunk/; revision=38800
|
|
|
|
| |
svn path=/trunk/; revision=38683
|
|
|
|
| |
svn path=/trunk/; revision=37883
|
|
|
|
|
|
|
|
| |
referenced in function _tvb_get_ephemeral_string_enc
Remove duplicated EBCDIC_to_ASCII from libwireshark.def
svn path=/trunk/; revision=37879
|
|
|
|
|
|
| |
building libwireshark.
svn path=/trunk/; revision=37653
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
- 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
|
|
|
|
|
|
| |
target in a makefile is what you get when you just run make (without a target). Revert 35073 and 35069.
svn path=/trunk/; revision=35075
|
|
|
|
| |
svn path=/trunk/; revision=35073
|
|
|
|
| |
svn path=/trunk/; revision=34614
|
|
|
|
| |
svn path=/trunk/; revision=34121
|
|
|
|
|
|
|
|
|
| |
Followup to 34081: move libwsutil _all_ the way forward so that our inet_pton
is always linked in before wsock32's. This means that our Windows-7 Win64
builds (on which there is a native inet_pton in wsock32) will still work on
pre-Vista Win64's.
svn path=/trunk/; revision=34093
|
|
|
|
|
|
|
|
|
| |
with the Lua or libgnutls flags, as nothing in the top-level directory
should use them directly.
However, libwireshark *does* require the Lua flags, so use them.
svn path=/trunk/; revision=33534
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Sébastien's initial commit [1] didn't contain support for embedding Python on
Windows.
[1] http://anonsvn.wireshark.org/viewvc?view=rev&revision=28529
From me:
Comment out PYTHON_EMBED for now.
Start a list of known Python+CRT versions.
Add get_wspython_dir to libwireshark.def.
svn path=/trunk/; revision=33036
|
|
|
|
| |
svn path=/trunk/; revision=33012
|
|
|
|
|
|
|
| |
So: don't run mt program ("manifest-tool") when building Wireshark & etc with VC10.
See: http://msdn.microsoft.com/en-us/library/dd293574.aspx
svn path=/trunk/; revision=32540
|
|
|
|
|
|
|
|
| |
use the variables, so the list of dependencies and the list of object
files used in the link command are the same (and so that they're
complete; the dependencies were, the link command lists weren't).
svn path=/trunk/; revision=32067
|
|
|
|
|
|
| |
in to_str.c.
svn path=/trunk/; revision=32040
|
|
|
|
| |
svn path=/trunk/; revision=31976
|
|
|
|
| |
svn path=/trunk/; revision=30511
|
|
|
|
|
|
| |
linked win-iconv instead
svn path=/trunk/; revision=29580
|
|
|
|
| |
svn path=/trunk/; revision=28923
|