From 777fcdcec932ae9e0ce3129a200bbf0d64e76a97 Mon Sep 17 00:00:00 2001 From: Benoit Sigoure Date: Fri, 2 Nov 2007 18:47:37 +0100 Subject: [PATCH] Fix distcheck. * AUTHORS: New. * NEWS: New. * README: Mention the license and how to fetch the latest version. * build-aux/boost.m4: Mention how to fetch the latest version. * configure.ac (AM_INIT_AUTOMAKE): Drop `foreign'. * tests/Makefile.am ($(TESTSUITE)): Adjust dependencies to fix distcheck. Signed-off-by: Benoit Sigoure --- .gitignore | 1 + AUTHORS | 1 + ChangeLog | 11 +++++++++++ NEWS | 26 ++++++++++++++++++++++++++ README | 5 ++++- build-aux/boost.m4 | 2 ++ configure.ac | 2 +- tests/Makefile.am | 2 +- 8 files changed, 47 insertions(+), 3 deletions(-) create mode 100644 AUTHORS create mode 100644 NEWS diff --git a/.gitignore b/.gitignore index 2a9005d..84c2450 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,2 @@ config.h.in +INSTALL diff --git a/AUTHORS b/AUTHORS new file mode 100644 index 0000000..1ef4eb3 --- /dev/null +++ b/AUTHORS @@ -0,0 +1 @@ +Benoit Sigoure diff --git a/ChangeLog b/ChangeLog index d4f57b5..ba05969 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,16 @@ 2007-11-02 Benoit Sigoure + Fix distcheck. + * AUTHORS: New. + * NEWS: New. + * README: Mention the license and how to fetch the latest version. + * build-aux/boost.m4: Mention how to fetch the latest version. + * configure.ac (AM_INIT_AUTOMAKE): Drop `foreign'. + * tests/Makefile.am ($(TESTSUITE)): Adjust dependencies to fix + distcheck. + +2007-11-02 Benoit Sigoure + Properly find the pthreads flags for use with Boost.Thread. * build-aux/boost.m4 (_BOOST_PTHREAD_FLAG): New internal helper. (BOOST_THREADS): Use it. Use the pthread flag during the tests for diff --git a/NEWS b/NEWS new file mode 100644 index 0000000..0dc99a8 --- /dev/null +++ b/NEWS @@ -0,0 +1,26 @@ +boost.m4 - User visible changes. + +* Version 0.1 (????-??-??) + +Initial release. + +----- + +Copyright (C) 2007 Benoit Sigoure + +This program is free software: you can redistribute it and/or modify +it under the terms of the GNU General Public License as published by +the Free Software Foundation, either version 3 of the License, or +(at your option) any later version. + +This program is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU General Public License for more details. + +You should have received a copy of the GNU General Public License +along with this program. If not, see . + +Local Variables: +mode: outline +End: diff --git a/README b/README index c237dfc..4799f12 100644 --- a/README +++ b/README @@ -9,7 +9,8 @@ This package provides a set of M4 macros to use with Autoconf. The purpose of these macros is to be able to easily find and test the various Boost -libraries of a given version for a given compiler. +libraries of a given version for a given compiler. This package is released +under GPLv3+. HOWTO ----- @@ -132,4 +133,6 @@ checks. Please contribute them to me by email to . You can checkout the Git source tree of this package at http://repo.or.cz/w/boost.m4.git +Or simply download the latest version: + wget 'http://repo.or.cz/w/boost.m4.git?a=blob_plain;f=build-aux/boost.m4;hb=HEAD' -O boost.m4 Patches welcome. diff --git a/build-aux/boost.m4 b/build-aux/boost.m4 index 8e5e26d..e851688 100644 --- a/build-aux/boost.m4 +++ b/build-aux/boost.m4 @@ -16,6 +16,8 @@ # serial 1 # Original sources can be found at http://repo.or.cz/w/boost.m4.git +# You can fetch the latest version of the script by doing: +# wget 'http://repo.or.cz/w/boost.m4.git?a=blob_plain;f=build-aux/boost.m4;hb=HEAD' -O boost.m4 # ------ # # README # diff --git a/configure.ac b/configure.ac index 15b3967..18e7e82 100644 --- a/configure.ac +++ b/configure.ac @@ -16,7 +16,7 @@ AC_INIT([boost-m4-test], [0.1], [tsuna@lrde.epita.fr]) AC_CONFIG_AUX_DIR([build-aux]) AC_CONFIG_HEADERS([config.h]) -AM_INIT_AUTOMAKE([foreign]) +AM_INIT_AUTOMAKE([]) AC_CANONICAL_HOST diff --git a/tests/Makefile.am b/tests/Makefile.am index 0532b4b..fdf7dfc 100644 --- a/tests/Makefile.am +++ b/tests/Makefile.am @@ -30,7 +30,7 @@ clean-local: AUTOTEST = $(AUTOM4TE) --language=autotest -$(TESTSUITE): package.m4 $(srcdir)/testsuite.at +$(TESTSUITE): $(srcdir)/package.m4.in $(srcdir)/testsuite.at $(AUTOTEST) -I '$(srcdir)' $@.at -o $@.tmp mv $@.tmp $@ -- 2.11.4.GIT