aboutsummaryrefslogtreecommitdiff
path: root/x11/XFree86-aoutlibs/pkg-req
diff options
context:
space:
mode:
Diffstat (limited to 'x11/XFree86-aoutlibs/pkg-req')
-rw-r--r--x11/XFree86-aoutlibs/pkg-req27
1 files changed, 0 insertions, 27 deletions
diff --git a/x11/XFree86-aoutlibs/pkg-req b/x11/XFree86-aoutlibs/pkg-req
deleted file mode 100644
index a8a608933daf..000000000000
--- a/x11/XFree86-aoutlibs/pkg-req
+++ /dev/null
@@ -1,27 +0,0 @@
-#!/bin/sh
-
-if [ -n "${BATCH}" -o -n "${PACKAGE_BUILDING}" ]; then
- exit 0
-fi
-
-env=/usr/bin/env
-fgrep=/usr/bin/fgrep
-ldconfig=/sbin/ldconfig
-ld_so=/usr/libexec/ld.so
-if [ x$2 = xINSTALL ]; then
- $env OBJFORMAT=aout $ldconfig -r | $fgrep -q -e '-lc.3'
- if [ $? -ne 0 -o ! -x $ld_so ]; then
- cat <<END
-*********************************************************************
-
- There do not appear to be any a.out libraries on this
- machine. Please install the compat22 distribution (via
- /stand/sysinstall) or build it as part of your 'make world'
- (see /etc/make.conf).
-
-*********************************************************************
-END
- exit 1
- fi
-fi
-exit 0;