[vlc-commits] [Git][videolan/libvlcpp][master] configure: fix deprecation warnings

Steve Lhomme (@robUx4) gitlab at videolan.org
Wed Feb 22 07:56:37 UTC 2023



Steve Lhomme pushed to branch master at VideoLAN / libvlcpp


Commits:
c07bf8dd by Johannes Kauffmann at 2023-02-21T21:34:52+01:00
configure: fix deprecation warnings

configure.ac:18: warning: The macro `AC_HELP_STRING' is obsolete.
configure.ac:18: You should run autoupdate.
./lib/autoconf/general.m4:204: AC_HELP_STRING is expanded from...
configure.ac:18: the top level
configure.ac:22: warning: The macro `AC_HELP_STRING' is obsolete.
configure.ac:22: You should run autoupdate.
./lib/autoconf/general.m4:204: AC_HELP_STRING is expanded from...
configure.ac:22: the top level

- - - - -


1 changed file:

- configure.ac


Changes:

=====================================
configure.ac
=====================================
@@ -15,11 +15,11 @@ AC_CONFIG_MACRO_DIR([m4])
 AC_PROG_CXX
 AX_CXX_COMPILE_STDCXX_11([noext])
 
-AC_ARG_ENABLE(examples, AC_HELP_STRING([--enable-examples], [build examples programs]))
+AC_ARG_ENABLE(examples, AS_HELP_STRING([--enable-examples], [build examples programs]))
 AM_CONDITIONAL([HAVE_EXAMPLES], [test "${enable_examples}" = "yes"])
 AS_IF([test "${enable_examples}" = "yes"], [PKG_CHECK_MODULES(vlc, libvlc)])
 
-AC_ARG_ENABLE(werror, AC_HELP_STRING([--enable-werror], [build examples with -Werror]))
+AC_ARG_ENABLE(werror, AS_HELP_STRING([--enable-werror], [build examples with -Werror]))
 AM_CONDITIONAL([HAVE_WERROR], [test "${enable_werror}" = "yes"])
 
 AC_CONFIG_FILES([



View it on GitLab: https://code.videolan.org/videolan/libvlcpp/-/commit/c07bf8ddcc8f30394ffcf82bd9b89ad7ae335125

-- 
View it on GitLab: https://code.videolan.org/videolan/libvlcpp/-/commit/c07bf8ddcc8f30394ffcf82bd9b89ad7ae335125
You're receiving this email because of your account on code.videolan.org.


VideoLAN code repository instance


More information about the vlc-commits mailing list