public inbox for guile-gtk@sourceware.org
 help / color / mirror / Atom feed
From: Bo Forslund <bo.forslund@abc.se>
To: Ariel Rios <ariel@gnu.org>
Cc: guile-gtk@sourceware.cygnus.com
Subject: Re: gnome-guile-0.21pre4
Date: Mon, 07 Jan 2002 14:04:00 -0000	[thread overview]
Message-ID: <3C3A1B5C.5CE892C6@abc.se> (raw)
In-Reply-To: <1010168128.713.3.camel@soleil>

[-- Attachment #1: Type: text/plain, Size: 1126 bytes --]

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

[-- Attachment #2: guile-gtk-0.21pre4.patch --]
[-- Type: text/plain, Size: 1127 bytes --]

diff -Nur guile-gtk-0.21pre4-virgin/examples/Makefile.am guile-gtk-0.21pre4/examples/Makefile.am
--- guile-gtk-0.21pre4-virgin/examples/Makefile.am	Sun Dec 20 23:18:47 1998
+++ guile-gtk-0.21pre4/examples/Makefile.am	Mon Jan  7 01:20:06 2002
@@ -16,10 +16,10 @@
 BUILT_SOURCES = foo-glue.c main.c
 
 foo-glue.c: foo.defs
-	build-guile-gtk glue $< >tmp && mv tmp $@
+	build-guile-gtk glue $< >$@.new && mv $@.new $@
 
 main.c: foo.defs
-	build-guile-gtk main $< >tmp && mv tmp $@
+	build-guile-gtk main $< >$@.new && mv $@.new $@
 
 scmgtkdir=$(datadir)/guile/gtk
 scmgtk_DATA = foo.scm
diff -Nur guile-gtk-0.21pre4-virgin/examples/configure.in guile-gtk-0.21pre4/examples/configure.in
--- guile-gtk-0.21pre4-virgin/examples/configure.in	Wed Nov 29 23:45:46 2000
+++ guile-gtk-0.21pre4/examples/configure.in	Mon Jan  7 01:20:24 2002
@@ -5,14 +5,6 @@
 AC_PROG_CC
 AM_PROG_LIBTOOL
 
-GNOME_COMMON_INIT
-GNOME_PLATFORM_GNOME_2(no)
-
-if test $platform_gnome_2 = yes ; then
-  GNOME_PKGCONFIG_CHECK_MODULES(GTK, gtk+-2.0:1.3.1)
-else
-  GNOME_PKGCONFIG_CHECK_MODULES(GTK, gtk+:1.2.6)
-fi
 AC_SUBST(GTK_CFLAGS)
 AC_SUBST(GTK_LIBS)
 

      parent reply	other threads:[~2002-01-07 22:04 UTC|newest]

Thread overview: 6+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2002-01-04 11:15 gnome-guile-0.21pre4 Ariel Rios
2002-01-05  3:30 ` gnome-guile-0.21pre4 rm
2002-01-05 12:03   ` gnome-guile-0.21pre4 Ariel Rios
2002-01-07 13:27     ` gnome-guile-0.21pre4 Neil Jerram
2002-01-07 17:57       ` gnome-guile-0.21pre4 rm
2002-01-07 14:04 ` Bo Forslund [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=3C3A1B5C.5CE892C6@abc.se \
    --to=bo.forslund@abc.se \
    --cc=ariel@gnu.org \
    --cc=guile-gtk@sourceware.cygnus.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).