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

REL6_4
Marc G. Fournier 29 years ago
parent 1ce7b0c808
commit cfd9f6e7a9
  1. 339
      src/configure
  2. 21
      src/configure.in

339
src/configure vendored

File diff suppressed because it is too large Load Diff

@ -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,"

Loading…
Cancel
Save