From mboxrd@z Thu Jan 1 00:00:00 1970 Path: main.gmane.org!not-for-mail From: Kevin Ryde Newsgroups: gmane.lisp.guile.devel Subject: Re: native Win32 guile 1.7.0 Date: Thu, 12 Jun 2003 09:42:45 +1000 Sender: guile-devel-bounces+guile-devel=m.gmane.org@gnu.org Message-ID: <87r860mb9m.fsf@zip.com.au> References: <87smqwugup.fsf@zip.com.au> NNTP-Posting-Host: main.gmane.org Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" X-Trace: main.gmane.org 1055375016 2040 80.91.224.249 (11 Jun 2003 23:43:36 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Wed, 11 Jun 2003 23:43:36 +0000 (UTC) Original-X-From: guile-devel-bounces+guile-devel=m.gmane.org@gnu.org Thu Jun 12 01:43:33 2003 Return-path: Original-Received: from monty-python.gnu.org ([199.232.76.173]) by main.gmane.org with esmtp (Exim 3.35 #1 (Debian)) id 19QFFc-0000WK-00 for ; Thu, 12 Jun 2003 01:43:32 +0200 Original-Received: from localhost ([127.0.0.1] helo=monty-python.gnu.org) by monty-python.gnu.org with esmtp (Exim 4.20) id 19QFG4-0001vo-Ti for guile-devel@m.gmane.org; Wed, 11 Jun 2003 19:44:00 -0400 Original-Received: from list by monty-python.gnu.org with tmda-scanned (Exim 4.20) id 19QFFX-0001S0-K7 for guile-devel@gnu.org; Wed, 11 Jun 2003 19:43:27 -0400 Original-Received: from mail by monty-python.gnu.org with spam-scanned (Exim 4.20) id 19QFFI-0000u4-Mc for guile-devel@gnu.org; Wed, 11 Jun 2003 19:43:13 -0400 Original-Received: from snoopy.pacific.net.au ([61.8.0.36]) by monty-python.gnu.org with esmtp (Exim 4.20) id 19QFFB-0000ZH-0J for guile-devel@gnu.org; Wed, 11 Jun 2003 19:43:05 -0400 Original-Received: from sunny.pacific.net.au (sunny.pacific.net.au [203.2.228.40]) h5BNgvYd016065 for ; Thu, 12 Jun 2003 09:43:02 +1000 Original-Received: from wisma.pacific.net.au (wisma.pacific.net.au [210.23.129.72]) by sunny.pacific.net.au with ESMTP id h5BNgvQg020393 for ; Thu, 12 Jun 2003 09:42:57 +1000 (EST) Original-Received: from localhost (ppp124.dyn228.pacific.net.au [203.143.228.124]) by wisma.pacific.net.au (8.12.9/8.12.9) with ESMTP id h5BNgrYZ020730 for ; Thu, 12 Jun 2003 09:42:55 +1000 (EST) Original-Received: from gg by localhost with local (Exim 3.35 #1 (Debian)) id 19QFEs-0003Zm-00; Thu, 12 Jun 2003 09:42:46 +1000 Original-To: guile-devel@gnu.org Mail-Copies-To: never In-Reply-To: <87smqwugup.fsf@zip.com.au> (Kevin Ryde's message of "Sat, 31 May 2003 09:58:38 +1000") User-Agent: Gnus/5.090019 (Oort Gnus v0.19) Emacs/21.2 (gnu/linux) X-BeenThere: guile-devel@gnu.org X-Mailman-Version: 2.1b5 Precedence: list List-Id: Developers list for Guile, the GNU extensibility library List-Help: List-Post: List-Subscribe: , List-Archive: List-Unsubscribe: , Errors-To: guile-devel-bounces+guile-devel=m.gmane.org@gnu.org Xref: main.gmane.org gmane.lisp.guile.devel:2522 X-Report-Spam: http://spam.gmane.org/gmane.lisp.guile.devel:2522 --=-=-= I wrote: > > Actually, I see that's a standard feature of putenv supposedly. What > systems is it not? I see freebsd for a start. I added a comment, --=-=-= Content-Disposition: attachment; filename=posix.c.unset-comment.diff --- posix.c.~1.116.~ 2003-06-12 09:24:20.000000000 +1000 +++ posix.c 2003-06-12 09:41:29.000000000 +1000 @@ -1166,8 +1166,9 @@ { #ifdef HAVE_UNSETENV /* No '=' in argument means we should remove the variable from - the environment. Not all putenvs understand this. To be - safe, we do it explicitely using unsetenv. */ + the environment. Not all putenvs understand this (for instance + FreeBSD 4.8 doesn't). To be safe, we do it explicitely using + unsetenv. */ unsetenv (SCM_STRING_CHARS (str)); #else /* On e.g. Win32 hosts putenv() called with 'name=' removes the --=-=-= Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit _______________________________________________ Guile-devel mailing list Guile-devel@gnu.org http://mail.gnu.org/mailman/listinfo/guile-devel --=-=-=--