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 2015/04/12 23:26:19 UTC

trafficserver git commit: TS-3516 Fix build on FreeBSD now ...

Repository: trafficserver
Updated Branches:
  refs/heads/master 138097ffc -> 8f667fb54


TS-3516 Fix build on FreeBSD now ...


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

Branch: refs/heads/master
Commit: 8f667fb54742646b876d9295358d8f8a68bae591
Parents: 138097f
Author: Leif Hedstrom <zw...@apache.org>
Authored: Sun Apr 12 15:26:14 2015 -0600
Committer: Leif Hedstrom <zw...@apache.org>
Committed: Sun Apr 12 15:26:14 2015 -0600

----------------------------------------------------------------------
 configure.ac | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/trafficserver/blob/8f667fb5/configure.ac
----------------------------------------------------------------------
diff --git a/configure.ac b/configure.ac
index dacc0f6..9cb71b3 100644
--- a/configure.ac
+++ b/configure.ac
@@ -849,7 +849,7 @@ case $host_os_def in
     ])
 
     AS_IF([test "x$ax_cv_c_compiler_vendor" = "xclang"], [
-      common_opt="-pipe -Wall -Qunused-arguments -Wno-deprecated-declarations"
+      common_opt="-pipe -Wall -Wno-deprecated-declarations -Qunused-arguments"
       debug_opt="-ggdb3 $common_opt -Qunused-arguments"
       release_opt="-g $common_opt $optimizing_flags -fno-strict-aliasing -Qunused-arguments"
       cxx_opt="-Wno-invalid-offsetof"
@@ -895,10 +895,10 @@ case $host_os_def in
 
   freebsd|kfreebsd)
     AS_IF([test "x$ax_cv_c_compiler_vendor" = "xclang"], [
-      common_opt="-pipe -Wall -Wno-deprecated-declarations"
+      common_opt="-pipe -Wall -Wno-deprecated-declarations -Qunused-arguments"
       debug_opt="-ggdb3 $common_opt"
       release_opt="-g $common_opt $optimizing_flags -fno-strict-aliasing"
-      cxx_opt="-Wno-invalid-offsetof -Qunused-arguments"
+      cxx_opt="-Wno-invalid-offsetof"
       luajit_cflags="-Wno-parentheses-equality -Wno-tautological-compare"
     ])