From: | Heikki Linnakangas <heikki(dot)linnakangas(at)iki(dot)fi> |
---|---|
To: | pgsql-committers(at)postgresql(dot)org |
Subject: | pgsql: Replace obsolete autoconf macros with their modern replacements. |
Date: | 2015-07-02 16:21:51 |
Message-ID: | E1ZAhFH-0006p3-2a@gemulon.postgresql.org |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-committers |
Replace obsolete autoconf macros with their modern replacements.
AC_TRY_COMPILE(...) -> AC_COMPILE_IFELSE([AC_LANG_PROGRAM(...)])
AC_TRY_LINK(...) -> AC_LINK_IFELSE([AC_LANG_PROGRAM(...)])
AC_TRY_RUN(...) -> AC_RUN_IFELSE([AC_LANG_PROGRAM(...)])
AC_LANG_SAVE/RESTORE -> AC_LANG_PUSH/POP
AC_DECL_SYS_SIGLIST -> AC_CHECK_DECLS(...) (per snippet in autoconf manual)
Also use AC_LANG_SOURCE instead of AC_LANG_PROGRAM, where the main()
function is not needed.
With these changes, autoconf -Wall doesn't complain anymore.
Andreas Karlsson
Branch
------
master
Details
-------
http://git.postgresql.org/pg/commitdiff/a2edb023d08778c3346bbbf4ca82ef7f6e9283eb
Modified Files
--------------
config/ac_func_accept_argtypes.m4 | 6 +--
config/acx_pthread.m4 | 9 ++---
config/c-compiler.m4 | 70 ++++++++++++++++----------------
config/c-library.m4 | 36 ++++++++---------
config/programs.m4 | 4 +-
configure | 28 -------------
configure.in | 80 ++++++++++++++++++++-----------------
7 files changed, 107 insertions(+), 126 deletions(-)
From | Date | Subject | |
---|---|---|---|
Next Message | Joe Conway | 2015-07-02 16:47:05 | pgsql: Whitespace fix - replace tab with spaces in CREATE TABLE command |
Previous Message | Alvaro Herrera | 2015-07-02 14:14:09 | Re: Re: [COMMITTERS] pgsql: Map basebackup tablespaces using a tablespace_map file |