diff options
author | jmz <jmz@FreeBSD.org> | 2000-09-09 04:14:57 +0800 |
---|---|---|
committer | jmz <jmz@FreeBSD.org> | 2000-09-09 04:14:57 +0800 |
commit | 7385e040d626a0465a5ec2e07b0dd659fb07c4dc (patch) | |
tree | 19aea98e66c89a9570f55bd60d98f169bc1fd2b7 /x11/XFree86-4 | |
parent | 163f1e368b0432184a6338ebde9ced9ddf9e94b8 (diff) | |
download | freebsd-ports-gnome-7385e040d626a0465a5ec2e07b0dd659fb07c4dc.tar.gz freebsd-ports-gnome-7385e040d626a0465a5ec2e07b0dd659fb07c4dc.tar.zst freebsd-ports-gnome-7385e040d626a0465a5ec2e07b0dd659fb07c4dc.zip |
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.
Diffstat (limited to 'x11/XFree86-4')
-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' |