From 8aff7d3b351bac983dbdaa50d0b48e7a765eab92 Mon Sep 17 00:00:00 2001 From: Ezra Zygmuntowicz Date: Sun, 13 Feb 2011 19:54:55 -0800 Subject: [PATCH] OSX is dumb dumb dumb and reports even 64bit machines as i386 --- config | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config b/config index b492443ee1..74b22e55bd 100644 --- a/config +++ b/config @@ -28,7 +28,7 @@ END case "$NGX_PLATFORM" in Darwin:*) case "$NGX_MACHINE" in - amd64 | x86_64) + amd64 | x86_64 | i386) echo "adding extra linking options needed by LuaJIT" ngx_feature_libs="$ngx_feature_libs -pagezero_size 10000 -image_base 100000000" ;;