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/05/29 23:10:59 UTC

git commit: TS-2804 Fix build on platforms where alloca.h is in a different spot

Repository: trafficserver
Updated Branches:
  refs/heads/master 11c329f2a -> 515f312b6


TS-2804 Fix build on platforms where alloca.h is in a different spot


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

Branch: refs/heads/master
Commit: 515f312b69398762a4b4eb935d3276ffd404fce6
Parents: 11c329f
Author: Leif Hedstrom <zw...@apache.org>
Authored: Thu May 29 15:10:45 2014 -0600
Committer: Leif Hedstrom <zw...@apache.org>
Committed: Thu May 29 15:10:49 2014 -0600

----------------------------------------------------------------------
 plugins/experimental/regex_revalidate/regex_revalidate.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/trafficserver/blob/515f312b/plugins/experimental/regex_revalidate/regex_revalidate.c
----------------------------------------------------------------------
diff --git a/plugins/experimental/regex_revalidate/regex_revalidate.c b/plugins/experimental/regex_revalidate/regex_revalidate.c
index 4f6baa0..eb41f4c 100644
--- a/plugins/experimental/regex_revalidate/regex_revalidate.c
+++ b/plugins/experimental/regex_revalidate/regex_revalidate.c
@@ -20,6 +20,7 @@
  */
 
 #include "ink_defs.h"
+#include "ink_platform.h"
 
 #include <stdlib.h>
 #include <stdio.h>
@@ -27,7 +28,6 @@
 #include <string.h>
 #include <stdbool.h>
 #include <getopt.h>
-#include <alloca.h>
 #include <limits.h>
 #include <sys/types.h>
 #include <sys/stat.h>