unofficial mirror of guile-devel@gnu.org 
 help / color / mirror / Atom feed
From: "Andreas Vögele" <voegelas@gmx.net>
Subject: Re: Upcoming 1.6.5 release.
Date: Mon, 9 Aug 2004 19:17:14 +0200	[thread overview]
Message-ID: <F51FE0FF-EA27-11D8-A300-000D93673682@gmx.net> (raw)
In-Reply-To: <BFF0D86E-EA1D-11D8-8215-000D932C78D8@lurchi.franken.de>

Michael Tuexen writes:

> This seems to be related to the problem I see on Mac OS X: I can build 
> and use the static version, but not the dynamic version. [...] This 
> would definitely be good if building dynamic libs is supported.

There's a Fink port called guile16 that supports shared libraries. The 
current CVS version does also work under Mac OS X. Furthermore, the 
code that uses _NSGetEnviron is already in the 1.6 branch. Only the 
corresponding checks are missing from configure.in.

Guile snapshots are available at 
<ftp://ftp.dt.e-technik.uni-dortmund.de/pub/guile/snapshots>.
You can unpack and build the snapshot with the following  commands 
under Mac OS X:

tar xzf guile-core.tar.gz
cd guile-core-20040808
sh configure
echo >>config.h "#define HAVE__NSGETENVIRON 1"
echo >>config.h "#define HAVE_CRT_EXTERNS_H 1"
make
make check

One check will fail. That's the putenv problem mentioned in my previous 
message. If you want to get rid of this error edit libguile/posix.c. 
Look for the function scm_putenv and replace the putenv call with 
something like

if (strchr (ptr, '='))
   rv = putenv (ptr);
else
   {
     unsetenv (ptr);
     rv = 0;
   }



_______________________________________________
Guile-devel mailing list
Guile-devel@gnu.org
http://lists.gnu.org/mailman/listinfo/guile-devel


  reply	other threads:[~2004-08-09 17:17 UTC|newest]

Thread overview: 16+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2004-08-07 17:24 Upcoming 1.6.5 release Rob Browning
2004-08-07 19:56 ` Matthias Koeppe
2004-08-08 18:39   ` Rob Browning
2004-08-09  8:38 ` Michael Tuexen
2004-08-09 15:17 ` Andreas Vögele
2004-08-09 16:04   ` Michael Tuexen
2004-08-09 17:17     ` Andreas Vögele [this message]
2004-08-09 19:16       ` Michael Tuexen
2004-08-09 19:16       ` Michael Tuexen
2004-08-10  0:20   ` Kevin Ryde
2004-08-10  0:26   ` Kevin Ryde
2004-08-10  9:19     ` Marius Vollmer
2004-08-12  8:10       ` Andreas Vögele
  -- strict thread matches above, loose matches on Subject: below --
2004-08-11  7:31 Neil Jerram
2004-08-19 14:58 ` Rob Browning
2003-09-20  2:58 Rob Browning

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

  List information: https://www.gnu.org/software/guile/

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

  git send-email \
    --in-reply-to=F51FE0FF-EA27-11D8-A300-000D93673682@gmx.net \
    --to=voegelas@gmx.net \
    /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).