diff options
-rw-r--r-- | ChangeLog | 29 | ||||
-rw-r--r-- | Drivers.macros | 2 | ||||
-rw-r--r-- | Makefile.in | 4 | ||||
-rw-r--r-- | version.c | 2 |
4 files changed, 33 insertions, 4 deletions
@@ -1,3 +1,32 @@ +Tue Jun 10 13:33:37 1997 Thomas Bushnell, n/BSG <thomas@gnu.ai.mit.edu> + + Version 1.1.2 released. + + * Makefile.in (install): Install cross-migcom as `migcom', not as + `mig'. + + * i386/Makefrag (objfiles += $(device_drivers)): Sort + $(device_drivers) before adding to objfiles in order to remove + duplicates. + +Mon Jun 9 22:14:09 1997 Thomas Bushnell, n/BSG <thomas@gnu.ai.mit.edu> + + * i386/Drivers.in: Fix typos apt.o -> atp.o; 3c403.o -> 3c503.o. + * Drivers.macros (AC_DRIVER): Test the class selected flag + correctly. + +Mon May 26 14:33:19 1997 Thomas Bushnell, n/BSG <thomas@gnu.ai.mit.edu> + + * version.c (version): Update to version 1.1.2. + +Fri May 23 10:08:48 1997 Thomas Bushnell, n/BSG <thomas@gnu.ai.mit.edu> + + * kern/thread.c (thread_info): Set flags word correctly; + TH_FLAGS_SWAPPED and TH_FLAGS_IDLE are not exclusive. + + * Makefile.in (topfiles): Add aclocal.m4. + Reported by Marcus G. Daniels (marcus@cathcart.sysc.pdx.edu). + Mon May 12 11:25:38 1997 Thomas Bushnell, n/BSG <thomas@gnu.ai.mit.edu> Version 1.1.1 released. diff --git a/Drivers.macros b/Drivers.macros index 054e521..fe0e216 100644 --- a/Drivers.macros +++ b/Drivers.macros @@ -45,7 +45,7 @@ AC_DEFUN(AC_DRIVER, [ AC_ARG_ENABLE([$1],, AC_DEFINE([$2]) device_drivers="$device_drivers [$3]" -if test "driver_class_[$4]_selected+set" != set; then +if test "${driver_class_[$4]_selected+set}" != set; then driver_class_[$4]_selected=yes AC_DEFINE_UNQUOTED($driver_class_[$4]_option) device_drivers="$device_drivers $driver_class_[$4]_files" diff --git a/Makefile.in b/Makefile.in index c165815..3fba3e7 100644 --- a/Makefile.in +++ b/Makefile.in @@ -74,7 +74,7 @@ all-archs-configures = $(patsubst %,$(srcdir)/%/configure,$(all-archs)) # Files distributed from the top level directory: topfiles = ChangeLog ChangeLog.0 ChangeLog.00 Drivers.macros Makefile.in \ README INSTALL config.guess config.sub configure configure.in \ - gensym.awk install-sh version.c NEWS + gensym.awk install-sh version.c NEWS aclocal.m4 # All the source in each directory. @@ -335,7 +335,7 @@ installed-sysdep-headers-names = $(addprefix $(includedir)/,$($(systype)-install install: mkinstalldirs kernel $(installed-headers-names) $(installed-sysdep-headers-names) cross-mig $(cross-migcom) $(INSTALL_PROGRAM) kernel $(bootdir)/gnumach $(INSTALL_PROGRAM) cross-mig $(bindir)/mig - test -z "$(cross-migcom)" || $(INSTALL_PROGRAM) cross-migcom $(libexecdir)/mig + test -z "$(cross-migcom)" || $(INSTALL_PROGRAM) cross-migcom $(libexecdir)/migcom -ln -s $(systype) $(includedir)/mach/machine $(installed-headers-names): $(includedir)/%: $(srcdir)/include/% @@ -1,2 +1,2 @@ -char version[] = "GNUmach 1.1.1"; +char version[] = "GNUmach 1.1.2"; |