On Mon, 6 Mar 2006, Donald Ephraim Curtis wrote: > the examples/* are making autconf barf: > > acinclude.m4:38: warning: underquoted definition of AM_SANITY_CHECK > run info '(automake)Extending aclocal' > or see http://sources.redhat.com/automake/automake.html#Extending-aclocal > /usr/share/aclocal/wxwin.m4:36: warning: underquoted definition of > AM_OPTIONS_WXCONFIG Humm... the commands ./autogen.sh ./configure work for me. Sometimes earlier I have seen that also this aclocal libtoolize --copy --force followed by autogen.sh/configure might be needed. Configuration experts, can you help? Is there something important missing from our autogen.sh? $ cat autogen.sh #!/bin/sh OSTYPE=`uname -s` AMFLAGS="--add-missing" if test "$OSTYPE" = "IRIX" -o "$OSTYPE" = "IRIX64"; then AMFLAGS=$AMFLAGS" --include-deps"; fi echo "Running aclocal" aclocal echo "Running automake" automake $AMFLAGS echo "Running autoconf" autoconf echo "======================================" echo "Now you are ready to run './configure'" echo "======================================" Regards, Tommi