Changeset 703887976e34ccdfa64d31079973bfb97fc93db1
- Timestamp:
- 15/05/08 18:28:38
(5 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
| r0669643 |
r7038879 |
|
| 229 | 229 | mozilla) |
|---|
| 230 | 230 | ;; |
|---|
| 231 | | external) |
|---|
| 232 | | echo_external=yes |
|---|
| 233 | | libs="${libs} -lvlc -lvlc-control" |
|---|
| 234 | | ;; |
|---|
| 235 | 231 | *) |
|---|
| 236 | 232 | module="$tgt" |
|---|
| … | … | |
| 296 | 292 | # There are 4 possibilities |
|---|
| 297 | 293 | # - 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 |
|---|
| 301 | 294 | # - We are building something from the inside (builtin) |
|---|
| 302 | 295 | # - Link with builtins in place |
|---|
| … | … | |
| 304 | 297 | # you need "builtin vlc" |
|---|
| 305 | 298 | if 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 |
|---|
| 315 | 299 | echo "${libs}" |
|---|
| 316 | 300 | fi |
|---|