From 345447b9619cb525a2c52fff16c88710326c9595 Mon Sep 17 00:00:00 2001 From: Doug Coleman Date: Sat, 9 Oct 2010 16:53:54 -0700 Subject: [PATCH] Fix bootstrap on mac by adding back the PF_INET constant --- basis/unix/ffi/bsd/macosx/macosx.factor | 3 +++ 1 file changed, 3 insertions(+) diff --git a/basis/unix/ffi/bsd/macosx/macosx.factor b/basis/unix/ffi/bsd/macosx/macosx.factor index 2ca1d9315d..5a6775f214 100644 --- a/basis/unix/ffi/bsd/macosx/macosx.factor +++ b/basis/unix/ffi/bsd/macosx/macosx.factor @@ -5,6 +5,9 @@ IN: unix.ffi CONSTANT: FD_SETSIZE 1024 +CONSTANT: AF_INET6 30 +ALIAS: PF_INET6 AF_INET6 + STRUCT: addrinfo { flags int } { family int }