libstorage / libstoragemgmt

A library for storage management
https://libstorage.github.io/libstoragemgmt-doc/
GNU Lesser General Public License v2.1
83 stars 32 forks source link

Update configuration #517

Closed tasleson closed 1 year ago

tasleson commented 1 year ago

When running autoreconf -f -i via autogen.sh we were seeing the following:

...
configure.ac:70: warning: 'AM_PROG_CC_STDC': this macro is obsolete. configure.ac:70: You should simply use the 'AC_PROG_CC' macro instead. configure.ac:70: Also, your code should no longer depend upon 'am_cv_prog_cc_stdc', configure.ac:70: but upon 'ac_cv_prog_cc_stdc'.
./lib/autoconf/general.m4:2434: AC_DIAGNOSE is expanded from... aclocal.m4:1131: AM_PROG_CC_STDC is expanded from... configure.ac:70: the top level
configure.ac:72: warning: The macro `AM_PROG_LIBTOOL' is obsolete. configure.ac:72: You should run autoupdate.
m4/libtool.m4:101: AM_PROG_LIBTOOL is expanded from... configure.ac:72: the top level
configure.ac:74: warning: The macro `AM_PROG_LD' is obsolete. configure.ac:74: You should run autoupdate.
m4/libtool.m4:3352: AM_PROG_LD is expanded from... configure.ac:74: the top level
configure.ac:122: warning: The macro `AC_HELP_STRING' is obsolete. configure.ac:122: You should run autoupdate.
./lib/autoconf/general.m4:204: AC_HELP_STRING is expanded from... ./lib/autoconf/general.m4:1553: AC_ARG_WITH is expanded from... configure.ac:122: the top level
configure.ac:216: warning: The macro `AC_PYTHON_MODULE' is obsolete. configure.ac:216: You should run autoupdate.
m4/ax_python_module.m4:28: AC_PYTHON_MODULE is expanded from... configure.ac:216: the top level
configure.ac:219: warning: The macro `AC_PYTHON_MODULE' is obsolete. configure.ac:219: You should run autoupdate.
m4/ax_python_module.m4:28: AC_PYTHON_MODULE is expanded from... configure.ac:219: the top level
configure.ac:259: warning: The macro `AC_PYTHON_MODULE' is obsolete. configure.ac:259: You should run autoupdate.
m4/ax_python_module.m4:28: AC_PYTHON_MODULE is expanded from... configure.ac:259: the top level
configure.ac:262: warning: The macro `AC_PYTHON_MODULE' is obsolete. configure.ac:262: You should run autoupdate.
m4/ax_python_module.m4:28: AC_PYTHON_MODULE is expanded from... configure.ac:262: the top level
configure.ac:263: warning: The macro `AC_PYTHON_MODULE' is obsolete. configure.ac:263: You should run autoupdate.
m4/ax_python_module.m4:28: AC_PYTHON_MODULE is expanded from...

autoupdate was run and AC_PROG_CC was used to replace AM_PROG_CC_STDC.

Signed-off-by: Tony Asleson tasleson@redhat.com