diff options
author | nork <nork@FreeBSD.org> | 2003-02-04 01:26:33 +0800 |
---|---|---|
committer | nork <nork@FreeBSD.org> | 2003-02-04 01:26:33 +0800 |
commit | 9c134d1ad05d17ee8c8960bdc28696d487acb582 (patch) | |
tree | bd97d3540a6464b9807daf136cd5a836146a4b62 /net/liveMedia | |
parent | 6151f696bc6e7070942d1cbac29da7c954ac8b53 (diff) | |
download | freebsd-ports-gnome-9c134d1ad05d17ee8c8960bdc28696d487acb582.tar.gz freebsd-ports-gnome-9c134d1ad05d17ee8c8960bdc28696d487acb582.tar.zst freebsd-ports-gnome-9c134d1ad05d17ee8c8960bdc28696d487acb582.zip |
Fix build on -CURRENT. This patch is temporary fix.
And reduce compiler warning for -CURRENT.
Submitted by: Anders Andersson <anders@hack.org>
Diffstat (limited to 'net/liveMedia')
-rw-r--r-- | net/liveMedia/files/config.fixed-freebsd | 2 | ||||
-rw-r--r-- | net/liveMedia/files/patch-BasicUsageEnvironment::Lock.cpp | 10 |
2 files changed, 11 insertions, 1 deletions
diff --git a/net/liveMedia/files/config.fixed-freebsd b/net/liveMedia/files/config.fixed-freebsd index 4d12090c69d3..17240ba50863 100644 --- a/net/liveMedia/files/config.fixed-freebsd +++ b/net/liveMedia/files/config.fixed-freebsd @@ -3,7 +3,7 @@ C = c C_COMPILER = $(CC) C_FLAGS = $(COMPILE_OPTS) CPLUSPLUS_COMPILER = $(CXX) -CPLUSPLUS_FLAGS = $(COMPILE_OPTS) -Wall +CPLUSPLUS_FLAGS = $(COMPILE_OPTS) -Wall -Wno-deprecated OBJ = o LINK = $(CXX) -o LINK_OPTS = -L. diff --git a/net/liveMedia/files/patch-BasicUsageEnvironment::Lock.cpp b/net/liveMedia/files/patch-BasicUsageEnvironment::Lock.cpp new file mode 100644 index 000000000000..74d79959d6eb --- /dev/null +++ b/net/liveMedia/files/patch-BasicUsageEnvironment::Lock.cpp @@ -0,0 +1,10 @@ +--- BasicUsageEnvironment/Lock.cpp.orig Mon Feb 3 20:10:22 2003 ++++ BasicUsageEnvironment/Lock.cpp Tue Feb 4 01:55:14 2003 +@@ -19,6 +19,7 @@ + + #include "Lock.hh" + #include <signal.h> ++#include "NetCommon.h" + + ///// Read-Write Locks ///// + |