# HG changeset patch # User mstorsjo # Date 1268207036 0 # Node ID 1851c22755307bb8382446485cdfecda244a3561 # Parent 4410bccf6a8a2e56ab85e9b21315d3d87dabb72b Using struct timeval requires sys/time.h, fixes compilation on some OSes Patch by Dave Yeo, daveryeo at telus dot net diff -r 4410bccf6a8a -r 1851c2275530 rtpproto.c --- a/rtpproto.c Tue Mar 09 16:04:41 2010 +0000 +++ b/rtpproto.c Wed Mar 10 07:43:56 2010 +0000 @@ -36,6 +36,7 @@ #if HAVE_SYS_SELECT_H #include #endif +#include #define RTP_TX_BUF_SIZE (64 * 1024) #define RTP_RX_BUF_SIZE (128 * 1024)