diff options
author | Gurusamy Sarathy <gsar@cpan.org> | 2000-03-14 18:46:50 +0000 |
---|---|---|
committer | Gurusamy Sarathy <gsar@cpan.org> | 2000-03-14 18:46:50 +0000 |
commit | f1c70a3934f00370f9df103d31cfeedd2bb2cb63 (patch) | |
tree | 7cfc3abb35dad71e1e2fb9b3d5b93f45c4236821 /hints/hpux.sh | |
parent | 83f7a2bcd26f7d7ec810b4a44e070007e09025e6 (diff) | |
download | perl-f1c70a3934f00370f9df103d31cfeedd2bb2cb63.tar.gz |
allow usemymalloc to be overridden via -Uusemymalloc
p4raw-id: //depot/perl@5733
Diffstat (limited to 'hints/hpux.sh')
-rw-r--r-- | hints/hpux.sh | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/hints/hpux.sh b/hints/hpux.sh index e4da964725..ce15f552b4 100644 --- a/hints/hpux.sh +++ b/hints/hpux.sh @@ -240,7 +240,10 @@ libswanted="$*" # ccdlflags="-Wl,-E -Wl,-B,immediate,-B,nonfatal $ccdlflags" ccdlflags="-Wl,-E -Wl,-B,deferred $ccdlflags" -usemymalloc='y' +case "$usemymalloc" in +'') usemymalloc='y' ;; +esac + alignbytes=8 # For native nm, you need "-p" to produce BSD format output. nm_opt='-p' |