Get it so that everything else *should* work with my changes...

This commit is contained in:
Marc G. Fournier 1997-12-20 02:33:56 +00:00
parent 6e337eef45
commit 20ff6432a1
2 changed files with 237 additions and 235 deletions

439
src/configure vendored

File diff suppressed because it is too large Load Diff

View File

@ -6,27 +6,27 @@ AC_CANONICAL_HOST
case "$host_os" in case "$host_os" in
solaris*) solaris*)
case "$host_cpu" in case "$host_cpu" in
sparc) PORTNAME='sparc_solaris' ;; sparc) os=sparc_solaris ;;
i386) PORTNAME='i386_solaris' ;; i386) os=i386_solaris ;;
esac ;; esac ;;
sunos*) PORTNAME='sunos4' ;; sunos*) os=sunos4 ;;
linux*) PORTNAME='linux' ;; linux*) os=linux ;;
bsdi*) PORTNAME='bsdi' ;; bsdi*) os=bsdi ;;
freebsd*|netbsd*) os=bsd ;; freebsd*|netbsd*) os=bsd ;;
dgux*) PORTNAME='dgux';; dgux*) os=dgux;;
aix*) os=aix ;; aix*) os=aix ;;
nextstep*) PORTNAME='nextstep';; nextstep*) os=nextstep;;
ultrix*) PORTNAME='ultrix4';; ultrix*) os=ultrix4;;
irix*) PORTNAME='irix5';; irix*) os=irix5;;
hpux*) PORTNAME='hpux';; hpux*) os=hpux;;
osf*) PORTNAME='alpha';; osf*) os=alpha;;
sco*) PORTNAME='sco';; sco*) os=sco;;
sysv4*) PORTNAME='svr4';; sysv4*) os=svr4;;
machten*) PORTNAME='machten';; machten*) os=machten;;
sysv4.2*) sysv4.2*)
case "$host_vendor" in case "$host_vendor" in
univel) PORTNAME='univel';; univel) os=univel;;
*) PORTNAME='unknown';; *) os=unknown;;
esac ;; esac ;;
*) echo "" *) echo ""
echo "*************************************************************" echo "*************************************************************"
@ -40,6 +40,7 @@ nextstep*) PORTNAME='nextstep';;
exit;; exit;;
esac esac
PORTNAME=${os}
AC_LINK_FILES(backend/port/dynloader/${os}.c, backend/port/dynloader.c) AC_LINK_FILES(backend/port/dynloader/${os}.c, backend/port/dynloader.c)
AC_LINK_FILES(backend/port/dynloader/${os}.h, include/dynloader.h) AC_LINK_FILES(backend/port/dynloader/${os}.h, include/dynloader.h)
AC_LINK_FILES(include/port/${os}.h, include/os.h) AC_LINK_FILES(include/port/${os}.h, include/os.h)