diff options
author | Bruce M Simpson <bms@FreeBSD.org> | 2003-11-14 16:33:33 +0000 |
---|---|---|
committer | Bruce M Simpson <bms@FreeBSD.org> | 2003-11-14 16:33:33 +0000 |
commit | 7ab4a1fe58139bc586065444a529c554479c2574 (patch) | |
tree | dda92305527359c66a3e9895a576058f950793bf /mbone/mcl/files/patch-Makefile.common | |
parent | Fix packaging when OSPFAPI is requested. This installs additional headers, (diff) |
Add mcl 2.99,
implementation of the ALC and NORM Reliable Multicast
Protocols.
PR: 58728
Submitted by: past@noc.ntua.gr
Notes
Notes:
svn path=/head/; revision=93959
Diffstat (limited to 'mbone/mcl/files/patch-Makefile.common')
-rw-r--r-- | mbone/mcl/files/patch-Makefile.common | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/mbone/mcl/files/patch-Makefile.common b/mbone/mcl/files/patch-Makefile.common new file mode 100644 index 000000000000..2277615cfabd --- /dev/null +++ b/mbone/mcl/files/patch-Makefile.common @@ -0,0 +1,33 @@ +--- Makefile.common.orig Tue Jul 22 19:37:39 2003 ++++ Makefile.common Tue Oct 14 15:04:38 2003 +@@ -24,11 +24,15 @@ + ifeq (${SYSTEM},SunOS) + OS = solaris + endif ++ifeq (${SYSTEM},FreeBSD) ++ OS = freebsd ++endif + # + # and the old way (e.g. if the above lines do not work!) + # + #OS = linux + #OS = solaris ++#OS = freebsd + + + # Do you want/need extended memory debugging? +@@ -59,6 +63,14 @@ + # + CC = /opt/SUNWspro/bin/CC + LD = /opt/SUNWspro/bin/CC ++endif ++ifeq (${OS},freebsd) ++ OSFLAGS = -DFREEBSD -I/usr/include/g++ ++ # Which compiler? ++ # NB: use -Wall for compilation warnings with gcc ++ # ++ CC = g++ -Wall ++ LD = g++ -Wall + endif + + |