diff options
author | Andy Dougherty <doughera@lafayette.edu> | 2019-01-23 21:12:29 -0500 |
---|---|---|
committer | Andy Dougherty <doughera@lafayette.edu> | 2019-01-23 21:12:29 -0500 |
commit | 63c1fa6a98bc60234a21de83dd191cd581a5d073 (patch) | |
tree | 0d07b8ced3c7207ddb2e507210dc56be1fddaebd /Configure | |
parent | 0abd1628824e7e5b7d6df370fcf5c143bf2dab8d (diff) | |
download | perl-63c1fa6a98bc60234a21de83dd191cd581a5d073.tar.gz |
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.
Diffstat (limited to 'Configure')
-rwxr-xr-x | Configure | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -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; |