PDA

View Full Version : report: unable to compile rev 19119


shassino
2009-04-01, 18:15
make[2]: ingresso nella directory «/media/htpc/xbmc/XBMC/xbmc/cores/dvdplayer/Codecs/libfaad2»
cd . && /bin/bash /media/htpc/xbmc/XBMC/xbmc/cores/dvdplayer/Codecs/libfaad2/missing --run automake-1.10 --gnu
/usr/share/automake-1.10/am/depend2.am: am__fastdepCXX does not appear in AM_CONDITIONAL
/usr/share/automake-1.10/am/depend2.am: The usual way to define `am__fastdepCXX' is to add `AC_PROG_CXX'
/usr/share/automake-1.10/am/depend2.am: to `configure.in' and run `aclocal' and `autoconf' again.
plugins/mpeg4ip/Makefile.am: C++ source seen but `CXX' is undefined
plugins/mpeg4ip/Makefile.am: The usual way to define `CXX' is to add `AC_PROG_CXX'
plugins/mpeg4ip/Makefile.am: to `configure.in' and run `autoconf' again.
make[2]: *** [Makefile.in] Errore 1
make[2]: uscita dalla directory «/media/htpc/xbmc/XBMC/xbmc/cores/dvdplayer/Codecs/libfaad2»
make[1]: *** [libfaad2] Errore 2
make[1]: uscita dalla directory «/media/htpc/xbmc/XBMC/xbmc/cores/dvdplayer/Codecs»
make: *** [dvdpcodecs] Errore 2

On Ubuntu 9.04 beta

althekiller
2009-04-01, 18:44
You need to rerun the "bootstrap" or "autogen.sh" script if one exists or autoreconf -vif in w/e dirs throw you that kind of error. Your autotools versions are incompatible.

shassino
2009-04-01, 19:30
ty for reply both "bootstrap" and "autoreconf -vif" return me:
/usr/share/automake-1.10/am/depend2.am: am__fastdepCXX does not appear in AM_CONDITIONAL
/usr/share/automake-1.10/am/depend2.am: The usual way to define `am__fastdepCXX' is to add `AC_PROG_CXX'
/usr/share/automake-1.10/am/depend2.am: to `configure.in' and run `aclocal' and `autoconf' again.
plugins/mpeg4ip/Makefile.am: C++ source seen but `CXX' is undefined
plugins/mpeg4ip/Makefile.am: The usual way to define `CXX' is to add `AC_PROG_CXX'
plugins/mpeg4ip/Makefile.am: to `configure.in' and run `autoconf' again.


I must downgrade automake to Intrepid ones?

althekiller
2009-04-01, 20:01
Or just add AC_PROG_CXX to configure.in like the message tells you to.

shassino
2009-04-01, 20:38
lol i was thinking that can't be so easy :) ty for help

All compile fine now, used suggest on post 2 in good src.

Mod can close now and plz edit title to [resolved] ... ...

freezy
2009-04-08, 20:08
I had to do it like that in order to compile:
cd xbmc/cores/dvdplayer/Codecs/libfaad2
echo AC_PROG_CXX >> configure.in
autoreconf -vif
cd -
cd xbmc/cores/dvdplayer/Codecs/libdvd/libdvdcss
./bootstrap
cd -
cd xbmc/lib/libass
autoreconf -vif
cd -
./configure --enable-vdpau
cd xbmc/cores/paplayer/MPCCodec/
svn revert *
./configure
make
cd -
make


MPCCodec gave me quite a headache.