From mboxrd@z Thu Jan 1 00:00:00 1970 Path: main.gmane.org!not-for-mail From: Jan Nieuwenhuizen Newsgroups: gmane.lisp.guile.devel Subject: Re: Cygwin patch for 1.6.4 Date: Thu, 02 Oct 2003 19:34:37 +0200 Organization: Jan at Appel Sender: guile-devel-bounces+guile-devel=m.gmane.org@gnu.org Message-ID: <87smmbmtle.fsf@peder.flower> References: <16225.62509.832674.84224@localhost.localdomain> <87u16s7mt4.fsf@peder.flower> <87d6dgbnjz.fsf@raven.i.defaultvalue.org> <87d6dgksux.fsf@peder.flower> <87zngj7gvw.fsf@raven.i.defaultvalue.org> <87wubnmtqn.fsf@peder.flower> NNTP-Posting-Host: deer.gmane.org Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" X-Trace: sea.gmane.org 1065116343 19664 80.91.224.253 (2 Oct 2003 17:39:03 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Thu, 2 Oct 2003 17:39:03 +0000 (UTC) Cc: hanwen@cs.uu.nl, guile-devel@gnu.org, mvo@zagadka.de Original-X-From: guile-devel-bounces+guile-devel=m.gmane.org@gnu.org Thu Oct 02 19:39:00 2003 Return-path: Original-Received: from monty-python.gnu.org ([199.232.76.173]) by deer.gmane.org with esmtp (Exim 3.35 #1 (Debian)) id 1A57Po-00057V-00 for ; Thu, 02 Oct 2003 19:39:00 +0200 Original-Received: from localhost ([127.0.0.1] helo=monty-python.gnu.org) by monty-python.gnu.org with esmtp (Exim 4.24) id 1A57NA-0001NI-Rf for guile-devel@m.gmane.org; Thu, 02 Oct 2003 13:36:16 -0400 Original-Received: from list by monty-python.gnu.org with tmda-scanned (Exim 4.24) id 1A57MI-0000RF-52 for guile-devel@gnu.org; Thu, 02 Oct 2003 13:35:22 -0400 Original-Received: from mail by monty-python.gnu.org with spam-scanned (Exim 4.24) id 1A57Le-0008Oq-PK for guile-devel@gnu.org; Thu, 02 Oct 2003 13:35:13 -0400 Original-Received: from [62.195.48.83] (helo=peder.flower) by monty-python.gnu.org with esmtp (Exim 4.24) id 1A57Ld-0008NW-G3 for guile-devel@gnu.org; Thu, 02 Oct 2003 13:34:41 -0400 Original-Received: from localhost ([127.0.0.1] helo=peder.flower ident=janneke) by peder.flower with esmtp (Exim 3.36 #1 (Debian)) id 1A57LZ-0004KE-00; Thu, 02 Oct 2003 19:34:38 +0200 Original-To: Rob Browning In-Reply-To: <87wubnmtqn.fsf@peder.flower> (Jan Nieuwenhuizen's message of "Thu, 02 Oct 2003 19:31:28 +0200") User-Agent: Gnus/5.1003 (Gnus v5.10.3) Emacs/21.3 (gnu/linux) X-BeenThere: guile-devel@gnu.org X-Mailman-Version: 2.1.2 Precedence: list List-Id: Developers list for Guile, the GNU extensibility library List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guile-devel-bounces+guile-devel=m.gmane.org@gnu.org Xref: main.gmane.org gmane.lisp.guile.devel:2841 X-Report-Spam: http://spam.gmane.org/gmane.lisp.guile.devel:2841 --=-=-= Jan Nieuwenhuizen writes: > With the next version of libtool, I merely updated ltdl.c and ltdl.h > from libtool CVS, as were in the previous patch I sent. Attached > seperately now. Really. So, I'm not sure what guile needs (on other platforms?) besides these diffs. Jan. --=-=-= Content-Disposition: attachment; filename=ltdl.h.diff --- /netrel/src/guile-1.6.4-14/libguile-ltdl/upstream/ltdl.h 2003-10-01 19:49:03.000000000 +0200 +++ raw-ltdl.guilemod.h 2003-10-01 20:59:24.000000000 +0200 @@ -28,6 +28,7 @@ #ifndef LTDL_H #define LTDL_H 1 +#include "guile-ltdl.h" #include /* for size_t declaration */ @@ -206,9 +207,11 @@ libltdl relies on a featureful realloc, but if you are sure yours has the right semantics then you can assign it directly. Generally, it is safe to assign just a malloc() and a free() function. */ +#if 0 LT_SCOPE lt_ptr (*lt_dlmalloc) LT_PARAMS((size_t size)); LT_SCOPE lt_ptr (*lt_dlrealloc) LT_PARAMS((lt_ptr ptr, size_t size)); LT_SCOPE void (*lt_dlfree) LT_PARAMS((lt_ptr ptr)); +#endif --=-=-= Content-Disposition: attachment; filename=ltdl.c.diff --- /netrel/src/guile-1.6.4-14/libguile-ltdl/upstream/ltdl.c 2003-10-01 19:48:56.000000000 +0200 +++ raw-ltdl.guilemod.c 2003-10-01 20:31:34.000000000 +0200 @@ -26,7 +26,7 @@ */ #if HAVE_CONFIG_H -# include +# include "config.h" #endif #if HAVE_UNISTD_H @@ -124,7 +124,7 @@ # define assert(arg) ((void) 0) #endif -#include "ltdl.h" +#include "raw-ltdl.h" #if WITH_DMALLOC # include --=-=-= -- Jan Nieuwenhuizen | GNU LilyPond - The music typesetter http://www.xs4all.nl/~jantien | http://www.lilypond.org --=-=-= Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Disposition: inline _______________________________________________ Guile-devel mailing list Guile-devel@gnu.org http://mail.gnu.org/mailman/listinfo/guile-devel --=-=-=--