You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@trafficserver.apache.org by so...@apache.org on 2015/04/14 18:19:07 UTC

[7/8] trafficserver git commit: TS-3516 Fix build on FreeBSD now ...

TS-3516 Fix build on FreeBSD now ...

(cherry picked from commit 8f667fb54742646b876d9295358d8f8a68bae591)


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

Branch: refs/heads/5.3.x
Commit: 69caf7ec7a9ec85dad5e28fd9914c78836c40b83
Parents: a9c516e
Author: Leif Hedstrom <zw...@apache.org>
Authored: Sun Apr 12 15:26:14 2015 -0600
Committer: Phil Sorber <so...@apache.org>
Committed: Tue Apr 14 10:07:04 2015 -0600

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


http://git-wip-us.apache.org/repos/asf/trafficserver/blob/69caf7ec/configure.ac
----------------------------------------------------------------------
diff --git a/configure.ac b/configure.ac
index 08662b4..876f41f 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"
     ])