diff options
author | Evan Huus <eapache@gmail.com> | 2013-10-23 01:36:49 +0000 |
---|---|---|
committer | Evan Huus <eapache@gmail.com> | 2013-10-23 01:36:49 +0000 |
commit | 328a05630c1c29782e15e1d02277b2dc64931c3c (patch) | |
tree | 33e8b17d2d488a0f6feb821404c9d0bfa0226c73 /epan/Makefile.common | |
parent | cbd3194bcf87f2e5146343170b4a595ace599ff1 (diff) | |
download | wireshark-328a05630c1c29782e15e1d02277b2dc64931c3c.tar.gz wireshark-328a05630c1c29782e15e1d02277b2dc64931c3c.tar.bz2 wireshark-328a05630c1c29782e15e1d02277b2dc64931c3c.zip |
From Michal Labedzki via
https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=8818
Add support for dissection ELF files. It opens as a "capture" file via wiretap
at the moment for simplicity's sake, but the intention is eventually to have
this (and other file types we dissect) open through some other program sharing
much of the libwireshark infrastructure.
svn path=/trunk/; revision=52775
Diffstat (limited to 'epan/Makefile.common')
-rw-r--r-- | epan/Makefile.common | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/epan/Makefile.common b/epan/Makefile.common index f7e59e5632..021f40003d 100644 --- a/epan/Makefile.common +++ b/epan/Makefile.common @@ -45,6 +45,7 @@ LIBWIRESHARK_SRC = \ crc32-tvb.c \ crc8-tvb.c \ disabled_protos.c \ + dwarf.c \ dissector_filters.c \ emem.c \ epan.c \ @@ -179,6 +180,7 @@ LIBWIRESHARK_INCLUDES = \ dissector_filters.h \ dtd.h \ dtd_parse.h \ + dwarf.h \ eap.h \ emem.h \ epan-int.h \ |