summaryrefslogtreecommitdiff
path: root/Configure
diff options
context:
space:
mode:
authorAndy Dougherty <doughera@lafayette.edu>2019-01-23 21:12:29 -0500
committerAndy Dougherty <doughera@lafayette.edu>2019-01-23 21:12:29 -0500
commit63c1fa6a98bc60234a21de83dd191cd581a5d073 (patch)
tree0d07b8ced3c7207ddb2e507210dc56be1fddaebd /Configure
parent0abd1628824e7e5b7d6df370fcf5c143bf2dab8d (diff)
downloadperl-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-xConfigure1
1 files changed, 1 insertions, 0 deletions
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;