]> git.sesse.net Git - vlc/blobdiff - vlc-config.in.in
Lock FFmpeg to r12920 for now to get us nice builds
[vlc] / vlc-config.in.in
index 73f97bb648000859255f024caef52eeba7190d9e..79e3e7ec4d64e5eec3cb247415360e88fac80adf 100644 (file)
@@ -151,8 +151,9 @@ while test $# -gt 0; do
   # Mangle plugin name, if applicable
   # This is just a convenience hack for modules/common.am
   tgt="$1"
+  tgt="${tgt##*/}"
   case "$tgt" in
-    *lib*_plugin_la-*.lo)
+    lib*_plugin_la-*.lo)
       tgt="${tgt#*lib}"
       tgt="${tgt%_plugin_la-*.lo}"
       ;;
@@ -246,23 +247,13 @@ done
 #  If a module was requested, use its name
 #
 if test -n "${module}"; then
-  cppflags="${cppflags} -DMODULE_NAME=${module} -DMODULE_NAME_IS_${module}"
+  cppflags="${cppflags} -DMODULE_NAME=${module} -DMODULE_NAME_IS_${module} -DMODULE_STRING=\"${module}\""
 fi
 
 #
 #  Output what we were asked
 #
 if test "${echo_linkage}" = yes; then
-  if test "${echo_plugin}" = yes; then
-    for module in `echo "${plugins}"`; do
-      register_flags "${module}"
-    done
-  fi
-  if test "${echo_builtin}" = yes; then
-    for module in `echo "${builtins}"`; do
-      register_flags "${module}"
-    done
-  fi
   echo "${linkage}"
   exit 0
 fi