diff options
-rw-r--r-- | ChangeLog | 9 | ||||
-rw-r--r-- | Makefile.am | 1 | ||||
-rw-r--r-- | NEWS | 22 | ||||
-rw-r--r-- | README | 51 | ||||
-rw-r--r-- | configure.ac | 3 |
5 files changed, 57 insertions, 29 deletions
@@ -1,3 +1,12 @@ +2006-12-04 Thomas Schwinge <tschwinge@gnu.org> + + * Makefile.am (AUTOMAKE_OPTIONS): Remove variable after having moved + the `gnu' option to... + * configure.ac (AM_INIT_AUTOMAKE): ... here. + Bump version to 1.3.1.99. + * NEWS: Update. + * README: Likewise. + 2006-12-03 Leonardo Lopes Pereira <leonardolopespereira@gmail.com> [patch #5018 --- ``Remove support to msg_send interface.''] diff --git a/Makefile.am b/Makefile.am index 60afea0..5de3fde 100644 --- a/Makefile.am +++ b/Makefile.am @@ -1,6 +1,5 @@ ## Process this file with automake to produce Makefile.in. -AUTOMAKE_OPTIONS = gnu libexec_PROGRAMS = migcom bin_SCRIPTS = mig @@ -1,9 +1,25 @@ -*- Text -*- +unreleased +Version 1.3.2 + +* 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. + +* Handle the preprocessor option `-isystem' correctly. + +* Cope with command line arguments the contain whitespace. + +* Be more careful to catch write errors when closing files. + +* The `debian/' subdirectory of packaging files is not included anymore. + 29 August 2002 Version 1.3.1 -* Fix warnings when compiling generated files with GCC 3.x +* Fix warnings when compiling generated files with GCC 3.x. * Fix alignment issues for greater than 32 bit types on 32 bit machines. @@ -21,7 +37,6 @@ Version 1.3 * The debian/ subdirectory of packaging files is now included in the MiG source distribution. - 7 June 2001 Version 1.2 @@ -46,20 +61,17 @@ 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 Version 1.1 * First official net release. - 23 May 1999 Version 1.0.2 * Understand normal GNU --version and --help args. * Find CPP in a more flexible fashion. - 4 December 1998 Version 1.0.1 @@ -1,24 +1,31 @@ -*- Text -*- -This is the GNU distribution of the Mach 3.0 interface generator `MiG'. - -You need this tool to compile the gnumach and hurd distributions, -and to compile GNU libc for the Hurd. - -Generic installation instructions may be found in the file INSTALL. - -NOTE: To compile MiG you will need a compilation environment for the target -Mach platform (e.g. the GNU Hurd). Actually, just a compiler for the right -machine that can find the Mach include files will do (i.e. the `include/mach' -tree installed by the gnumach distribution). If you tell configure to -produce a cross-mig by giving --target and --host options that differ, it -will attempt to find a compiler for the target; for example, with the command -`configure --host=SOMETHING --target=i486-gnu', it will automatically try to -use `i486-gnu-gcc' for the target compilations. You can explicitly set the -target compiler to use by setting `TARGET_CC' in configure's environment -(e.g. `TARGET_CC=i486-gnu-gcc configure'). If you don't specify --target, -then the native compiler must be able to find a Mach include tree. - -Bug reports relating to this distribution should be sent to -<bug-hurd@gnu.org>. Requests for assistance should be made on -<help-hurd@gnu.org>. +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. + + +Generic installation instructions may be found in the file `INSTALL'. + +NOTE: To compile this distribution, you will need a compilation environment for +the target Mach platform (e.g. the GNU Hurd). Actually, just a compiler for +the right machine that can find the Mach include files will do (i.e. the +`include/mach' tree installed by the GNU Mach distribution). If you tell +`configure' to produce a cross-MIG by giving `--target' and `--host' options +that differ, it will attempt to find a compiler for the target; for example, +with the command `configure --host=SOMETHING --target=i586-gnu', it will +automatically try to use `i586-gnu-gcc' for the target compilations. If you +don't specify `--target', then the native compiler will be used and it must be +able to find a Mach include tree. You can explicitly set the target compiler +and its `CPPFLAGS' and `CFLAGS' to use by passing `TARGET_CC', +`TARGET_CPPFLAGS' or `TARGET'CFLAGS' to `configure', e.g.: + + `configure TARGET_CC=i586-gnu-gcc' or + `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>. diff --git a/configure.ac b/configure.ac index cb2f48c..83ea5ab 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], [bug-hurd@gnu.org]) +AC_INIT([GNU MIG], [1.3.1.99], [bug-hurd@gnu.org]) AC_CONFIG_SRCDIR([migcom.c]) AC_CONFIG_AUX_DIR([build-aux]) @@ -12,6 +12,7 @@ AC_CANONICAL_TARGET AC_ARG_PROGRAM AM_INIT_AUTOMAKE( + [gnu] dnl Don't define `PACKAGE' and `VERSION'. [no-define] ) |