summary refs log tree commit diff
path: root/pkgs/development/libraries/ccrtp/gcc-4.6-fix.patch
diff options
context:
space:
mode:
authorPeter Simons <simons@cryp.to>2012-07-07 11:44:28 +0200
committerPeter Simons <simons@cryp.to>2012-07-07 11:44:28 +0200
commitfda57fdd5eef9c87374b9737f74f3e07d1524fa5 (patch)
tree9f64959fe056a0aa5ae1062914e6f701b7fe762b /pkgs/development/libraries/ccrtp/gcc-4.6-fix.patch
parent08b29c6f96ce360f5a79e1243174593172e4a9d3 (diff)
downloadnixlib-fda57fdd5eef9c87374b9737f74f3e07d1524fa5.tar
nixlib-fda57fdd5eef9c87374b9737f74f3e07d1524fa5.tar.gz
nixlib-fda57fdd5eef9c87374b9737f74f3e07d1524fa5.tar.bz2
nixlib-fda57fdd5eef9c87374b9737f74f3e07d1524fa5.tar.lz
nixlib-fda57fdd5eef9c87374b9737f74f3e07d1524fa5.tar.xz
nixlib-fda57fdd5eef9c87374b9737f74f3e07d1524fa5.tar.zst
nixlib-fda57fdd5eef9c87374b9737f74f3e07d1524fa5.zip
ccrtp-1.8: fix build with gcc 4.6
Diffstat (limited to 'pkgs/development/libraries/ccrtp/gcc-4.6-fix.patch')
-rw-r--r--pkgs/development/libraries/ccrtp/gcc-4.6-fix.patch20
1 files changed, 20 insertions, 0 deletions
diff --git a/pkgs/development/libraries/ccrtp/gcc-4.6-fix.patch b/pkgs/development/libraries/ccrtp/gcc-4.6-fix.patch
new file mode 100644
index 000000000000..49d07a89e52a
--- /dev/null
+++ b/pkgs/development/libraries/ccrtp/gcc-4.6-fix.patch
@@ -0,0 +1,20 @@
+diff -ubr ccrtp-1.8.0-orig/src/ccrtp/sources.h ccrtp-1.8.0/src/ccrtp/sources.h
+--- ccrtp-1.8.0-orig/src/ccrtp/sources.h	2010-04-18 20:51:49.000000000 +0200
++++ ccrtp-1.8.0/src/ccrtp/sources.h	2012-07-07 11:42:50.961179016 +0200
+@@ -45,6 +45,7 @@
+ #define CCXX_RTP_SOURCES_H_
+ 
+ #include <string>
++#include <cstddef>
+ #include <ccrtp/rtcppkt.h>
+ 
+ #ifdef	CCXX_NAMESPACES
+@@ -406,7 +407,7 @@
+ 	public:
+ 		typedef std::forward_iterator_tag iterator_category;
+ 		typedef Participant value_type;
+-		typedef ptrdiff_t difference_type;
++		typedef std::ptrdiff_t difference_type;
+ 		typedef const Participant* pointer;
+ 		typedef const Participant& reference;
+