From 38c80bdd46fab68c686a293e2820041291972f3a Mon Sep 17 00:00:00 2001
From: Guus Sliepen <guus@tinc-vpn.org>
Date: Sun, 15 Sep 2002 12:26:04 +0000
Subject: [PATCH] MacOS/X needs #define _P1003_1B_VISIBLE in order to use
 mlockall().

---
 src/tincd.c | 8 +++++++-
 1 file changed, 7 insertions(+), 1 deletion(-)

diff --git a/src/tincd.c b/src/tincd.c
index 6bd92ecb..8ebbe42a 100644
--- a/src/tincd.c
+++ b/src/tincd.c
@@ -17,7 +17,7 @@
     along with this program; if not, write to the Free Software
     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
 
-    $Id: tincd.c,v 1.10.4.63 2002/09/09 21:25:16 guus Exp $
+    $Id: tincd.c,v 1.10.4.64 2002/09/15 12:26:04 guus Exp $
 */
 
 #include "config.h"
@@ -33,6 +33,12 @@
 #include <signal.h>
 #include <string.h>
 #include <termios.h>
+
+/* Darwin (MacOS/X) needs the following definition... */
+#ifndef _P1003_1B_VISIBLE
+#define _P1003_1B_VISIBLE
+#endif
+
 #include <sys/mman.h>
 
 #ifdef HAVE_SYS_IOCTL_H