diff options
author | Jean-Marc Zucconi <jmz@FreeBSD.org> | 2000-09-08 20:14:57 +0000 |
---|---|---|
committer | Jean-Marc Zucconi <jmz@FreeBSD.org> | 2000-09-08 20:14:57 +0000 |
commit | bbe942032cc4c0b170bdfc178c1cb3066b75af49 (patch) | |
tree | 5c1dfb97e455a2b25ba2059af57fb593cfc9f342 | |
parent | scanssh 1.2 is a utility which scans a subnet and reports on the (diff) |
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.
Notes
Notes:
svn path=/head/; revision=32444
-rw-r--r-- | x11/XFree86-4/scripts/configure | 23 |
1 files changed, 0 insertions, 23 deletions
diff --git a/x11/XFree86-4/scripts/configure b/x11/XFree86-4/scripts/configure index 9b65335a817d..30a9d37ed2cd 100644 --- a/x11/XFree86-4/scripts/configure +++ b/x11/XFree86-4/scripts/configure @@ -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' |