~jelmer/wireshark/daily-ppa

« back to all changes in this revision

Viewing changes to epan/wslua/Makefile.am

  • Committer: Bazaar Package Importer
  • Author(s): Balint Reczey
  • Date: 2010-11-20 18:41:41 UTC
  • mfrom: (1.1.28 upstream) (42.1.5 experimental)
  • Revision ID: james.westby@ubuntu.com-20101120184141-19e4sxq2kfsdnc9i
Tags: 1.4.2-1
* New upstream release 1.4.2
  - release notes:
    http://www.wireshark.org/docs/relnotes/wireshark-1.4.2.html
  - security fixes
     - Nephi Johnson of BreakingPoint discovered that the LDSS dissector
       could overflow a buffer. (No assigned CVE number.)
     - The ZigBee ZCL dissector could go into an infinite loop.
       (No assigned CVE number.)
* drop 05_fix-display-filter-update-when-changing-profile.patch
  patch since it has been integrated upstream

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
# Makefile.am
2
2
#
3
 
# $Id: Makefile.am 28667 2009-06-08 19:05:52Z gerald $
 
3
# $Id: Makefile.am 33009 2010-05-28 11:48:29Z jmayer $
4
4
#
5
5
# Wireshark - Network traffic analyzer
6
6
# By Gerald Combs <gerald@wireshark.org>
30
30
noinst_LTLIBRARIES = libwslua.la
31
31
 
32
32
wslua_modules =         \
 
33
        $(srcdir)/lua_bitop.c \
33
34
        $(srcdir)/wslua_tvb.c \
34
35
        $(srcdir)/wslua_proto.c \
35
36
        $(srcdir)/wslua_tree.c \
76
77
        declare_wslua.h
77
78
 
78
79
EXTRA_DIST = \
79
 
        declare_wslua.h \
80
 
        register_wslua.c \
81
 
        taps \
82
 
        make-reg.pl \
83
 
        template-init.lua \
84
 
        make-init-lua.pl \
85
 
        make-taps.pl \
86
 
        Makefile.nmake
 
80
        declare_wslua.h         \
 
81
        init_wslua.h            \
 
82
        register_wslua.c        \
 
83
        taps                    \
 
84
        make-reg.pl             \
 
85
        template-init.lua       \
 
86
        make-init-lua.pl        \
 
87
        make-taps.pl            \
 
88
        Makefile.nmake          \
 
89
        CMakeLists.txt
87
90
 
88
91
taps_used = \
89
92
        ../dissectors/packet-http.h \
111
114
        touch dummy
112
115
 
113
116
init.lua: template-init.lua make-init-lua.pl ../ftypes/ftypes.h ../../wiretap/wtap.h  ../proto.h ../../stat_menu.h
114
 
        $(PERL) $(srcdir)/make-init-lua.pl $(srcdir) $(srcdir)/template-init.lua > init.lua
 
117
        $(PERL) $(srcdir)/make-init-lua.pl $(top_srcdir) $(srcdir)/template-init.lua > init.lua
115
118
 
116
119
checkapi:
117
120
        $(PERL) ../../tools/checkAPIs.pl -g termoutput \