diff options
author | Jan Lehnardt <jan@apache.org> | 2010-06-02 21:47:28 +0000 |
---|---|---|
committer | Jan Lehnardt <jan@apache.org> | 2010-06-02 21:47:28 +0000 |
commit | 9807cda46b01f31bc77025c34a8b7f4275be6563 (patch) | |
tree | 50b3e9130927922b05e058989924d9819ddc146e | |
parent | e699b56c551ab3225789d6dd1951fb7341854c9c (diff) |
If aclocal needs to be called during a build, its options are taken
from ACLOCAL_AMFLAGS in the top-level Makefile.am - which were not
defined before.
Additionally, this removes the need for the explicit m4_include of
m4/ac_check_icu.m4 at the very top of configure.ac.
Patch by Hans Ulrich Niedermann.
Closes COUCHDB-165 and COUCHDB-414.
git-svn-id: https://svn.apache.org/repos/asf/couchdb/trunk@950779 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r-- | Makefile.am | 2 | ||||
-rw-r--r-- | THANKS | 1 | ||||
-rw-r--r-- | configure.ac | 4 | ||||
-rw-r--r-- | license.skip | 3 |
4 files changed, 5 insertions, 5 deletions
diff --git a/Makefile.am b/Makefile.am index 472b01c1..9dbcb8aa 100644 --- a/Makefile.am +++ b/Makefile.am @@ -12,6 +12,8 @@ SUBDIRS = bin etc src share test var utils +ACLOCAL_AMFLAGS = -I m4 + localdoc_DATA = \ AUTHORS.gz \ BUGS.gz \ @@ -57,5 +57,6 @@ suggesting improvements or submitting changes. Some of these people are: * Gavin Sherry <swm@alcove.com.au> * Timothy Smith <tim@couch.io> * Martin Haaß <MartinHaass@gmx.net> + * Hans Ulrich Niedermann <hun@n-dimensional.de> For a list of authors see the `AUTHORS` file. diff --git a/configure.ac b/configure.ac index c4d530d6..0c089523 100644 --- a/configure.ac +++ b/configure.ac @@ -10,15 +10,13 @@ dnl WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the dnl License for the specific language governing permissions and limitations dnl under the License. -m4_include([m4/ac_check_icu.m4]) -m4_include([m4/ac_check_curl.m4]) - AC_INIT([LOCAL_PACKAGE_NAME], [LOCAL_VERSION], [], [LOCAL_PACKAGE_TARNAME]) AC_PREREQ([2.59]) AC_CONFIG_SRCDIR([CHANGES]) AC_CONFIG_AUX_DIR([build-aux]) +AC_CONFIG_MACRO_DIR([m4]) AM_CONFIG_HEADER([config.h]) diff --git a/license.skip b/license.skip index f9a388f9..10ff0892 100644 --- a/license.skip +++ b/license.skip @@ -52,8 +52,7 @@ ^etc/windows/README.txt.tpl ^libtool ^license.skip -^m4/ac_check_curl.m4* -^m4/ac_check_icu.m4* +^m4/* ^share/Makefile ^share/Makefile.in ^share/server/json2.js |