This is an automated email from the ASF dual-hosted git repository. sorber pushed a commit to branch 6.2.x in repository https://gitbox.apache.org/repos/asf/trafficserver.git
commit fa6c3bc9d4228013d89c8b071cb89d80f3bb8e7a Author: Leif Hedstrom <[email protected]> AuthorDate: Tue Apr 4 12:22:30 2017 -0600 Avoid varargs warnings when compiling LuaJIT (cherry picked from commit bf3781661003a6da7102d891b6b8e3df65c091e5) Conflicts: configure.ac --- configure.ac | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/configure.ac b/configure.ac index a52c1c2..ec4b9f4 100644 --- a/configure.ac +++ b/configure.ac @@ -809,7 +809,7 @@ case $host_os_def in debug_opt="-ggdb3 $common_opt -Qunused-arguments" release_opt="-g $common_opt $optimizing_flags -fno-strict-aliasing -Qunused-arguments" cxx_opt="-Wno-invalid-offsetof" - lua_cflags="-Wno-parentheses-equality -Wno-tautological-compare -analyzer-disable-all-checks" + lua_cflags="-Wno-parentheses-equality -Wno-tautological-compare -analyzer-disable-all-checks -Wno-varargs" ]) AS_IF([test "x$ax_cv_c_compiler_vendor" = "xgnu"], [ @@ -831,7 +831,7 @@ case $host_os_def in debug_opt="-g $common_opt" release_opt="-g $common_opt $optimizing_flags -fno-strict-aliasing" cxx_opt="-Wno-invalid-offsetof" - lua_cflags="-Wno-parentheses-equality -Wno-tautological-compare" + lua_cflags="-Wno-parentheses-equality -Wno-tautological-compare -Wno-varargs" ], [ AC_MSG_WARN([clang is the only supported compiler on Darwin]) ]) @@ -852,7 +852,7 @@ case $host_os_def in debug_opt="-ggdb3 $common_opt" release_opt="-g $common_opt $optimizing_flags -fno-strict-aliasing" cxx_opt="-Wno-invalid-offsetof" - lua_cflags="-Wno-parentheses-equality -Wno-tautological-compare" + lua_cflags="-Wno-parentheses-equality -Wno-tautological-compare -Wno-varargs" ]) AS_IF([test "x$ax_cv_c_compiler_vendor" = "xgnu"], [ -- To stop receiving notification emails like this one, please contact "[email protected]" <[email protected]>.
