From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 26830 invoked by alias); 7 Jan 2002 22:04:15 -0000 Mailing-List: contact guile-gtk-help@sources.redhat.com; run by ezmlm Precedence: bulk List-Subscribe: List-Archive: List-Post: List-Help: , Sender: guile-gtk-owner@sources.redhat.com Received: (qmail 26760 invoked from network); 7 Jan 2002 22:04:13 -0000 Received: from unknown (HELO li.mine.nu) (195.163.18.45) by sources.redhat.com with SMTP; 7 Jan 2002 22:04:13 -0000 Received: from abc.se (li.mine.nu [192.168.0.2]) by li.mine.nu (Postfix) with ESMTP id E59367A52A; Mon, 7 Jan 2002 23:04:12 +0100 (CET) Message-ID: <3C3A1B5C.5CE892C6@abc.se> Date: Mon, 07 Jan 2002 14:04:00 -0000 From: Bo Forslund X-Mailer: Mozilla 4.78 [en] (X11; U; Linux 2.4.17 i686) X-Accept-Language: en MIME-Version: 1.0 To: Ariel Rios Cc: guile-gtk@sourceware.cygnus.com Subject: Re: gnome-guile-0.21pre4 References: <1010168128.713.3.camel@soleil> Content-Type: multipart/mixed; boundary="------------FD04AD26215A1B2AABC8E2FF" X-SW-Source: 2002-q1/txt/msg00007.txt.bz2 This is a multi-part message in MIME format. --------------FD04AD26215A1B2AABC8E2FF Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Content-length: 1126 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 --------------FD04AD26215A1B2AABC8E2FF Content-Type: text/plain; charset=us-ascii; name="guile-gtk-0.21pre4.patch" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="guile-gtk-0.21pre4.patch" Content-length: 1127 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) --------------FD04AD26215A1B2AABC8E2FF--