From: Mikael M. <mik...@tj...> - 2004-11-21 17:41:47
|
Steve Kann wrote: > Here's my results on Mac OS X: > > First, I needed to install/update the appropriate tools. I did this > with fink. > > stevek@albook:~/src/hms/iaxclient-ac $ automake --version > automake (GNU automake) 1.8.5 > Written by Tom Tromey <tr...@re...>. > > Copyright 2004 Free Software Foundation, Inc. > This is free software; see the source for copying conditions. There is NO > warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR > PURPOSE. > stevek@albook:~/src/hms/iaxclient-ac $ autoconf --version > autoconf (GNU Autoconf) 2.59 > Written by David J. MacKenzie and Akim Demaille. > > Copyright (C) 2003 Free Software Foundation, Inc. > This is free software; see the source for copying conditions. There is NO > warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR > PURPOSE. > stevek@albook:~/src/hms/iaxclient-ac $ libtoolize --version > libtoolize (GNU libtool) 1.5.8 > > Copyright (C) 2003 Free Software Foundation, Inc. > This is free software; see the source for copying conditions. There is NO > warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR > PURPOSE. > > The results are not so good: > > stevek@albook:~/src/hms/iaxclient-ac $ sh autogen.sh > /sw/share/aclocal/vorbis.m4:9: warning: underquoted definition of > XIPH_PATH_VORBIS > run info '(automake)Extending aclocal' > or see > http://sources.redhat.com/automake/automake.html#Extending%20aclocal > /sw/share/aclocal/pkg.m4:5: warning: underquoted definition of > PKG_CHECK_MODULES > /sw/share/aclocal/ogg.m4:8: warning: underquoted definition of > XIPH_PATH_OGG > /sw/share/aclocal/imlib.m4:9: warning: underquoted definition of > AM_PATH_IMLIB > /sw/share/aclocal/imlib.m4:167: warning: underquoted definition of > AM_PATH_GDK_IMLIB > /sw/share/aclocal/gtk.m4:7: warning: underquoted definition of AM_PATH_GTK > /sw/share/aclocal/glib.m4:8: warning: underquoted definition of > AM_PATH_GLIB > /sw/share/aclocal/aalib.m4:12: warning: underquoted definition of > AM_PATH_AALIB The warnings above can be disregarded. > aclocal: configure.ac: 94: macro `AM_OPTIONS_WXCONFIG' not found in > library > aclocal: configure.ac: 227: macro `AM_PATH_WXCONFIG' not found in library These macros are defined in wxwin.m4, which should be installed by wxWindows. If it isn't found by aclocal you can copy wxwin.m4 to the macros directory. > autoheader: error: AC_CONFIG_HEADERS not found in configure.ac > configure.ac:8: error: possibly undefined macro: AM_INIT_AUTOMAKE > If this token and others are legitimate, please use > m4_pattern_allow. > See the Autoconf documentation. I don't know why aclocal and autoconf haven't found the definitions of the automake macros. Maybe there are some problems with your installation? You don't have to run autogen.sh on the build platform. You can run autogen.sh on Linux instead and copy the whole directory structure to Mac OS X. Mikael |