Skip to content

Commit

Permalink
If aclocal needs to be called during a build, its options are taken
Browse files Browse the repository at this point in the history
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
  • Loading branch information
janl committed Jun 2, 2010
1 parent e699b56 commit 9807cda
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 2 additions & 0 deletions Makefile.am
Expand Up @@ -12,6 +12,8 @@


SUBDIRS = bin etc src share test var utils SUBDIRS = bin etc src share test var utils


ACLOCAL_AMFLAGS = -I m4

localdoc_DATA = \ localdoc_DATA = \
AUTHORS.gz \ AUTHORS.gz \
BUGS.gz \ BUGS.gz \
Expand Down
1 change: 1 addition & 0 deletions THANKS
Expand Up @@ -57,5 +57,6 @@ suggesting improvements or submitting changes. Some of these people are:
* Gavin Sherry <swm@alcove.com.au> * Gavin Sherry <swm@alcove.com.au>
* Timothy Smith <tim@couch.io> * Timothy Smith <tim@couch.io>
* Martin Haaß <MartinHaass@gmx.net> * Martin Haaß <MartinHaass@gmx.net>
* Hans Ulrich Niedermann <hun@n-dimensional.de>


For a list of authors see the `AUTHORS` file. For a list of authors see the `AUTHORS` file.
4 changes: 1 addition & 3 deletions configure.ac
Expand Up @@ -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 License for the specific language governing permissions and limitations
dnl under the License. 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_INIT([LOCAL_PACKAGE_NAME], [LOCAL_VERSION], [], [LOCAL_PACKAGE_TARNAME])


AC_PREREQ([2.59]) AC_PREREQ([2.59])


AC_CONFIG_SRCDIR([CHANGES]) AC_CONFIG_SRCDIR([CHANGES])
AC_CONFIG_AUX_DIR([build-aux]) AC_CONFIG_AUX_DIR([build-aux])
AC_CONFIG_MACRO_DIR([m4])


AM_CONFIG_HEADER([config.h]) AM_CONFIG_HEADER([config.h])


Expand Down
3 changes: 1 addition & 2 deletions license.skip
Expand Up @@ -52,8 +52,7 @@
^etc/windows/README.txt.tpl ^etc/windows/README.txt.tpl
^libtool ^libtool
^license.skip ^license.skip
^m4/ac_check_curl.m4* ^m4/*
^m4/ac_check_icu.m4*
^share/Makefile ^share/Makefile
^share/Makefile.in ^share/Makefile.in
^share/server/json2.js ^share/server/json2.js
Expand Down

0 comments on commit 9807cda

Please sign in to comment.