Add in the nextstep port so that configure will (should?) run on it

This commit is contained in:
Marc G. Fournier 1997-02-07 10:18:35 +00:00
parent 1ce7b0c808
commit cfd9f6e7a9
2 changed files with 181 additions and 179 deletions

339
src/configure vendored

File diff suppressed because it is too large Load Diff

View File

@ -2,16 +2,17 @@ dnl Process this file with autoconf to produce a configure script.
AC_INIT(backend/access/common/heaptuple.c)
AC_CANONICAL_HOST
case "$host_os" in
solaris*)
case "$host_cpu" in
sparc) PORTNAME='sparc_solaris' ;;
i386) PORTNAME='i386_solaris' ;;
esac ;;
linux*) PORTNAME='linux' ;;
bsdi*) PORTNAME='bsdi' ;;
freebsd*) PORTNAME='BSD44_derived' ;;
dgux*) PORTNAME='dgux';;
aix*) PORTNAME='aix';;
solaris*)
case "$host_cpu" in
sparc) PORTNAME='sparc_solaris' ;;
i386) PORTNAME='i386_solaris' ;;
esac ;;
linux*) PORTNAME='linux' ;;
bsdi*) PORTNAME='bsdi' ;;
freebsd*) PORTNAME='BSD44_derived' ;;
dgux*) PORTNAME='dgux';;
aix*) PORTNAME='aix';;
nextstep*) PORTNAME='nextstep';;
*) echo ""
echo "*************************************************************"
echo "configure does not currently recognize your operating system,"