diff options
author | Gurusamy Sarathy <gsar@cpan.org> | 2000-04-28 18:44:15 +0000 |
---|---|---|
committer | Gurusamy Sarathy <gsar@cpan.org> | 2000-04-28 18:44:15 +0000 |
commit | 3b777bb48ecd6a599e86393b690784822a7a696f (patch) | |
tree | 116536d1a09aa36f161654b95c270e6c6c52e6a5 /vos | |
parent | df0deb90068dea6e06bd6632928a2926975901ce (diff) | |
download | perl-3b777bb48ecd6a599e86393b690784822a7a696f.tar.gz |
support additional library locations via $Config{otherlibdirs}
(from Andy Dougherty)
p4raw-id: //depot/perl@6001
Diffstat (limited to 'vos')
-rw-r--r-- | vos/config.def | 2 | ||||
-rwxr-xr-x | vos/config_h.SH_orig | 10 |
2 files changed, 12 insertions, 0 deletions
diff --git a/vos/config.def b/vos/config.def index e66c87ac14..092d76ad3d 100644 --- a/vos/config.def +++ b/vos/config.def @@ -161,6 +161,7 @@ $d_old_pthread_create_joinable='undef' $d_oldpthreads='undef' $d_open3='define' $d_pathconf='define' +$d_perl_otherlibdirs='undef' $d_pause='define' $d_phostname='undef' $d_pipe='define' @@ -392,6 +393,7 @@ $nvtype='double' $o_nonblock='O_NONBLOCK' $old_pthread_create_joinable='' $osname='VOS' +$otherlibdirs='' $package='perl5' $pidtype='pid_t' $pm_apiversion='5.00563' diff --git a/vos/config_h.SH_orig b/vos/config_h.SH_orig index 08a1cf5ad1..cc35077c79 100755 --- a/vos/config_h.SH_orig +++ b/vos/config_h.SH_orig @@ -2732,6 +2732,16 @@ sed <<!GROK!THIS! >config.h -e 's!^#undef\(.*/\)\*!/\*#define\1 \*!' -e 's!^#un- */ #define Pid_t $pidtype /* PID type */ +/* PERL_OTHERLIBDIRS: + * This variable contains a colon-separated set of paths for the perl + * binary to search for additional library files or modules. + * These directories will be tacked to the end of @INC. + * Perl will automatically search below each path for version- + * and architecture-specific directories. See PERL_INC_VERSION_LIST + * for more details. + */ +#$d_perl_otherlibdirs PERL_OTHERLIBDIRS "$otherlibdirs" /**/ + /* PRIVLIB: * This symbol contains the name of the private library for this package. * The library is private in the sense that it needn't be in anyone's |