diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 1999-07-05 19:59:48 +0000 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 1999-07-05 19:59:48 +0000 |
commit | 29209bc5efc823322ed539ae434cba1765cb5082 (patch) | |
tree | 5497276ac24576eaa422b59e9f1a2e3f3ae34087 /Porting | |
parent | 5b877257c279c72efd65c092c32959c904c739e8 (diff) | |
download | perl-29209bc5efc823322ed539ae434cba1765cb5082.tar.gz |
Hack SOCKS support some more plus a patch from Andy Dougherty
that addresses the notorious "Additional libraries" question.
p4raw-id: //depot/cfgperl@3597
Diffstat (limited to 'Porting')
-rw-r--r-- | Porting/Glossary | 4 | ||||
-rw-r--r-- | Porting/config.sh | 5 | ||||
-rw-r--r-- | Porting/config_H | 8 |
3 files changed, 14 insertions, 3 deletions
diff --git a/Porting/Glossary b/Porting/Glossary index c7457b9bf1..0b8a099dc7 100644 --- a/Porting/Glossary +++ b/Porting/Glossary @@ -3022,6 +3022,10 @@ useshrplib (libperl.U): This variable is set to 'yes' if the user wishes to build a shared libperl, and 'no' otherwise. +usesocks (usesocks.U): + This variable conditionally defines the USE_SOCKS symbol, + and indicates that Perl should be built to use SOCKS. + usethreads (usethreads.U): This variable conditionally defines the USE_THREADS symbol, and indicates that Perl should be built to use threads. diff --git a/Porting/config.sh b/Porting/config.sh index f4df11856e..be9251a513 100644 --- a/Porting/config.sh +++ b/Porting/config.sh @@ -8,7 +8,7 @@ # Package name : perl5 # Source directory : . -# Configuration time: Mon Jul 5 02:12:38 EET DST 1999 +# Configuration time: Mon Jul 5 22:50:29 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='Mon Jul 5 02:12:38 EET DST 1999' +cf_time='Mon Jul 5 22:50:29 EET DST 1999' chgrp='' chmod='' chown='' @@ -668,6 +668,7 @@ useperlio='undef' useposix='true' usesfio='false' useshrplib='true' +usesocks='undef' usethreads='define' usevfork='false' usrinc='/usr/include' diff --git a/Porting/config_H b/Porting/config_H index e3cf445f0b..c4dbe72004 100644 --- a/Porting/config_H +++ b/Porting/config_H @@ -17,7 +17,7 @@ /* * Package name : perl5 * Source directory : . - * Configuration time: Mon Jul 5 02:12:38 EET DST 1999 + * Configuration time: Mon Jul 5 22:50:29 EET DST 1999 * Configured by : jhi * Target system : osf1 alpha.hut.fi v4.0 878 alpha */ @@ -2524,6 +2524,12 @@ */ /*#define USE_PERLIO / **/ +/* USE_SOCKS: + * This symbol, if defined, indicates that Perl should + * be built to use socks. + */ +/*#define USE_SOCKS / **/ + /* HAS_DRAND48_PROTO: * This symbol, if defined, indicates that the system provides * a prototype for the drand48() function. Otherwise, it is up |