In metaconfig.git, the branch master has been updated <http://perl5.git.perl.org/metaconfig.git/commitdiff/7de2f3a3c68fb51be35cdc5c3cd0e3d5df9052b8?hp=733156e21a93029d6213e242872791dddee6c241>
- Log ----------------------------------------------------------------- commit 7de2f3a3c68fb51be35cdc5c3cd0e3d5df9052b8 Author: H.Merijn Brand - Tux <[email protected]> Date: Thu Apr 21 13:18:45 2016 +0200 silence some try.c warnings Backport from cc0bf92f2c5d6a67a850efa7d21a5a83e016d446 Author: David Mitchell <[email protected]> Date: Mon Mar 14 16:49:05 2016 +0000 Configure: silence some try.c warnings On one of the try.c compilations, redirect stderr to /dev/null, since the code can legitimately warn without there being a problem. The try.c in question is probing for what symbols the compiler supports. The clang extensions __has_include and __has_include_next are designed only to be used in .h files, so they warn if used from try.c ----------------------------------------------------------------------- Summary of changes: U/modified/Cppsym.U | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/U/modified/Cppsym.U b/U/modified/Cppsym.U index de05202..df909f1 100644 --- a/U/modified/Cppsym.U +++ b/U/modified/Cppsym.U @@ -214,7 +214,7 @@ case "$osname-$gccversion" in irix-) ccflags="\$ccflags -woff 1178" ;; os2-*) ccflags="\$ccflags -Zlinker /PM:VIO" ;; esac -$cc -o try -Dcpp_stuff=$cpp_stuff $optimize \$ccflags $ldflags try.c $libs && $run ./try | $sed 's/ /\\\\ /g' +$cc -o try -Dcpp_stuff=$cpp_stuff $optimize \$ccflags $ldflags try.c $libs 2>/dev/null && $run ./try | $sed 's/ /\\\\ /g' EOSH chmod +x Cppsym.try $eunicefix Cppsym.try -- perl5 metaconfig repository
