Commit bcd0fae8 authored by Marc G. Fournier's avatar Marc G. Fournier

Fix for bootstrap.c problem (F_* values missing from fmgr.h)

parent 094ec2d3
This diff is collapsed.
...@@ -19,8 +19,7 @@ nextstep*) PORTNAME='nextstep';; ...@@ -19,8 +19,7 @@ nextstep*) PORTNAME='nextstep';;
ultrix*) PORTNAME='ultrix4';; ultrix*) PORTNAME='ultrix4';;
irix*) PORTNAME='irix5';; irix*) PORTNAME='irix5';;
hpux*) PORTNAME='hpux';; hpux*) PORTNAME='hpux';;
osf*) PORTNAME='alpha' osf*) PORTNAME='alpha';;
TR="trbsd";;
sysv4.2*) sysv4.2*)
case "$host_vendor" in case "$host_vendor" in
univel) PORTNAME='univel';; univel) PORTNAME='univel';;
...@@ -235,7 +234,6 @@ AC_PROG_CPP ...@@ -235,7 +234,6 @@ AC_PROG_CPP
AC_LINK_FILES(include/port/${PORTNAME}.h, include/os.h) AC_LINK_FILES(include/port/${PORTNAME}.h, include/os.h)
AC_LINK_FILES(makefiles/Makefile.${PORTNAME}, Makefile.port) AC_LINK_FILES(makefiles/Makefile.${PORTNAME}, Makefile.port)
AC_SUBST(PORTNAME) AC_SUBST(PORTNAME)
AC_SUBST(TR)
AC_SUBST(LDFLAGS) AC_SUBST(LDFLAGS)
AC_SUBST(CPPFLAGS) AC_SUBST(CPPFLAGS)
AC_SUBST(AROPT) AC_SUBST(AROPT)
...@@ -310,9 +308,9 @@ AC_PATH_PROG(tar, tar) ...@@ -310,9 +308,9 @@ AC_PATH_PROG(tar, tar)
AC_PATH_PROG(split, split) AC_PATH_PROG(split, split)
AC_PATH_PROG(etags, etags) AC_PATH_PROG(etags, etags)
AC_PATH_PROG(xargs, xargs) AC_PATH_PROG(xargs, xargs)
AC_PATH_PROG(tr, tr)
AC_PATH_PROG(ipcs, ipcs) AC_PATH_PROG(ipcs, ipcs)
AC_PATH_PROG(ipcrm, ipcrm) AC_PATH_PROG(ipcrm, ipcrm)
AC_PATH_PROGS(TR, tr trbsd, NOT_FOUND)
dnl Changes to look for YACC. We have three choices (in order of pref.) dnl Changes to look for YACC. We have three choices (in order of pref.)
dnl (1) We specify in YACC and YFLAGS what we want dnl (1) We specify in YACC and YFLAGS what we want
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment