In perl.git, the branch blead has been updated

<https://perl5.git.perl.org/perl.git/commitdiff/63c1fa6a98bc60234a21de83dd191cd581a5d073?hp=0abd1628824e7e5b7d6df370fcf5c143bf2dab8d>

- Log -----------------------------------------------------------------
commit 63c1fa6a98bc60234a21de83dd191cd581a5d073
Author: Andy Dougherty <[email protected]>
Date:   Wed Jan 23 21:12:29 2019 -0500

    Add ability to include literal text in the prototype check.
    
    This is the same technique as in the metaconfig unit Protochk.U.
    See that unit for more usage information.  It is a bit clunky,
    but does work.

-----------------------------------------------------------------------

Summary of changes:
 Configure | 1 +
 1 file changed, 1 insertion(+)

diff --git a/Configure b/Configure
index a83cbdf2f8..179545727e 100755
--- a/Configure
+++ b/Configure
@@ -10739,6 +10739,7 @@ hasproto='varname=$1; func=$2; shift; shift;
 while $test $# -ge 2; do
        case "$1" in
        $define) echo "#include <$2>";;
+       literal) echo "$2" ;;
        esac ;
     shift 2;
 done > try.c;

-- 
Perl5 Master Repository

Reply via email to