Skip to content
Snippets Groups Projects
Commit c07bf8dd authored by Johannes Kauffmann's avatar Johannes Kauffmann
Browse files

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
parent e1a03b37
No related branches found
No related tags found
1 merge request!35configure: fix deprecation warnings
......@@ -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([
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment