Never build a.out libraries. Support for a.out was removed in

Makefile some time ago and there is a port for XFree86-3 a.out libs.
This commit is contained in:
Jean-Marc Zucconi 2000-09-08 20:14:57 +00:00
parent 50c7c16577
commit bbe942032c
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=32444

View File

@ -235,29 +235,6 @@ yesno "Build static libraries in addition to shared libraries?"
if [ $answ = YES ]; then
echo "#define ForceNormalLib YES" >> $F
fi
# ELF detection
if [ `sysctl -n kern.osreldate` -ge 300004 -a X`objformat` = Xelf ]; then
ELF=yes
cat <<'END'
Some programs still require a.out X libraries. Most noteable amongst
these is Nestcape, but it is reported to work best with older X libraries.
You can build a.out libraries here, using the lastest sources and
compiler, or you can use the XFree86-aoutlibs port, which installs older
a.out compatibility libraries.
If you decide to build the libraries here they will not be uninstalled by
this port, and they will be overwritten by the XFree86-aoutlibs port, if
for some reason you install it.
END
noyes "Do you want to build and install a.out compatibility libraries?"
if [ $answ = YES ]; then
echo "#define BuildAoutLibraries YES" >> $F
fi
else
ELF=no
fi
if [ ${OSVERSION} -ge 300000 ]; then
cat <<'END'