aboutsummaryrefslogtreecommitdiffstats
path: root/apps
diff options
context:
space:
mode:
authorrussell <russell@f38db490-d61c-443f-a65b-d21fe96a405b>2010-03-20 11:47:40 +0000
committerrussell <russell@f38db490-d61c-443f-a65b-d21fe96a405b>2010-03-20 11:47:40 +0000
commit27a99cceaa4c91890cbd1738c929cf5bce10fc94 (patch)
tree1f1eaba94cbe368ac01d15e675718cc2c43f20f3 /apps
parent2daf66f03682ebd71cceae0f5b5c7167b2a8cae1 (diff)
Include sys/wait.h on FreeBSD to get the WEXITSTATUS() macro.
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@253539 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'apps')
-rw-r--r--apps/app_voicemail.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/apps/app_voicemail.c b/apps/app_voicemail.c
index c69e7854f..9cd2fcd91 100644
--- a/apps/app_voicemail.c
+++ b/apps/app_voicemail.c
@@ -94,6 +94,9 @@ ASTERISK_FILE_VERSION(__FILE__, "$Revision$")
#include <sys/mman.h>
#include <time.h>
#include <dirent.h>
+#if defined(__FreeBSD__)
+#include <sys/wait.h>
+#endif
#include "asterisk/logger.h"
#include "asterisk/lock.h"