aboutsummaryrefslogtreecommitdiffstats
path: root/utils
diff options
context:
space:
mode:
authorkpfleming <kpfleming@f38db490-d61c-443f-a65b-d21fe96a405b>2005-08-23 15:36:01 +0000
committerkpfleming <kpfleming@f38db490-d61c-443f-a65b-d21fe96a405b>2005-08-23 15:36:01 +0000
commit6a909df1e119eab4e47d9047f75bb0d8505b43f0 (patch)
treea585609eada61cd6b46f8c6afa96e647c210964b /utils
parent1a946d78a728930d3b2261641bb2e7c55afeb095 (diff)
fix build on FreeBSD (issue #5003)
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@6382 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'utils')
-rwxr-xr-xutils/streamplayer.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/utils/streamplayer.c b/utils/streamplayer.c
index 5ae742f08..90447a63a 100755
--- a/utils/streamplayer.c
+++ b/utils/streamplayer.c
@@ -9,6 +9,8 @@
*
* This program is free software, distributed under the terms of
* the GNU General Public License
+*
+* $Revision$
*/
#include <stdlib.h>
@@ -18,6 +20,9 @@
#include <unistd.h>
#include <sys/types.h>
#include <sys/socket.h>
+#if defined(__FreeBSD__)
+#include <netinet/in.h>
+#endif
#include <sys/time.h>