caml-list - the Caml user's mailing list
 help / color / mirror / Atom feed
* Bindings for ODE (Open Dynamics Engine), and a small "game"
@ 2005-06-24 18:29 Richard Jones
  2005-06-25 23:25 ` [Caml-list] " Paul Snively
  2005-06-26 10:25 ` Richard Jones
  0 siblings, 2 replies; 7+ messages in thread
From: Richard Jones @ 2005-06-24 18:29 UTC (permalink / raw)
  To: caml-list

http://www.annexia.org/tmp/ocamlode-0.5.tar.gz

You will need: ocamlsdl, lablgl, extlib and of course the ODE library
itself.  There's a (not very good) toy game in there too!

Rich.

-- 
Richard Jones, CTO Merjis Ltd.
Merjis - web marketing and technology - http://merjis.com
Team Notepad - intranets and extranets for business - http://team-notepad.com


^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: [Caml-list] Bindings for ODE (Open Dynamics Engine), and a small "game"
  2005-06-24 18:29 Bindings for ODE (Open Dynamics Engine), and a small "game" Richard Jones
@ 2005-06-25 23:25 ` Paul Snively
  2005-06-25 23:38   ` Richard Jones
  2005-06-26  7:28   ` Alain Frisch
  2005-06-26 10:25 ` Richard Jones
  1 sibling, 2 replies; 7+ messages in thread
From: Paul Snively @ 2005-06-25 23:25 UTC (permalink / raw)
  To: Richard Jones; +Cc: caml-list

-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

Hi Rich,

On Jun 24, 2005, at 11:29 AM, Richard Jones wrote:

> http://www.annexia.org/tmp/ocamlode-0.5.tar.gz
>
> You will need: ocamlsdl, lablgl, extlib and of course the ODE library
> itself.  There's a (not very good) toy game in there too!
>
This is great stuff! Unfortunately for me, I see that your build  
system assumes that lablgl is available as a findlib package. AFAICT,  
that's only the case for Debian users, which I'm not. :-) So if a)  
someone can tell me how to make lablgl a findlib (pseudo?) package,  
or b) you could revise your build system to reflect the shortcomings  
of lablgl's installation process for the rest of us, that'd be great.

> Rich.
>
> -- 
> Richard Jones, CTO Merjis Ltd.
> Merjis - web marketing and technology - http://merjis.com
> Team Notepad - intranets and extranets for business - http://team- 
> notepad.com
>
> _______________________________________________
> Caml-list mailing list. Subscription management:
> http://yquem.inria.fr/cgi-bin/mailman/listinfo/caml-list
> Archives: http://caml.inria.fr
> Beginner's list: http://groups.yahoo.com/group/ocaml_beginners
> Bug reports: http://caml.inria.fr/bin/caml-bugs

Best regards,
Paul Snively


-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.1 (Darwin)

iEYEARECAAYFAkK96A4ACgkQO3fYpochAqK7fwCg4wUA7Q2D9LmxG7gNTyliNs0e
xpgAnRtjVfptpkMktZtYm2a+0QCSItz1
=QRLQ
-----END PGP SIGNATURE-----


^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: [Caml-list] Bindings for ODE (Open Dynamics Engine), and a small "game"
  2005-06-25 23:25 ` [Caml-list] " Paul Snively
@ 2005-06-25 23:38   ` Richard Jones
  2005-06-26  7:28   ` Alain Frisch
  1 sibling, 0 replies; 7+ messages in thread
From: Richard Jones @ 2005-06-25 23:38 UTC (permalink / raw)
  To: Paul Snively; +Cc: caml-list

[-- Attachment #1: Type: text/plain, Size: 1250 bytes --]

On Sat, Jun 25, 2005 at 04:25:57PM -0700, Paul Snively wrote:
> >You will need: ocamlsdl, lablgl, extlib and of course the ODE library
> >itself.  There's a (not very good) toy game in there too!
> >
> This is great stuff! Unfortunately for me, I see that your build  
> system assumes that lablgl is available as a findlib package. AFAICT,  
> that's only the case for Debian users, which I'm not. :-) So if a)  
> someone can tell me how to make lablgl a findlib (pseudo?) package,  
> or b) you could revise your build system to reflect the shortcomings  
> of lablgl's installation process for the rest of us, that'd be great.

You should just be able to replace the -packages ... bit with the list
of appropriate -I +lib1 -I +lib2 ... includes, and -linkpkg with the
list of libraries (in dependency order - findlib works out the
dependencies for you).  Or use the attached META file which is from
Debian.

I've just been doing some intensive -ahem- research into the physics
of the original Katamari game, and might have a more playable update
to that too soon :-)

Rich.

-- 
Richard Jones, CTO Merjis Ltd.
Merjis - web marketing and technology - http://merjis.com
Team Notepad - intranets and extranets for business - http://team-notepad.com

[-- Attachment #2: META --]
[-- Type: text/plain, Size: 317 bytes --]

version="1.00"
directory="+lablgl"
archive(byte) = "lablgl.cma"
archive(native) = "lablgl.cmxa"

package "togl" (
  requires = "labltk lablgl"
  archive(byte) = "togl.cma"
  archive(native) = "togl.cmxa"
)

package "glut" (
  requires = "lablgl"
  archive(byte) = "lablglut.cma"
  archive(native) = "lablglut.cmxa"
)

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: [Caml-list] Bindings for ODE (Open Dynamics Engine), and a small "game"
  2005-06-25 23:25 ` [Caml-list] " Paul Snively
  2005-06-25 23:38   ` Richard Jones
@ 2005-06-26  7:28   ` Alain Frisch
  2005-06-26  8:26     ` Richard Jones
  1 sibling, 1 reply; 7+ messages in thread
From: Alain Frisch @ 2005-06-26  7:28 UTC (permalink / raw)
  To: caml-list

Paul Snively wrote:
> This is great stuff! Unfortunately for me, I see that your build  system
> assumes that lablgl is available as a findlib package. AFAICT,  that's
> only the case for Debian users, which I'm not. 

FWIW, this is also the case for GODI users.

-- Alain


^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: [Caml-list] Bindings for ODE (Open Dynamics Engine), and a small "game"
  2005-06-26  7:28   ` Alain Frisch
@ 2005-06-26  8:26     ` Richard Jones
  2005-06-26  9:19       ` Alain Frisch
  0 siblings, 1 reply; 7+ messages in thread
From: Richard Jones @ 2005-06-26  8:26 UTC (permalink / raw)
  Cc: caml-list

On Sun, Jun 26, 2005 at 09:28:50AM +0200, Alain Frisch wrote:
> Paul Snively wrote:
> > This is great stuff! Unfortunately for me, I see that your build  system
> > assumes that lablgl is available as a findlib package. AFAICT,  that's
> > only the case for Debian users, which I'm not. 
> 
> FWIW, this is also the case for GODI users.

This is a bug in GODI though, right?

Rich.

-- 
Richard Jones, CTO Merjis Ltd.
Merjis - web marketing and technology - http://merjis.com
Team Notepad - intranets and extranets for business - http://team-notepad.com


^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: [Caml-list] Bindings for ODE (Open Dynamics Engine), and a small "game"
  2005-06-26  8:26     ` Richard Jones
@ 2005-06-26  9:19       ` Alain Frisch
  0 siblings, 0 replies; 7+ messages in thread
From: Alain Frisch @ 2005-06-26  9:19 UTC (permalink / raw)
  To: Richard Jones; +Cc: caml-list

Richard Jones wrote:
> On Sun, Jun 26, 2005 at 09:28:50AM +0200, Alain Frisch wrote:
> 
>>Paul Snively wrote:
>>
>>>This is great stuff! Unfortunately for me, I see that your build  system
>>>assumes that lablgl is available as a findlib package. AFAICT,  that's
>>>only the case for Debian users, which I'm not. 
>>
>>FWIW, this is also the case for GODI users.
> 
> 
> This is a bug in GODI though, right?


What do you mean ?  GODI adds the necessary information to register 
labgl as a findlib package.

-- Alain


^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: [Caml-list] Bindings for ODE (Open Dynamics Engine), and a small "game"
  2005-06-24 18:29 Bindings for ODE (Open Dynamics Engine), and a small "game" Richard Jones
  2005-06-25 23:25 ` [Caml-list] " Paul Snively
@ 2005-06-26 10:25 ` Richard Jones
  1 sibling, 0 replies; 7+ messages in thread
From: Richard Jones @ 2005-06-26 10:25 UTC (permalink / raw)
  To: caml-list

There's a web page for this now:

http://merjis.com/developers/ocamlode

Rich.

-- 
Richard Jones, CTO Merjis Ltd.
Merjis - web marketing and technology - http://merjis.com
Team Notepad - intranets and extranets for business - http://team-notepad.com


^ permalink raw reply	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2005-06-26 10:18 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2005-06-24 18:29 Bindings for ODE (Open Dynamics Engine), and a small "game" Richard Jones
2005-06-25 23:25 ` [Caml-list] " Paul Snively
2005-06-25 23:38   ` Richard Jones
2005-06-26  7:28   ` Alain Frisch
2005-06-26  8:26     ` Richard Jones
2005-06-26  9:19       ` Alain Frisch
2005-06-26 10:25 ` Richard Jones

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 NNTP newsgroup(s).