Re: [CinCVS] problem running autogen.sh on latest cvs

2006-04-08 Thread Scott C. Frase
My skills with building from source are pretty limited.  So far, I've
run:
- I did delete autom4te.cache
- I ran aclocal -I m4 (to eliminate my "possibly undefined macro"
errors)
- however, I see that the aclocal.m4 is still small in comparison
with /usr/share/aclocal/libtool.m4
- autoreconf -i --force gives me similar errors to the ones I started
with:
[EMAIL PROTECTED] hvirtual]# autoreconf -i --force
Copying file mkinstalldirs
cinelerra/data/Makefile.am:1: library used but `RANLIB' is undefined
cinelerra/data/Makefile.am:1:
cinelerra/data/Makefile.am:1: The usual way to define `RANLIB' is to add
`AC_PROG_RANLIB'
cinelerra/data/Makefile.am:1: to `configure.in' and run `autoconf'
again.
plugins/defaulttheme/data/Makefile.am:1: library used but `RANLIB' is
undefined
plugins/defaulttheme/data/Makefile.am:1:
plugins/defaulttheme/data/Makefile.am:1: The usual way to define
`RANLIB' is to add `AC_PROG_RANLIB'
plugins/defaulttheme/data/Makefile.am:1: to `configure.in' and run
`autoconf' again.
plugins/suv/data/Makefile.am:1: library used but `RANLIB' is undefined
plugins/suv/data/Makefile.am:1:
plugins/suv/data/Makefile.am:1: The usual way to define `RANLIB' is to
add `AC_PROG_RANLIB'
plugins/suv/data/Makefile.am:1: to `configure.in' and run `autoconf'
again.
quicktime/ffmpeg/libavcodec/Makefile.am:13: Libtool library used but
`LIBTOOL' is undefined
quicktime/ffmpeg/libavcodec/Makefile.am:13:
quicktime/ffmpeg/libavcodec/Makefile.am:13: The usual way to define
`LIBTOOL' is to add `AC_PROG_LIBTOOL'
quicktime/ffmpeg/libavcodec/Makefile.am:13: to `configure.in' and run
`aclocal' and `autoconf' again.
quicktime/ffmpeg/libavcodec/i386/Makefile.am:1: Libtool library used but
`LIBTOOL' is undefined
quicktime/ffmpeg/libavcodec/i386/Makefile.am:1:
quicktime/ffmpeg/libavcodec/i386/Makefile.am:1: The usual way to define
`LIBTOOL' is to add `AC_PROG_LIBTOOL'
quicktime/ffmpeg/libavcodec/i386/Makefile.am:1: to `configure.in' and
run `aclocal' and `autoconf' again.
autoreconf: automake failed with exit status: 1

Finally, running the configure that is created from the last command
still gives me these errors on all the dependent libraries:
./configure: line 7666: syntax error near unexpected token `MJPEG,'
./configure: line 7666: `PKG_CHECK_MODULES(MJPEG,
mjpegtools,mjpegtools=yes,:)'

I will continue to plug away.  Perhaps someone may have another
suggestion.
thanks,
scott


On Sat, 2006-04-08 at 22:36 +0200, Johannes Sixt wrote:
> On Saturday 08 April 2006 21:55, Scott C. Frase wrote:
> > Hi Hannes,
> > Here is what I have:
> > [EMAIL PROTECTED] hvirtual]# rpm -qa | grep libtool
> > libtool-debuginfo-1.5.16.multilib2-3
> > libtool-libs13-1.3.5-10
> > libtool-1.5.16.multilib2-3
> > libtool-ltdl-1.5.16.multilib2-3
> >
> > [EMAIL PROTECTED] hvirtual]# libtool --version
> > ltmain.sh (GNU libtool) 1.5.16 (1.1220.2.235 2005/04/25 18:13:26)
> >
> > [EMAIL PROTECTED] hvirtual]# ll /usr/share/aclocal/libtool.m4
> > -rw-r--r--  1 root root 219425 Nov 22
> > 08:18 /usr/share/aclocal/libtool.m4
> > [EMAIL PROTECTED] hvirtual]# ll aclocal.m4
> > -rw-r--r--  1 root root 38761 Apr  8 11:05 aclocal.m4
> 
> Your aclocal.m4 is much too short. It must be a superset 
> of /usr/share/aclocal/libtool.m4. But I cannot tell why this is so. I hope 
> you can debug it yourself. Start with the aclocal command: It looks into 
> configure.in which macros are required and gathers them from the various 
> sources, among which are /usr/share/aclocal and the m4 subdirectory in 
> cinelerra. Also remove the autom4ate.cache directory.
> 
> -- Hannes


___
Cinelerra mailing list
Cinelerra@skolelinux.no
https://init.linpro.no/mailman/skolelinux.no/listinfo/cinelerra


Re: [CinCVS] problem running autogen.sh on latest cvs

2006-04-08 Thread Johannes Sixt
On Saturday 08 April 2006 21:55, Scott C. Frase wrote:
> Hi Hannes,
> Here is what I have:
> [EMAIL PROTECTED] hvirtual]# rpm -qa | grep libtool
> libtool-debuginfo-1.5.16.multilib2-3
> libtool-libs13-1.3.5-10
> libtool-1.5.16.multilib2-3
> libtool-ltdl-1.5.16.multilib2-3
>
> [EMAIL PROTECTED] hvirtual]# libtool --version
> ltmain.sh (GNU libtool) 1.5.16 (1.1220.2.235 2005/04/25 18:13:26)
>
> [EMAIL PROTECTED] hvirtual]# ll /usr/share/aclocal/libtool.m4
> -rw-r--r--  1 root root 219425 Nov 22
> 08:18 /usr/share/aclocal/libtool.m4
> [EMAIL PROTECTED] hvirtual]# ll aclocal.m4
> -rw-r--r--  1 root root 38761 Apr  8 11:05 aclocal.m4

Your aclocal.m4 is much too short. It must be a superset 
of /usr/share/aclocal/libtool.m4. But I cannot tell why this is so. I hope 
you can debug it yourself. Start with the aclocal command: It looks into 
configure.in which macros are required and gathers them from the various 
sources, among which are /usr/share/aclocal and the m4 subdirectory in 
cinelerra. Also remove the autom4ate.cache directory.

-- Hannes

___
Cinelerra mailing list
Cinelerra@skolelinux.no
https://init.linpro.no/mailman/skolelinux.no/listinfo/cinelerra


Re: [CinCVS] problem running autogen.sh on latest cvs

2006-04-08 Thread Scott C. Frase
Hi Hannes,
Here is what I have:
[EMAIL PROTECTED] hvirtual]# rpm -qa | grep libtool
libtool-debuginfo-1.5.16.multilib2-3
libtool-libs13-1.3.5-10
libtool-1.5.16.multilib2-3
libtool-ltdl-1.5.16.multilib2-3

[EMAIL PROTECTED] hvirtual]# libtool --version
ltmain.sh (GNU libtool) 1.5.16 (1.1220.2.235 2005/04/25 18:13:26)

[EMAIL PROTECTED] hvirtual]# ll /usr/share/aclocal/libtool.m4
-rw-r--r--  1 root root 219425 Nov 22
08:18 /usr/share/aclocal/libtool.m4
[EMAIL PROTECTED] hvirtual]# ll aclocal.m4
-rw-r--r--  1 root root 38761 Apr  8 11:05 aclocal.m4

scott

On Sat, 2006-04-08 at 21:27 +0200, Johannes Sixt wrote:
> On Saturday 08 April 2006 17:07, Scott C. Frase wrote:
> > Thanks Andraz.  Here is the output I get now:
> >
> > [EMAIL PROTECTED] hvirtual]# autoreconf -i --force
> > Copying file ABOUT-NLS
> > Copying file config.rpath
> > Copying file mkinstalldirs
> > Copying file po/Makefile.in.in
> > configure.in:17: error: possibly undefined macro: AC_ENABLE_SHARED
> >   If this token and others are legitimate, please use
> > m4_pattern_allow.
> >   See the Autoconf documentation.
> > configure.in:18: error: possibly undefined macro: AC_DISABLE_STATIC
> > configure.in:19: error: possibly undefined macro: AC_PROG_LIBTOOL
> > autoreconf: /usr/bin/autoconf failed with exit status: 1
> 
> This is strange. Do you have libtool installed? Which version?
> 
> These errors occur if the macro definitions cannot be found in the system. 
> These particular macros come with libtool (in /usr/share/aclocal/libtool.m4 
> on my system), and aclocal should copy the definition into aclocal.m4.
> 
> (And I appologize that I gave you the wrong command - I haven't tried it 
> first.)
> 
> -- Hannes


___
Cinelerra mailing list
Cinelerra@skolelinux.no
https://init.linpro.no/mailman/skolelinux.no/listinfo/cinelerra


Re: [CinCVS] problem running autogen.sh on latest cvs

2006-04-08 Thread Johannes Sixt
On Saturday 08 April 2006 17:07, Scott C. Frase wrote:
> Thanks Andraz.  Here is the output I get now:
>
> [EMAIL PROTECTED] hvirtual]# autoreconf -i --force
> Copying file ABOUT-NLS
> Copying file config.rpath
> Copying file mkinstalldirs
> Copying file po/Makefile.in.in
> configure.in:17: error: possibly undefined macro: AC_ENABLE_SHARED
>   If this token and others are legitimate, please use
> m4_pattern_allow.
>   See the Autoconf documentation.
> configure.in:18: error: possibly undefined macro: AC_DISABLE_STATIC
> configure.in:19: error: possibly undefined macro: AC_PROG_LIBTOOL
> autoreconf: /usr/bin/autoconf failed with exit status: 1

This is strange. Do you have libtool installed? Which version?

These errors occur if the macro definitions cannot be found in the system. 
These particular macros come with libtool (in /usr/share/aclocal/libtool.m4 
on my system), and aclocal should copy the definition into aclocal.m4.

(And I appologize that I gave you the wrong command - I haven't tried it 
first.)

-- Hannes

___
Cinelerra mailing list
Cinelerra@skolelinux.no
https://init.linpro.no/mailman/skolelinux.no/listinfo/cinelerra


Re: [CinCVS] problem running autogen.sh on latest cvs

2006-04-08 Thread Scott C. Frase
Guys,
Still trying to work this out.  When I do "autoreconf -i --force", I do
get a "configure" file.  However, when I run configure, I get a similar
error as below for each required package:

[EMAIL PROTECTED] hvirtual]# ./configure
..
checking for ESD - version >= 0.2.7... yes
./configure: line 7666: syntax error near unexpected token `MJPEG,'
./configure: line 7666: `PKG_CHECK_MODULES(MJPEG,
mjpegtools,mjpegtools=yes,:)'

I remmed them out, but of course, at the end of configure, configure
tells me that I'm missing a bunch of dependencies.  I checked and in
reality, I do have them all installed:
Summary of mandatory components:
  libogg  missing
  libvorbis   missing
  libvorbisencmissing
  libvorbisfile   missing
  libtheora   missing
  OpenEXR missing
  libdv   missing
  libpng  missing
  mjpegtools  missing
  libfftw3 libraries  missing
  libfftw3 headersmissing
  libsndfile librariesmissing
  libsndfile headers  missing

I imagine that the command I used to generate the configure file
("autoreconf -i --force") is bypassing those three essential constants
I saw in my last email.

Anyone have any idea on how I may solve this and get a working
"configure" file?

scott

On Sat, 2006-04-08 at 14:01 -0400, Scott C. Frase wrote:
> Andraz,
> Just to clarify, I do have a "configure" file now.  It looks like I'm
> missing dependencies, but I'll work through that.  Does it matter that I
> see these messages during the "configure":
> ./configure: line 5193: AC_ENABLE_SHARED: command not found
> ./configure: line 5194: AC_DISABLE_STATIC: command not found
> ./configure: line 5195: AC_PROG_LIBTOOL: command not found
> 
> scott
> 
> On Sat, 2006-04-08 at 11:06 -0400, Scott C. Frase wrote:
> > Thanks Andraz.  Here is what I get now:
> > 
> > On Sat, 2006-04-08 at 16:51 +0200, Andraz Tori wrote:
> > > it's "autoreconf"
> > > 
> > > you run "autoreconf -i --force"
> > > 
> > > bye
> > > andraz
> > > 
> > > On sob, 2006-04-08 at 10:44 -0400, Scott C. Frase wrote:
> > > > Graham - thanks for tip on not running as root..just lazy these days! :)
> > > > 
> > > > Johannes - I tried running "autoreconfig", but my system does not have
> > > > that executable (I get "command not found").  I ran "yum install
> > > > autoreconfig" or same with * on end and couldn't find it in any of my
> > > > standard repositories (dag/dries/livna/etc).  Do you know where I can
> > > > get it?
> > > > 
> > > > scott
> > > > 
> > > > On Sat, 2006-04-08 at 11:00 +0200, Johannes Sixt wrote:
> > > > > On Saturday 08 April 2006 08:48, Scott C. Frase wrote:
> > > > > > Guys,
> > > > > > I've checked out the latest code and run autogen.sh and get the
> > > > > > following message:
> > > > > >
> > > > > > [EMAIL PROTECTED] hvirtual]# ./autogen.sh
> > > > > > User defined paths to the preferred autoconf and automake versions.
> > > > > > Read the script if you would like to modify them.
> > > > > > AUTOMAKE=automake
> > > > > > ACLOCAL=aclocal
> > > > > > AUTOCONF=autoconf
> > > > > > AUTOHEADER=autoheader
> > > > > > Now building the ./configure script...
> > > > > > checking for automake version... 1.9
> > > > > > checking for aclocal version... 1.9
> > > > > > Running aclocal -I m4 ...
> > > > > > Running libtoolize ...
> > > > > > You should update your `aclocal.m4' by running aclocal.
> > > > > > Running autoheader ...
> > > > > > Running automake ...
> > > > > > configure.in: installing `./install-sh'
> > > > > > configure.in: installing `./missing'
> > > > > > cinelerra/data/Makefile.am:1: library used but `RANLIB' is undefined
> > > > > > cinelerra/data/Makefile.am:1:
> > > > > > cinelerra/data/Makefile.am:1: The usual way to define `RANLIB' is 
> > > > > > to add
> > > > > > `AC_PROG_RANLIB'
> > > > > > cinelerra/data/Makefile.am:1: to `configure.in' and run `autoconf'
> > > > > > again.
> > > > > > plugins/defaulttheme/data/Makefile.am:1: library used but `RANLIB' 
> > > > > > is
> > > > > > undefined
> > > > > > plugins/defaulttheme/data/Makefile.am:1:
> > > > > > plugins/defaulttheme/data/Makefile.am:1: The usual way to define
> > > > > > `RANLIB' is to add `AC_PROG_RANLIB'
> > > > > > plugins/defaulttheme/data/Makefile.am:1: to `configure.in' and run
> > > > > > `autoconf' again.
> > > > > > plugins/suv/data/Makefile.am:1: library used but `RANLIB' is 
> > > > > > undefined
> > > > > > plugins/suv/data/Makefile.am:1:
> > > > > > plugins/suv/data/Makefile.am:1: The usual way to define `RANLIB' is 
> > > > > > to
> > > > > > add `AC_PROG_RANLIB'
> > > > > > plugins/suv/data/Makefile.am:1: to `configure.in' and run `autoconf'
> > > > > > again.
> > > > > > quicktime/ffmpeg/libavcodec/Makefile.am:13: Libtool library used but
> > > > > > `LIBTOOL' is undefined
> > > > > > quicktime/ffmpeg/libavcodec/Makefile.am:13:
> > > > > > quicktime/ffmpeg/libavcodec/Makefile.am:13: The usual way to define
> > > > 

Re: [CinCVS] problem running autogen.sh on latest cvs

2006-04-08 Thread Scott C. Frase
Andraz,
Just to clarify, I do have a "configure" file now.  It looks like I'm
missing dependencies, but I'll work through that.  Does it matter that I
see these messages during the "configure":
./configure: line 5193: AC_ENABLE_SHARED: command not found
./configure: line 5194: AC_DISABLE_STATIC: command not found
./configure: line 5195: AC_PROG_LIBTOOL: command not found

scott

On Sat, 2006-04-08 at 11:06 -0400, Scott C. Frase wrote:
> Thanks Andraz.  Here is what I get now:
> 
> On Sat, 2006-04-08 at 16:51 +0200, Andraz Tori wrote:
> > it's "autoreconf"
> > 
> > you run "autoreconf -i --force"
> > 
> > bye
> > andraz
> > 
> > On sob, 2006-04-08 at 10:44 -0400, Scott C. Frase wrote:
> > > Graham - thanks for tip on not running as root..just lazy these days! :)
> > > 
> > > Johannes - I tried running "autoreconfig", but my system does not have
> > > that executable (I get "command not found").  I ran "yum install
> > > autoreconfig" or same with * on end and couldn't find it in any of my
> > > standard repositories (dag/dries/livna/etc).  Do you know where I can
> > > get it?
> > > 
> > > scott
> > > 
> > > On Sat, 2006-04-08 at 11:00 +0200, Johannes Sixt wrote:
> > > > On Saturday 08 April 2006 08:48, Scott C. Frase wrote:
> > > > > Guys,
> > > > > I've checked out the latest code and run autogen.sh and get the
> > > > > following message:
> > > > >
> > > > > [EMAIL PROTECTED] hvirtual]# ./autogen.sh
> > > > > User defined paths to the preferred autoconf and automake versions.
> > > > > Read the script if you would like to modify them.
> > > > > AUTOMAKE=automake
> > > > > ACLOCAL=aclocal
> > > > > AUTOCONF=autoconf
> > > > > AUTOHEADER=autoheader
> > > > > Now building the ./configure script...
> > > > > checking for automake version... 1.9
> > > > > checking for aclocal version... 1.9
> > > > > Running aclocal -I m4 ...
> > > > > Running libtoolize ...
> > > > > You should update your `aclocal.m4' by running aclocal.
> > > > > Running autoheader ...
> > > > > Running automake ...
> > > > > configure.in: installing `./install-sh'
> > > > > configure.in: installing `./missing'
> > > > > cinelerra/data/Makefile.am:1: library used but `RANLIB' is undefined
> > > > > cinelerra/data/Makefile.am:1:
> > > > > cinelerra/data/Makefile.am:1: The usual way to define `RANLIB' is to 
> > > > > add
> > > > > `AC_PROG_RANLIB'
> > > > > cinelerra/data/Makefile.am:1: to `configure.in' and run `autoconf'
> > > > > again.
> > > > > plugins/defaulttheme/data/Makefile.am:1: library used but `RANLIB' is
> > > > > undefined
> > > > > plugins/defaulttheme/data/Makefile.am:1:
> > > > > plugins/defaulttheme/data/Makefile.am:1: The usual way to define
> > > > > `RANLIB' is to add `AC_PROG_RANLIB'
> > > > > plugins/defaulttheme/data/Makefile.am:1: to `configure.in' and run
> > > > > `autoconf' again.
> > > > > plugins/suv/data/Makefile.am:1: library used but `RANLIB' is undefined
> > > > > plugins/suv/data/Makefile.am:1:
> > > > > plugins/suv/data/Makefile.am:1: The usual way to define `RANLIB' is to
> > > > > add `AC_PROG_RANLIB'
> > > > > plugins/suv/data/Makefile.am:1: to `configure.in' and run `autoconf'
> > > > > again.
> > > > > quicktime/ffmpeg/libavcodec/Makefile.am:13: Libtool library used but
> > > > > `LIBTOOL' is undefined
> > > > > quicktime/ffmpeg/libavcodec/Makefile.am:13:
> > > > > quicktime/ffmpeg/libavcodec/Makefile.am:13: The usual way to define
> > > > > `LIBTOOL' is to add `AC_PROG_LIBTOOL'
> > > > > quicktime/ffmpeg/libavcodec/Makefile.am:13: to `configure.in' and run
> > > > > `aclocal' and `autoconf' again.
> > > > > quicktime/ffmpeg/libavcodec/i386/Makefile.am:1: Libtool library used 
> > > > > but
> > > > > `LIBTOOL' is undefined
> > > > > quicktime/ffmpeg/libavcodec/i386/Makefile.am:1:
> > > > > quicktime/ffmpeg/libavcodec/i386/Makefile.am:1: The usual way to 
> > > > > define
> > > > > `LIBTOOL' is to add `AC_PROG_LIBTOOL'
> > > > > quicktime/ffmpeg/libavcodec/i386/Makefile.am:1: to `configure.in' and
> > > > > run `aclocal' and `autoconf' again.
> > > > >
> > > > >
> > > > > I did update aclocal by running 'aclocal' as suggested, but it does 
> > > > > not
> > > > > help.  I am running Fedora Core 4, using version 1.9 of automake and
> > > > > aclocal and version 2.59 of autoconf.
> > > > >
> > > > > Not sure what to do.  Please help.
> > > > > scott
> > > > 
> > > > Instead of ./autogen.sh try:
> > > > 
> > > >   autoreconfig
> > > > or
> > > >   autoreconfig -i
> > > > 
> > > > -- Hannes
> > > > 
> > > > ___
> > > > Cinelerra mailing list
> > > > Cinelerra@skolelinux.no
> > > > https://init.linpro.no/mailman/skolelinux.no/listinfo/cinelerra
> > > 
> > > 
> > > ___
> > > Cinelerra mailing list
> > > Cinelerra@skolelinux.no
> > > https://init.linpro.no/mailman/skolelinux.no/listinfo/cinelerra
> > 
> > 
> > ___
> > Cinelerra mailing list
> > Cinelerra@skolelinux.no
> > https

Re: [CinCVS] Procedure?

2006-04-08 Thread Michael Hill
On Sat, 2006-04-08 at 18:32 +0200, Andraz Tori wrote:

> just press "a" key and then delete key and timeline will be cleared...
> then drag your new clips to the timeline

Thanks, Andraz.  That's what I needed.


___
Cinelerra mailing list
Cinelerra@skolelinux.no
https://init.linpro.no/mailman/skolelinux.no/listinfo/cinelerra


Re: [CinCVS] Procedure?

2006-04-08 Thread Andraz Tori
On sob, 2006-04-08 at 12:17 -0400, Michael Hill wrote:
> Using transcode I extracted the sound track from the original .avi to
> a .wav, loaded both .avi and .wav onto a new timeline, Nudged the sound
> into place and saved the same clips (now *with* sound), but from the
> Compositor window.  Clips are in the Clips folder, and the whole movie
> is on the timeline.  Do I now want to replace the movie with the clips
> so I can render them?  How do I clear the timeline without losing the
> raw material for the clips?


just press "a" key and then delete key and timeline will be cleared...
then drag your new clips to the timeline

bye
andraz


___
Cinelerra mailing list
Cinelerra@skolelinux.no
https://init.linpro.no/mailman/skolelinux.no/listinfo/cinelerra


[CinCVS] Procedure?

2006-04-08 Thread Michael Hill
Please let me know if there's a better place to ask this (or if it's too
dumb a question to be tolerated)...

I'm running Cinelerra built from the minmax P4 tarball
(hvirtual_2.0.0-1svn20060407.tar.gz) on Ubuntu Dapper.  (I have a
library naming issue with the gandalf Breezy packages.)

I generated an .avi file using dvd::rip (likely with all the wrong
settings, but so far the only combination that has worked) and loaded it
into Cinelerra.  I want to save about five minutes of the two-hour
movie.  Using the "Two Screen Editing" method, I saved clips from the
Viewer, dragged them to the timeline and rendered a perfect .ogm file,
but without sound.  Looking at the .avi on the timeline, it appears
there aren't separate sound tracks.

Using transcode I extracted the sound track from the original .avi to
a .wav, loaded both .avi and .wav onto a new timeline, Nudged the sound
into place and saved the same clips (now *with* sound), but from the
Compositor window.  Clips are in the Clips folder, and the whole movie
is on the timeline.  Do I now want to replace the movie with the clips
so I can render them?  How do I clear the timeline without losing the
raw material for the clips?

Thanks,

Mike


___
Cinelerra mailing list
Cinelerra@skolelinux.no
https://init.linpro.no/mailman/skolelinux.no/listinfo/cinelerra


Re: [CinCVS] problem running autogen.sh on latest cvs

2006-04-08 Thread Scott C. Frase
Thanks Andraz.  Here is what I get now:

On Sat, 2006-04-08 at 16:51 +0200, Andraz Tori wrote:
> it's "autoreconf"
> 
> you run "autoreconf -i --force"
> 
> bye
> andraz
> 
> On sob, 2006-04-08 at 10:44 -0400, Scott C. Frase wrote:
> > Graham - thanks for tip on not running as root..just lazy these days! :)
> > 
> > Johannes - I tried running "autoreconfig", but my system does not have
> > that executable (I get "command not found").  I ran "yum install
> > autoreconfig" or same with * on end and couldn't find it in any of my
> > standard repositories (dag/dries/livna/etc).  Do you know where I can
> > get it?
> > 
> > scott
> > 
> > On Sat, 2006-04-08 at 11:00 +0200, Johannes Sixt wrote:
> > > On Saturday 08 April 2006 08:48, Scott C. Frase wrote:
> > > > Guys,
> > > > I've checked out the latest code and run autogen.sh and get the
> > > > following message:
> > > >
> > > > [EMAIL PROTECTED] hvirtual]# ./autogen.sh
> > > > User defined paths to the preferred autoconf and automake versions.
> > > > Read the script if you would like to modify them.
> > > > AUTOMAKE=automake
> > > > ACLOCAL=aclocal
> > > > AUTOCONF=autoconf
> > > > AUTOHEADER=autoheader
> > > > Now building the ./configure script...
> > > > checking for automake version... 1.9
> > > > checking for aclocal version... 1.9
> > > > Running aclocal -I m4 ...
> > > > Running libtoolize ...
> > > > You should update your `aclocal.m4' by running aclocal.
> > > > Running autoheader ...
> > > > Running automake ...
> > > > configure.in: installing `./install-sh'
> > > > configure.in: installing `./missing'
> > > > cinelerra/data/Makefile.am:1: library used but `RANLIB' is undefined
> > > > cinelerra/data/Makefile.am:1:
> > > > cinelerra/data/Makefile.am:1: The usual way to define `RANLIB' is to add
> > > > `AC_PROG_RANLIB'
> > > > cinelerra/data/Makefile.am:1: to `configure.in' and run `autoconf'
> > > > again.
> > > > plugins/defaulttheme/data/Makefile.am:1: library used but `RANLIB' is
> > > > undefined
> > > > plugins/defaulttheme/data/Makefile.am:1:
> > > > plugins/defaulttheme/data/Makefile.am:1: The usual way to define
> > > > `RANLIB' is to add `AC_PROG_RANLIB'
> > > > plugins/defaulttheme/data/Makefile.am:1: to `configure.in' and run
> > > > `autoconf' again.
> > > > plugins/suv/data/Makefile.am:1: library used but `RANLIB' is undefined
> > > > plugins/suv/data/Makefile.am:1:
> > > > plugins/suv/data/Makefile.am:1: The usual way to define `RANLIB' is to
> > > > add `AC_PROG_RANLIB'
> > > > plugins/suv/data/Makefile.am:1: to `configure.in' and run `autoconf'
> > > > again.
> > > > quicktime/ffmpeg/libavcodec/Makefile.am:13: Libtool library used but
> > > > `LIBTOOL' is undefined
> > > > quicktime/ffmpeg/libavcodec/Makefile.am:13:
> > > > quicktime/ffmpeg/libavcodec/Makefile.am:13: The usual way to define
> > > > `LIBTOOL' is to add `AC_PROG_LIBTOOL'
> > > > quicktime/ffmpeg/libavcodec/Makefile.am:13: to `configure.in' and run
> > > > `aclocal' and `autoconf' again.
> > > > quicktime/ffmpeg/libavcodec/i386/Makefile.am:1: Libtool library used but
> > > > `LIBTOOL' is undefined
> > > > quicktime/ffmpeg/libavcodec/i386/Makefile.am:1:
> > > > quicktime/ffmpeg/libavcodec/i386/Makefile.am:1: The usual way to define
> > > > `LIBTOOL' is to add `AC_PROG_LIBTOOL'
> > > > quicktime/ffmpeg/libavcodec/i386/Makefile.am:1: to `configure.in' and
> > > > run `aclocal' and `autoconf' again.
> > > >
> > > >
> > > > I did update aclocal by running 'aclocal' as suggested, but it does not
> > > > help.  I am running Fedora Core 4, using version 1.9 of automake and
> > > > aclocal and version 2.59 of autoconf.
> > > >
> > > > Not sure what to do.  Please help.
> > > > scott
> > > 
> > > Instead of ./autogen.sh try:
> > > 
> > >   autoreconfig
> > > or
> > >   autoreconfig -i
> > > 
> > > -- Hannes
> > > 
> > > ___
> > > Cinelerra mailing list
> > > Cinelerra@skolelinux.no
> > > https://init.linpro.no/mailman/skolelinux.no/listinfo/cinelerra
> > 
> > 
> > ___
> > Cinelerra mailing list
> > Cinelerra@skolelinux.no
> > https://init.linpro.no/mailman/skolelinux.no/listinfo/cinelerra
> 
> 
> ___
> Cinelerra mailing list
> Cinelerra@skolelinux.no
> https://init.linpro.no/mailman/skolelinux.no/listinfo/cinelerra


___
Cinelerra mailing list
Cinelerra@skolelinux.no
https://init.linpro.no/mailman/skolelinux.no/listinfo/cinelerra


Re: [CinCVS] problem running autogen.sh on latest cvs

2006-04-08 Thread Scott C. Frase
Thanks Andraz.  Here is the output I get now:

[EMAIL PROTECTED] hvirtual]# autoreconf -i --force
Copying file ABOUT-NLS
Copying file config.rpath
Copying file mkinstalldirs
Copying file po/Makefile.in.in
configure.in:17: error: possibly undefined macro: AC_ENABLE_SHARED
  If this token and others are legitimate, please use
m4_pattern_allow.
  See the Autoconf documentation.
configure.in:18: error: possibly undefined macro: AC_DISABLE_STATIC
configure.in:19: error: possibly undefined macro: AC_PROG_LIBTOOL
autoreconf: /usr/bin/autoconf failed with exit status: 1

On Sat, 2006-04-08 at 16:51 +0200, Andraz Tori wrote:
> it's "autoreconf"
> 
> you run "autoreconf -i --force"
> 
> bye
> andraz
> 
> On sob, 2006-04-08 at 10:44 -0400, Scott C. Frase wrote:
> > Graham - thanks for tip on not running as root..just lazy these days! :)
> > 
> > Johannes - I tried running "autoreconfig", but my system does not have
> > that executable (I get "command not found").  I ran "yum install
> > autoreconfig" or same with * on end and couldn't find it in any of my
> > standard repositories (dag/dries/livna/etc).  Do you know where I can
> > get it?
> > 
> > scott
> > 
> > On Sat, 2006-04-08 at 11:00 +0200, Johannes Sixt wrote:
> > > On Saturday 08 April 2006 08:48, Scott C. Frase wrote:
> > > > Guys,
> > > > I've checked out the latest code and run autogen.sh and get the
> > > > following message:
> > > >
> > > > [EMAIL PROTECTED] hvirtual]# ./autogen.sh
> > > > User defined paths to the preferred autoconf and automake versions.
> > > > Read the script if you would like to modify them.
> > > > AUTOMAKE=automake
> > > > ACLOCAL=aclocal
> > > > AUTOCONF=autoconf
> > > > AUTOHEADER=autoheader
> > > > Now building the ./configure script...
> > > > checking for automake version... 1.9
> > > > checking for aclocal version... 1.9
> > > > Running aclocal -I m4 ...
> > > > Running libtoolize ...
> > > > You should update your `aclocal.m4' by running aclocal.
> > > > Running autoheader ...
> > > > Running automake ...
> > > > configure.in: installing `./install-sh'
> > > > configure.in: installing `./missing'
> > > > cinelerra/data/Makefile.am:1: library used but `RANLIB' is undefined
> > > > cinelerra/data/Makefile.am:1:
> > > > cinelerra/data/Makefile.am:1: The usual way to define `RANLIB' is to add
> > > > `AC_PROG_RANLIB'
> > > > cinelerra/data/Makefile.am:1: to `configure.in' and run `autoconf'
> > > > again.
> > > > plugins/defaulttheme/data/Makefile.am:1: library used but `RANLIB' is
> > > > undefined
> > > > plugins/defaulttheme/data/Makefile.am:1:
> > > > plugins/defaulttheme/data/Makefile.am:1: The usual way to define
> > > > `RANLIB' is to add `AC_PROG_RANLIB'
> > > > plugins/defaulttheme/data/Makefile.am:1: to `configure.in' and run
> > > > `autoconf' again.
> > > > plugins/suv/data/Makefile.am:1: library used but `RANLIB' is undefined
> > > > plugins/suv/data/Makefile.am:1:
> > > > plugins/suv/data/Makefile.am:1: The usual way to define `RANLIB' is to
> > > > add `AC_PROG_RANLIB'
> > > > plugins/suv/data/Makefile.am:1: to `configure.in' and run `autoconf'
> > > > again.
> > > > quicktime/ffmpeg/libavcodec/Makefile.am:13: Libtool library used but
> > > > `LIBTOOL' is undefined
> > > > quicktime/ffmpeg/libavcodec/Makefile.am:13:
> > > > quicktime/ffmpeg/libavcodec/Makefile.am:13: The usual way to define
> > > > `LIBTOOL' is to add `AC_PROG_LIBTOOL'
> > > > quicktime/ffmpeg/libavcodec/Makefile.am:13: to `configure.in' and run
> > > > `aclocal' and `autoconf' again.
> > > > quicktime/ffmpeg/libavcodec/i386/Makefile.am:1: Libtool library used but
> > > > `LIBTOOL' is undefined
> > > > quicktime/ffmpeg/libavcodec/i386/Makefile.am:1:
> > > > quicktime/ffmpeg/libavcodec/i386/Makefile.am:1: The usual way to define
> > > > `LIBTOOL' is to add `AC_PROG_LIBTOOL'
> > > > quicktime/ffmpeg/libavcodec/i386/Makefile.am:1: to `configure.in' and
> > > > run `aclocal' and `autoconf' again.
> > > >
> > > >
> > > > I did update aclocal by running 'aclocal' as suggested, but it does not
> > > > help.  I am running Fedora Core 4, using version 1.9 of automake and
> > > > aclocal and version 2.59 of autoconf.
> > > >
> > > > Not sure what to do.  Please help.
> > > > scott
> > > 
> > > Instead of ./autogen.sh try:
> > > 
> > >   autoreconfig
> > > or
> > >   autoreconfig -i
> > > 
> > > -- Hannes
> > > 
> > > ___
> > > Cinelerra mailing list
> > > Cinelerra@skolelinux.no
> > > https://init.linpro.no/mailman/skolelinux.no/listinfo/cinelerra
> > 
> > 
> > ___
> > Cinelerra mailing list
> > Cinelerra@skolelinux.no
> > https://init.linpro.no/mailman/skolelinux.no/listinfo/cinelerra
> 
> 
> ___
> Cinelerra mailing list
> Cinelerra@skolelinux.no
> https://init.linpro.no/mailman/skolelinux.no/listinfo/cinelerra


___
Cinelerra mailing list
Cinelerra@skolelinux.no
https://in

Re: [CinCVS] problem running autogen.sh on latest cvs

2006-04-08 Thread Andraz Tori
it's "autoreconf"

you run "autoreconf -i --force"

bye
andraz

On sob, 2006-04-08 at 10:44 -0400, Scott C. Frase wrote:
> Graham - thanks for tip on not running as root..just lazy these days! :)
> 
> Johannes - I tried running "autoreconfig", but my system does not have
> that executable (I get "command not found").  I ran "yum install
> autoreconfig" or same with * on end and couldn't find it in any of my
> standard repositories (dag/dries/livna/etc).  Do you know where I can
> get it?
> 
> scott
> 
> On Sat, 2006-04-08 at 11:00 +0200, Johannes Sixt wrote:
> > On Saturday 08 April 2006 08:48, Scott C. Frase wrote:
> > > Guys,
> > > I've checked out the latest code and run autogen.sh and get the
> > > following message:
> > >
> > > [EMAIL PROTECTED] hvirtual]# ./autogen.sh
> > > User defined paths to the preferred autoconf and automake versions.
> > > Read the script if you would like to modify them.
> > > AUTOMAKE=automake
> > > ACLOCAL=aclocal
> > > AUTOCONF=autoconf
> > > AUTOHEADER=autoheader
> > > Now building the ./configure script...
> > > checking for automake version... 1.9
> > > checking for aclocal version... 1.9
> > > Running aclocal -I m4 ...
> > > Running libtoolize ...
> > > You should update your `aclocal.m4' by running aclocal.
> > > Running autoheader ...
> > > Running automake ...
> > > configure.in: installing `./install-sh'
> > > configure.in: installing `./missing'
> > > cinelerra/data/Makefile.am:1: library used but `RANLIB' is undefined
> > > cinelerra/data/Makefile.am:1:
> > > cinelerra/data/Makefile.am:1: The usual way to define `RANLIB' is to add
> > > `AC_PROG_RANLIB'
> > > cinelerra/data/Makefile.am:1: to `configure.in' and run `autoconf'
> > > again.
> > > plugins/defaulttheme/data/Makefile.am:1: library used but `RANLIB' is
> > > undefined
> > > plugins/defaulttheme/data/Makefile.am:1:
> > > plugins/defaulttheme/data/Makefile.am:1: The usual way to define
> > > `RANLIB' is to add `AC_PROG_RANLIB'
> > > plugins/defaulttheme/data/Makefile.am:1: to `configure.in' and run
> > > `autoconf' again.
> > > plugins/suv/data/Makefile.am:1: library used but `RANLIB' is undefined
> > > plugins/suv/data/Makefile.am:1:
> > > plugins/suv/data/Makefile.am:1: The usual way to define `RANLIB' is to
> > > add `AC_PROG_RANLIB'
> > > plugins/suv/data/Makefile.am:1: to `configure.in' and run `autoconf'
> > > again.
> > > quicktime/ffmpeg/libavcodec/Makefile.am:13: Libtool library used but
> > > `LIBTOOL' is undefined
> > > quicktime/ffmpeg/libavcodec/Makefile.am:13:
> > > quicktime/ffmpeg/libavcodec/Makefile.am:13: The usual way to define
> > > `LIBTOOL' is to add `AC_PROG_LIBTOOL'
> > > quicktime/ffmpeg/libavcodec/Makefile.am:13: to `configure.in' and run
> > > `aclocal' and `autoconf' again.
> > > quicktime/ffmpeg/libavcodec/i386/Makefile.am:1: Libtool library used but
> > > `LIBTOOL' is undefined
> > > quicktime/ffmpeg/libavcodec/i386/Makefile.am:1:
> > > quicktime/ffmpeg/libavcodec/i386/Makefile.am:1: The usual way to define
> > > `LIBTOOL' is to add `AC_PROG_LIBTOOL'
> > > quicktime/ffmpeg/libavcodec/i386/Makefile.am:1: to `configure.in' and
> > > run `aclocal' and `autoconf' again.
> > >
> > >
> > > I did update aclocal by running 'aclocal' as suggested, but it does not
> > > help.  I am running Fedora Core 4, using version 1.9 of automake and
> > > aclocal and version 2.59 of autoconf.
> > >
> > > Not sure what to do.  Please help.
> > > scott
> > 
> > Instead of ./autogen.sh try:
> > 
> >   autoreconfig
> > or
> >   autoreconfig -i
> > 
> > -- Hannes
> > 
> > ___
> > Cinelerra mailing list
> > Cinelerra@skolelinux.no
> > https://init.linpro.no/mailman/skolelinux.no/listinfo/cinelerra
> 
> 
> ___
> Cinelerra mailing list
> Cinelerra@skolelinux.no
> https://init.linpro.no/mailman/skolelinux.no/listinfo/cinelerra


___
Cinelerra mailing list
Cinelerra@skolelinux.no
https://init.linpro.no/mailman/skolelinux.no/listinfo/cinelerra


Re: [CinCVS] problem running autogen.sh on latest cvs

2006-04-08 Thread Scott C. Frase
Graham - thanks for tip on not running as root..just lazy these days! :)

Johannes - I tried running "autoreconfig", but my system does not have
that executable (I get "command not found").  I ran "yum install
autoreconfig" or same with * on end and couldn't find it in any of my
standard repositories (dag/dries/livna/etc).  Do you know where I can
get it?

scott

On Sat, 2006-04-08 at 11:00 +0200, Johannes Sixt wrote:
> On Saturday 08 April 2006 08:48, Scott C. Frase wrote:
> > Guys,
> > I've checked out the latest code and run autogen.sh and get the
> > following message:
> >
> > [EMAIL PROTECTED] hvirtual]# ./autogen.sh
> > User defined paths to the preferred autoconf and automake versions.
> > Read the script if you would like to modify them.
> > AUTOMAKE=automake
> > ACLOCAL=aclocal
> > AUTOCONF=autoconf
> > AUTOHEADER=autoheader
> > Now building the ./configure script...
> > checking for automake version... 1.9
> > checking for aclocal version... 1.9
> > Running aclocal -I m4 ...
> > Running libtoolize ...
> > You should update your `aclocal.m4' by running aclocal.
> > Running autoheader ...
> > Running automake ...
> > configure.in: installing `./install-sh'
> > configure.in: installing `./missing'
> > cinelerra/data/Makefile.am:1: library used but `RANLIB' is undefined
> > cinelerra/data/Makefile.am:1:
> > cinelerra/data/Makefile.am:1: The usual way to define `RANLIB' is to add
> > `AC_PROG_RANLIB'
> > cinelerra/data/Makefile.am:1: to `configure.in' and run `autoconf'
> > again.
> > plugins/defaulttheme/data/Makefile.am:1: library used but `RANLIB' is
> > undefined
> > plugins/defaulttheme/data/Makefile.am:1:
> > plugins/defaulttheme/data/Makefile.am:1: The usual way to define
> > `RANLIB' is to add `AC_PROG_RANLIB'
> > plugins/defaulttheme/data/Makefile.am:1: to `configure.in' and run
> > `autoconf' again.
> > plugins/suv/data/Makefile.am:1: library used but `RANLIB' is undefined
> > plugins/suv/data/Makefile.am:1:
> > plugins/suv/data/Makefile.am:1: The usual way to define `RANLIB' is to
> > add `AC_PROG_RANLIB'
> > plugins/suv/data/Makefile.am:1: to `configure.in' and run `autoconf'
> > again.
> > quicktime/ffmpeg/libavcodec/Makefile.am:13: Libtool library used but
> > `LIBTOOL' is undefined
> > quicktime/ffmpeg/libavcodec/Makefile.am:13:
> > quicktime/ffmpeg/libavcodec/Makefile.am:13: The usual way to define
> > `LIBTOOL' is to add `AC_PROG_LIBTOOL'
> > quicktime/ffmpeg/libavcodec/Makefile.am:13: to `configure.in' and run
> > `aclocal' and `autoconf' again.
> > quicktime/ffmpeg/libavcodec/i386/Makefile.am:1: Libtool library used but
> > `LIBTOOL' is undefined
> > quicktime/ffmpeg/libavcodec/i386/Makefile.am:1:
> > quicktime/ffmpeg/libavcodec/i386/Makefile.am:1: The usual way to define
> > `LIBTOOL' is to add `AC_PROG_LIBTOOL'
> > quicktime/ffmpeg/libavcodec/i386/Makefile.am:1: to `configure.in' and
> > run `aclocal' and `autoconf' again.
> >
> >
> > I did update aclocal by running 'aclocal' as suggested, but it does not
> > help.  I am running Fedora Core 4, using version 1.9 of automake and
> > aclocal and version 2.59 of autoconf.
> >
> > Not sure what to do.  Please help.
> > scott
> 
> Instead of ./autogen.sh try:
> 
>   autoreconfig
> or
>   autoreconfig -i
> 
> -- Hannes
> 
> ___
> Cinelerra mailing list
> Cinelerra@skolelinux.no
> https://init.linpro.no/mailman/skolelinux.no/listinfo/cinelerra


___
Cinelerra mailing list
Cinelerra@skolelinux.no
https://init.linpro.no/mailman/skolelinux.no/listinfo/cinelerra


Re: [CinCVS] problem running autogen.sh on latest cvs

2006-04-08 Thread Johannes Sixt
On Saturday 08 April 2006 08:48, Scott C. Frase wrote:
> Guys,
> I've checked out the latest code and run autogen.sh and get the
> following message:
>
> [EMAIL PROTECTED] hvirtual]# ./autogen.sh
> User defined paths to the preferred autoconf and automake versions.
> Read the script if you would like to modify them.
> AUTOMAKE=automake
> ACLOCAL=aclocal
> AUTOCONF=autoconf
> AUTOHEADER=autoheader
> Now building the ./configure script...
> checking for automake version... 1.9
> checking for aclocal version... 1.9
> Running aclocal -I m4 ...
> Running libtoolize ...
> You should update your `aclocal.m4' by running aclocal.
> Running autoheader ...
> Running automake ...
> configure.in: installing `./install-sh'
> configure.in: installing `./missing'
> cinelerra/data/Makefile.am:1: library used but `RANLIB' is undefined
> cinelerra/data/Makefile.am:1:
> cinelerra/data/Makefile.am:1: The usual way to define `RANLIB' is to add
> `AC_PROG_RANLIB'
> cinelerra/data/Makefile.am:1: to `configure.in' and run `autoconf'
> again.
> plugins/defaulttheme/data/Makefile.am:1: library used but `RANLIB' is
> undefined
> plugins/defaulttheme/data/Makefile.am:1:
> plugins/defaulttheme/data/Makefile.am:1: The usual way to define
> `RANLIB' is to add `AC_PROG_RANLIB'
> plugins/defaulttheme/data/Makefile.am:1: to `configure.in' and run
> `autoconf' again.
> plugins/suv/data/Makefile.am:1: library used but `RANLIB' is undefined
> plugins/suv/data/Makefile.am:1:
> plugins/suv/data/Makefile.am:1: The usual way to define `RANLIB' is to
> add `AC_PROG_RANLIB'
> plugins/suv/data/Makefile.am:1: to `configure.in' and run `autoconf'
> again.
> quicktime/ffmpeg/libavcodec/Makefile.am:13: Libtool library used but
> `LIBTOOL' is undefined
> quicktime/ffmpeg/libavcodec/Makefile.am:13:
> quicktime/ffmpeg/libavcodec/Makefile.am:13: The usual way to define
> `LIBTOOL' is to add `AC_PROG_LIBTOOL'
> quicktime/ffmpeg/libavcodec/Makefile.am:13: to `configure.in' and run
> `aclocal' and `autoconf' again.
> quicktime/ffmpeg/libavcodec/i386/Makefile.am:1: Libtool library used but
> `LIBTOOL' is undefined
> quicktime/ffmpeg/libavcodec/i386/Makefile.am:1:
> quicktime/ffmpeg/libavcodec/i386/Makefile.am:1: The usual way to define
> `LIBTOOL' is to add `AC_PROG_LIBTOOL'
> quicktime/ffmpeg/libavcodec/i386/Makefile.am:1: to `configure.in' and
> run `aclocal' and `autoconf' again.
>
>
> I did update aclocal by running 'aclocal' as suggested, but it does not
> help.  I am running Fedora Core 4, using version 1.9 of automake and
> aclocal and version 2.59 of autoconf.
>
> Not sure what to do.  Please help.
> scott

Instead of ./autogen.sh try:

  autoreconfig
or
  autoreconfig -i

-- Hannes

___
Cinelerra mailing list
Cinelerra@skolelinux.no
https://init.linpro.no/mailman/skolelinux.no/listinfo/cinelerra


Re: [CinCVS] autogen.sh problems

2006-04-08 Thread Jean-Luc Coulon (f5ibh)

Le 07.04.2006 21:11:46, Johannes Sixt a écrit :

...


> /usr/share/aclocal/gtk--.m4:10: warning: underquoted definition of
> AM_PATH_GTKMM/usr/share/aclocal/glib.m4:8: warning: underquoted
> definition of AM_PATH_GLIB
> Running libtoolize ...
> Putting files in AC_CONFIG_AUX_DIR, `..'.
  ^

The reason is very likely, that in the parent directory you already
have some
install.sh file. Remove it.


Thanks Johannes, effefctively, I had an install.sh shell in the parent  
directory. I thought it was allowed, only install-sh (with a dash, not  
a period) was not allowed.




-- Hannes


Many thanks

Jean-Luc


pgpP1kB88xyb7.pgp
Description: PGP signature


Re: [CinCVS] problem running autogen.sh on latest cvs

2006-04-08 Thread Graham Evans

Graham Evans wrote:


Scott C. Frase wrote:


Guys,
I've checked out the latest code and run autogen.sh and get the
following message:

 


Scott I'm pretty sure it is unneccesary to run this script as root.


but that doesn't help with your problem sorry

Graham


[EMAIL PROTECTED] hvirtual]# ./autogen.sh
User defined paths to the preferred autoconf and automake versions.
Read the script if you would like to modify them.
AUTOMAKE=automake
ACLOCAL=aclocal
AUTOCONF=autoconf
AUTOHEADER=autoheader
Now building the ./configure script...
checking for automake version... 1.9
checking for aclocal version... 1.9
Running aclocal -I m4 ...
Running libtoolize ...
You should update your `aclocal.m4' by running aclocal.
Running autoheader ...
Running automake ...
configure.in: installing `./install-sh'
configure.in: installing `./missing'
cinelerra/data/Makefile.am:1: library used but `RANLIB' is undefined
cinelerra/data/Makefile.am:1:
cinelerra/data/Makefile.am:1: The usual way to define `RANLIB' is to add
`AC_PROG_RANLIB'
cinelerra/data/Makefile.am:1: to `configure.in' and run `autoconf'
again.
plugins/defaulttheme/data/Makefile.am:1: library used but `RANLIB' is
undefined
plugins/defaulttheme/data/Makefile.am:1:
plugins/defaulttheme/data/Makefile.am:1: The usual way to define
`RANLIB' is to add `AC_PROG_RANLIB'
plugins/defaulttheme/data/Makefile.am:1: to `configure.in' and run
`autoconf' again.
plugins/suv/data/Makefile.am:1: library used but `RANLIB' is undefined
plugins/suv/data/Makefile.am:1:
plugins/suv/data/Makefile.am:1: The usual way to define `RANLIB' is to
add `AC_PROG_RANLIB'
plugins/suv/data/Makefile.am:1: to `configure.in' and run `autoconf'
again.
quicktime/ffmpeg/libavcodec/Makefile.am:13: Libtool library used but
`LIBTOOL' is undefined
quicktime/ffmpeg/libavcodec/Makefile.am:13:
quicktime/ffmpeg/libavcodec/Makefile.am:13: The usual way to define
`LIBTOOL' is to add `AC_PROG_LIBTOOL'
quicktime/ffmpeg/libavcodec/Makefile.am:13: to `configure.in' and run
`aclocal' and `autoconf' again.
quicktime/ffmpeg/libavcodec/i386/Makefile.am:1: Libtool library used but
`LIBTOOL' is undefined
quicktime/ffmpeg/libavcodec/i386/Makefile.am:1:
quicktime/ffmpeg/libavcodec/i386/Makefile.am:1: The usual way to define
`LIBTOOL' is to add `AC_PROG_LIBTOOL'
quicktime/ffmpeg/libavcodec/i386/Makefile.am:1: to `configure.in' and
run `aclocal' and `autoconf' again.


I did update aclocal by running 'aclocal' as suggested, but it does not
help.  I am running Fedora Core 4, using version 1.9 of automake and
aclocal and version 2.59 of autoconf. 
Not sure what to do.  Please help.

scott


___
Cinelerra mailing list
Cinelerra@skolelinux.no
https://init.linpro.no/mailman/skolelinux.no/listinfo/cinelerra


 







___
Cinelerra mailing list
Cinelerra@skolelinux.no
https://init.linpro.no/mailman/skolelinux.no/listinfo/cinelerra


Re: [CinCVS] problem running autogen.sh on latest cvs

2006-04-08 Thread Graham Evans

Scott C. Frase wrote:


Guys,
I've checked out the latest code and run autogen.sh and get the
following message:

 


Scott I'm pretty sure it is unneccesary to run this script as root.


[EMAIL PROTECTED] hvirtual]# ./autogen.sh
User defined paths to the preferred autoconf and automake versions.
Read the script if you would like to modify them.
AUTOMAKE=automake
ACLOCAL=aclocal
AUTOCONF=autoconf
AUTOHEADER=autoheader
Now building the ./configure script...
checking for automake version... 1.9
checking for aclocal version... 1.9
Running aclocal -I m4 ...
Running libtoolize ...
You should update your `aclocal.m4' by running aclocal.
Running autoheader ...
Running automake ...
configure.in: installing `./install-sh'
configure.in: installing `./missing'
cinelerra/data/Makefile.am:1: library used but `RANLIB' is undefined
cinelerra/data/Makefile.am:1:
cinelerra/data/Makefile.am:1: The usual way to define `RANLIB' is to add
`AC_PROG_RANLIB'
cinelerra/data/Makefile.am:1: to `configure.in' and run `autoconf'
again.
plugins/defaulttheme/data/Makefile.am:1: library used but `RANLIB' is
undefined
plugins/defaulttheme/data/Makefile.am:1:
plugins/defaulttheme/data/Makefile.am:1: The usual way to define
`RANLIB' is to add `AC_PROG_RANLIB'
plugins/defaulttheme/data/Makefile.am:1: to `configure.in' and run
`autoconf' again.
plugins/suv/data/Makefile.am:1: library used but `RANLIB' is undefined
plugins/suv/data/Makefile.am:1:
plugins/suv/data/Makefile.am:1: The usual way to define `RANLIB' is to
add `AC_PROG_RANLIB'
plugins/suv/data/Makefile.am:1: to `configure.in' and run `autoconf'
again.
quicktime/ffmpeg/libavcodec/Makefile.am:13: Libtool library used but
`LIBTOOL' is undefined
quicktime/ffmpeg/libavcodec/Makefile.am:13:
quicktime/ffmpeg/libavcodec/Makefile.am:13: The usual way to define
`LIBTOOL' is to add `AC_PROG_LIBTOOL'
quicktime/ffmpeg/libavcodec/Makefile.am:13: to `configure.in' and run
`aclocal' and `autoconf' again.
quicktime/ffmpeg/libavcodec/i386/Makefile.am:1: Libtool library used but
`LIBTOOL' is undefined
quicktime/ffmpeg/libavcodec/i386/Makefile.am:1:
quicktime/ffmpeg/libavcodec/i386/Makefile.am:1: The usual way to define
`LIBTOOL' is to add `AC_PROG_LIBTOOL'
quicktime/ffmpeg/libavcodec/i386/Makefile.am:1: to `configure.in' and
run `aclocal' and `autoconf' again.


I did update aclocal by running 'aclocal' as suggested, but it does not
help.  I am running Fedora Core 4, using version 1.9 of automake and
aclocal and version 2.59 of autoconf.  


Not sure what to do.  Please help.
scott


___
Cinelerra mailing list
Cinelerra@skolelinux.no
https://init.linpro.no/mailman/skolelinux.no/listinfo/cinelerra


 




___
Cinelerra mailing list
Cinelerra@skolelinux.no
https://init.linpro.no/mailman/skolelinux.no/listinfo/cinelerra