X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=m4%2Fvlc.m4;h=e8944e13737901e61ff1b7fc6e5d6549f272d24e;hb=47e69cf6132dfd1daa1ef8fb17fa6b2af5c16e18;hp=93ee4ec3c93c4cdceceba405e7de9dc13aa040cd;hpb=7f3af96e38437fd97b5c212715840806f46b7ca1;p=vlc diff --git a/m4/vlc.m4 b/m4/vlc.m4 index 93ee4ec3c9..e8944e1373 100644 --- a/m4/vlc.m4 +++ b/m4/vlc.m4 @@ -10,8 +10,9 @@ AC_DEFUN([VLC_ADD_BUILTINS], [ BUILTINS="${BUILTINS} $1" ]) -AC_DEFUN([VLC_ADD_PLUGINS], [ +AC_DEFUN([VLC_ADD_PLUGIN], [ PLUGINS="${PLUGINS} $1" + AC_SUBST([LTLIB$1], ["lib$1_plugin.la"]) ]) dnl Special cases: vlc, pics, plugins, save @@ -106,42 +107,36 @@ AC_DEFUN([VLC_OUTPUT_VLC_CONFIG_IN], [ dnl Switch/case loop for x in `echo ${am_all_modules}` do [ - echo " ${x})" >> vlc-config.in + echo " ${x})" if test "`eval echo @'$'CPPFLAGS_${x}@`" != "@@"; then - echo " cppflags=\"\${cppflags} `eval echo '$'CPPFLAGS_${x}`\"" >> vlc-config.in + echo " cppflags=\"\${cppflags} `eval echo '$'CPPFLAGS_${x}`\"" fi if test "`eval echo @'$'CFLAGS_${x}@`" != "@@"; then - echo " cflags=\"\${cflags} `eval echo '$'CFLAGS_${x}`\"" >> vlc-config.in + echo " cflags=\"\${cflags} `eval echo '$'CFLAGS_${x}`\"" fi if test "`eval echo @'$'CXXFLAGS_${x}@`" != "@@"; then - echo " cxxflags=\"\${cxxflags} `eval echo '$'CXXFLAGS_${x}`\"" >> vlc-config.in + echo " cxxflags=\"\${cxxflags} `eval echo '$'CXXFLAGS_${x}`\"" if test "${x}" != "plugin" -a "${x}" != "builtin"; then - echo " linkage=\"c++\"" >> vlc-config.in + echo " linkage=\"c++\"" fi fi if test "`eval echo @'$'OBJCFLAGS_${x}@`" != "@@"; then - echo " objcflags=\"\${objcflags} `eval echo '$'OBJCFLAGS_${x}`\"" >> vlc-config.in + echo " objcflags=\"\${objcflags} `eval echo '$'OBJCFLAGS_${x}`\"" if test "${x}" != "plugin" -a "${x}" != "builtin"; then - echo " if test \"\${linkage}\" = \"c\"; then linkage=\"objc\"; fi" >> vlc-config.in + echo " if test \"\${linkage}\" = \"c\"; then linkage=\"objc\"; fi" fi fi if test "`eval echo @'$'LDFLAGS_${x}@`" != "@@"; then - echo " ldflags=\"\${ldflags} `eval echo '$'LDFLAGS_${x}`\"" >> vlc-config.in + echo " ldflags=\"\${ldflags} `eval echo '$'LDFLAGS_${x}`\"" fi if test "`eval echo @'$'LIBS_${x}@`" != "@@"; then - echo " libs=\"\${libs} `eval echo '$'LIBS_${x}`\"" >> vlc-config.in + echo " libs=\"\${libs} `eval echo '$'LIBS_${x}`\"" fi - echo " ;;" >> vlc-config.in - ] done + echo " ;;" + ] done >> vlc-config.in - dnl '/#@1@#/,/#@2@#/{/#@.@#/d;p}' won't work on OS X - sed -ne '/#@1@#/,/#@2@#/p' < "${srcdir}/vlc-config.in.in" \ - | sed -e '/#@.@#/d' >> vlc-config.in - - VLC_CONFIG_HELPER - - dnl '/#@2@#/,${/#@.@#/d;p}' won't work on OS X - sed -ne '/#@2@#/,$p' < "${srcdir}/vlc-config.in.in" \ + dnl '/#@1@#/,${/#@.@#/d;p}' won't work on OS X + sed -ne '/#@1@#/,$p' < "${srcdir}/vlc-config.in.in" \ | sed -e '/#@.@#/d' >> vlc-config.in ]) @@ -168,14 +163,3 @@ AC_DEFUN([VLC_LIBRARY_SUFFIX], [ AC_DEFINE_UNQUOTED(LIBEXT, "${LIBEXT}", [Dynamic object extension]) ]) -AC_DEFUN([VLC_SYMBOL_PREFIX], [ - AC_MSG_CHECKING(for prefix to exported symbols) - SYMPREF="" - case "${host_os}" in - darwin* | *mingw32* | *cygwin* | *wince* | *mingwce* | *pe*) - SYMPREF="_" - ;; - esac - AC_MSG_RESULT(${SYMPREF}) -]) -