Commit d76709e4 authored by Jean-Baptiste Kempf's avatar Jean-Baptiste Kempf

m4_ifnblank seems to be too new for some autoconf

And bumping autoconf version seems to be a bit much for such a small improvement
parent b7e64126
...@@ -87,7 +87,7 @@ m4_pushdef([enable_arg], m4_tolower([$1])) ...@@ -87,7 +87,7 @@ m4_pushdef([enable_arg], m4_tolower([$1]))
PKG_WITH_MODULES([$1],[$3], PKG_WITH_MODULES([$1],[$3],
VLC_ADD_PLUGIN(module_name) VLC_ADD_PLUGIN(module_name)
m4_ifnblank( [$8], VLC_ADD_CPPFLAGS(module_name, [$8])) m4_ifval( m4_normalize([$8]), VLC_ADD_CPPFLAGS(module_name, [$8]))
VLC_ADD_CFLAGS(module_name,[$$1_CFLAGS] [$6]) VLC_ADD_CFLAGS(module_name,[$$1_CFLAGS] [$6])
VLC_ADD_LIBS(module_name,[$$1_LIBS] [$7]), VLC_ADD_LIBS(module_name,[$$1_LIBS] [$7]),
AS_IF([test x"$AS_TR_SH([enable_]enable_arg)" = "xyes"], AS_IF([test x"$AS_TR_SH([enable_]enable_arg)" = "xyes"],
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment