Re: No success joining in yet
Mark H Weaver <[email protected]> Fri, 09 Dec 2011 11:48:44 -0500
| Newsgroups | gmane.lisp.guile.gtk |
|---|---|
| Message-ID | <[email protected]> |
My autofoo is not particularly good, but I'll try to help anyway :) Detlev Zundel <[email protected]> writes: > ./configure: line 14046: GUILE_PROGS: command not found > ./configure: line 14047: GUILE_FLAGS: command not found This indicates that the definitions of the m4 macros GUILE_PROGS and GUILE_FLAGS are missing, so they were left unexpanded in the resulting "configure" script. Guile should have installed a file called "guile.m4" containing definitions for these macros in @datadir@/aclocal/ (typically ${prefix}/share/aclocal), and these should have been imported into "aclocal.m4" in your g-wrap source directory when "aclocal" was run (part of what "autogen.sh" does). It might be sufficient to simply run "./autogen.sh" again (remember to pass it the configure options as well). However, it's also possible that your "guile.m4" file is missing, or was installed somewhere that aclocal is not looking. For details on where "aclocal" searches and how to modify its search path, see: http://www.gnu.org/software/automake/manual/automake.html#Macro-Search-Path Alternatively, you should simply use the g-wrap 1.9.14 tarball, which was released 4 days ago and works great for me! http://www.nongnu.org/g-wrap/ Good luck! Mark