X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=m4%2Fvlc.m4;h=32f028e3d5385a5726f986203ee8964932c61514;hb=HEAD;hp=130e47a5c4aafdadbd2358ef2c2e6780219edef7;hpb=7160ce9f6ef3ef6d5afd3234e77611c01e90e1c2;p=vlc diff --git a/m4/vlc.m4 b/m4/vlc.m4 index 130e47a5c4..32f028e3d5 100644 --- a/m4/vlc.m4 +++ b/m4/vlc.m4 @@ -11,57 +11,53 @@ AC_DEFUN([VLC_ADD_BUILTINS], [ ]) AC_DEFUN([VLC_ADD_PLUGIN], [ - PLUGINS="${PLUGINS} $1" - AC_SUBST([LTLIB$1], ["lib$1_plugin.la"]) + m4_foreach_w([element], [$1], [ + [PLUGINS="${PLUGINS} ]element["] + AC_SUBST([LTLIB]element, [lib]element[_plugin.la]) + ]) ]) dnl Special cases: vlc, pics, plugins, save AC_DEFUN([VLC_ADD_CPPFLAGS], [ - for element in [$1]; do - eval "CPPFLAGS_${element}="'"$'"{CPPFLAGS_${element}} $2"'"' - am_modules_with_cppflags="${am_modules_with_cppflags} ${element}" - done + m4_foreach_w([element], [$1], [ + [eval "CPPFLAGS_]element[="'"$'"{CPPFLAGS_]element[} $2"'"'] + [am_modules_with_cppflags="${am_modules_with_cppflags} ]element["] + ]) ]) AC_DEFUN([VLC_ADD_CFLAGS], [ - for element in [$1]; do - eval "CFLAGS_${element}="'"$'"{CFLAGS_${element}} $2"'"' - am_modules_with_cflags="${am_modules_with_cflags} ${element}" - done + m4_foreach_w([element], [$1], [ + [eval "CFLAGS_]element[="'"$'"{CFLAGS_]element[} $2"'"'] + [am_modules_with_cflags="${am_modules_with_cflags} ]element["] + ]) ]) AC_DEFUN([VLC_ADD_CXXFLAGS], [ - for element in [$1]; do - eval "CXXFLAGS_${element}="'"$'"{CXXFLAGS_${element}} $2"'"' - am_modules_with_cxxflags="${am_modules_with_cxxflags} ${element}" - done + m4_foreach_w([element], [$1], [ + [eval "CXXFLAGS_]element[="'"$'"{CXXFLAGS_]element[} $2"'"'] + [am_modules_with_cxxflags="${am_modules_with_cxxflags} ]element["] + ]) ]) AC_DEFUN([VLC_ADD_OBJCFLAGS], [ - for element in [$1]; do - eval "OBJCFLAGS_${element}="'"$'"{OBJCFLAGS_${element}} $2"'"' - am_modules_with_objcflags="${am_modules_with_objcflags} ${element}" - done + m4_foreach_w([element], [$1], [ + [eval "OBJCFLAGS_]element[="'"$'"{OBJCFLAGS_]element[} $2"'"'] + [am_modules_with_objcflags="${am_modules_with_objcflags} ]element["] + ]) ]) AC_DEFUN([VLC_ADD_LDFLAGS], [ - for element in [$1]; do - eval "LDFLAGS_${element}="'"'"$2 "'$'"{LDFLAGS_${element}} "'"' - am_modules_with_ldflags="${am_modules_with_ldflags} ${element}" - done + m4_foreach_w([element], [$1], [ + [eval "LDFLAGS_]element[="'"$2 $'"{LDFLAGS_]element[}"'"'] + [am_modules_with_ldflags="${am_modules_with_ldflags} ]element["] + ]) ]) AC_DEFUN([VLC_ADD_LIBS], [ - for element in [$1]; do - eval "LIBS_${element}="'"'"$2 "'$'"{LIBS_${element}} "'"' - am_modules_with_libs="${am_modules_with_libs} ${element}" - done -]) - -AC_DEFUN([VLC_SET_CFLAGS_WERROR], [ - for element in [$1]; do - eval "CFLAGS_WERROR_${element}="'"'"$2"''"' - done + m4_foreach_w([element], [$1], [ + [eval "LIBS_]element[="'"'"$2 "'$'"{LIBS_]element[}"'"'] + [am_modules_with_libs="${am_modules_with_libs} ]element["] + ]) ]) dnl =========================================================================== @@ -100,7 +96,6 @@ AC_DEFUN([VLC_OUTPUT_VLC_CONFIG_IN], [ -e "s/@cprof@/${enable_cprof}/" \ -e "s/@optim@/${enable_optimizations}/" \ -e "s/@debug@/${enable_debug}/" \ - -e "s/@release@/${enable_release}/" \ -e "s/@PLUGINS@/${PLUGINS}/" \ -e "s/@BUILTINS@/${BUILTINS}/" \ -e "s/@CFLAGS_TUNING@/${CFLAGS_TUNING}/" \ @@ -138,9 +133,6 @@ AC_DEFUN([VLC_OUTPUT_VLC_CONFIG_IN], [ if test "`eval echo @'$'LIBS_${x}@`" != "@@"; then echo " libs=\"\${libs} `eval echo '$'LIBS_${x}`\"" fi - if test "`eval echo @'$'LIBS_${x}@`" != "@@"; then - echo " CFLAGS_WERROR=\"`eval echo '$'CFLAGS_WERROR_${x}`\"" - fi echo " ;;" ] done >> vlc-config.in