diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 2002-04-17 21:38:43 +0000 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2002-04-17 21:38:43 +0000 |
commit | bc2e71b549ccc3092c60f13de23214acd93eb784 (patch) | |
tree | 852b2958da368d5faf2b1a5fd77e4c57ffc41829 | |
parent | 50ee8e5ea1d62ca6b3ab566d75c1f4fbefdc976c (diff) | |
download | perl-bc2e71b549ccc3092c60f13de23214acd93eb784.tar.gz |
Neither UNICOS nor UNICOS/mk sport shared libraries.
("Crays have only REAL memory.")
p4raw-id: //depot/perl@15986
-rw-r--r-- | hints/unicos.sh | 3 | ||||
-rw-r--r-- | hints/unicosmk.sh | 3 |
2 files changed, 6 insertions, 0 deletions
diff --git a/hints/unicos.sh b/hints/unicos.sh index 7f814a2171..8648dce3ae 100644 --- a/hints/unicos.sh +++ b/hints/unicos.sh @@ -33,6 +33,9 @@ d_setitimer='undef' # These exist but do not really work. d_setregid='undef' d_setreuid='undef' +# No shared libraries. +so='none' +# Threads call-back unit. cat > UU/usethreads.cbu <<'EOCBU' # This script UU/usethreads.cbu will get 'called-back' by Configure # after it has prompted the user for whether to use threads. diff --git a/hints/unicosmk.sh b/hints/unicosmk.sh index b0fa528ef3..6045fcfac9 100644 --- a/hints/unicosmk.sh +++ b/hints/unicosmk.sh @@ -30,6 +30,9 @@ if test "$d_shm" = ""; then fi # Otherwise the unpack %65c checksums will fail. pp_pack_cflags='optimize="-h scalar0 -h vector0"' +# No shared libraries. +so='none' +# Threads call-back unit. cat > UU/usethreads.cbu <<'EOCBU' # This script UU/usethreads.cbu will get 'called-back' by Configure # after it has prompted the user for whether to use threads. |