Skip to content

Commit

Permalink
Create new file from rev 1.1 (requested by salo in ticket #1280):
Browse files Browse the repository at this point in the history
Updated to version 0.9.12.

This release fixes several off-by-one and integer overflow errors
discovered by Timo Sirainen.  See the following url for more details:

  http://www.ethereal.com/appnotes/enpa-sa-00009.html
  • Loading branch information
grant committed Jun 19, 2003
1 parent e4c8093 commit e35c15d
Show file tree
Hide file tree
Showing 7 changed files with 290 additions and 0 deletions.
24 changes: 24 additions & 0 deletions net/ethereal/patches/patch-aa
@@ -0,0 +1,24 @@
$NetBSD: patch-aa,v 1.7.2.2 2003/06/19 00:02:43 grant Exp $

--- plugins/artnet/Makefile.in.orig 2003-05-02 03:11:00.000000000 +0200
+++ plugins/artnet/Makefile.in 2003-05-05 17:58:52.000000000 +0200
@@ -180,7 +180,7 @@
# add them here.
LIBS =

-artnet_la_DEPENDENCIES = packet-artnet-static.o
+@ENABLE_STATIC_TRUE@artnet_la_DEPENDENCIES = packet-artnet-static.o

CLEANFILES = \
artnet \
@@ -445,8 +445,8 @@
uninstall-am uninstall-info-am uninstall-pluginLTLIBRARIES


-packet-artnet-static.o: packet-artnet.c moduleinfo.h
- $(LTCOMPILE) -c -o packet-artnet-static.o -D__ETHEREAL_STATIC__ $(srcdir)/packet-artnet.c
+@ENABLE_STATIC_TRUE@packet-artnet-static.o: packet-artnet.c moduleinfo.h
+@ENABLE_STATIC_TRUE@ $(LTCOMPILE) -c -o packet-artnet-static.o -D__ETHEREAL_STATIC__ $(srcdir)/packet-artnet.c
# Tell versions [3.59,3.63) of GNU make to not export all variables.
# Otherwise a system limit (for SysV at least) may be exceeded.
.NOEXPORT:
139 changes: 139 additions & 0 deletions net/ethereal/patches/patch-ab
@@ -0,0 +1,139 @@
$NetBSD: patch-ab,v 1.1.2.2 2003/06/19 00:03:19 grant Exp $

--- plugins/docsis/Makefile.in.orig 2003-05-02 03:11:01.000000000 +0200
+++ plugins/docsis/Makefile.in 2003-05-05 18:09:07.000000000 +0200
@@ -179,7 +179,7 @@
# add them here.
LIBS =

-docsis_la_DEPENDENCIES = packet-docsis-static.o packet-bpkmattr-static.o packet-dsarsp-static.o packet-macmgmt-static.o packet-rngrsp-static.o packet-bpkmreq-static.o packet-dscack-static.o packet-map-static.o packet-tlv-static.o packet-bpkmrsp-static.o packet-dscreq-static.o packet-regack-static.o packet-uccreq-static.o packet-dscrsp-static.o packet-regreq-static.o packet-uccrsp-static.o packet-dsaack-static.o packet-dsdreq-static.o packet-regrsp-static.o packet-ucd-static.o packet-dsareq-static.o packet-dsdrsp-static.o packet-rngreq-static.o packet-vendor-static.o
+@ENABLE_STATIC_TRUE@docsis_la_DEPENDENCIES = packet-docsis-static.o packet-bpkmattr-static.o packet-dsarsp-static.o packet-macmgmt-static.o packet-rngrsp-static.o packet-bpkmreq-static.o packet-dscack-static.o packet-map-static.o packet-tlv-static.o packet-bpkmrsp-static.o packet-dscreq-static.o packet-regack-static.o packet-uccreq-static.o packet-dscrsp-static.o packet-regreq-static.o packet-uccrsp-static.o packet-dsaack-static.o packet-dsdreq-static.o packet-regrsp-static.o packet-ucd-static.o packet-dsareq-static.o packet-dsdrsp-static.o packet-rngreq-static.o packet-vendor-static.o

CLEANFILES = \
docsis \
@@ -498,77 +498,77 @@
uninstall-am uninstall-info-am uninstall-pluginLTLIBRARIES


-packet-docsis-static.o: packet-docsis.c moduleinfo.h
- $(LTCOMPILE) -c -o packet-docsis-static.o -D__ETHEREAL_STATIC__ $(srcdir)/packet-docsis.c
+@ENABLE_STATIC_TRUE@packet-docsis-static.o: packet-docsis.c moduleinfo.h
+@ENABLE_STATIC_TRUE@ $(LTCOMPILE) -c -o packet-docsis-static.o -D__ETHEREAL_STATIC__ $(srcdir)/packet-docsis.c

-packet-bpkmattr-static.o: packet-bpkmattr.c moduleinfo.h
- $(LTCOMPILE) -c -o packet-bpkmattr-static.o -D__ETHEREAL_STATIC__ $(srcdir)/packet-bpkmattr.c
+@ENABLE_STATIC_TRUE@packet-bpkmattr-static.o: packet-bpkmattr.c moduleinfo.h
+@ENABLE_STATIC_TRUE@ $(LTCOMPILe) -c -o packet-bpkmattr-static.o -D__ETHEREAL_STATIC__ $(srcdir)/packet-bpkmattr.c

-packet-dsarsp-static.o: packet-dsarsp.c moduleinfo.h
- $(LTCOMPILE) -c -o packet-dsarsp-static.o -D__ETHEREAL_STATIC__ $(srcdir)/packet-dsarsp.c
+@ENABLE_STATIC_TRUE@packet-dsarsp-static.o: packet-dsarsp.c moduleinfo.h
+@ENABLE_STATIC_TRUE@ $(LTCOMPILE) -c -o packet-dsarsp-static.o -D__ETHEREAL_STATIC__ $(srcdir)/packet-dsarsp.c

-packet-macmgmt-static.o: packet-macmgmt.c moduleinfo.h
- $(LTCOMPILE) -c -o packet-macmgmt-static.o -D__ETHEREAL_STATIC__ $(srcdir)/packet-macmgmt.c
+@ENABLE_STATIC_TRUE@packet-macmgmt-static.o: packet-macmgmt.c moduleinfo.h
+@ENABLE_STATIC_TRUE@ $(LTCOMPILE) -c -o packet-macmgmt-static.o -D__ETHEREAL_STATIC__ $(srcdir)/packet-macmgmt.c

-packet-rngrsp-static.o: packet-rngrsp.c moduleinfo.h
- $(LTCOMPILE) -c -o packet-rngrsp-static.o -D__ETHEREAL_STATIC__ $(srcdir)/packet-rngrsp.c
+@ENABLE_STATIC_TRUE@packet-rngrsp-static.o: packet-rngrsp.c moduleinfo.h
+@ENABLE_STATIC_TRUE@ $(LTCOMPILE) -c -o packet-rngrsp-static.o -D__ETHEREAL_STATIC__ $(srcdir)/packet-rngrsp.c

-packet-bpkmreq-static.o: packet-bpkmreq.c moduleinfo.h
- $(LTCOMPILE) -c -o packet-bpkmreq-static.o -D__ETHEREAL_STATIC__ $(srcdir)/packet-bpkmreq.c
+@ENABLE_STATIC_TRUE@packet-bpkmreq-static.o: packet-bpkmreq.c moduleinfo.h
+@ENABLE_STATIC_TRUE@ $(LTCOMPILE) -c -o packet-bpkmreq-static.o -D__ETHEREAL_STATIC__ $(srcdir)/packet-bpkmreq.c

-packet-dscack-static.o: packet-dscack.c moduleinfo.h
- $(LTCOMPILE) -c -o packet-dscack-static.o -D__ETHEREAL_STATIC__ $(srcdir)/packet-dscack.c
+@ENABLE_STATIC_TRUE@packet-dscack-static.o: packet-dscack.c moduleinfo.h
+@ENABLE_STATIC_TRUE@ $(LTCOMPILE) -c -o packet-dscack-static.o -D__ETHEREAL_STATIC__ $(srcdir)/packet-dscack.c

-packet-map-static.o: packet-map.c moduleinfo.h
- $(LTCOMPILE) -c -o packet-map-static.o -D__ETHEREAL_STATIC__ $(srcdir)/packet-map.c
+@ENABLE_STATIC_TRUE@packet-map-static.o: packet-map.c moduleinfo.h
+@ENABLE_STATIC_TRUE@ $(LTCOMPILE) -c -o packet-map-static.o -D__ETHEREAL_STATIC__ $(srcdir)/packet-map.c

-packet-tlv-static.o: packet-tlv.c packet-tlv.h moduleinfo.h
- $(LTCOMPILE) -c -o packet-tlv-static.o -D__ETHEREAL_STATIC__ $(srcdir)/packet-tlv.c
+@ENABLE_STATIC_TRUE@packet-tlv-static.o: packet-tlv.c packet-tlv.h moduleinfo.h
+@ENABLE_STATIC_TRUE@ $(LTCOMPILE) -c -o packet-tlv-static.o -D__ETHEREAL_STATIC__ $(srcdir)/packet-tlv.c

-packet-bpkmrsp-static.o: packet-bpkmrsp.c moduleinfo.h
- $(LTCOMPILE) -c -o packet-bpkmrsp-static.o -D__ETHEREAL_STATIC__ $(srcdir)/packet-bpkmrsp.c
+@ENABLE_STATIC_TRUE@packet-bpkmrsp-static.o: packet-bpkmrsp.c moduleinfo.h
+@ENABLE_STATIC_TRUE@ $(LTCOMPILE) -c -o packet-bpkmrsp-static.o -D__ETHEREAL_STATIC__ $(srcdir)/packet-bpkmrsp.c

-packet-dscreq-static.o: packet-dscreq.c moduleinfo.h
- $(LTCOMPILE) -c -o packet-dscreq-static.o -D__ETHEREAL_STATIC__ $(srcdir)/packet-dscreq.c
+@ENABLE_STATIC_TRUE@packet-dscreq-static.o: packet-dscreq.c moduleinfo.h
+@ENABLE_STATIC_TRUE@ $(LTCOMPILE) -c -o packet-dscreq-static.o -D__ETHEREAL_STATIC__ $(srcdir)/packet-dscreq.c

-packet-regack-static.o: packet-regack.c moduleinfo.h
- $(LTCOMPILE) -c -o packet-regack-static.o -D__ETHEREAL_STATIC__ $(srcdir)/packet-regack.c
+@ENABLE_STATIC_TRUE@packet-regack-static.o: packet-regack.c moduleinfo.h
+@ENABLE_STATIC_TRUE@ $(LTCOMPILE) -c -o packet-regack-static.o -D__ETHEREAL_STATIC__ $(srcdir)/packet-regack.c

-packet-uccreq-static.o: packet-uccreq.c moduleinfo.h
- $(LTCOMPILE) -c -o packet-uccreq-static.o -D__ETHEREAL_STATIC__ $(srcdir)/packet-uccreq.c
+@ENABLE_STATIC_TRUE@packet-uccreq-static.o: packet-uccreq.c moduleinfo.h
+@ENABLE_STATIC_TRUE@ $(LTCOMPILE) -c -o packet-uccreq-static.o -D__ETHEREAL_STATIC__ $(srcdir)/packet-uccreq.c

-packet-dscrsp-static.o: packet-dscrsp.c moduleinfo.h
- $(LTCOMPILE) -c -o packet-dscrsp-static.o -D__ETHEREAL_STATIC__ $(srcdir)/packet-dscrsp.c
+@ENABLE_STATIC_TRUE@packet-dscrsp-static.o: packet-dscrsp.c moduleinfo.h
+@ENABLE_STATIC_TRUE@ $(LTCOMPILE) -c -o packet-dscrsp-static.o -D__ETHEREAL_STATIC__ $(srcdir)/packet-dscrsp.c

-packet-regreq-static.o: packet-regreq.c moduleinfo.h
- $(LTCOMPILE) -c -o packet-regreq-static.o -D__ETHEREAL_STATIC__ $(srcdir)/packet-regreq.c
+@ENABLE_STATIC_TRUE@packet-regreq-static.o: packet-regreq.c moduleinfo.h
+@ENABLE_STATIC_TRUE@ $(LTCOMPILE) -c -o packet-regreq-static.o -D__ETHEREAL_STATIC__ $(srcdir)/packet-regreq.c

-packet-uccrsp-static.o: packet-uccrsp.c moduleinfo.h
- $(LTCOMPILE) -c -o packet-uccrsp-static.o -D__ETHEREAL_STATIC__ $(srcdir)/packet-uccrsp.c
+@ENABLE_STATIC_TRUE@packet-uccrsp-static.o: packet-uccrsp.c moduleinfo.h
+@ENABLE_STATIC_TRUE@ $(LTCOMPILE) -c -o packet-uccrsp-static.o -D__ETHEREAL_STATIC__ $(srcdir)/packet-uccrsp.c

-packet-dsaack-static.o: packet-dsaack.c moduleinfo.h
- $(LTCOMPILE) -c -o packet-dsaack-static.o -D__ETHEREAL_STATIC__ $(srcdir)/packet-dsaack.c
+@ENABLE_STATIC_TRUE@packet-dsaack-static.o: packet-dsaack.c moduleinfo.h
+@ENABLE_STATIC_TRUE@ $(LTCOMPILE) -c -o packet-dsaack-static.o -D__ETHEREAL_STATIC__ $(srcdir)/packet-dsaack.c

-packet-dsdreq-static.o: packet-dsdreq.c moduleinfo.h
- $(LTCOMPILE) -c -o packet-dsdreq-static.o -D__ETHEREAL_STATIC__ $(srcdir)/packet-dsdreq.c
+@ENABLE_STATIC_TRUE@packet-dsdreq-static.o: packet-dsdreq.c moduleinfo.h
+@ENABLE_STATIC_TRUE@ $(LTCOMPILE) -c -o packet-dsdreq-static.o -D__ETHEREAL_STATIC__ $(srcdir)/packet-dsdreq.c

-packet-regrsp-static.o: packet-regrsp.c moduleinfo.h
- $(LTCOMPILE) -c -o packet-regrsp-static.o -D__ETHEREAL_STATIC__ $(srcdir)/packet-regrsp.c
+@ENABLE_STATIC_TRUE@packet-regrsp-static.o: packet-regrsp.c moduleinfo.h
+@ENABLE_STATIC_TRUE@ $(LTCOMPILE) -c -o packet-regrsp-static.o -D__ETHEREAL_STATIC__ $(srcdir)/packet-regrsp.c

-packet-ucd-static.o: packet-ucd.c moduleinfo.h
- $(LTCOMPILE) -c -o packet-ucd-static.o -D__ETHEREAL_STATIC__ $(srcdir)/packet-ucd.c
+@ENABLE_STATIC_TRUE@packet-ucd-static.o: packet-ucd.c moduleinfo.h
+@ENABLE_STATIC_TRUE@ $(LTCOMPILE) -c -o packet-ucd-static.o -D__ETHEREAL_STATIC__ $(srcdir)/packet-ucd.c

-packet-dsareq-static.o: packet-dsareq.c moduleinfo.h
- $(LTCOMPILE) -c -o packet-dsareq-static.o -D__ETHEREAL_STATIC__ $(srcdir)/packet-dsareq.c
+@ENABLE_STATIC_TRUE@packet-dsareq-static.o: packet-dsareq.c moduleinfo.h
+@ENABLE_STATIC_TRUE@ $(LTCOMPILE) -c -o packet-dsareq-static.o -D__ETHEREAL_STATIC__ $(srcdir)/packet-dsareq.c

-packet-dsdrsp-static.o: packet-dsdrsp.c moduleinfo.h
- $(LTCOMPILE) -c -o packet-dsdrsp-static.o -D__ETHEREAL_STATIC__ $(srcdir)/packet-dsdrsp.c
+@ENABLE_STATIC_TRUE@packet-dsdrsp-static.o: packet-dsdrsp.c moduleinfo.h
+@ENABLE_STATIC_TRUE@ $(LTCOMPILE) -c -o packet-dsdrsp-static.o -D__ETHEREAL_STATIC__ $(srcdir)/packet-dsdrsp.c

-packet-rngreq-static.o: packet-rngreq.c moduleinfo.h
- $(LTCOMPILE) -c -o packet-rngreq-static.o -D__ETHEREAL_STATIC__ $(srcdir)/packet-rngreq.c
+@ENABLE_STATIC_TRUE@packet-rngreq-static.o: packet-rngreq.c moduleinfo.h
+@ENABLE_STATIC_TRUE@ $(LTCOMPILE) -c -o packet-rngreq-static.o -D__ETHEREAL_STATIC__ $(srcdir)/packet-rngreq.c

-packet-vendor-static.o: packet-vendor.c moduleinfo.h
- $(LTCOMPILE) -c -o packet-vendor-static.o -D__ETHEREAL_STATIC__ $(srcdir)/packet-vendor.c
+@ENABLE_STATIC_TRUE@packet-vendor-static.o: packet-vendor.c moduleinfo.h
+@ENABLE_STATIC_TRUE@ $(LTCOMPILE) -c -o packet-vendor-static.o -D__ETHEREAL_STATIC__ $(srcdir)/packet-vendor.c
# Tell versions [3.59,3.63) of GNU make to not export all variables.
# Otherwise a system limit (for SysV at least) may be exceeded.
.NOEXPORT:
31 changes: 31 additions & 0 deletions net/ethereal/patches/patch-ac
@@ -0,0 +1,31 @@
$NetBSD: patch-ac,v 1.1.2.2 2003/06/19 00:03:33 grant Exp $

--- plugins/giop/Makefile.in.orig 2003-05-02 03:11:01.000000000 +0200
+++ plugins/giop/Makefile.in 2003-05-05 18:10:34.000000000 +0200
@@ -186,8 +186,8 @@
# add them here.
LIBS =

-cosnaming_la_DEPENDENCIES = packet-cosnaming-static.o
-coseventcomm_la_DEPENDENCIES = packet-coseventcomm-static.o
+@ENABLE_STATIC_TRUE@cosnaming_la_DEPENDENCIES = packet-cosnaming-static.o
+@ENABLE_STATIC_TRUE@coseventcomm_la_DEPENDENCIES = packet-coseventcomm-static.o

CLEANFILES = \
cosnaming \
@@ -460,11 +460,11 @@
uninstall-am uninstall-info-am uninstall-pluginLTLIBRARIES


-packet-cosnaming-static.o: packet-cosnaming.c moduleinfo.h
- $(LTCOMPILE) -c -o packet-cosnaming-static.o -D__ETHEREAL_STATIC__ $(srcdir)/packet-cosnaming.c
+@ENABLE_STATIC_TRUE@packet-cosnaming-static.o: packet-cosnaming.c moduleinfo.h
+@ENABLE_STATIC_TRUE@ $(LTCOMPILE) -c -o packet-cosnaming-static.o -D__ETHEREAL_STATIC__ $(srcdir)/packet-cosnaming.c

-packet-coseventcomm-static.o: packet-coseventcomm.c moduleinfo.h
- $(LTCOMPILE) -c -o packet-coseventcomm-static.o -D__ETHEREAL_STATIC__ $(srcdir)/packet-coseventcomm.c
+@ENABLE_STATIC_TRUE@packet-coseventcomm-static.o: packet-coseventcomm.c moduleinfo.h
+@ENABLE_STATIC_TRUE@ $(LTCOMPILE) -c -o packet-coseventcomm-static.o -D__ETHEREAL_STATIC__ $(srcdir)/packet-coseventcomm.c
# Tell versions [3.59,3.63) of GNU make to not export all variables.
# Otherwise a system limit (for SysV at least) may be exceeded.
.NOEXPORT:
24 changes: 24 additions & 0 deletions net/ethereal/patches/patch-ad
@@ -0,0 +1,24 @@
$NetBSD: patch-ad,v 1.1.2.2 2003/06/19 00:03:53 grant Exp $

--- plugins/gryphon/Makefile.in.orig 2003-05-02 03:11:01.000000000 +0200
+++ plugins/gryphon/Makefile.in 2003-05-05 18:11:31.000000000 +0200
@@ -180,7 +180,7 @@
# add them here.
LIBS =

-gryphon_la_DEPENDENCIES = packet-gryphon-static.o
+@ENABLE_STATIC_TRUE@gryphon_la_DEPENDENCIES = packet-gryphon-static.o

CLEANFILES = \
gryphon \
@@ -445,8 +445,8 @@
uninstall-am uninstall-info-am uninstall-pluginLTLIBRARIES


-packet-gryphon-static.o: packet-gryphon.c moduleinfo.h
- $(LTCOMPILE) -c -o packet-gryphon-static.o -D__ETHEREAL_STATIC__ $(srcdir)/packet-gryphon.c
+@ENABLE_STATIC_TRUE@packet-gryphon-static.o: packet-gryphon.c moduleinfo.h
+@ENABLE_STATIC_TRUE@ $(LTCOMPILE) -c -o packet-gryphon-static.o -D__ETHEREAL_STATIC__ $(srcdir)/packet-gryphon.c
# Tell versions [3.59,3.63) of GNU make to not export all variables.
# Otherwise a system limit (for SysV at least) may be exceeded.
.NOEXPORT:
24 changes: 24 additions & 0 deletions net/ethereal/patches/patch-ae
@@ -0,0 +1,24 @@
$NetBSD: patch-ae,v 1.1.2.2 2003/06/19 00:04:05 grant Exp $

--- plugins/megaco/Makefile.in.orig 2003-05-02 03:11:01.000000000 +0200
+++ plugins/megaco/Makefile.in 2003-05-05 18:12:38.000000000 +0200
@@ -179,7 +179,7 @@
# add them here.
LIBS =

-megaco_la_DEPENDENCIES = packet-megaco-static.o
+@ENABLE_STATIC_TRUE@megaco_la_DEPENDENCIES = packet-megaco-static.o

CLEANFILES = \
megaco \
@@ -444,8 +444,8 @@
uninstall-am uninstall-info-am uninstall-pluginLTLIBRARIES


-packet-megaco-static.o: packet-megaco.c moduleinfo.h
- $(LTCOMPILE) -c -o packet-megaco-static.o -D__ETHEREAL_STATIC__ $(srcdir)/packet-megaco.c
+@ENABLE_STATIC_TRUE@packet-megaco-static.o: packet-megaco.c moduleinfo.h
+@ENABLE_STATIC_TRUE@ $(LTCOMPILE) -c -o packet-megaco-static.o -D__ETHEREAL_STATIC__ $(srcdir)/packet-megaco.c
# Tell versions [3.59,3.63) of GNU make to not export all variables.
# Otherwise a system limit (for SysV at least) may be exceeded.
.NOEXPORT:
24 changes: 24 additions & 0 deletions net/ethereal/patches/patch-af
@@ -0,0 +1,24 @@
$NetBSD: patch-af,v 1.1.2.2 2003/06/19 00:04:20 grant Exp $

--- plugins/mgcp/Makefile.in.orig 2003-05-02 03:11:01.000000000 +0200
+++ plugins/mgcp/Makefile.in 2003-05-05 18:13:20.000000000 +0200
@@ -180,7 +180,7 @@
# add them here.
LIBS =

-mgcp_la_DEPENDENCIES = packet-mgcp-static.o
+@ENABLE_STATIC_TRUE@mgcp_la_DEPENDENCIES = packet-mgcp-static.o

CLEANFILES = \
mgcp \
@@ -445,8 +445,8 @@
uninstall-am uninstall-info-am uninstall-pluginLTLIBRARIES


-packet-mgcp-static.o: packet-mgcp.c moduleinfo.h
- $(LTCOMPILE) -c -o packet-mgcp-static.o -D__ETHEREAL_STATIC__ $(srcdir)/packet-mgcp.c
+@ENABLE_STATIC_TRUE@packet-mgcp-static.o: packet-mgcp.c moduleinfo.h
+@ENABLE_STATIC_TRUE@ $(LTCOMPILE) -c -o packet-mgcp-static.o -D__ETHEREAL_STATIC__ $(srcdir)/packet-mgcp.c
# Tell versions [3.59,3.63) of GNU make to not export all variables.
# Otherwise a system limit (for SysV at least) may be exceeded.
.NOEXPORT:
24 changes: 24 additions & 0 deletions net/ethereal/patches/patch-ag
@@ -0,0 +1,24 @@
$NetBSD: patch-ag,v 1.1.2.2 2003/06/19 00:04:29 grant Exp $

--- plugins/pcli/Makefile.in.orig 2003-05-02 03:11:01.000000000 +0200
+++ plugins/pcli/Makefile.in 2003-05-05 18:13:59.000000000 +0200
@@ -180,7 +180,7 @@
# add them here.
LIBS =

-pcli_la_DEPENDENCIES = packet-pcli-static.o
+@ENABLE_STATIC_TRUE@pcli_la_DEPENDENCIES = packet-pcli-static.o

CLEANFILES = \
pcli \
@@ -445,8 +445,8 @@
uninstall-am uninstall-info-am uninstall-pluginLTLIBRARIES


-packet-pcli-static.o: packet-pcli.c moduleinfo.h
- $(LTCOMPILE) -c -o packet-pcli-static.o -D__ETHEREAL_STATIC__ $(srcdir)/packet-pcli.c
+@ENABLE_STATIC_TRUE@packet-pcli-static.o: packet-pcli.c moduleinfo.h
+@ENABLE_STATIC_TRUE@ $(LTCOMPILE) -c -o packet-pcli-static.o -D__ETHEREAL_STATIC__ $(srcdir)/packet-pcli.c
# Tell versions [3.59,3.63) of GNU make to not export all variables.
# Otherwise a system limit (for SysV at least) may be exceeded.
.NOEXPORT:

0 comments on commit e35c15d

Please sign in to comment.