Re: directory update for M4
Eric Blake <[email protected]>
| Newsgroups | gmane.comp.gnu.m4.patches |
|---|---|
| Message-ID | <[email protected]> |
-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 According to Eric Blake on 4/9/2008 7:26 AM: | Attached is a diff to mention the recent M4 1.4.11 release. And so I don't forget to do it next time (along with some configure.ac cleanups I noticed), I'm committing these two patches: - -- Don't work too hard, make some time for fun as well! Eric Blake [email protected] -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.9 (Cygwin) Comment: Public key at home.comcast.net/~ericblake/eblake.gpg Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org iEYEARECAAYFAkf8xIIACgkQ84KuGfSFAYDulwCgw4HQVEsptJvUBOjEnWW26OQU PQcAnj0tj9ZiQr/2twGbLHK8heGAELhY =IFDf -----END PGP SIGNATURE----- _______________________________________________ M4-patches mailing list [email protected] http://lists.gnu.org/mailman/listinfo/m4-patches
m4.patch335
(text/plain, 2.5 KB)
From 2c634e429edec76605a4e7dcb3d950d2adf06e8d Mon Sep 17 00:00:00 2001 From: Eric Blake <[email protected]> Date: Wed, 9 Apr 2008 07:06:15 -0600 Subject: [PATCH] Remove redundant configure macros. * configure.ac (AC_CANONICAL_BUILD, AC_CANONICAL_HOST) (AC_SYS_LARGEFILE, AC_TYPE_SIZE_T): Delete, since gnulib does this. (AC_CHECK_HEADERS_ONCE): Remove limits.h. Signed-off-by: Eric Blake <[email protected]> --- ChangeLog | 8 ++++++++ configure.ac | 6 +----- 2 files changed, 9 insertions(+), 5 deletions(-) diff --git a/ChangeLog b/ChangeLog index fa050ce..9f8d76f 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,11 @@ +2008-04-09 Eric Blake <[email protected]> + + Remove redundant configure macros. + * configure.ac (AC_CANONICAL_BUILD, AC_CANONICAL_HOST) + (AC_SYS_LARGEFILE, AC_TYPE_SIZE_T): Delete, since gnulib does + this. + (AC_CHECK_HEADERS_ONCE): Remove limits.h. + 2008-04-02 Eric Blake <[email protected]> Mention 1.4.11 release. diff --git a/configure.ac b/configure.ac index 990c8f6..ea4e130 100644 --- a/configure.ac +++ b/configure.ac @@ -29,13 +29,10 @@ m4_pattern_forbid([^M4_[A-Z]]) AC_CONFIG_SRCDIR([src/m4.h]) AC_CONFIG_HEADERS([lib/config.h:lib/config.hin]) -AC_CANONICAL_BUILD -AC_CANONICAL_HOST AC_PROG_CC M4_EARLY -AC_SYS_LARGEFILE -AC_CHECK_HEADERS_ONCE([limits.h siginfo.h sys/wait.h]) +AC_CHECK_HEADERS_ONCE([siginfo.h sys/wait.h]) AC_CHECK_TYPES([siginfo_t], [], [], [[#include <signal.h> #if HAVE_SIGINFO_H @@ -53,7 +50,6 @@ AC_CHECK_MEMBERS([stack_t.ss_sp], [], [], ]]) AC_TYPE_SIGNAL -AC_TYPE_SIZE_T AC_CHECK_FUNCS_ONCE([sigaction sigaltstack sigstack sigvec strerror]) -- 1.5.4 From be555668bce19f6a52f2c664bee473001943a926 Mon Sep 17 00:00:00 2001 From: Eric Blake <[email protected]> Date: Wed, 9 Apr 2008 07:26:31 -0600 Subject: [PATCH] Mention how to do Free Software Directory update. * HACKING: Add another release process step. Signed-off-by: Eric Blake <[email protected]> --- HACKING | 5 +++++ 1 files changed, 5 insertions(+), 0 deletions(-) diff --git a/HACKING b/HACKING index 73b61cf..fd8cd1e 100644 --- a/HACKING +++ b/HACKING @@ -256,6 +256,11 @@ yyyy-mm-dd Name of Author <email@address> (tiny change) * Post a news blurb on https://savannah.gnu.org/projects/m4. +* Update the Free Software Directory. Checkout the CVS sources: + cvs -d :pserver:[email protected]:/sources/directory \ + co directory/m4.txt + After making edits, mail the diff to <[email protected]>. + -- Copyright (C) 2004, 2005, 2006, 2007, 2008 Free Software Foundation, Inc. -- 1.5.4