RVM | 16 Apr 2008 00:21
Picon

Error compiling mplayer r26450: "../etc/mplayer.ico" not found

I tried to compile r26450 using mingw. I got this error:

$ make
./version.sh `gcc -dumpversion`
windres -o osdep/mplayer-rc.o osdep/mplayer.rc
j:\mingw\bin\windres.exe: can't open icon file `../etc/mplayer.ico': No such 
file or directory
make: *** [osdep/mplayer-rc.o] Error 1

Although I could fix it with this modification:

Index: osdep/mplayer.rc
===================================================================
--- osdep/mplayer.rc    (revisi¢n: 26450)
+++ osdep/mplayer.rc    (copia de trabajo)
 <at>  <at>  -35,5 +35,5  <at>  <at> 
     }
 }

-IDI_ICON1 ICON DISCARDABLE  "../etc/mplayer.ico"
+IDI_ICON1 ICON DISCARDABLE  "etc/mplayer.ico"

--

-- 
RVM
Zuxy Meng | 16 Apr 2008 10:06
Picon

Re: Error compiling mplayer r26450: "../etc/mplayer.ico" not found

Hi,

2008/4/16, RVM <rvm3000 <at> ya.com>:
> I tried to compile r26450 using mingw. I got this error:
>
> $ make
> ./version.sh `gcc -dumpversion`
> windres -o osdep/mplayer-rc.o osdep/mplayer.rc
> j:\mingw\bin\windres.exe: can't open icon file `../etc/mplayer.ico': No such
> file or directory
> make: *** [osdep/mplayer-rc.o] Error 1
>
> Although I could fix it with this modification:
>
> Index: osdep/mplayer.rc
> ===================================================================
> --- osdep/mplayer.rc    (revisi¢n: 26450)
> +++ osdep/mplayer.rc    (copia de trabajo)
>  <at>  <at>  -35,5 +35,5  <at>  <at> 
>     }
>  }
>
> -IDI_ICON1 ICON DISCARDABLE  "../etc/mplayer.ico"
> +IDI_ICON1 ICON DISCARDABLE  "etc/mplayer.ico"

I couldn't reproduce the problem. Which version of make and windres
are u using? Mines are:

C:\MSYS\source\mplayer>make --version
GNU Make 3.81
(Continue reading)

Henry Garcia | 16 Apr 2008 19:07
Picon

Error compiling mplayer r26450: make version to use

>
>
> I couldn't reproduce the problem. Which version of make and windres
> are u using? Mines are:
>
> C:\MSYS\source\mplayer>make --version
> GNU Make 3.81
> Copyright (C) 2006  Free Software Foundation, Inc.
> This is free software; see the source for copying conditions.
> There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A
> PARTICULAR PURPOSE.
>

You should be using make 3.79. You can compile it yourself from source
(check ftp.gnu.org), or just use the one that comes with the Mingw-msys base
installer.

I just keep my make in /usr/local/bin so it comes first in the path search.

3.81 just doesn't compile mplayer.
Reimar Döffinger | 16 Apr 2008 19:18
Picon
Picon

Re: Error compiling mplayer r26450: make version to use

On Wed, Apr 16, 2008 at 01:07:26PM -0400, Henry Garcia wrote:
> >
> >
> > I couldn't reproduce the problem. Which version of make and windres
> > are u using? Mines are:
> >
> > C:\MSYS\source\mplayer>make --version
> > GNU Make 3.81
> > Copyright (C) 2006  Free Software Foundation, Inc.
> > This is free software; see the source for copying conditions.
> > There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A
> > PARTICULAR PURPOSE.
> >
> 
> You should be using make 3.79. You can compile it yourself from source
> (check ftp.gnu.org), or just use the one that comes with the Mingw-msys base
> installer.
> 
> I just keep my make in /usr/local/bin so it comes first in the path search.
> 
> 3.81 just doesn't compile mplayer.

I don't think 3.79 works, at least it is broken for ffmpeg. I think the
latest version for MinGW is 3.81-2 and that should work AFAICT.

Greetings,
Reimar Döffinger
RVM | 16 Apr 2008 23:05
Picon

Re: Error compiling mplayer r26450: "../etc/mplayer.ico" not found

El Miércoles, 16 de Abril de 2008 10:06, Zuxy Meng escribió:
> Hi,
>
> 2008/4/16, RVM <rvm3000 <at> ya.com>:
> > I tried to compile r26450 using mingw. I got this error:
> >
> > $ make
> > ./version.sh `gcc -dumpversion`
> > windres -o osdep/mplayer-rc.o osdep/mplayer.rc
> > j:\mingw\bin\windres.exe: can't open icon file `../etc/mplayer.ico': No
> > such file or directory
> > make: *** [osdep/mplayer-rc.o] Error 1
> >
> > Although I could fix it with this modification:
> >
> > Index: osdep/mplayer.rc
> > ===================================================================
> > --- osdep/mplayer.rc    (revisi¢n: 26450)
> > +++ osdep/mplayer.rc    (copia de trabajo)
> >  <at>  <at>  -35,5 +35,5  <at>  <at> 
> >     }
> >  }
> >
> > -IDI_ICON1 ICON DISCARDABLE  "../etc/mplayer.ico"
> > +IDI_ICON1 ICON DISCARDABLE  "etc/mplayer.ico"
>
> I couldn't reproduce the problem. Which version of make and windres
> are u using? Mines are:
>
> C:\MSYS\source\mplayer>make --version
(Continue reading)

Gianluigi Tiesi | 17 Apr 2008 07:01
Picon
Favicon

Re: Error compiling mplayer r26450: make version to use

On Wed, Apr 16, 2008 at 07:18:41PM +0200, Reimar D?ffinger wrote:
> On Wed, Apr 16, 2008 at 01:07:26PM -0400, Henry Garcia wrote:
> > >
> > >
> > > I couldn't reproduce the problem. Which version of make and windres
> > > are u using? Mines are:
> > >
> > > C:\MSYS\source\mplayer>make --version
> > > GNU Make 3.81
> > > Copyright (C) 2006  Free Software Foundation, Inc.
> > > This is free software; see the source for copying conditions.
> > > There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A
> > > PARTICULAR PURPOSE.
> > >
> > 
> > You should be using make 3.79. You can compile it yourself from source
> > (check ftp.gnu.org), or just use the one that comes with the Mingw-msys base
> > installer.
> > 
> > I just keep my make in /usr/local/bin so it comes first in the path search.
> > 
> > 3.81 just doesn't compile mplayer.
> 
> I don't think 3.79 works, at least it is broken for ffmpeg. I think the
> latest version for MinGW is 3.81-2 and that should work AFAICT.
> 

3.79 does not handle recursive makefile inclusion,
I'm not able to find a 3.80/81 that compiles ffmpeg
common problems are that make invokes the shell
(Continue reading)

David Abergel | 17 Apr 2008 20:47
Picon
Favicon

libdvdnavmini on cygwin

Hi all

I've been fruitlessly searching the internet for days to find a solution to this problem, so I thought I
would ask here for guidance.

I am trying to compile libdvdnav prior to installing mplayer on cygwin. However, when I run make, the
compile procedure fails as it is compiling libdvdnavmini because the linker can't find libdvdread. The
file config.mak suggests that configure specified the internal version of dvdread.

I'm currently at work, so can't post the details of the error messages until this evening, but does anyone
have any pointers which might help me?

Many thanks.

Dave

       
---------------------------------
 Yahoo! for Good helps you make a difference
Henry Garcia | 18 Apr 2008 02:13
Picon

etc/mplayer.ico location in osdep/mplayer.rc using make-3.79.1

>
>
> > >
> > > -IDI_ICON1 ICON DISCARDABLE  "../etc/mplayer.ico"
> > > +IDI_ICON1 ICON DISCARDABLE  "etc/mplayer.ico"
> >

That  appears to be the only problem here. windres.exe can't find the file
because it's not listed in the
correct directory.

> >
> > I don't think 3.79 works, at least it is broken for ffmpeg. I think the
> > latest version for MinGW is 3.81-2 and that should work AFAICT.
> >
>

MPlayer dev-SVN-r26456-3.4.5 (C) 2000-2008 MPlayer Team compiles on MingW
only with 3.79.1.
No problems with cleaning up, here.

Only able to compile with 3.79.1 here. 3.81 fails. Using my own 3.79.1 build
from ftp.gnu.org
Gianluigi Tiesi | 18 Apr 2008 06:53
Picon
Favicon

Re: svn 26161 mingw compile crash

On Wed, Mar 05, 2008 at 07:35:03PM +0100, Jirka Jakl wrote:
> Exactly the same problem (mingw): Source trunk at revision 26172.
> 

the latest commit for this file is:
r8288 | arpi | 2002-11-25 21:37:12 +0100 (Mon, 25 Nov 2002) | 3 lines

I think something is broken in your setup

my latest build is 26446 and it was ok
perhaps the title for this post is misleading, it's really not a crash

Regards

--

-- 
Gianluigi Tiesi <sherpya <at> netfarm.it>
EDP Project Leader
Netfarm S.r.l. - http://www.netfarm.it/
Free Software: http://oss.netfarm.it/
Henry Garcia | 18 Apr 2008 15:15
Picon

libdvdnavmini on cygwin (David Abergel)

>
>
>
>
> Hi all
>
> I've been fruitlessly searching the internet for days to find a solution
> to this problem, so I thought I would ask here for guidance.
>
> I am trying to compile libdvdnav prior to installing mplayer on cygwin.
> However, when I run make, the compile procedure fails as it is compiling
> libdvdnavmini because the linker can't find libdvdread. The file config.mak
> suggests that configure specified the internal version of dvdread.
>
Just tried it in cygwin. Using make 3.81 fails, using make-3.79.1 succeeds.
I assume your using the latest subversion from mplayer's site? That's what
you should be using.

You can check out this link for instructions:
http://www.mplayerhq.hu/DOCS/tech/dvdnav-howto.txt

You'll have error messages in the root directory, irregardless of the
version of make you're using.  Change into the src/ directory and run make
3.79.1  in that directory and make install in that directory.

>
> I'm currently at work, so can't post the details of the error messages
> until this evening, but does anyone have any pointers which might help me?

in mplayer you need to use the --disable-dvdread-internal option when
(Continue reading)


Gmane