diff options
Diffstat (limited to 'package/network/utils/comgt/patches/.svn')
-rw-r--r-- | package/network/utils/comgt/patches/.svn/entries | 62 | ||||
-rw-r--r-- | package/network/utils/comgt/patches/.svn/text-base/001-compile_fix.patch.svn-base | 23 |
2 files changed, 85 insertions, 0 deletions
diff --git a/package/network/utils/comgt/patches/.svn/entries b/package/network/utils/comgt/patches/.svn/entries new file mode 100644 index 0000000..b517020 --- /dev/null +++ b/package/network/utils/comgt/patches/.svn/entries @@ -0,0 +1,62 @@ +10 + +dir +36060 +svn://svn.openwrt.org/openwrt/trunk/package/network/utils/comgt/patches +svn://svn.openwrt.org/openwrt + + + +2011-07-20T08:47:19.523684Z +27699 +nbd + + + + + + + + + + + + + + +3c298f89-4303-0410-b956-a3cf2f4a3e73 + +001-compile_fix.patch +file + + + + +2013-03-17T12:13:17.000000Z +d824a793242469fdc3be05838f3b4751 +2011-07-20T08:47:19.523684Z +27699 +nbd + + + + + + + + + + + + + + + + + + + + + +408 + diff --git a/package/network/utils/comgt/patches/.svn/text-base/001-compile_fix.patch.svn-base b/package/network/utils/comgt/patches/.svn/text-base/001-compile_fix.patch.svn-base new file mode 100644 index 0000000..15de850 --- /dev/null +++ b/package/network/utils/comgt/patches/.svn/text-base/001-compile_fix.patch.svn-base @@ -0,0 +1,23 @@ +--- a/Makefile ++++ b/Makefile +@@ -32,6 +32,7 @@ SCRIPTPATH = /etc/comgt/ + SCRIPTSRC = ./scripts/ + BIN = $(CPROG) + MANP = comgt.1 sigmon.1 ++CC = cc + + CFLAGS = -c + LDFLAGS = +@@ -70,10 +71,5 @@ clean: + -rm *~ + -rm $(SCRIPTSRC)*~ + +- +-comgt: comgt.o +- cc comgt.o $(LDFLAGS) -o comgt +- +-comgt.o: comgt.c comgt.h +- cc comgt.c $(CFLAGS) +- ++comgt: comgt.c comgt.h ++ $(CC) $(CFLAGS) -o comgt $< $(LDFLAGS) |