diff options
author | Lupe Christoph <lupe@lupe-christoph.de> | 2001-01-29 13:59:36 +0100 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2001-01-29 15:29:11 +0000 |
commit | 83bd2f301548cca99336e63125a11e63aad34313 (patch) | |
tree | b3217d4cc92cf9ea7bf66d297faa5345b8b3803d /hints | |
parent | 20fb949fed790d46b0900443523ae4205f81da71 (diff) | |
download | perl-83bd2f301548cca99336e63125a11e63aad34313.tar.gz |
MAking Solaris malloc() the default
Message-ID: <20010129125936.Z4830@alanya.lupe-christoph.de>
The README.solaris part slightly tweaked.
p4raw-id: //depot/perl@8588
Diffstat (limited to 'hints')
-rw-r--r-- | hints/solaris_2.sh | 13 |
1 files changed, 10 insertions, 3 deletions
diff --git a/hints/solaris_2.sh b/hints/solaris_2.sh index 0bf5bab3af..86a375bdc5 100644 --- a/hints/solaris_2.sh +++ b/hints/solaris_2.sh @@ -1,5 +1,5 @@ # hints/solaris_2.sh -# Last modified: Tue Jan 2 10:16:35 2001 +# Last modified: Mon Jan 29 12:52:28 2001 # Lupe Christoph <lupe@lupe-christoph.de> # Based on version by: # Andy Dougherty <doughera@lafayette.edu> @@ -26,9 +26,16 @@ # these ought to be harmless. See below for more details. # See man vfork. -usevfork=false +usevfork=${usevfork:-false} -d_suidsafe=define +# Solaris has secure SUID scripts +d_suidsafe=${d_suidsafe:-define} + +# Several people reported problems with perl's malloc, especially +# when use64bitall is defined or when using gcc. +# http://www.xray.mpe.mpg.de/mailing-lists/perl5-porters/2001-01/msg01318.html +# http://www.xray.mpe.mpg.de/mailing-lists/perl5-porters/2001-01/msg00465.html +usemymalloc=${usemymalloc:-false} # Avoid all libraries in /usr/ucblib. # /lib is just a symlink to /usr/lib |