diff options
-rw-r--r-- | vos/Changes | 1 | ||||
-rw-r--r-- | vos/build.cm | 6 | ||||
-rw-r--r-- | vos/perl.bind | 3 |
3 files changed, 10 insertions, 0 deletions
diff --git a/vos/Changes b/vos/Changes index 6a39bcdc95..640db49d81 100644 --- a/vos/Changes +++ b/vos/Changes @@ -10,6 +10,7 @@ For 5.7.1: the header, because the perl distribution resets all dates to the same value. Update "Changes". + Update "perl.bind". For 5.7: Updated "build.cm" to build perl using either the alpha or GA diff --git a/vos/build.cm b/vos/build.cm index ec9e58997e..ea3649975a 100644 --- a/vos/build.cm +++ b/vos/build.cm @@ -109,10 +109,14 @@ &if (command_status) ^= 0 &then &return !&compiler& <<hv.c &diag& &cpu& &cflags& -o hv&s& &if (command_status) ^= 0 &then &return +!&compiler& <<locale.c &diag& &cpu& &cflags& -o locale&s& +&if (command_status) ^= 0 &then &return & !&compiler& <<malloc.c &diag& &cpu& &cflags& -o malloc&s& & &if (command_status) ^= 0 &then &return !&compiler& <<mg.c &diag& &cpu& &cflags& -o mg&s& &if (command_status) ^= 0 &then &return +!&compiler& <<numeric.c &diag& &cpu& &cflags& -o numeric&s& +&if (command_status) ^= 0 &then &return !&compiler& <<op.c &diag& &cpu& &cflags& -o op&s& &if (command_status) ^= 0 &then &return & @@ -148,6 +152,8 @@ &if (command_status) ^= 0 &then &return !&compiler& <<pp_hot.c &diag& &cpu& &cflags& -o pp_hot&s& &if (command_status) ^= 0 &then &return +!&compiler& <<pp_pack.c &diag& &cpu& &cflags& -o pp_pack&s& +&if (command_status) ^= 0 &then &return !&compiler& <<pp_sys.c &diag& &cpu& &cflags& -o pp_sys&s& &if (command_status) ^= 0 &then &return !&compiler& <<regcomp.c &diag& &cpu& &cflags& -o regcomp&s& diff --git a/vos/perl.bind b/vos/perl.bind index 1e77e5a6de..e301fe0f46 100644 --- a/vos/perl.bind +++ b/vos/perl.bind @@ -11,7 +11,9 @@ modules: miniperlmain, globals, gv, hv, + locale, mg, + numeric, op, perl, perlapi, @@ -20,6 +22,7 @@ modules: miniperlmain, pp, pp_ctl, pp_hot, + pp_pack, pp_sys, regcomp, regexec, |