diff options
author | Andy Dougherty <doughera@lafcol.lafayette.edu> | 1995-06-06 01:41:07 +0000 |
---|---|---|
committer | Andy Dougherty <doughera@lafcol.lafayette.edu> | 1995-06-06 01:41:07 +0000 |
commit | 4aa0a1f7324b8447469670a1b2427c3ac2428bae (patch) | |
tree | f47ecacdb42503ee8ea8e4984302ab1aaad85431 /Changes.Conf | |
parent | 005c1a0e007f6f2f3efe461d6a5930a88ccb88fb (diff) | |
download | perl-4aa0a1f7324b8447469670a1b2427c3ac2428bae.tar.gz |
This is my patch patch.1l for perl5.001.
To apply, change to your perl directory, run the command above, then
apply with
patch -p1 -N < thispatch.
This patch fixes all the Configure & build problems for which I have a
solution.
After you apply this patch, I would recommend:
make distclean # or at the very least rm config.sh
sh Configure [whatever options you use]
make depend
make
make test
Patch and enjoy,
Andy Dougherty doughera@lafcol.lafayette.edu
Dept. of Physics
Lafayette College, Easton PA 18042
Here are the file-by-file contents:
Changes.Conf
Updated a bit.
Configure
Now honors hints on <pwd.h>-related things (for CX/UX, in particular).
Now honors previous values of d_stdio_ptr_lval and d_stdio_cnt_lval.
DB test programs now conditionally include 'const'.
MANIFEST
Updated.
config_H
Updated.
config_h.SH
Include trailing /**/ on STDIO_..._LVALUE defines.
hints/cxux.sh
Simplified.
Include info about failing test.
hints/epix.sh
A guess at a dynamic loading fix.
hints/next_3.sh
Add a few comments.
lib/Benchmark.pm
Ensure numeric context on number of loop iterations.
op.c
Spider's padlex and goto &$nonesuch patches.
perl.c
fputs("\tUnofficial patchlevel 1l.\n",stdout);
pp_ctl.c
pp_hot.c
scope.c
Spider's padlex and goto &$nonesuch patches.
Diffstat (limited to 'Changes.Conf')
-rw-r--r-- | Changes.Conf | 24 |
1 files changed, 16 insertions, 8 deletions
diff --git a/Changes.Conf b/Changes.Conf index a897e13f3f..cfff8a121b 100644 --- a/Changes.Conf +++ b/Changes.Conf @@ -22,6 +22,22 @@ This is a brief summary of the most important changes: Many hint file updates. +Upgrade Traps and Pitfalls: + +Since a lot has changed in the build process, you are probably best off +starting with a fresh copy of the perl5.002 sources. In particular, +your 5.000 or 5.001 config.sh will contain several variables that are no +longer needed. Further, improvements in the Configure tests may mean +that some of the answers will be different than they were in previous +versions, and which answer to keep can be difficult to sort out. +Therefore, you are probably better off ignoring your old config.sh, as +in the following: + + make distclean # (if you've built perl before) + sh Configure [whatever options you like] + make depend + make + make test ------------- Version 5.001 @@ -121,11 +137,3 @@ The following is the sequence of steps to upgrade to 5.001: <mv old architecture-dependent library to new location, if needed> make install - - - - - - - - |