aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSergey Poznyakoff <gray@gnu.org.ua>2011-08-13 16:58:11 +0000
committerSergey Poznyakoff <gray@gnu.org.ua>2011-08-13 16:58:11 +0000
commit7a234870b64ed6e1e4facadb3b590863e365f7a4 (patch)
tree8bf77262d7eef36929f365263bfbd930e6d49cd6
parent32e37c92ed9b7f36c21aff993f3dce93a43cc036 (diff)
downloadgdbm-7a234870b64ed6e1e4facadb3b590863e365f7a4.tar.gz
gdbm-7a234870b64ed6e1e4facadb3b590863e365f7a4.tar.bz2
Improve release checking: use gnits.
* configure.ac (AM_INIT_AUTOMAKE): Use gnits. (AC_INIT): Remove extra quoting from around version number to pacify gnits. * THANKS: New file.
-rw-r--r--ChangeLog9
-rw-r--r--THANKS7
-rw-r--r--configure.ac4
3 files changed, 18 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index c88c812..e09d90c 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,14 @@
2011-08-13 Sergey Poznyakoff <gray@gnu.org.ua>
+ Improve release checking: use gnits.
+
+ * configure.ac (AM_INIT_AUTOMAKE): Use gnits.
+ (AC_INIT): Remove extra quoting from around version number
+ to pacify gnits.
+ * THANKS: New file.
+
+2011-08-13 Sergey Poznyakoff <gray@gnu.org.ua>
+
Verify preprocessor directives. Pass them through cppi to
reflect their nesting level. Affected files:
diff --git a/THANKS b/THANKS
new file mode 100644
index 0000000..628a636
--- /dev/null
+++ b/THANKS
@@ -0,0 +1,7 @@
+GDBM THANKS file.
+
+Many people further contributed to GDBM by reporting problems,
+suggesting various improvements or submitting actual code. Here is a list
+of these people. Help us keep it complete and exempt of errors.
+
+Matthew Burgess <matthew@linuxfromscratch.org>
diff --git a/configure.ac b/configure.ac
index 3e320f4..fe009d5 100644
--- a/configure.ac
+++ b/configure.ac
@@ -19,14 +19,14 @@ m4_define([_GDBM_VERSION_MINOR], 9)
m4_define([_GDBM_VERSION_PATCH], 1)
AC_INIT([gdbm],
- [_GDBM_VERSION_MAJOR._GDBM_VERSION_MINOR[]m4_ifdef([_GDBM_VERSION_PATCH],._GDBM_VERSION_PATCH)],
+ _GDBM_VERSION_MAJOR._GDBM_VERSION_MINOR[]m4_ifdef([_GDBM_VERSION_PATCH],._GDBM_VERSION_PATCH),
[bug-gdbm@gnu.org])
AC_PREREQ(2.63)
AC_CONFIG_SRCDIR([src/gdbmdefs.h])
AC_CONFIG_AUX_DIR([build-aux])
AC_CONFIG_HEADERS([autoconf.h])
AC_CONFIG_MACRO_DIR([m4])
-AM_INIT_AUTOMAKE([gnu 1.11 std-options silent-rules])
+AM_INIT_AUTOMAKE([gnits 1.11 std-options silent-rules])
# Enable silent rules by default:
AM_SILENT_RULES([yes])

Return to:

Send suggestions and report system problems to the System administrator.