Hi!

I had the same problem a few days ago. I solved it by changing the configure 
script and replaced the lines :

echo $ECHO_N "checking whether to use --tag=CXX with libtool (MIGHT CAUSE 
PROBLEMS!)...... $ECHO_C" >&6
 TAGCXX="--tag=CXX"
 # find a better way to detect this thing
 # fill with the version number of libtool which can't handle --tag!!!
 libtool --version | grep "1.3 " >/dev/null && TAGCXX=
 if test -z "$TAGCXX" ; then    

by:

echo $ECHO_N "checking whether to use --tag=CXX with libtool (MIGHT CAUSE 
PROBLEMS!)...... $ECHO_C" >&6
 TAGCXX="--tag=CXX"
 # find a better way to detect this thing
 # fill with the version number of libtool which can't handle --tag!!!
 libtool --version | grep "1.3" >/dev/null && TAGCXX=
 if test -z "$TAGCXX" ; then 

(changed from "1.3 " to "1.3" in the grep command)

It compiled afterwards (without using the flag --tag=CXX for libtool)

Unfortunately, it doesn't seem to run properly on my computer. 
I can run the program aviplay, I can seek a random position in a video 
sequence, but it doesn't play anything (the time counter changes, but not the 
image). 

Does anyone have a solution to this problem ? 
I think it might be linked to the problem I have with qtvidcap and 
qtrecompress that freeze when I try to use them. It seemed to be a thread 
problem. Have the threads management changed  the last month in aviplay ?

Cheers,
Franck

On Monday 13 August 2001 17:42, ULISSES FURQUIM FREIRE DA SILVA wrote:
> On Fri, 10 Aug 2001, Eugene Kuznetsov wrote:
> > Hi!
> > When did you check out the sources?
> > What does 'libtool --version' tell you?
>
> I checked out the sources on 10/08. The output of 'libtool --version' is:
>
> [root@top2 /root]# libtool --version
> ltmain.sh (GNU libtool) 1.3.5 (1.385.2.206 2000/05/27 11:12:27)
> [root@top2 /root]#
>
> Any idea?
>
> -- Ulisses
>
> > UFFDS> I have a RH 7.1 system with SDL 1.1.7 changed to SDL 1.1.6-1 and I
> > already UFFDS> installed the Win32 DLLs, but I'm having troubles on
> > compiling avifile UFFDS> 0.6.0. ./configure works fine, but make ends up
> > with the following error:
> >
> > UFFDS> Making all in libavcodec
> > UFFDS> make[3]: Entering directory
> > UFFDS> `/usr/local/avifile-0.6.0/plugins/libffmpeg/libavcodec'
> > UFFDS> Making all in i386
> > UFFDS> make[4]: Entering directory
> > UFFDS> `/usr/local/avifile-0.6.0/plugins/libffmpeg/libavcodec/i386'
> > UFFDS> /bin/sh ../../../../libtool --mode=compile --tag=CXX sh
> > UFFDS> ../../../../strip_fPIC.sh nasm -f elf fdct_mmx.s
> > UFFDS> libtool: unrecognized option `--tag=CXX'
> > UFFDS> Try `libtool --help' for more information.
> > UFFDS> make[4]: *** [fdct_mmx.lo] Error 1
> > UFFDS> make[4]: Leaving directory
> > UFFDS> `/usr/local/avifile-0.6.0/plugins/libffmpeg/libavcodec/i386'
> > UFFDS> make[3]: *** [all-recursive] Error 1
> > UFFDS> make[3]: Leaving directory
> > UFFDS> `/usr/local/avifile-0.6.0/plugins/libffmpeg/libavcodec'
> > UFFDS> make[2]: *** [all-recursive] Error 1
> > UFFDS> make[2]: Leaving directory
> > `/usr/local/avifile-0.6.0/plugins/libffmpeg' UFFDS> make[1]: ***
> > [all-recursive] Error 1
> > UFFDS> make[1]: Leaving directory `/usr/local/avifile-0.6.0/plugins'
> > UFFDS> make: *** [all-recursive] Error 1
> >
> > UFFDS> Please, can anybody help me?
> >
> > UFFDS> -- Ulisses
>
> _______________________________________________
> Avifile mailing list
> [EMAIL PROTECTED]
> http://prak.org/mailman/listinfo/avifile

-- 
--
=========================================
Franck BETTINGER
PhD student 
Imaging Science and Biomedical Engineering
University of Manchester
[EMAIL PROTECTED]
==========================================

_______________________________________________
Avifile mailing list
[EMAIL PROTECTED]
http://prak.org/mailman/listinfo/avifile

Reply via email to