[
https://issues.apache.org/jira/browse/COUCHDB-1070?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12999405#comment-12999405
]
Javier Jardón commented on COUCHDB-1070:
----------------------------------------
Hello Noah, here a more datailed explanation:
- Replace some deprecated autoconf macros:
AM_CONFIG_HEADER -> AC_CONFIG_HEADERS and
AC_GNU_SOURCE -> AC_USE_SYSTEM_EXTENSIONS
AC_TRY_LINK -> AC_LINK_IFELSE
AC_HELP_STRING -> AS_HELP_STRING
- Use the new libtool syntax
We need to require libtool 2.2 as minimum version: LT_PREREQ([2.2])
And we can replace the old macros with the new syntax:
AC_PROG_LIBTOOL, AC_DISABLE_STATIC, AC_ENABLE_SHARED ->
LT_INIT([disable-static]) (enable-shared is the default)
I can submit separate patches if you want, just tell me.
> Update autotools configuration
> ------------------------------
>
> Key: COUCHDB-1070
> URL: https://issues.apache.org/jira/browse/COUCHDB-1070
> Project: CouchDB
> Issue Type: Improvement
> Components: Infrastructure
> Affects Versions: 1.0.2
> Reporter: Javier Jardón
> Priority: Minor
> Labels: autotools, build
> Fix For: 1.0.3, 1.1, 1.2, 2.0
>
> Attachments: update_autotools.patch
>
> Original Estimate: 0h
> Remaining Estimate: 0h
>
> Replace deprecated autoconf macros and use new libtool syntax
> Also use silent rules to silence the output a bit
--
This message is automatically generated by JIRA.
-
For more information on JIRA, see: http://www.atlassian.com/software/jira