From a5b4b429f1c6c45acdc1cde378f189429d52e327 Mon Sep 17 00:00:00 2001
From: Russell Bryant <russell@russellbryant.com>
Date: Sat, 20 Mar 2010 11:47:40 +0000
Subject: [PATCH] Include sys/wait.h on FreeBSD to get the WEXITSTATUS() macro.

git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@253539 65c4cc65-6c06-0410-ace0-fbb531ad65f3
---
 apps/app_voicemail.c | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/apps/app_voicemail.c b/apps/app_voicemail.c
index c69e7854f6..9cd2fcd91c 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"
-- 
GitLab