From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Delivered-To: caml-list@yquem.inria.fr Received: from concorde.inria.fr (concorde.inria.fr [192.93.2.39]) by yquem.inria.fr (Postfix) with ESMTP id ACE5BBCAE for ; Sun, 26 Jun 2005 01:31:37 +0200 (CEST) Received: from pauillac.inria.fr (pauillac.inria.fr [128.93.11.35]) by concorde.inria.fr (8.13.0/8.13.0) with ESMTP id j5PNVbIL019610 for ; Sun, 26 Jun 2005 01:31:37 +0200 Received: from nez-perce.inria.fr (nez-perce.inria.fr [192.93.2.78]) by pauillac.inria.fr (8.7.6/8.7.3) with ESMTP id BAA07327 for ; Sun, 26 Jun 2005 01:31:36 +0200 (MET DST) Received: from furbychan.cocan.org (furbychan.cocan.org [80.68.91.176]) by nez-perce.inria.fr (8.13.0/8.13.0) with ESMTP id j5PNVZbN017877 (version=TLSv1/SSLv3 cipher=EDH-RSA-DES-CBC3-SHA bits=168 verify=NO) for ; Sun, 26 Jun 2005 01:31:36 +0200 Received: from rich by furbychan.cocan.org with local (Exim 3.35 #1 (Debian)) id 1DmKED-0004Sy-00; Sun, 26 Jun 2005 00:38:25 +0100 Date: Sun, 26 Jun 2005 00:38:24 +0100 To: Paul Snively Cc: caml-list@inria.fr Subject: Re: [Caml-list] Bindings for ODE (Open Dynamics Engine), and a small "game" Message-ID: <20050625233823.GA16407@furbychan.cocan.org> References: <20050624182949.GA11629@furbychan.cocan.org> <4F213F42-D33D-465C-B958-F05F3CFE6C18@mac.com> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="PNTmBPCT7hxwcZjr" Content-Disposition: inline In-Reply-To: <4F213F42-D33D-465C-B958-F05F3CFE6C18@mac.com> User-Agent: Mutt/1.3.28i From: Richard Jones X-j-chkmail-Score: MSGID : 42BDE959.002 on concorde : j-chkmail score : X : 0/20 1 X-j-chkmail-Score: MSGID : 42BDE957.000 on nez-perce : j-chkmail score : X : 0/20 1 X-Miltered: at concorde with ID 42BDE959.002 by Joe's j-chkmail (http://j-chkmail.ensmp.fr)! X-Miltered: at nez-perce with ID 42BDE957.000 by Joe's j-chkmail (http://j-chkmail.ensmp.fr)! X-Spam: no; 0.00; caml-list:01 bindings:01 ocamlsdl:01 lablgl:01 lablgl:01 findlib:01 afaict:01 findlib:01 revise:01 lib:01 lib:01 -linkpkg:01 dependencies:01 notepad:01 byte:01 X-Attachments: name="META" X-Spam-Checker-Version: SpamAssassin 3.0.2 (2004-11-16) on yquem.inria.fr X-Spam-Status: No, score=0.0 required=5.0 tests=none autolearn=disabled version=3.0.2 X-Spam-Level: --PNTmBPCT7hxwcZjr Content-Type: text/plain; charset=us-ascii Content-Disposition: inline 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 --PNTmBPCT7hxwcZjr Content-Type: text/plain; charset=us-ascii Content-Disposition: attachment; filename=META 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" ) --PNTmBPCT7hxwcZjr--