Changeset 2e743e0019e0876e5aa70186187fbd34350f8ca5
- Timestamp:
- 01/07/03 14:50:56
(5 years ago)
- Author:
- Sam Hocevar <sam@videolan.org>
- git-committer:
- Sam Hocevar <sam@videolan.org> 1057063856 +0000
- git-parent:
[d9010f221fa9a2d88ffca0a476e34dbac11bdc84]
- git-author:
- Sam Hocevar <sam@videolan.org> 1057063856 +0000
- Message:
- Makefile.am:
+ Forward AM_MAKEFLAGS through recursive makefiles.
+ Removed the plugins and builtins rules. This causes libintl to be built
before the plugins.
- bootstrap:
+ Enabled recursive builds of plugins and builtins.
- vlc-config.in.in:
+ Fixed a typo.
- debian/changelog:
+ Next upload will fix bug #199427.
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| r66adf45 |
r2e743e0 |
|
| 36 | 36 | # because old versions of automake don't support them in configure.ac. |
|---|
| 37 | 37 | AUTOMAKE_OPTIONS = dist-bzip2 subdir-objects |
|---|
| 38 | | |
|---|
| 39 | | # Don't forget to build plugins |
|---|
| 40 | | all: plugins |
|---|
| 41 | 38 | |
|---|
| 42 | 39 | ############################################################################### |
|---|
| … | … | |
| 128 | 125 | |
|---|
| 129 | 126 | intl/libintl.a: FORCE |
|---|
| 130 | | cd $(top_builddir)/intl && $(MAKE) |
|---|
| | 127 | cd $(top_builddir)/intl && $(MAKE) $(AM_MAKEFLAGS) |
|---|
| 131 | 128 | |
|---|
| 132 | 129 | if BUILD_INTL |
|---|
| … | … | |
| 351 | 348 | # We use DEPENDENCIES_vlc instead of vlc_DEPENDENCIES because of an |
|---|
| 352 | 349 | # old automake-1.5 bug (automake/279). |
|---|
| 353 | | DEPENDENCIES_vlc = lib/libvlc.a $(DATA_win32_rc) $(LIB_intl) builtins |
|---|
| | 350 | DEPENDENCIES_vlc = lib/libvlc.a $(DATA_win32_rc) $(LIB_intl) |
|---|
| 354 | 351 | |
|---|
| 355 | 352 | vlc$(EXEEXT): $(vlc_OBJECTS) $(DEPENDENCIES_vlc) |
|---|
| … | … | |
| 389 | 386 | vlc_app_DATA = VLC.app |
|---|
| 390 | 387 | vlc_appdir = $(bindir) |
|---|
| 391 | | VLC.app: vlc plugins |
|---|
| | 388 | VLC.app: vlc |
|---|
| 392 | 389 | rm -Rf VLC.app |
|---|
| 393 | 390 | cd $(srcdir)/extras/MacOSX && pbxbuild -target vlc | grep -v '^\([ \t]\|$$\)' |
|---|
| … | … | |
| 424 | 421 | |
|---|
| 425 | 422 | ############################################################################### |
|---|
| 426 | | # Building modules |
|---|
| 427 | | ############################################################################### |
|---|
| 428 | | plugins: FORCE |
|---|
| 429 | | $(MAKE) `$(VLC_CONFIG) --target plugin` FORCE |
|---|
| 430 | | |
|---|
| 431 | | builtins: FORCE |
|---|
| 432 | | $(MAKE) `$(VLC_CONFIG) --target builtin` FORCE |
|---|
| 433 | | |
|---|
| 434 | | builtins_pic: FORCE |
|---|
| 435 | | $(MAKE) `$(VLC_CONFIG) --target builtin pic` FORCE |
|---|
| 436 | | |
|---|
| 437 | | ############################################################################### |
|---|
| 438 | 423 | # Building architecture-specific binary packages |
|---|
| 439 | 424 | ############################################################################### |
|---|
| r1f4f223 |
r2e743e0 |
|
| 2 | 2 | |
|---|
| 3 | 3 | ## bootstrap file for the VLC media player |
|---|
| 4 | | ## $Id: bootstrap,v 1.53 2003/06/27 23:31:24 sam Exp $ |
|---|
| | 4 | ## $Id: bootstrap,v 1.54 2003/07/01 12:50:56 sam Exp $ |
|---|
| 5 | 5 | ## |
|---|
| 6 | 6 | ## Authors: Sam Hocevar <sam@zoy.org> |
|---|
| … | … | |
| 133 | 133 | # The ${mod} plugin |
|---|
| 134 | 134 | |
|---|
| | 135 | all: all-${mod} |
|---|
| | 136 | |
|---|
| | 137 | all-${mod}: |
|---|
| | 138 | if \$(VLC_CONFIG) --target plugin | grep -q "${dir}/lib${mod}_plugin"; then \$(MAKE) \$(AM_MAKEFLAGS) lib${mod}_plugin\$(LIBEXT); fi |
|---|
| | 139 | if \$(VLC_CONFIG) --target builtin | grep -q "${dir}/lib${mod}\\.a"; then \$(MAKE) \$(AM_MAKEFLAGS) lib${mod}.a; fi |
|---|
| | 140 | if BUILD_MOZILLA |
|---|
| | 141 | if \$(VLC_CONFIG) --target builtin pic | grep -q "${dir}/lib${mod}_pic\\.a"; then \$(MAKE) \$(AM_MAKEFLAGS) lib${mod}_pic.a; fi |
|---|
| | 142 | endif |
|---|
| | 143 | |
|---|
| 135 | 144 | if UNTRUE |
|---|
| 136 | 145 | L${count}p = lib${mod}_plugin.a |
|---|
| r86ed538 |
r2e743e0 |
|
| 4 | 4 | + Fixed compilation for Alpha. |
|---|
| 5 | 5 | * debian/rules: |
|---|
| 6 | | + Enabled the video4linux input plugin. |
|---|
| | 6 | + Enabled the video4linux input plugin (Closes: #199427). |
|---|
| 7 | 7 | |
|---|
| 8 | 8 | -- Sam Hocevar (Debian packages) <sam+deb@zoy.org> Sun, 29 Jun 2003 21:12:10 +0200 |
|---|
| r360d2a9 |
r2e743e0 |
|
| 3 | 3 | ***************************************************************************** |
|---|
| 4 | 4 | * Copyright (C) 2001 VideoLAN |
|---|
| 5 | | * $Id: modules_plugin.h.in,v 1.9 2003/02/10 20:11:14 sam Exp $ |
|---|
| | 5 | * $Id: modules_plugin.h.in,v 1.10 2003/07/01 12:50:56 sam Exp $ |
|---|
| 6 | 6 | * |
|---|
| 7 | 7 | * Authors: Samuel Hocevar <sam@zoy.org> |
|---|
| … | … | |
| 59 | 59 | * causes dlopen() to segfault if libstdc++ is not loaded in the caller, |
|---|
| 60 | 60 | * so we just load libstdc++. Bwahahaha! ph34r! -- Sam. */ |
|---|
| | 61 | /* Update: FYI, this is Debian bug #180505, and seems to be fixed. */ |
|---|
| 61 | 62 | if( !b_kde && !strstr( psz_filename, "kde" ) ) |
|---|
| 62 | 63 | { |
|---|
| r1f4f223 |
r2e743e0 |
|
| 14 | 14 | builtins="@BUILTINS@" |
|---|
| 15 | 15 | |
|---|
| 16 | | cppflags="${cppflags} -DDEBUG" |
|---|
| 17 | | cflags="${cflags} -g" |
|---|
| 18 | | cxxflags="${cxxflags} -g" |
|---|
| 19 | | objcflags="${objcflags} -g" |
|---|
| 20 | | ldflags="${objcflags} -g" |
|---|
| | 16 | cppflags="" |
|---|
| | 17 | cflags="" |
|---|
| | 18 | cxxflags="" |
|---|
| | 19 | objcflags="" |
|---|
| | 20 | ldflags="" |
|---|
| 21 | 21 | |
|---|
| 22 | 22 | cflags_tuning="@CFLAGS_TUNING@" |
|---|
| … | … | |
| 106 | 106 | cxxflags="${cxxflags} -g" |
|---|
| 107 | 107 | objcflags="${objcflags} -g" |
|---|
| 108 | | ldflags="${objcflags} -g" |
|---|
| | 108 | ldflags="${ldflags} -g" |
|---|
| 109 | 109 | fi |
|---|
| 110 | 110 | if [ "${cprof}" = yes ]; then |
|---|