You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@couchdb.apache.org by "Jan Lehnardt (JIRA)" <ji...@apache.org> on 2010/06/02 23:52:00 UTC

[jira] Closed: (COUCHDB-414) If "aclocal" is invoked during build, it doesn't get called with the right arguments

     [ https://issues.apache.org/jira/browse/COUCHDB-414?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Jan Lehnardt closed COUCHDB-414.
--------------------------------

    Fix Version/s: 0.11.1
                   1.0
       Resolution: Fixed

> If "aclocal" is invoked during build, it doesn't get called with the right arguments
> ------------------------------------------------------------------------------------
>
>                 Key: COUCHDB-414
>                 URL: https://issues.apache.org/jira/browse/COUCHDB-414
>             Project: CouchDB
>          Issue Type: Bug
>          Components: Build System
>    Affects Versions: 0.10
>         Environment: Ubuntu 9.04
>            Reporter: James Henstridge
>            Assignee: Noah Slater
>             Fix For: 0.11.1, 1.0
>
>         Attachments: 0001-Add-proper-aclocal-arguments.patch
>
>
> For some changes a Linux distro might make to couchdb when packaging, the build might reinvoke aclocal, automake, autoconf, etc.
> If "aclocal" gets invoked, it doesn't know that some of the macros are stored in the m4/ subdirectory.  This can be fixed by adding the following line to the toplevel Makefile.am:
>     ACLOCAL_AMFLAGS = -I m4
> This is documented in Section 6.3.4 (Handling Local Macros) of the Automake 1.10 manual.
> It is also recommended to add a line like the following to configure.ac so other tools know you're using m4/ as the autoconf macro directory:
>     AC_CONFIG_MACRO_DIR([m4])
> With these two changes, it shouldn't be necessary to explicitly m4_include() m4/ac_check_icu.m4 in configure.ac

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.