-
- Downloads
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
Showing
- config/ac_func_accept_argtypes.m4 3 additions, 3 deletionsconfig/ac_func_accept_argtypes.m4
- config/acx_pthread.m4 4 additions, 5 deletionsconfig/acx_pthread.m4
- config/c-compiler.m4 36 additions, 34 deletionsconfig/c-compiler.m4
- config/c-library.m4 18 additions, 18 deletionsconfig/c-library.m4
- config/programs.m4 2 additions, 2 deletionsconfig/programs.m4
- configure 0 additions, 28 deletionsconfigure
- configure.in 44 additions, 36 deletionsconfigure.in
Loading
Please register or sign in to comment