From steve at policeauctionz.com Tue May 10 23:54:02 2005 From: steve at policeauctionz.com (Steve Scott) Date: Tue, 10 May 2005 23:54:02 UT Subject: [lgtk-devel] I have a question about your website? Message-ID: <20050510235402.1C6A721292C@mail1.icpbounce.com> An embedded and charset-unspecified text was scrubbed... Name: not available URL: -------------- next part -------------- An HTML attachment was scrubbed... URL: From dave at davidcook.org Thu May 26 06:08:52 2005 From: dave at davidcook.org (David M. Cook) Date: Wed, 25 May 2005 23:08:52 -0700 Subject: [lgtk-devel] Building on mixed 32-bit/64-bit system Message-ID: <20050526060852.GA4941@davidcook.org> I'm trying to build lgtk on Fedora Core 4 Test 3 for x86_64. I've got all the 32-bit compatability libs installed in /usr/lib. However, I can't get the lgtk build script to find them. /usr/lib64 is always searched first, so it never sees the compatible 32-bit libs in /usr/lib. Anyone know how I can get it to actually look in the right place? (This seems to be an issue with clg, too. The only gtk lisp bindings I could get to build was cells-gtk by explicity setting the location of the libraries in its build script.) Thanks, Dave Cook From mmommer at common-lisp.net Thu May 26 22:43:32 2005 From: mmommer at common-lisp.net (Mario Mommer) Date: Fri, 27 May 2005 00:43:32 +0200 Subject: [lgtk-devel] Building on mixed 32-bit/64-bit system In-Reply-To: <20050526060852.GA4941@davidcook.org> References: <20050526060852.GA4941@davidcook.org> Message-ID: "David M. Cook" writes: > I'm trying to build lgtk on Fedora Core 4 Test 3 for x86_64. I've got all > the 32-bit compatability libs installed in /usr/lib. However, I can't get > the lgtk build script to find them. /usr/lib64 is always searched first, so > it never sees the compatible 32-bit libs in /usr/lib. Anyone know how I can > get it to actually look in the right place? The trick is probably to get pkgconfig to return the right paths. I don't know how to do that, though. The alternative is setting the libs by hand. The list of libraries is first put into *gtklibs* when the .asd file is loaded. You can intercept them at some point, most likely in the perform method. Search for load-foreign and *gtklibs* > (This seems to be an issue with clg, too. The only gtk lisp bindings I > could get to build was cells-gtk by explicity setting the location of the > libraries in its build script.) Perhaps I should add to lgtk some way of specifying them directly. Hm... Regards Mario.