IRC channel logs

2014-05-05.log

back to list of logs

<zacts>that's probably good advice actually, I tend to want to work on many projects at once.
<davexunit>this video isn't very exciting, but I added live asset reloading to guile-2d: http://media.dthompson.us/u/davexunit/m/guile-2d-live-asset-reload-3fc5/
<davexunit>so you can modify image/sound/etc. files and see the changes reflected in the game automagically.
<ijp>interesting
<zacts>ijp: ok, I'll wait on reading a haskell book, for a while.
<zacts>it was only 14 ch's, though.. that was my line of reasoning
<zacts>but I also don't want to spread myself out too thin.
<ArneBab>davexunit: I like it!
<daviid>is round not supposed to return an exact integer?
<daviid>sorry, missread the manual, it returns an inexact integer indeed
<nalaginrut>morning guilers~
<sneek>nalaginrut, you have 1 message.
<sneek>nalaginrut, wingo says: thanks for the report about ,tr in master; just fixed it (i think)
<nalaginrut>sneek: later tell wingo thanks for it, helped me a lot ;-D
<sneek>Okay.
<civodul>Hello Guilers!
<zacts>lo
<nalaginrut>heya
<wingo>moin
<sneek>Welcome back wingo, you have 1 message.
<sneek>wingo, nalaginrut says: thanks for it, helped me a lot ;-D
<LRN>madsy, libatomic_ops was updated to 7.4.2
<darkknight_>Hey guys, I need help with building guile on Scientific Linux. Can someone help me out?
<wingo>i'm not familiar with scientific linux, but we can give it a go
<wingo>are you building 2.0.11 ?
<darkknight_>Hi wingo, yeah...
<wingo>what version of libgc?
<darkknight_>When I run 'make', it complains error: static declaration of 'GC_set_finalizer_notifier' follows non-static declaration
<darkknight_>libgc is 7.5.0
<wingo>i don't think 7.5.0 exists, does it?
<darkknight_>Sorry I meant bdw-gc 7.5.0
<wingo>usually that configure error means that you partially configured against an old version, then reconfigured against a new one
<wingo>is 7.5.0 released? i was not aware of that
<wingo>are you building bdw-gc from git?
<darkknight_>yeah
<darkknight_>got it from github
*wingo looks
<wingo>interesting, i didn't know they gave it that version
<wingo>anyway, cool
<wingo>so probably what you need to do is to nuke your guile build
<wingo>and try again from the tarball
<darkknight_>okay
<wingo>i build from bdw-gc git as well
<darkknight_>hmm... trying a new build now... will let you know once its done
<wingo>cool
<wingo>the .go compiling part takes a while
<darkknight_>No luck... make fails at the exact same spot in the new build... I have put the logs from make here: http://pastebin.com/tBiQiRi0
<wingo>grep FINALIZER config.log
<wingo>grep GC_set_finalizer_notifier config.log
<wingo>er
<wingo>grep -C3 GC_set_finalizer_notifier config.log
<nalaginrut>darkknight_: maybe you have an old version installed too
<wingo>right
<nalaginrut> http://lists.gnu.org/archive/html/guile-user/2012-08/msg00027.html
<darkknight_>I have pasted the output from 'grep -C3 GC_set_finalizer_notifier config.log' here: http://pastebin.com/mvJXGBbG
<darkknight_>nalaginrut: you mean an older version of libgc?
<nalaginrut>darkknight_: yes, I think the older and uncleaned one may cause some problem
<wingo>indeed, it seems to have found gc.h somewhere else
<darkknight_>Even if an older version of libgc exists on the machine, guile should build against new version of libgc since I am specifying the corresponding paths using BDW_GC_CFLAGS and BDW_GC_LIBS variables, isn't it?
<civodul>people! come visit Munich this summer! → http://gnu.org/ghm/upcoming.html
<ArneBab>civodul: Munich might actually be possible for me *happy*
<civodul>cool!
<civodul>wingo: you should email guile-user about the GHM!
<civodul>i can't do it, i already spammed the guix ml
<civodul>:-P
<wingo>nice! i'll do it :)
<civodul>great
<civodul>wingo: do you plan to come?
<wingo>i haven't planned in general
<wingo>but yeah it sounds like a great idea :)
***sneek_ is now known as sneek
***mario-go` is now known as mario-goulart
***wklely is now known as wkelly
<daviid>hello guilers! how can Ifind out if a server-socket #:port has already been used
<ijp>you try using it, and check for an exception
<daviid>ok, tx
<ijp>checking first would only lead to a race condition
<daviid>ah yes i always forget to consider these
<daviid>tx