diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 1999-07-25 14:12:34 +0000 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 1999-07-25 14:12:34 +0000 |
commit | a3635516d37f70bc16a39bf453a8d19cc1f3181b (patch) | |
tree | 5dda19457eaef39719b2571ee3bb3e42509c9440 /Porting | |
parent | b233458bd1d5037ce4bbbb41fb513e1b68522a4d (diff) | |
download | perl-a3635516d37f70bc16a39bf453a8d19cc1f3181b.tar.gz |
Use vendorprefixlib.
p4raw-id: //depot/cfgperl@3737
Diffstat (limited to 'Porting')
-rw-r--r-- | Porting/Glossary | 28 | ||||
-rw-r--r-- | Porting/config.sh | 11 | ||||
-rw-r--r-- | Porting/config_H | 8 |
3 files changed, 44 insertions, 3 deletions
diff --git a/Porting/Glossary b/Porting/Glossary index 2ae9369e19..4f1cbf4d19 100644 --- a/Porting/Glossary +++ b/Porting/Glossary @@ -1526,6 +1526,9 @@ d_union_semun (d_union_semun.U): This variable conditionally defines HAS_UNION_SEMUN if the union semun is defined by including <sys/sem.h>. +d_vendorlib (vendorlib.U): + This variable conditionally defines PERL_VENDORLIB. + d_vfork (d_vfork.U): This variable conditionally defines the HAS_VFORK symbol, which indicates the vfork() routine is available. @@ -2170,6 +2173,11 @@ installusrbinperl (instubperl.U): /usr/bin/perl in addition to $installbin/perl +installvendorlib (vendorlib.U): + This variable is really the same as vendorlibexp but may differ on + those systems using AFS. For extra portability, only this variable + should be used in makefiles. + intsize (intsize.U): This variable contains the value of the INTSIZE symbol, which indicates to the C program how many bytes there are in an int. @@ -3086,6 +3094,26 @@ uuname (Loc.U): This variable is defined but not used by Configure. The value is a plain '' and is not useful. +vendorlib (vendorlib.U): + This variable contains the eventual value of the VENDORLIB symbol, + which is the name of the private library for this package. It may + have a ~ on the front. It is up to the makefile to eventually create + this directory while performing installation (with ~ substitution). + Vendors who distribute perl binaries may place their own + extensions and modules in this directory. + +vendorlibexp (vendorlib.U): + This variable is the ~name expanded version of vendorlib, so that you + may use it directly in Makefiles or shell scripts. + +vendorprefix (vendorprefix.U): + This variable holds the full absolute path of the directory below + which the vendor will install add-on packages. + +vendorprefixexp (vendorprefix.U): + This variable holds the full absolute path of the directory below + which the vendor will install add-on packages. Derived from vendorprefix. + version (patchlevel.U): The full version number of this package. This combines baserev, patchlevel, and subversion to get the full diff --git a/Porting/config.sh b/Porting/config.sh index 70998a1ecf..40e1301b6c 100644 --- a/Porting/config.sh +++ b/Porting/config.sh @@ -8,7 +8,7 @@ # Package name : perl5 # Source directory : . -# Configuration time: Sun Jul 25 14:08:44 EET DST 1999 +# Configuration time: Sun Jul 25 17:08:22 EET DST 1999 # Configured by : jhi # Target system : osf1 alpha.hut.fi v4.0 878 alpha @@ -55,7 +55,7 @@ ccflags='-pthread -std -DLANGUAGE_C' ccsymbols='__LANGUAGE_C__=1 _LONGLONG=1 LANGUAGE_C=1 SYSTYPE_BSD=1' cf_by='jhi' cf_email='yourname@yourhost.yourplace.com' -cf_time='Sun Jul 25 14:08:44 EET DST 1999' +cf_time='Sun Jul 25 17:08:22 EET DST 1999' chgrp='' chmod='' chown='' @@ -358,6 +358,7 @@ d_tzname='define' d_umask='define' d_uname='define' d_union_semun='undef' +d_vendorlib='undef' d_vfork='undef' d_void_closedir='undef' d_voidsig='define' @@ -494,6 +495,7 @@ installsitearch='/opt/perl/lib/site_perl/5.00557/alpha-dec_osf-thread' installsitelib='/opt/perl/lib/site_perl' installstyle='lib' installusrbinperl='define' +installvendorlib='' intsize='4' known_extensions='B ByteLoader DB_File Data/Dumper Devel/DProf Devel/Peek Fcntl GDBM_File IO IPC/SysV NDBM_File ODBM_File Opcode POSIX SDBM_File Socket Thread attrs re' ksh='' @@ -676,9 +678,14 @@ usesfio='false' useshrplib='true' usesocks='undef' usethreads='define' +usevendorprefix='undef' usevfork='false' usrinc='/usr/include' uuname='' +vendorlib='' +vendorlibexp='' +vendorprefix='' +vendorprefixexp='' version='5.00557' vi='' voidflags='15' diff --git a/Porting/config_H b/Porting/config_H index 4ee9f7820c..43de61d7ed 100644 --- a/Porting/config_H +++ b/Porting/config_H @@ -17,7 +17,7 @@ /* * Package name : perl5 * Source directory : . - * Configuration time: Sun Jul 25 14:08:44 EET DST 1999 + * Configuration time: Sun Jul 25 17:08:22 EET DST 1999 * Configured by : jhi * Target system : osf1 alpha.hut.fi v4.0 878 alpha */ @@ -1488,6 +1488,12 @@ #define SITELIB "/opt/perl/lib/site_perl" /**/ #define SITELIB_EXP "/opt/perl/lib/site_perl" /**/ +/* PERL_VENDORLIB_EXP: + * This symbol contains the ~name expanded version of VENDORLIB, to be used + * in programs that are not prepared to deal with ~ expansion at run-time. + */ +/*#define PERL_VENDORLIB_EXP "" / **/ + /* OSNAME: * This symbol contains the name of the operating system, as determined * by Configure. You shouldn't rely on it too much; the specific |