summaryrefslogtreecommitdiff
path: root/Configure
diff options
context:
space:
mode:
authorNicholas Clark <nick@ccl4.org>2006-03-09 20:48:18 +0000
committerNicholas Clark <nick@ccl4.org>2006-03-09 20:48:18 +0000
commit00e74f145ac4513e21f301b1f6ee9d0075465ab5 (patch)
tree83d05eaea8f9c9fc05f95ef9de0dd2a9a209d563 /Configure
parentaf5683d1a11b86657bb9d3800d54c4d65ca7b5a0 (diff)
downloadperl-00e74f145ac4513e21f301b1f6ee9d0075465ab5.tar.gz
Add the madly parser. I believe that this is all the C code. Now to
find the bugs that stowed away. p4raw-id: //depot/perl@27447
Diffstat (limited to 'Configure')
-rwxr-xr-xConfigure16
1 files changed, 14 insertions, 2 deletions
diff --git a/Configure b/Configure
index 6505174fdb..68dc00ef8e 100755
--- a/Configure
+++ b/Configure
@@ -966,6 +966,9 @@ mad=''
make_set_make=''
d_mymalloc=''
freetype=''
+madlyh=''
+madlyobj=''
+madlysrc=''
mallocobj=''
mallocsrc=''
malloctype=''
@@ -18978,8 +18981,14 @@ EOM
rp='Build Perl with MAD?'
. ./myread
case "$ans" in
-y|Y) val="$define" ;;
-*) val="$undef" ;;
+y|Y) val="$define"
+ madlyh='madly.h madly.act madly.tab'
+ madlysrc='madly.c'
+ madlyobj="madly$_o" ;;
+*) val="$undef"
+ madlyh=''
+ madlysrc=''
+ madlyobj='' ;;
esac
set mad
eval $setvar
@@ -21902,6 +21911,9 @@ make='$make'
make_set_make='$make_set_make'
mallocobj='$mallocobj'
mallocsrc='$mallocsrc'
+madlyh='$madlyh'
+madlyobj='$madlyobj'
+madlysrc='$madlysrc'
malloctype='$malloctype'
man1dir='$man1dir'
man1direxp='$man1direxp'