diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 2001-05-30 14:04:28 +0000 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2001-05-30 14:04:28 +0000 |
commit | a6d26a0d1f5085282638e083a7375c19e3a4ca47 (patch) | |
tree | 206c54f54818dc926cc16fd21e45cf667747fe6f /Porting | |
parent | 9cda1f2902c19d0cc2e1426f1faa95c55e95d1a8 (diff) | |
download | perl-a6d26a0d1f5085282638e083a7375c19e3a4ca47.tar.gz |
Introduce $Config{afsroot}.
p4raw-id: //depot/perl@10325
Diffstat (limited to 'Porting')
-rw-r--r-- | Porting/Glossary | 14 | ||||
-rw-r--r-- | Porting/config.sh | 7 | ||||
-rw-r--r-- | Porting/config_H | 2 |
3 files changed, 20 insertions, 3 deletions
diff --git a/Porting/Glossary b/Porting/Glossary index 3c6730a310..4f7aa8e346 100644 --- a/Porting/Glossary +++ b/Porting/Glossary @@ -24,6 +24,12 @@ afs (afs.U): with a hint value or command line option, but you'd better know what you are doing. +afsroot (afs.U): + This variable is by default set to '/afs'. In the unlikely case + this is not the correct root, it is possible to override this with + a hint value or command line option. This will be used in subsequent + tests for AFSness in the Perl configure and test process. + alignbytes (alignbytes.U): This variable holds the number of bytes required to align a double-- or a long double when applicable. Usual values are @@ -2972,6 +2978,14 @@ perl (Loc.U): This variable is defined but not used by Configure. The value is a plain '' and is not useful. +perl_patchlevel (patchlevel.U): + This is the Perl patch level, a numeric change identifier, + as defined by whichever source code maintenance system + is used to maintain the patches; currently Perforce. + It does not correlate with the Perl version numbers or + the maintenance versus development dichotomy except + by also being increasing. + PERL_REVISION (Oldsyms.U): In a Perl version number such as 5.6.2, this is the 5. This value is manually set in patchlevel.h diff --git a/Porting/config.sh b/Porting/config.sh index 9563d12c00..ca43a3c908 100644 --- a/Porting/config.sh +++ b/Porting/config.sh @@ -8,7 +8,7 @@ # Package name : perl5 # Source directory : . -# Configuration time: Wed May 16 17:42:51 EET DST 2001 +# Configuration time: Wed May 30 17:57:39 EET DST 2001 # Configured by : jhi # Target system : osf1 alpha.hut.fi v4.0 878 alpha @@ -27,6 +27,7 @@ _a='.a' _exe='' _o='.o' afs='false' +afsroot='/afs' alignbytes='8' ansi2knr='' aphostname='' @@ -62,7 +63,7 @@ ccsymbols='__alpha=1 __LANGUAGE_C__=1 __osf__=1 __unix__=1 _LONGLONG=1 _SYSTYPE_ ccversion='V5.6-082' cf_by='jhi' cf_email='yourname@yourhost.yourplace.com' -cf_time='Wed May 16 17:42:51 EET DST 2001' +cf_time='Wed May 30 17:57:39 EET DST 2001' charsize='1' chgrp='' chmod='' @@ -657,6 +658,7 @@ patchlevel='7' path_sep=':' perl5='/u/vieraat/vieraat/jhi/Perl/bin/perl' perl='' +perl_patchlevel='10297' perladmin='yourname@yourhost.yourplace.com' perllibs='-lm -liconv -lutil -lpthread -lexc' perlpath='/opt/perl/bin/perl' @@ -851,6 +853,7 @@ PERL_SUBVERSION=1 PERL_API_REVISION=5 PERL_API_VERSION=5 PERL_API_SUBVERSION=0 +PERL_PATCHLEVEL=10297 PERL_CONFIG_SH=true # Variables propagated from previous config.sh file. pp_sys_cflags='ccflags="$ccflags -DNO_EFF_ONLY_OK"' diff --git a/Porting/config_H b/Porting/config_H index 1dd033ca97..6efeb6308d 100644 --- a/Porting/config_H +++ b/Porting/config_H @@ -17,7 +17,7 @@ /* * Package name : perl5 * Source directory : . - * Configuration time: Wed May 16 17:42:51 EET DST 2001 + * Configuration time: Wed May 30 17:57:39 EET DST 2001 * Configured by : jhi * Target system : osf1 alpha.hut.fi v4.0 878 alpha */ |