X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=vlc-config.in.in;h=9c16886046128a4fed8a4a6860eb2e436f0ffe46;hb=f12e7ed0dd045316870f47c719df95e4e91ef2e0;hp=34945deb0d948f8f423f7bbda7b2342a3eacf837;hpb=3b16a551afc5b31cf8fe829154635dda46cf7aaf;p=vlc diff --git a/vlc-config.in.in b/vlc-config.in.in index 34945deb0d..9c16886046 100644 --- a/vlc-config.in.in +++ b/vlc-config.in.in @@ -10,8 +10,8 @@ gprof="@gprof@" cprof="@cprof@" optim="@optim@" -plugins="@PLUGINS@" -builtins="@BUILTINS@" +plugins="@PLUGINS@ " +builtins="@BUILTINS@ " cppflags="" cflags="" @@ -88,7 +88,6 @@ elif test "${TOP_BUILDDIR}" != ""; then fi includes="${includes}" cppflags="${includes}" -libs="-L@libdir@" module="" linkage="c" @@ -144,7 +143,7 @@ fi # while test $# -gt 0; do case "$1" in - -*=*) optarg=`echo "$1" | sed 's/-_a-zA-Z0-9*=//'` ;; + -*=*) optarg=`echo "$1" | sed 's/-[_a-zA-Z0-9\-]*=//'` ;; *) optarg= ;; esac @@ -211,7 +210,12 @@ while test $# -gt 0; do ;; external) echo_external=yes - ldflags="${ldflags} -lvlc" + if test "x${echo_pic}" = "xno" + then + ldflags="${ldflags} -lvlc" + else + ldflags="${ldflags} -lvlc_pic" + fi ;; *) module="$1" @@ -227,6 +231,8 @@ while test $# -gt 0; do shift done +libs="-L@libdir@" + # # If a module was requested, use its name # @@ -304,6 +310,17 @@ fi if test "${echo_objcflags}" = yes; then echo "${cppflags} ${objcflags}" fi + +# Libs +# There are 4 possibilities +# - We are a plugin or a builtin +# - We are building from the outside (external): +# - Give full libvlc linkflags + -lvlc(_pic) (in libdir) +# - Link with builtins in libdir +# - We are building something from the inside (builtin) +# - Link with builtins in place +# If you want something shared from the inside (binding), +# you need "builtin vlc pic" if test "${echo_libs}" = yes; then if test "${echo_builtin}" = yes; then for module in `echo "${builtins}"`; do