Skip to content
Snippets Groups Projects
Commit dccd0f6f authored by Alexandre Savard's avatar Alexandre Savard
Browse files

#6095: Fix compilation error for Fedora 15

parent 8e0dc2a9
No related branches found
No related tags found
No related merge requests found
...@@ -29,6 +29,12 @@ ...@@ -29,6 +29,12 @@
#ifndef AUDIORTPRECORDHANDLER_H_ #ifndef AUDIORTPRECORDHANDLER_H_
#define AUDIORTPRECORDHANDLER_H_ #define AUDIORTPRECORDHANDLER_H_
#include <cstddef>
using std::ptrdiff_t;
#include <ccrtp/rtp.h>
#include <list>
#include "sip/sipcall.h" #include "sip/sipcall.h"
#include "audio/codecs/audiocodec.h" #include "audio/codecs/audiocodec.h"
...@@ -39,8 +45,6 @@ ...@@ -39,8 +45,6 @@
#include "audio/echosuppress.h" #include "audio/echosuppress.h"
#include "audio/gaincontrol.h" #include "audio/gaincontrol.h"
#include "managerimpl.h" #include "managerimpl.h"
#include <ccrtp/rtp.h>
#include <list>
namespace sfl namespace sfl
{ {
......
...@@ -37,6 +37,7 @@ ...@@ -37,6 +37,7 @@
#include <iostream> #include <iostream>
#include <exception> #include <exception>
#include <list> #include <list>
#include <cstddef>
#include "global.h" #include "global.h"
...@@ -46,6 +47,7 @@ ...@@ -46,6 +47,7 @@
#include "managerimpl.h" #include "managerimpl.h"
using std::ptrdiff_t;
#include <ccrtp/rtp.h> #include <ccrtp/rtp.h>
#include <ccrtp/iqueue.h> #include <ccrtp/iqueue.h>
#include <cc++/numbers.h> // ost::Time #include <cc++/numbers.h> // ost::Time
......
...@@ -28,7 +28,9 @@ ...@@ -28,7 +28,9 @@
*/ */
#ifndef __SFL_AUDIO_SYMMETRIC_RTP_SESSION_H__ #ifndef __SFL_AUDIO_SYMMETRIC_RTP_SESSION_H__
#define __SFL_AUDIO_SYMMETRIC_RTP_SESSION_H__ #define __SFL_AUDIO_SYMMETRIC_RTP_SESSION_H__
#include <cstddef>
using std::ptrdiff_t;
#include <ccrtp/rtp.h> #include <ccrtp/rtp.h>
#include "AudioRtpSession.h" #include "AudioRtpSession.h"
......
...@@ -30,8 +30,10 @@ ...@@ -30,8 +30,10 @@
#ifndef __SFL_AUDIO_ZRTP_SESSION_H__ #ifndef __SFL_AUDIO_ZRTP_SESSION_H__
#define __SFL_AUDIO_ZRTP_SESSION_H__ #define __SFL_AUDIO_ZRTP_SESSION_H__
#include <ccrtp/rtp.h> #include <cstddef>
using std::ptrdiff_t;
#include <ccrtp/rtp.h>
#include <libzrtpcpp/zrtpccrtp.h> #include <libzrtpcpp/zrtpccrtp.h>
#include <libzrtpcpp/ZrtpQueue.h> #include <libzrtpcpp/ZrtpQueue.h>
#include <libzrtpcpp/ZrtpUserCallback.h> #include <libzrtpcpp/ZrtpUserCallback.h>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment