On Tue, Nov 2, 2010 at 5:52 PM, Andrei Formiga <[email protected]> wrote: > Yes, the odd thing is that I do have a newer gm4 installed and on the > PATH. If I run 'gm4' from the command line I do get the newer version, > but the configuration step when building cairo, somehow, is > specifically calling the older version on /usr/bin.
I believe the problem is that godi's build system sets an M4 variable to '/usr/bin/gm4' (hardcoded in /opt/godi/build/mk/defs.cmd.mk), and that is passed to './configure' in its environment, which then uses that in preference to any m4 found on the path. These is easily bypassed. I've added the following lines to my /opt/godi/etc/godi.conf GMAKE=/opt/local/bin/gmake M4=/opt/local/bin/gm4 SED=/opt/local/bin/gsed to use tools from macports. I've included the GNU version of sed there because OS X has the BSD version, and I've found a few packages that try to GNU extensions to sed (and GMAKE just so it uses the most current version, not that I've found problems). -- |>|\/|< ------- David M. Cooke [email protected] _______________________________________________ Godi-list mailing list [email protected] https://godirepo.camlcity.org/mailman/listinfo/godi-list
