diff options
author | Thomas Schwinge <thomas@codesourcery.com> | 2013-09-27 21:40:01 +0200 |
---|---|---|
committer | Thomas Schwinge <thomas@codesourcery.com> | 2013-09-27 21:40:01 +0200 |
commit | 23567fa69eee5ddf311672867818771b27c2a27d (patch) | |
tree | 68d7e5c64765a1d3123f1b0e6d2940e7e93cc018 | |
parent | 4a69ee8aa0efb013f1041bb7d745027abc995c72 (diff) | |
download | mig-23567fa69eee5ddf311672867818771b27c2a27d.tar.gz mig-23567fa69eee5ddf311672867818771b27c2a27d.tar.bz2 mig-23567fa69eee5ddf311672867818771b27c2a27d.zip |
GNU MIG 1.4.
* configure.ac (AC_INIT): Set version to 1.4.
* NEWS: Finalize changes for 1.4.
* README: Update.
-rw-r--r-- | NEWS | 31 | ||||
-rw-r--r-- | README | 23 | ||||
-rw-r--r-- | configure.ac | 2 |
3 files changed, 29 insertions, 27 deletions
@@ -1,12 +1,10 @@ --*- Text -*- - -unreleased -Version 1.3.2 +2013-09-27 +Version 1.4 * Don't accept the `-R' (msg_send) command line option anymore and make the `-r' one (msg_rpc) a no-op. -* Fix warnings when compiling generated files with GCC 4.x. +* Fix warnings when compiling generated files with recent versions of GCC. * Handle the preprocessor option `-isystem' correctly. @@ -16,9 +14,10 @@ Version 1.3.2 * Be more careful to catch write errors when closing files. -* The `debian/' subdirectory of packaging files is not included anymore. +* Spurious deallocation of out-of-line memory has been fixed in case of an + error while processing the RPC. -29 August 2002 +2002-08-29 Version 1.3.1 * Fix warnings when compiling generated files with GCC 3.x. @@ -28,19 +27,19 @@ Version 1.3.1 * Alpha fixes. -8 March 2002 +2002-03-08 Version 1.3 * Minor bug fixes. * The new keyword `retcode' is accepted as a parameter modifier. This does not do anything, but is accepted for compatibility - with the MiG input syntax used with OSF Mach. + with the MIG input syntax used with OSF Mach. * The debian/ subdirectory of packaging files is now included in the - MiG source distribution. + MIG source distribution. -7 June 2001 +2001-07-07 Version 1.2 * New option -n to suppress default output file creation. @@ -64,27 +63,27 @@ Version 1.2 * Output files of C source now start by defining _GNU_SOURCE, for compatibility with the GNU C library on GNU/Hurd. -22 June 1999 +1999-06-22 Version 1.1 * First official net release. -23 May 1999 +1999-05-23 Version 1.0.2 * Understand normal GNU --version and --help args. * Find CPP in a more flexible fashion. -4 December 1998 +1998-12-04 Version 1.0.1 * This release fixes a bug in the `mig' driver script that made it fail to invoke the C preprocessor properly. -19 July 1998 +1998-08-19 Version 1.0 -* MiG has been split into a separate distribution to make it easier to set +* MIG has been split into a separate distribution to make it easier to set up a compilation environment for GNU Mach and Hurd systems. The mig program itself in this distribution has not been substantively changed from the version in the GNUmach 1.1.3 distribution. @@ -1,10 +1,11 @@ --*- Text -*- - -This is the GNU distribution of the Mach 3.0 interface generator `MIG'. - -You need this tool to compile the GNU Mach and GNU Hurd distributions, and to -compile the GNU libc for the Hurd. +This is GNU MIG, the GNU distribution of the Mach 3.0 Interface Generator +(MIG), <http://www.gnu.org/software/hurd/microkernel/mach/mig/gnu_mig.html>. +Welcome. +This tool translates Remore Procedure Call (RPC) definition files to C +code, and is required to compile any packages that are receiving or +invoking RPCs, such as GNU Mach, GNU Hurd, and the GNU C Library (glibc) +when compiled for the Hurd. Generic installation instructions may be found in the file `INSTALL'. @@ -25,7 +26,9 @@ and its `CPPFLAGS' and `CFLAGS' to use by passing `TARGET_CC', `configure TARGET_CPPFLAGS=-I"$HOME"/some/where/include' -Bug reports relating to this distribution or requests for assistance should be -sent to <bug-hurd@gnu.org> or filed on -<http://savannah.gnu.org/bugs/?group=hurd> or -<http://savannah.gnu.org/support/?group=hurd>. +Please read the FAQ at <http://www.gnu.org/software/hurd/faq.html>. +Bug reports should be sent to <bug-hurd@gnu.org> or filed on +<http://savannah.gnu.org/bugs/?group=hurd>. Requests for assistance +should be sent to <help-hurd@gnu.org> or filed on +<http://savannah.gnu.org/support/?group=hurd>. You can also find us on +the Freenode IRC network in the #hurd channel. diff --git a/configure.ac b/configure.ac index adf3163..efd542a 100644 --- a/configure.ac +++ b/configure.ac @@ -2,7 +2,7 @@ dnl configure script for GNU MIG. AC_PREREQ([2.53]) -AC_INIT([GNU MIG], [1.3.1.99], [bug-hurd@gnu.org]) +AC_INIT([GNU MIG], [1.4], [bug-hurd@gnu.org]) AC_CONFIG_SRCDIR([migcom.c]) AC_CONFIG_AUX_DIR([build-aux]) |