diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 2014-06-13 15:21:25 -0400 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2014-06-13 15:41:55 -0400 |
commit | b5bbe64ad2ec51417ef02ac52304ed45fe37be3f (patch) | |
tree | 71f1b45882f215a6d886d3bc08954c02a54e6af0 /Porting | |
parent | 7053d92917f7cb46452de86dc4c6d8644cae849c (diff) | |
download | perl-b5bbe64ad2ec51417ef02ac52304ed45fe37be3f.tar.gz |
Remove MAD.
MAD = Misc Attribute Decoration; unmaintained attempt at preserving
the Perl parse tree more faithfully so that automatic conversion to
Perl 6 would have been easier.
Diffstat (limited to 'Porting')
-rw-r--r-- | Porting/Glossary | 16 | ||||
-rw-r--r-- | Porting/config.sh | 3 | ||||
-rw-r--r-- | Porting/config_H | 6 |
3 files changed, 0 insertions, 25 deletions
diff --git a/Porting/Glossary b/Porting/Glossary index 9128f5f41a..c58fb5202f 100644 --- a/Porting/Glossary +++ b/Porting/Glossary @@ -3830,22 +3830,6 @@ lseektype (lseektype.U): or whatever type is used to declare lseek offset's type in the kernel (which also appears to be lseek's return type). -mad (mad.U): - This variable indicates that the Misc Attribute Definition code is to - be compiled. - -madlyh (mad.U): - If the Misc Attribute Decoration is to be compiled, this variable is - set to the name of the extra header files to be used, else it is '' - -madlyobj (mad.U): - If the Misc Attribute Decoration is to be compiled, this variable is - set to the name of the extra object files to be used, else it is '' - -madlysrc (mad.U): - If the Misc Attribute Decoration is to be compiled, this variable is - set to the name of the extra C source files to be used, else it is '' - mail (Loc.U): This variable is defined but not used by Configure. The value is the empty string and is not useful. diff --git a/Porting/config.sh b/Porting/config.sh index 372acb5256..0a352e1e5b 100644 --- a/Porting/config.sh +++ b/Porting/config.sh @@ -822,9 +822,6 @@ ls='ls' lseeksize='8' lseektype='off_t' mad='undef' -madlyh='' -madlyobj='' -madlysrc='' mail='' mailx='' make='make' diff --git a/Porting/config_H b/Porting/config_H index 6c1f125af3..9e99b54c5c 100644 --- a/Porting/config_H +++ b/Porting/config_H @@ -4132,12 +4132,6 @@ #define PERL_PRIeldbl "Le" /**/ #define PERL_SCNfldbl "Lf" /**/ -/* PERL_MAD: - * This symbol, if defined, indicates that the Misc Attribution - * Declaration code should be conditionally compiled. - */ -/*#define PERL_MAD / **/ - /* NEED_VA_COPY: * This symbol, if defined, indicates that the system stores * the variable argument list datatype, va_list, in a format |