summaryrefslogtreecommitdiff
path: root/wireshark/wireshark.patch
blob: cca5947b985d229a86da8ad8474977122d1b1d2d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
Index: plugins/Makefile.nmake
===================================================================
--- plugins/Makefile.nmake	(revision 43768)
+++ plugins/Makefile.nmake	(working copy)
@@ -8,6 +8,7 @@
 
 PLUGIN_LIST = \
 	asn1        \
+	ceph        \
 	docsis      \
 	ethercat    \
 	gryphon     \
Index: plugins/Makefile.am
===================================================================
--- plugins/Makefile.am	(revision 43768)
+++ plugins/Makefile.am	(working copy)
@@ -24,6 +24,7 @@
 -include Custom.make
 SUBDIRS = $(_CUSTOM_SUBDIRS_) \
 	asn1 \
+	ceph \
 	docsis \
 	ethercat \
 	gryphon \
Index: configure.in
===================================================================
--- configure.in	(revision 43768)
+++ configure.in	(working copy)
@@ -2150,6 +2150,7 @@
   packaging/svr4/pkginfo
   plugins/Makefile
   plugins/asn1/Makefile
+  plugins/ceph/Makefile
   plugins/docsis/Makefile
   plugins/ethercat/Makefile
   plugins/gryphon/Makefile
Index: Makefile.am
===================================================================
--- Makefile.am	(revision 43768)
+++ Makefile.am	(working copy)
@@ -273,6 +273,7 @@
 -include plugins/Custom.make
 plugin_ldadd = $(_CUSTOM_plugin_ldadd_) \
 	-dlopen plugins/asn1/asn1.la \
+	-dlopen plugins/ceph/ceph.la \
 	-dlopen plugins/docsis/docsis.la \
 	-dlopen plugins/ethercat/ethercat.la \
 	-dlopen plugins/gryphon/gryphon.la \
Index: packaging/nsis/Makefile.nmake
===================================================================
--- packaging/nsis/Makefile.nmake	(revision 43768)
+++ packaging/nsis/Makefile.nmake	(working copy)
@@ -46,6 +46,7 @@
 
 PLUGINS= \
 	../../plugins/asn1/asn1.dll \
+	../../plugins/ceph/ceph.dll \
 	../../plugins/docsis/docsis.dll \
 	../../plugins/ethercat/ethercat.dll \
 	../../plugins/gryphon/gryphon.dll \
Index: packaging/nsis/wireshark.nsi
===================================================================
--- packaging/nsis/wireshark.nsi	(revision 43768)
+++ packaging/nsis/wireshark.nsi	(working copy)
@@ -806,6 +806,7 @@
 ;-------------------------------------------
 SetOutPath '$INSTDIR\plugins\${VERSION}'
 File "${STAGING_DIR}\plugins\${VERSION}\asn1.dll"
+File "${STAGING_DIR}\plugins\${VERSION}\ceph.dll"
 File "${STAGING_DIR}\plugins\${VERSION}\docsis.dll"
 File "${STAGING_DIR}\plugins\${VERSION}\ethercat.dll"
 File "${STAGING_DIR}\plugins\${VERSION}\gryphon.dll"
Index: epan/Makefile.am
===================================================================
--- epan/Makefile.am	(revision 43768)
+++ epan/Makefile.am	(working copy)
@@ -209,6 +209,7 @@
 -include ../plugins/Custom.make
 plugin_src = \
 	../plugins/asn1/packet-asn1.c \
+	../plugins/ceph/packet-ceph.c \
 	../plugins/docsis/packet-bintrngreq.c \
 	../plugins/docsis/packet-bpkmattr.c \
 	../plugins/docsis/packet-bpkmreq.c \