diff options
author | Norikatsu Shigemura <nork@FreeBSD.org> | 2004-12-16 14:38:53 +0000 |
---|---|---|
committer | Norikatsu Shigemura <nork@FreeBSD.org> | 2004-12-16 14:38:53 +0000 |
commit | ab62361816b8b6f5546afaacaae1104e87f9ac8e (patch) | |
tree | 50b0a4debf27a8b72402e655b315681fb9c8f6a5 | |
parent | Update to 5.0.3 release: (diff) |
Fix little endian problem.
Submitted by: Denis Ahrens <denis@berlin.ccc.de>
Steve Wills <steve@stevenwills.com>
Obtained from: http://lists.apple.com/archives/streaming-server-users/2004/May/msg00000.html
Notes
Notes:
svn path=/head/; revision=124214
-rw-r--r-- | net/DarwinStreamingServer/Makefile | 2 | ||||
-rw-r--r-- | net/DarwinStreamingServer/files/patch-APIModules::QTSSReflectorModule::ReflectorStream.cpp | 11 |
2 files changed, 12 insertions, 1 deletions
diff --git a/net/DarwinStreamingServer/Makefile b/net/DarwinStreamingServer/Makefile index eecef5d48c9e..9440e7cfe0b6 100644 --- a/net/DarwinStreamingServer/Makefile +++ b/net/DarwinStreamingServer/Makefile @@ -7,7 +7,7 @@ PORTNAME= DarwinStreamingServer PORTVERSION= 5.0.1.1 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= net MASTER_SITES= #http://developer.apple.com/darwin/projects/streaming/source/ # You must accept APSL (Apple Public Source License), and get diff --git a/net/DarwinStreamingServer/files/patch-APIModules::QTSSReflectorModule::ReflectorStream.cpp b/net/DarwinStreamingServer/files/patch-APIModules::QTSSReflectorModule::ReflectorStream.cpp new file mode 100644 index 000000000000..396d5789835d --- /dev/null +++ b/net/DarwinStreamingServer/files/patch-APIModules::QTSSReflectorModule::ReflectorStream.cpp @@ -0,0 +1,11 @@ +--- APIModules/QTSSReflectorModule/ReflectorStream.cpp.orig Sat Aug 16 08:52:46 2003 ++++ APIModules/QTSSReflectorModule/ReflectorStream.cpp Thu Dec 16 23:29:41 2004 +@@ -173,7 +173,7 @@ + theRRWriter++; + *theRRWriter = htonl(theSsrc); + theRRWriter++; +- *theRRWriter = FOUR_CHARS_TO_INT('Q','T','S','S'); ++ *theRRWriter = htonl(FOUR_CHARS_TO_INT('Q','T','S','S')); + theRRWriter++; + *theRRWriter = htonl(0); + theRRWriter++; |