Re: Need help tracking down guile issue

2007-09-18 Thread Derek Atkins
Hi,

Please dont forget to cc the list on all replies...

Allen Briggs [EMAIL PROTECTED] writes:

 On Wed, Sep 12, 2007 at 11:01:28AM -0400, Derek Atkins wrote:
 Oh, yeah, on MacOS you might need to force guile 1.6.x

 I decided to punt and run NetBSD/i386 in a VMware Fusion VM instead of
 wrestling with it.  I'm curious, though, what the problem might be with
 newer versions of guile on OS X?  You seem to be somewhat familiar with
 it.  Any pointers?  A quick look around the web seems to reveal that
 there have been issues, but little about the source of the issues or if
 anyone's working on fixing them.

The problem is guile 1.8 and slib -- they don't work well together
without a lot of help, and if the packagers dont help it, well.. You
get stuck.  Check the wiki -- there's a command to the macports
'port' command to tell it to use guile 1.6 when installing gnucash.
But these issues are outside our gnucash's pervue.

 Thanks,
 -allen

-derek

-- 
   Derek Atkins, SB '93 MIT EE, SM '95 MIT Media Laboratory
   Member, MIT Student Information Processing Board  (SIPB)
   URL: http://web.mit.edu/warlord/PP-ASEL-IA N1NWH
   [EMAIL PROTECTED]PGP key available
___
gnucash-devel mailing list
gnucash-devel@gnucash.org
https://lists.gnucash.org/mailman/listinfo/gnucash-devel


Re: Need help tracking down guile issue

2007-09-12 Thread Derek Atkins
Allen Briggs [EMAIL PROTECTED] writes:

 On Tue, Sep 11, 2007 at 01:42:01PM -0400, Derek Atkins wrote:
 What version of guile?
 What version of slib?

 Duh...  Sorry...  guile 1.8.2, slib 3.1.4

Really?   Huh!  And this works?

What do you get from:

  guile -c (use-modules (ice-9 slib)) (require 'printf)

Do you maybe have multiple versions of guile or slib installed?

-derek
-- 
   Derek Atkins, SB '93 MIT EE, SM '95 MIT Media Laboratory
   Member, MIT Student Information Processing Board  (SIPB)
   URL: http://web.mit.edu/warlord/PP-ASEL-IA N1NWH
   [EMAIL PROTECTED]PGP key available
___
gnucash-devel mailing list
gnucash-devel@gnucash.org
https://lists.gnucash.org/mailman/listinfo/gnucash-devel


Re: Need help tracking down guile issue

2007-09-12 Thread Allen Briggs
On Wed, Sep 12, 2007 at 09:32:23AM -0400, Derek Atkins wrote:
  Duh...  Sorry...  guile 1.8.2, slib 3.1.4
 Really?   Huh!  And this works?

FSVO works, I guess.

 What do you get from:
   guile -c (use-modules (ice-9 slib)) (require 'printf)

$ guile -c (use-modules (ice-9 slib)) (require 'printf)
WARNING: (guile-user): imported module (ice-9 slib) overrides core binding 
`provide'
WARNING: (guile-user): imported module (ice-9 slib) overrides core binding 
`provided?'

 Do you maybe have multiple versions of guile or slib installed?

I don't believe so.  I've only installed these, and OS X, as far as I
know, doesn't come with either.

From what I've heard, this combination works on NetBSD, but doesn't
work on OS X.

-allen

-- 
Allen Briggs  |  http://www.ninthwonder.com/~briggs/  |  [EMAIL PROTECTED]
___
gnucash-devel mailing list
gnucash-devel@gnucash.org
https://lists.gnucash.org/mailman/listinfo/gnucash-devel


Re: Need help tracking down guile issue

2007-09-12 Thread Derek Atkins
Oh, yeah, on MacOS you might need to force guile 1.6.x

-derek

Quoting Allen Briggs [EMAIL PROTECTED]:

 On Wed, Sep 12, 2007 at 09:32:23AM -0400, Derek Atkins wrote:
  Duh...  Sorry...  guile 1.8.2, slib 3.1.4
 Really?   Huh!  And this works?

 FSVO works, I guess.

 What do you get from:
   guile -c (use-modules (ice-9 slib)) (require 'printf)

 $ guile -c (use-modules (ice-9 slib)) (require 'printf)
 WARNING: (guile-user): imported module (ice-9 slib) overrides core 
 binding `provide'
 WARNING: (guile-user): imported module (ice-9 slib) overrides core 
 binding `provided?'

 Do you maybe have multiple versions of guile or slib installed?

 I don't believe so.  I've only installed these, and OS X, as far as I
 know, doesn't come with either.

 From what I've heard, this combination works on NetBSD, but doesn't
 work on OS X.

 -allen

 --
 Allen Briggs  |  http://www.ninthwonder.com/~briggs/  |  
 [EMAIL PROTECTED]




-- 
   Derek Atkins, SB '93 MIT EE, SM '95 MIT Media Laboratory
   Member, MIT Student Information Processing Board  (SIPB)
   URL: http://web.mit.edu/warlord/PP-ASEL-IA N1NWH
   [EMAIL PROTECTED]PGP key available

___
gnucash-devel mailing list
gnucash-devel@gnucash.org
https://lists.gnucash.org/mailman/listinfo/gnucash-devel


Re: Need help tracking down guile issue

2007-09-11 Thread Derek Atkins
What version of guile?
What version of slib?

-derek

Quoting Allen Briggs [EMAIL PROTECTED]:

 Hi,

 I'm working on trying to get gnucash (2.2.1) to work on OS X / Darwin
 within the pkgsrc system.  It compiles and links OK, but when I try to
 start it, I see:

 $ gnucash
 gnc.bin-Message: main: binreloc relocation support was disabled at 
 configure time.

 Backtrace:
 In current input:
   1: 0* [gnc:reldate-initialize]
 In /Volumes/NetBSD/pkg/share/gnucash/scm/date-utilities.scm:
 844: 1* [gnc:make-reldate-hash #(() () () () ...) (# # # # ...)]
 382: 2  (map (lambda (reldate) (hash-set! hash # reldate)) reldate-list)

 /Volumes/NetBSD/pkg/share/gnucash/scm/date-utilities.scm:382:3: In 
 expression (map (lambda # #) reldate-list):
 /Volumes/NetBSD/pkg/share/gnucash/scm/date-utilities.scm:382:3: 
 Unbound variable: map

 ...and it quits.  If I run guile from the command line, it seems to be
 able to find map just fine:

 $ guile
 guile map
 #primitive-generic map
 guile

 I know next to nothing about guile.  Does anyone have any suggestions on
 how to track this down?

 Thanks,
 -allen

 --
 Allen Briggs  |  http://www.ninthwonder.com/~briggs/  |  
 [EMAIL PROTECTED]
 ___
 gnucash-devel mailing list
 gnucash-devel@gnucash.org
 https://lists.gnucash.org/mailman/listinfo/gnucash-devel




-- 
   Derek Atkins, SB '93 MIT EE, SM '95 MIT Media Laboratory
   Member, MIT Student Information Processing Board  (SIPB)
   URL: http://web.mit.edu/warlord/PP-ASEL-IA N1NWH
   [EMAIL PROTECTED]PGP key available

___
gnucash-devel mailing list
gnucash-devel@gnucash.org
https://lists.gnucash.org/mailman/listinfo/gnucash-devel


Re: Need help tracking down guile issue

2007-09-11 Thread Allen Briggs
On Tue, Sep 11, 2007 at 01:42:01PM -0400, Derek Atkins wrote:
 What version of guile?
 What version of slib?

Duh...  Sorry...  guile 1.8.2, slib 3.1.4

-allen

-- 
Allen Briggs  |  http://www.ninthwonder.com/~briggs/  |  [EMAIL PROTECTED]
___
gnucash-devel mailing list
gnucash-devel@gnucash.org
https://lists.gnucash.org/mailman/listinfo/gnucash-devel