dect
/
asterisk
Archived
13
0
Fork 0

Fix building on FreeBSD by including/not including some headers.

(closes issue #11218)
Reported by: ys
Patches:
      trunk89169.diff uploaded by ys (license 281)


git-svn-id: http://svn.digium.com/svn/asterisk/trunk@89177 f38db490-d61c-443f-a65b-d21fe96a405b
This commit is contained in:
file 2007-11-12 13:26:45 +00:00
parent f8c609617a
commit 4b753c1924
2 changed files with 3 additions and 0 deletions

View File

@ -41,6 +41,7 @@ ASTERISK_FILE_VERSION(__FILE__, "$Revision$")
#include <unistd.h>
#include <sys/socket.h>
#include <sys/ioctl.h>
#include <sys/stat.h>
#include <net/if.h>
#include <errno.h>
#include <stdlib.h>

View File

@ -34,7 +34,9 @@
#include <stdio.h>
#include <stdlib.h>
#include <stdarg.h>
#ifdef HAVE_ALLOCA_H
#include <alloca.h>
#endif
#include <string.h>
#include <pthread.h>
#include <sys/stat.h>