[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: directory update for M4
From: |
Eric Blake |
Subject: |
Re: directory update for M4 |
Date: |
Wed, 09 Apr 2008 07:28:34 -0600 |
User-agent: |
Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.1.12) Gecko/20080213 Thunderbird/2.0.0.12 Mnenhy/0.7.5.666 |
-----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 address@hidden
-----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-----
>From 2c634e429edec76605a4e7dcb3d950d2adf06e8d Mon Sep 17 00:00:00 2001
From: Eric Blake <address@hidden>
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 <address@hidden>
---
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 <address@hidden>
+
+ 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 <address@hidden>
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 <address@hidden>
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 <address@hidden>
---
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 <address@hidden> (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:address@hidden:/sources/directory \
+ co directory/m4.txt
+ After making edits, mail the diff to <address@hidden>.
+
--
Copyright (C) 2004, 2005, 2006, 2007, 2008 Free Software Foundation, Inc.
--
1.5.4