diff options
author | fenner <fenner@FreeBSD.org> | 2000-01-28 03:05:21 +0000 |
---|---|---|
committer | fenner <fenner@FreeBSD.org> | 2000-01-28 03:05:21 +0000 |
commit | dac922817fd4b13cb64d1d41d116d35c63776418 (patch) | |
tree | d122d822fd140a5c2e4d7f182fc96a1bd22355ac /mbone | |
parent | ae1597a5601c72201eb2dff0eefa6cf44afef3ef (diff) | |
download | FreeBSD-ports-dac922817fd4b13cb64d1d41d116d35c63776418.zip FreeBSD-ports-dac922817fd4b13cb64d1d41d116d35c63776418.tar.gz |
Add -pedantic to override the default -pedantic-errors, to allow
socket code to compile.
Include <time.h> where needed.
Diffstat (limited to 'mbone')
-rw-r--r-- | mbone/rtpmon/files/patch-ad | 11 | ||||
-rw-r--r-- | mbone/rtpmon/files/patch-ae | 10 |
2 files changed, 21 insertions, 0 deletions
diff --git a/mbone/rtpmon/files/patch-ad b/mbone/rtpmon/files/patch-ad new file mode 100644 index 0000000..50584fa --- /dev/null +++ b/mbone/rtpmon/files/patch-ad @@ -0,0 +1,11 @@ +--- Makefile.in.orig Thu Jan 27 19:01:25 2000 ++++ Makefile.in Thu Jan 27 19:01:36 2000 +@@ -43,7 +43,7 @@ + all: rtpmon + + .cc.o: +- $(C++) -o $@ -c $(CXXFLAGS) $*.cc ++ $(C++) -pedantic -o $@ -c $(CXXFLAGS) $*.cc + + .c.o: + $(CC) -o $@ -c $(CFLAGS) $*.c diff --git a/mbone/rtpmon/files/patch-ae b/mbone/rtpmon/files/patch-ae new file mode 100644 index 0000000..1133c13 --- /dev/null +++ b/mbone/rtpmon/files/patch-ae @@ -0,0 +1,10 @@ +--- net-ip.cc.orig Thu Jan 27 19:03:25 2000 ++++ net-ip.cc Thu Jan 27 19:03:34 2000 +@@ -38,6 +38,7 @@ + #include <stdlib.h> + #include <errno.h> + #include <string.h> ++#include <time.h> + #include <unistd.h> + #include <sys/param.h> + #include <sys/socket.h> |