lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

ccrtp-1.8: fix build with gcc 4.6

+23 -1
+3 -1
pkgs/development/libraries/ccrtp/1.8.nix
··· 10 10 11 11 buildInputs = [ openssl pkgconfig libgcrypt commoncpp2 ]; 12 12 13 - meta = { 13 + patches = [ ./gcc-4.6-fix.patch ]; 14 + 15 + meta = { 14 16 description = "GNU ccRTP is an implementation of RTP, the real-time transport protocol from the IETF"; 15 17 homepage = "http://www.gnu.org/software/ccrtp/"; 16 18 license = "GPLv2";
+20
pkgs/development/libraries/ccrtp/gcc-4.6-fix.patch
··· 1 + diff -ubr ccrtp-1.8.0-orig/src/ccrtp/sources.h ccrtp-1.8.0/src/ccrtp/sources.h 2 + --- ccrtp-1.8.0-orig/src/ccrtp/sources.h 2010-04-18 20:51:49.000000000 +0200 3 + +++ ccrtp-1.8.0/src/ccrtp/sources.h 2012-07-07 11:42:50.961179016 +0200 4 + @@ -45,6 +45,7 @@ 5 + #define CCXX_RTP_SOURCES_H_ 6 + 7 + #include <string> 8 + +#include <cstddef> 9 + #include <ccrtp/rtcppkt.h> 10 + 11 + #ifdef CCXX_NAMESPACES 12 + @@ -406,7 +407,7 @@ 13 + public: 14 + typedef std::forward_iterator_tag iterator_category; 15 + typedef Participant value_type; 16 + - typedef ptrdiff_t difference_type; 17 + + typedef std::ptrdiff_t difference_type; 18 + typedef const Participant* pointer; 19 + typedef const Participant& reference; 20 +