diff options
author | Martin Wilke <miwi@FreeBSD.org> | 2006-10-07 08:40:06 +0000 |
---|---|---|
committer | Martin Wilke <miwi@FreeBSD.org> | 2006-10-07 08:40:06 +0000 |
commit | e9db64342a3d25d67a6c3eb73942740c49fdde8e (patch) | |
tree | 82d1b18bc7c4f0f73a629e0a6b6253dccea7df8a /devel/jrtplib | |
parent | 03a734dee79be51ea20481bbf48567c692acdbb9 (diff) |
Notes
Diffstat (limited to 'devel/jrtplib')
-rw-r--r-- | devel/jrtplib/Makefile | 2 | ||||
-rw-r--r-- | devel/jrtplib/files/patch-src-rtpipv6destination.h | 15 |
2 files changed, 16 insertions, 1 deletions
diff --git a/devel/jrtplib/Makefile b/devel/jrtplib/Makefile index fd1bfc0c15ab..182561ad5be6 100644 --- a/devel/jrtplib/Makefile +++ b/devel/jrtplib/Makefile @@ -15,7 +15,7 @@ COMMENT= Object-oriented RTP library written in C++ GNU_CONFIGURE= yes USE_GMAKE= yes -INSTALLS_SHLIB= yes +USE_LDCONFIG= yes NO_FILTER_SHLIBS= yes CONFIGURE_TARGET= --target=${MACHINE_ARCH}-portbld-freebsd${OSREL} CONFIGURE_ARGS= --disable-jthread diff --git a/devel/jrtplib/files/patch-src-rtpipv6destination.h b/devel/jrtplib/files/patch-src-rtpipv6destination.h new file mode 100644 index 000000000000..d9ecaf3790e0 --- /dev/null +++ b/devel/jrtplib/files/patch-src-rtpipv6destination.h @@ -0,0 +1,15 @@ +--- src/rtpipv6destination.h.orig Tue Sep 26 22:12:59 2006 ++++ src/rtpipv6destination.h Tue Sep 26 22:13:16 2006 +@@ -65,9 +65,9 @@ + rtpaddr.sin6_family = AF_INET6; + rtpaddr.sin6_port = htons(portbase); + rtpaddr.sin6_addr = ip; +- rtpaddr.sin6_family = AF_INET6; +- rtpaddr.sin6_port = htons(portbase+1); +- rtpaddr.sin6_addr = ip; ++ rtcpaddr.sin6_family = AF_INET6; ++ rtcpaddr.sin6_port = htons(portbase+1); ++ rtcpaddr.sin6_addr = ip; + } + in6_addr GetIP() const { return rtpaddr.sin6_addr; } + bool operator==(const RTPIPv6Destination &src) const |