Ariel Rios wrote: > I have just upload gnome-guile 0.21pre4 and guile-gtk 0.21pre4 > Both of them require unstable an unstable guile from the 1.5.x series. > > This new pre release includes several bug fixes. > > They can be found at: > > http://linux.cem.itesm.mx/~ariel/download/gnome-guile-0.21pre4.tar.gz > http://linux.cem.itesm.mx/~ariel/download/guile-gtk-0.21pre4.tar.gz > > I would apreciate some nice feedback. > Any contributions to the defs files would be apreciated. > > ariel Works fine here... except that the examples doesn't compile outside gnome. With the gnome lines removed in configure.in it will compile on a uni CPU machine and only occationally during parallell builds on a dual CPU machine. Steve Tell suggested that the lines in Makefile.am foo-glue.c: foo.defs build-guile-gtk glue $< >tmp && mv tmp $@ main.c: foo.defs build-guile-gtk main $< >tmp && mv tmp $@ Should look like this, then it will build on SMP machines too. foo-glue.c: foo.defs build-guile-gtk glue $< >$@.new && mv $@.new $@ main.c: foo.defs build-guile-gtk main $< >$@.new && mv $@.new $@ Here is a patch