After an evaluation, GNOME has moved from Bugzilla to GitLab. Learn more about GitLab.
No new issues can be reported in GNOME Bugzilla anymore.
To report an issue in a GNOME project, go to GNOME GitLab.
Do not go to GNOME Gitlab for: Bluefish, Doxygen, GnuCash, GStreamer, java-gnome, LDTP, NetworkManager, Tomboy.
Bug 97236 - automake fails when doing autogen.sh in gstreamer head.
automake fails when doing autogen.sh in gstreamer head.
Status: RESOLVED FIXED
Product: GStreamer
Classification: Platform
Component: gstreamer (core)
git master
Other other
: Normal normal
: 0.4.0
Assigned To: GStreamer Maintainers
GStreamer Maintainers
Depends on:
Blocks:
 
 
Reported: 2002-10-30 16:49 UTC by Sri Ramkrishna
Modified: 2004-12-22 21:47 UTC
See Also:
GNOME target: ---
GNOME version: 2.0



Description Sri Ramkrishna 2002-10-30 16:49:47 UTC
When do a ./autogen.sh --prefix=/gnome2 in gstreamer head I get this error
message:

sri@sri:/src/cvs/gnome2/gstreamer$ ./autogen.sh --prefix=/gnome2
+ passing --prefix=/gnome2 to configure
+ options passed to configure:  --prefix=/gnome2
+ check for build tools
  checking for autoconf >= 2.52 ... found 2.54, ok.
  checking for automake >= 1.5 ... found 1.6.3, ok.
  checking for libtool >= 1.4.0 ... found 1.4.2, ok.
  checking for pkg-config >= 0.8.0 ... found 0.14.0, ok.
+ running aclocal -I common/m4 -I /gnome2/share/aclocal -I
/usr/local/share/aclocal -I /usr/share/aclocal...
+ not running libtoolize until libtool fix has flown downstream
+ running autoheader ...
configure.ac:13: warning: do not use m4_patsubst: use patsubst or m4_bpatsubst
configure.ac:512: warning: do not use m4_regexp: use regexp or m4_bregexp
autoheader: `config.h.in' is unchanged
+ running autoconf ...
+ running automake -a -c...
configure.ac:9: your implementation of AM_INIT_AUTOMAKE comes from an
configure.ac:9: old Automake version.  You should recreate aclocal.m4
configure.ac:9: with aclocal and run automake again.
automake: gst/Makefile.am: Assembler source seen but `CCAS' not defined in
`conf
igure.ac'
automake: gst/Makefile.am: Assembler source seen but `CCASFLAGS' not
defined in 
`configure.ac'
automake: libs/gst/getbits/Makefile.am: Assembler source seen but `CCAS'
not def
ined in `configure.ac'
automake: libs/gst/getbits/Makefile.am: Assembler source seen but
`CCASFLAGS' no
t defined in `configure.ac'

automake failed


I've tried doing it by hand running the various auto* pieces (which works
occasionally on other modules other than GSTreamer)

sri
Comment 1 Thomas Vander Stichele 2002-12-07 15:18:55 UTC
Hi,

the first warnings for configure.ac need fixing first.

They are because you have aclocal in a different prefix from autoconf.

Either have them in the same prefix, set ACLOCAL_FLAGS to include the
m4's from the other prefix, or copy them over.

If after that there are more problems on autogen.sh, please open a
different bug, as it's a different issue.

Thomas