Show
Ignore:
Timestamp:
05/15/08 18:28:38 (4 months ago)
Author:
Rémi Denis-Courmont <rem@videolan.org>
git-committer:
Rémi Denis-Courmont <rem@videolan.org> 1210868918 +0300
git-parent:

[edb7e412b96c160ddfa084bfec5f35c04476eb63]

git-author:
Rémi Denis-Courmont <rem@videolan.org> 1210868918 +0300
Message:

vlc-config: remove external mode. Use pkg-config.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • vlc-config.in.in

    r0669643 r7038879  
    229229    mozilla) 
    230230      ;; 
    231     external) 
    232       echo_external=yes 
    233       libs="${libs} -lvlc -lvlc-control" 
    234       ;; 
    235231    *) 
    236232      module="$tgt" 
     
    296292# There are 4 possibilities 
    297293#  - We are a plugin or a builtin 
    298 #  - We are building from the outside (external): 
    299 #   - Give full libvlc linkflags + -lvlc (in libdir) 
    300 #   - Link with builtins in libdir 
    301294#  - We are building something from the inside (builtin) 
    302295#       - Link with builtins in place 
     
    304297#  you need "builtin vlc" 
    305298if test "${echo_libs}" = yes; then 
    306   if test "${echo_external}" = yes; then 
    307     for module in `echo "${builtins}"`; do 
    308       libs="${libs} @libdir@/vlc/lib${module}.a" 
    309     done 
    310     for module in `echo "${builtins}"`; do 
    311       register_flags "${module}" 
    312     done 
    313     register_flags "vlc" 
    314   fi 
    315299  echo "${libs}" 
    316300fi