summaryrefslogtreecommitdiff
path: root/hints
diff options
context:
space:
mode:
authorKarl Williamson <khw@cpan.org>2022-05-31 17:26:08 -0600
committerKarl Williamson <khw@cpan.org>2022-06-10 06:48:35 -0600
commit1aa8e6dd85c09ce7ce928c1ab673fba6e7c739eb (patch)
treef3e081b309c932fc4eece03f2ba82f55f7d366be /hints
parentca4a6e05b1b031a6fae109c6799ebbcf01c547d9 (diff)
downloadperl-1aa8e6dd85c09ce7ce928c1ab673fba6e7c739eb.tar.gz
Remove support for Ultrix
Ultrix has been removed. Ultrix was the native Unix-like operating system for various Digital Equipment Corporation machines. Its final release was in 1995.
Diffstat (limited to 'hints')
-rw-r--r--hints/ultrix_4.sh69
1 files changed, 0 insertions, 69 deletions
diff --git a/hints/ultrix_4.sh b/hints/ultrix_4.sh
deleted file mode 100644
index f32f06dba3..0000000000
--- a/hints/ultrix_4.sh
+++ /dev/null
@@ -1,69 +0,0 @@
-# hints/ultrix_4.sh
-# Last updated by Andy Dougherty <doughera@lafayette.edu>
-# Fri Feb 10 10:04:51 EST 1995
-#
-# Use Configure -Dcc=gcc to use gcc.
-#
-# This used to use -g, but that pulls in -DDEBUGGING by default.
-case "$optimize" in
-'')
- # recent versions have a working compiler.
- case "$osvers" in
- *4.[45]*) optimize='-O2' ;;
- *) optimize='none' ;;
- esac
- ;;
-esac
-
-# Some users have reported Configure runs *much* faster if you
-# replace all occurrences of /bin/sh by /bin/sh5
-# Something like:
-# sed 's!/bin/sh!/bin/sh5!g' Configure > Configure.sh5
-# Then run "sh5 Configure.sh5 [your options]"
-
-case "$myuname" in
-*risc*) cat <<EOF >&4
-Note that there is a bug in some versions of NFS on the DECStation that
-may cause utime() to work incorrectly. If so, regression test io/fs
-may fail if run under NFS. Ignore the failure.
-EOF
-esac
-
-# Compiler flags that depend on osversion:
-case "$cc" in
-*gcc*) ;;
-*)
- case "$osvers" in
- *4.1*) ccflags="$ccflags -DLANGUAGE_C -Olimit 3800" ;;
- *4.2*) ccflags="$ccflags -DLANGUAGE_C -Olimit 3800"
- # Prototypes sometimes cause compilation errors in 4.2.
- prototype=undef
- *4.3*) ccflags="$ccflags -std1 -DLANGUAGE_C -Olimit 3800" ;;
- *) ccflags="$ccflags -std -Olimit 3800" ;;
- esac
- ;;
-esac
-
-# Other settings that depend on $osvers:
-case "$osvers" in
-*4.1*) ;;
-*4.2*) libswanted=`echo $libswanted | sed 's/ malloc / /'` ;;
-*4.3*) ;;
-*) ranlib='ranlib' ;;
-esac
-
-# Settings that don't depend on $osvers:
-
-util_cflags='ccflags="$ccflags -DLOCALE_ENVIRON_REQUIRED"'
-groupstype='int'
-# The configure test should be beefed up to try using the field when
-# it can't find any of the standardly-named fields.
-d_dirnamlen='define'
-
-# Ultrix can mmap only character devices, not regular files,
-# which is rather useless state of things for Perl.
-d_mmap='undef'
-
-# There simply isn't dynaloading in Ultrix.
-usedl='undef'
-