X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=hints%2Funicosmk.sh;h=6045fcfac946ec938f6e5ae79ddadbdb8e9b7ec5;hb=cee5ec9732ebca977c261523aced14be1615ddb5;hp=6113cc300b99ba8dbb481ea992c24854d66f5ead;hpb=c71a9ceea43cad3099704164332acd80c7e8b51f;p=p5sagit%2Fp5-mst-13.2.git diff --git a/hints/unicosmk.sh b/hints/unicosmk.sh index 6113cc3..6045fcf 100644 --- a/hints/unicosmk.sh +++ b/hints/unicosmk.sh @@ -16,3 +16,31 @@ case ":$PATH:" in esac ;; esac +# As of UNICOS/mk 2.0.5.24 the shm* are in libc but unimplemented +# (an attempt to use them causes a runtime error) +# XXX Configure probe for really functional shm*() is needed XXX +if test "$d_shm" = ""; then + d_shmat=${d_shmat:-undef} + d_shmdt=${d_shmdt:-undef} + d_shmget=${d_shmget:-undef} + d_shmctl=${d_shmctl:-undef} + case "$d_shmat$d_shmctl$d_shmdt$d_shmget" in + *"undef"*) d_shm="$undef" ;; + esac +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. +case "$usethreads" in +$define|true|[yY]*) + set `echo X "$libswanted "| sed -e "s/ c / pthread c /"` + shift + libswanted="$*" + ;; +esac +EOCBU