[MPlayer-cvslog] r21129 - trunk/configure
Torinthiel
torinthiel at megapolis.pl
Sun Nov 26 00:47:06 CET 2006
On Sat, Nov 25, 2006 at 05:21:49PM +0100, Diego Biurrun wrote:
>
> On Thu, Nov 23, 2006 at 12:17:43AM +0100, Torinthiel wrote:
> > On Wed, Nov 22, 2006 at 11:45:14PM +0100, Torinthiel wrote:
> > > On Wed, Nov 22, 2006 at 05:42:37PM +0100, Diego Biurrun wrote:
> > > > Try HEAD, maybe this is fixed.
> > >
> > > r21180, -L/usr/X11R6/lib still only in EXTRALIBS_MPLAYER, and MEncoder
> > > still won't link. Of course ./configure --disable-libdv helps, but
> > > that's not the solution ;)
> > > And I didn't forget to run make distclean.
> >
> > But I did forgot to read error messages. -ldv is still missing, but as
> > well libosd.a is not listed in dependencies, thus failing if you build
> > only mencoder, without mplayer before.
>
> Huh? libosd.a is in COMMON_LIBS ...
Traced it. Yes, it is. But there's no dependency for libosd.a in
Makefile. It worked with mplayer because the rule for libvo was also
wrong, just make -C libvo, which caused both libraries to be built, not
just libvo.a. Patch attached. OK to apply?
Torinthiel
--
Waclaw "Torinthiel" Schiller GG#: 3073512
torinthiel(at)megapolis(dot)pl
gpg: 0906A2CE fpr: EE3E DFB4 C4D6 E22E 8999 D714 7CEB CDDC 0906 A2CE
"No classmates may be used during this examination"
-------------- next part --------------
Index: Makefile
===================================================================
--- Makefile (revision 21197)
+++ Makefile (working copy)
@@ -230,8 +230,11 @@
$(MAKE) -C libmpeg2
libvo/libvo.a:
- $(MAKE) -C libvo
+ $(MAKE) -C libvo libvo.a
+libvo/libosd.a:
+ $(MAKE) -C libvo libosd.a
+
libao2/libao2.a:
$(MAKE) -C libao2
-------------- next part --------------
A non-text attachment was scrubbed...
Name: not available
Type: application/pgp-signature
Size: 189 bytes
Desc: not available
URL: <http://lists.mplayerhq.hu/pipermail/mplayer-cvslog/attachments/20061126/a2bdc395/attachment.pgp>
More information about the MPlayer-cvslog
mailing list