aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorhiro <hiro@ee746299-78ed-0310-b773-934348b2243d>2005-03-01 04:56:29 +0000
committerhiro <hiro@ee746299-78ed-0310-b773-934348b2243d>2005-03-01 04:56:29 +0000
commit3d37a97aededbe418c1906984d8dd2694176bfc6 (patch)
treeb7ad6b9d702bbf9a36f94ace46108495bcb1bb8a
parente9f2d81aafc3d39e2838ea931c048e05b466f9a2 (diff)
fixed a warning of the newer automake.
git-svn-id: svn://sylpheed.sraoss.jp/sylpheed/trunk@134 ee746299-78ed-0310-b773-934348b2243d
-rw-r--r--ChangeLog6
-rw-r--r--ChangeLog.ja6
-rw-r--r--ac/check-type.m42
-rw-r--r--ac/gnupg-check-typedef.m42
4 files changed, 14 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index ee3882fe..c38fc278 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2005-03-01
+
+ * ac/check-type.m4
+ ac/gnupg-check-typedef.m4: fixed a warning of the newer automake
+ (thanks to Daichi Kawahata).
+
2005-02-28
* src/compose.c: compose_parse_header(): generate References: from
diff --git a/ChangeLog.ja b/ChangeLog.ja
index 3e4ddd40..d3605e8f 100644
--- a/ChangeLog.ja
+++ b/ChangeLog.ja
@@ -1,3 +1,9 @@
+2005-03-01
+
+ * ac/check-type.m4
+ ac/gnupg-check-typedef.m4: 新しい automake による警告を除去
+ (川畑さん thanks)。
+
2005-02-28
* src/compose.c: compose_parse_header(): 親メッセージが Message-Id:
diff --git a/ac/check-type.m4 b/ac/check-type.m4
index 90611451..e65ea03b 100644
--- a/ac/check-type.m4
+++ b/ac/check-type.m4
@@ -5,7 +5,7 @@ dnl `stddef.h' checks files included by INCLUDES, which should be a
dnl series of #include statements. If TYPE is not defined, define it
dnl to DEFAULT.
dnl
-AC_DEFUN(SYLPHEED_CHECK_TYPE,
+AC_DEFUN([SYLPHEED_CHECK_TYPE],
[AC_REQUIRE([AC_HEADER_STDC])dnl
AC_MSG_CHECKING(for $1)
AC_CACHE_VAL(sylpheed_cv_type_$1,
diff --git a/ac/gnupg-check-typedef.m4 b/ac/gnupg-check-typedef.m4
index 4f782a6a..28fd9029 100644
--- a/ac/gnupg-check-typedef.m4
+++ b/ac/gnupg-check-typedef.m4
@@ -1,7 +1,7 @@
dnl GNUPG_CHECK_TYPEDEF(TYPE, HAVE_NAME [, COMMENT])
dnl Check whether a typedef exists and create a #define $2 if it exists
dnl
-AC_DEFUN(GNUPG_CHECK_TYPEDEF,
+AC_DEFUN([GNUPG_CHECK_TYPEDEF],
[ AC_MSG_CHECKING(for $1 typedef)
AC_CACHE_VAL(gnupg_cv_typedef_$1,
[AC_TRY_COMPILE([#include <stdlib.h>