I'm trying to compile on an Amiga for PPC using GNU but the configure script stops at this for libvorbis: <p>aclocal: configure.in: 42: macro `AM_PROG_LIBTOOL' not found in library make: *** [aclocal.m4] Error 1 <p>and this for libao: <p>checking size of short... configure: error: can not run test program while cross compiling How do I fix this? <p>J.Johansson --- >8 ---- List archives: http://www.xiph.org/archives/ Ogg project homepage: http://www.xiph.org/ogg/ To unsubscribe from this list, send a message to 'vorbis-request@xiph.org' containing only the word 'unsubscribe' in the body. No subject is needed. Unsubscribe messages sent to the list will be ignored/filtered.
On 03/10/03 20:40 tu_kd spoke thusly> I'm trying to compile on an Amiga for PPC using GNU but the configure script stops at > this for libvorbis: > > > aclocal: configure.in: 42: macro `AM_PROG_LIBTOOL' not found in library > make: *** [aclocal.m4] Error 1Can you run "autoconf" to process configure.in? AM_PROG_LIBTOOL is a macro that should be in "aclocal.m4". Do Amiga's have "grep"? Find out which file AM_PROG_LIBTOOL is defined in. <p>> and this for libao:> > > checking size of short... configure: error: can not run test program while cross compiling > > How do I fix this?Look at "config.log" and figure out what test program is failing. <p> -- ---------------------------------------- Sent from Mozilla and GNU/Linux. Powered by an AMD processor. --- >8 ---- List archives: http://www.xiph.org/archives/ Ogg project homepage: http://www.xiph.org/ogg/ To unsubscribe from this list, send a message to 'vorbis-request@xiph.org' containing only the word 'unsubscribe' in the body. No subject is needed. Unsubscribe messages sent to the list will be ignored/filtered.
On 03/10/03 20:40 tu_kd spoke thusly <p> > I'm trying to compile on an Amiga for PPC using GNU but the configure script stops at > this for libvorbis: > > > aclocal: configure.in: 42: macro `AM_PROG_LIBTOOL' not found in library > make: *** [aclocal.m4] Error 1 <p>> Can you run "autoconf" to process configure.in?>AM_PROG_LIBTOOL is a macro that should be in "aclocal.<p><p>In aclocal.m4 I found this line, is this it? AC_DEFUN([AM_PROG_LIBTOOL], [AC_PROG_LIBTOOL]) <p><p>> and this for libao: > > > checking size of short... configure: error: can not run test program while cross compiling > > How do I fix this? <p>>Look at "config.log" and figure out what test program is failing. <p>It doesn't say anything abouth what test program failed, only "checking size of short" Maybe I don't need libao to compile the vorbis tools anyway? --- >8 ---- List archives: http://www.xiph.org/archives/ Ogg project homepage: http://www.xiph.org/ogg/ To unsubscribe from this list, send a message to 'vorbis-request@xiph.org' containing only the word 'unsubscribe' in the body. No subject is needed. Unsubscribe messages sent to the list will be ignored/filtered.
The problem is that it can't check for "size of short" when cross compiling. It needs it for the makefile: DEFS = -DPACKAGE=\"libogg\" -DVERSION=\"1.0\" -DSTDC_HEADERS=1 -DSIZEOF_SHORT=2 -DSIZEOF_INT=4 -DSIZEOF_LONG=4 -DSIZEOF_LONG_LONG=8 -I. -I$(srcdir) I guess I could use my makefiles from m68k and change these values but I have no idea what they should be for PPC 604e or if it would work. This is from my m68k native compiler: creating libtool checking for ANSI C header files... yes checking for working const... yes checking for int16_t... yes checking for int32_t... yes checking for uint32_t... no checking for u_int32_t... yes checking for int64_t... yes checking size of short... 2 checking size of int... 4 checking size of long... 4 checking size of long long... 8 checking for 8-bit clean memcmp... yes updating cache ./config.cache creating ./config.status creating Makefile creating src/Makefile creating doc/Makefile creating doc/ogg/Makefile creating include/Makefile creating include/ogg/Makefile creating include/ogg/config_types.h creating win32/Makefile creating debian/Makefile <p>--- >8 ---- List archives: http://www.xiph.org/archives/ Ogg project homepage: http://www.xiph.org/ogg/ To unsubscribe from this list, send a message to 'vorbis-request@xiph.org' containing only the word 'unsubscribe' in the body. No subject is needed. Unsubscribe messages sent to the list will be ignored/filtered.