dark_light changed the topic of #ocaml to: OCaml 3.09.2 available! Archive of Caml Weekly News: http://sardes.inrialpes.fr/~aschmitt/cwn/ | A free book: http://cristal.inria.fr/~remy/cours/appsem/ | Mailing List: http://caml.inria.fr/bin/wilma/caml-list/ | Cookbook: http://pleac.sourceforge.net/
hikozaemon has joined #ocaml
Revision17 has quit [Read error: 110 (Connection timed out)]
DRMacIver` has joined #ocaml
b00t has joined #ocaml
DRMacIver has quit [Read error: 110 (Connection timed out)]
DRMacIver` is now known as DRMacIver
woggle has quit ["leaving"]
Jessehk has joined #ocaml
<Jessehk> I know this sounds incredibly stupid, but would I output a list to stdin in the forum [1;2;3]?
Jessehk has quit [Client Quit]
b00t has quit [Remote closed the connection]
b00t has joined #ocaml
avlondono has quit [Remote closed the connection]
b00t has quit [Client Quit]
jcreigh has joined #ocaml
Revision17 has joined #ocaml
dark_light has joined #ocaml
b00t has joined #ocaml
wimp has joined #ocaml
wimp has left #ocaml []
jcreigh_ has joined #ocaml
jcreigh_ has quit ["Cuius rei demonstrationem mirabilem sane detexi. Hanc marginis exiguitas non caperet."]
jcreigh has quit [Read error: 110 (Connection timed out)]
magnus- has joined #ocaml
shekmalhen has joined #ocaml
nimir has joined #ocaml
nimir has quit [Remote closed the connection]
shekmalhen has quit ["bêêêêêêêh... fait chaud"]
tristram has joined #ocaml
mld has joined #ocaml
falconair_ has left #ocaml []
Smerdyakov has quit ["Leaving"]
Demitar has quit [Read error: 113 (No route to host)]
revision17_ has joined #ocaml
Revision17 has quit [Read error: 110 (Connection timed out)]
b00t has quit [Remote closed the connection]
hikozaemon has quit [Read error: 110 (Connection timed out)]
dark_light has quit [Remote closed the connection]
b00t has joined #ocaml
shekmalhen has joined #ocaml
superjudge has joined #ocaml
shekmalh1n has joined #ocaml
shekmalhen has quit [Read error: 110 (Connection timed out)]
shekmalh1n has quit [Read error: 110 (Connection timed out)]
shekmalhen has joined #ocaml
mikeX has joined #ocaml
b00t has quit [Client Quit]
mikeX has quit ["leaving"]
Naked has joined #ocaml
Naked is now known as Hadaka
magnus- has quit ["Leaving"]
Smerdyakov has joined #ocaml
mld has quit ["Leaving"]
shekmalhen has quit ["bêêêêêêh..."]
descender has quit [Remote closed the connection]
asbeta has joined #ocaml
finelemo1 has joined #ocaml
descender has joined #ocaml
finelemon has quit [Read error: 113 (No route to host)]
finelemo1 has quit [Read error: 110 (Connection timed out)]
finelemon has joined #ocaml
descender has quit ["Why has elegance found so little following? Elegance has the disadvantage that hard work is needed to achieve it and a good e]
kryptt has joined #ocaml
descender has joined #ocaml
descender has quit [Remote closed the connection]
descender has joined #ocaml
slipstream has joined #ocaml
slipstream-- has quit [Success]
tristram has quit [Read error: 60 (Operation timed out)]
youknow365 has joined #ocaml
<youknow365> any jabber stuff for ocaml ???
<youknow365> and also when you do a native compile does it compile itself against the c runtime ?
<youknow365> and does anyone have the jabbr library for ocaml ? i see the link is broken
oracle1_ has joined #ocaml
<DRMacIver> Is there any easy way of seeing what modules the ocaml interpreter thinks it has available?
<DRMacIver> Ubuntu is claiming to have installed a bunch but I can't seem to load them.
<asbeta> like what?
<DRMacIver> OpenGL bindings at the moment, but I've had the same problem with others I've looked for.
<DRMacIver> (e.g. Registry and CGI for mod_caml)
<asbeta> you would have to specify .cma to ocamlc
<DRMacIver> I think I tried that.
<DRMacIver> I'll double check.
mikeX has joined #ocaml
oracle1 has quit [Read error: 110 (Connection timed out)]
<DRMacIver> Nope. Still says it can't find it.
<asbeta> is there any .cmi file with similar name?
<DRMacIver> Hmm. Ok, the .cma file is actually definitely on my computer. I wonder if it's just a path issue.
<DRMacIver> No cmi with a similar name though, no.
<asbeta> hmm
<DRMacIver> Yeah, looks like it's a path issue.
<DRMacIver> Or some other related environment variable woes.
<DRMacIver> Sigh
<DRMacIver> I guess I *could* just copy all the relevant libraries into the working directory for the file. :)
<asbeta> yeah, and then start deleting them :)
<DRMacIver> Hm?
<asbeta> to determine what files are actually needed
<DRMacIver> Oh, right.
<DRMacIver> Well I should be able to find that out from the doc page.
<DRMacIver> After all, it's gtk stuff. It's not like it's going to have 10 million dependencies or anything. :(
<dylan> try ocamlfind?
<DRMacIver> ocamlfind?
<dylan> yeah.
<dylan> ocamlfind is a packaging system for ocaml, and more
<DRMacIver> Ah
<DRMacIver> Shiny
<dylan> to automagically get it to pass the right flags for lablgtk, try:
<dylan> ocamlfind -package lablgtk toplevel
<dylan> etc
<DRMacIver> ocamlfind doesn't seem very keen on that syntax. :)
<dylan> well
<dylan> ocamlfind toplevel -package lablgtk perhaps
<dylan> or perhaps toplevel is the wrong sub command
<DRMacIver> It seems to expect an argument along the lines of "ocamlfind ocamlc -package labelgtk" etc.
<dylan> hmm
<dylan> no toplevel command
<dylan> note: lablgtk has no E in i t
<DRMacIver> Oops, yes. I got that right on the commandline and fumbled on writing it out here. :)
<DRMacIver> Odd. It's not finding -package lablglut
<dylan> weird
<DRMacIver> (Which I have confirmed to be on my system)
<DRMacIver> I wonder if there's some oddness with the Ubuntu ocaml packages. Seems unlikely.
<DRMacIver> (Also I'm notorious for generating strange and inexplicable errors. Sometimes it's even my fault. :/ )
<DRMacIver> Eh. It's late.
* DRMacIver gives up on OCaml for the night
<DRMacIver> Nice language though. Wish I hadn't given up on it last time I tried. :)
<DRMacIver> (The changes from ML syntax bothered me)
Oatmeat|cs has quit ["Leaving"]
mikeX has quit ["leaving"]
pinupgeek has joined #ocaml
pinupgeek has left #ocaml []
<youknow365> why are all the jabbr ocaml libs in FreeBSD port
<youknow365> why cant i find any of these libs
<youknow365> yaxpo
<youknow365> or jabbr
asbeta has quit []
kryptt has quit [Remote closed the connection]
<youknow365> if i have a freebsd port will it work for linux anyone know ?
<youknow365> i have all the .cmi files
<youknow365> is something doen differently to these fiels for bsd or anything or is a cmi file a .cmi file ?
krumms has joined #ocaml
<krumms> I'm trying to compile a simple program (http://ocamlsdl.sourceforge.net/devel.html - the VIDEO sample) and I'm getting "Unbound module Sdl" from the ocaml compiler
<krumms> the command I'm using to compile: ocamlc sdldemo.ml sdl.cma sdlvideo.cma
<krumms> what else do I need on the command line to build that sample?
<youknow365> im having issues here myself
<krumms> it comes close if I use ocamlc -I /path/to/ocamlsdl sdldemo.ml - but then fails with "The external function sdl_quit is not available."
<dylan> you need to list the cma's before the ml's
<youknow365> does anyone here have the jabbr library for ocaml ??
<krumms> "Error on dynamically loaded library: /usr/lib/ocaml/3.09.1/stublibs/dllsdlstub.so: undefined symbol: alloc_bigarray_dims"
revision17_ has quit [Read error: 110 (Connection timed out)]
<dylan> youknow365: not me
<youknow365> grrrrrrrr
<youknow365> you know any where t o get any of the jabber files ?
<dylan> Nope
<dylan> I would've said so when you asked earlier
<youknow365> man o man
Revision17 has joined #ocaml
<youknow365> why do these libraries authors sites DIE
<youknow365> also would the .cmi or cmxa or whatever compile differently under freebsd or would those be the same for linux as well ?