You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@trafficserver.apache.org by zw...@apache.org on 2014/04/17 18:44:29 UTC

[30/50] git commit: TS-2711 Use the right define to detect Darwin

TS-2711 Use the right define to detect Darwin


Project: http://git-wip-us.apache.org/repos/asf/trafficserver/repo
Commit: http://git-wip-us.apache.org/repos/asf/trafficserver/commit/b76b23c8
Tree: http://git-wip-us.apache.org/repos/asf/trafficserver/tree/b76b23c8
Diff: http://git-wip-us.apache.org/repos/asf/trafficserver/diff/b76b23c8

Branch: refs/heads/5.0.x
Commit: b76b23c84ff9b848c4648b651532b70aeed21c50
Parents: f290a71
Author: Leif Hedstrom <zw...@apache.org>
Authored: Tue Apr 15 10:22:15 2014 -0600
Committer: Leif Hedstrom <zw...@apache.org>
Committed: Tue Apr 15 10:22:15 2014 -0600

----------------------------------------------------------------------
 configure.ac | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/trafficserver/blob/b76b23c8/configure.ac
----------------------------------------------------------------------
diff --git a/configure.ac b/configure.ac
index 0dacfda..ad8c054 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1419,7 +1419,7 @@ AX_LIB_READLINE
 
 # On Darwin LuaJIT requires magic link options, otherwise it will crash in luaL_openlibs() at startup. See
 # http://luajit.org/install.html.
-case $host_os in
+case $host_os_def in
   darwin)
     LUA_LUAJIT_LDFLAGS="-Wl,-pagezero_size,10000 -Wl,-image_base,100000000"
     ;;