Mysterious Dependencies

2006-01-24 Thread Eric Lemings
Title: Message Hello, On RedHat AS 4u2, Libtool is putting the following line in my .la files. dependency_libs=' -ldl /amd/packages/mdx/redhat/compilers/gcc-3.4.4-2/bin/../lib/gcc/i386-redhat-linux/3.4.4//libstdc++.la

RE: libltdl examples

2005-12-30 Thread Eric Lemings
-Original Message- From: Kurt Roeckx [mailto:[EMAIL PROTECTED] Sent: Thursday, December 29, 2005 1:03 PM To: Eric Lemings Cc: 'libtool@gnu.org' Subject: Re: libltdl examples On Thu, Dec 29, 2005 at 09:44:33AM -0700, Eric Lemings wrote: Hi, I'm looking for software

RE: libltdl examples

2005-12-30 Thread Eric Lemings
-Original Message- From: Bob Friesenhahn [mailto:[EMAIL PROTECTED] Sent: Friday, December 30, 2005 1:01 PM To: Eric Lemings Cc: 'libtool@gnu.org' Subject: RE: libltdl examples On Fri, 30 Dec 2005, Eric Lemings wrote: Do any of these use C++ as their primary language

RE: libltdl examples

2005-12-30 Thread Eric Lemings
-Original Message- From: Bob Friesenhahn [mailto:[EMAIL PROTECTED] Sent: Friday, December 30, 2005 1:33 PM To: Eric Lemings Cc: 'libtool@gnu.org' Subject: RE: libltdl examples On Fri, 30 Dec 2005, Eric Lemings wrote: Do any of these use C++ as their primary language

libltdl examples

2005-12-29 Thread Eric Lemings
Title: Message Hi, I'm looking for software distributions that use libltdl, especially packages that use libltdl in libraries (as opposed to executables) to load other libraries. Please post or send me a link if you know of any. Thanks, Eric.

Re: Libtool and Pkg-Config

2001-04-22 Thread Eric Lemings
Martijn van Beers wrote: On Sun, Apr 22, 2001 at 07:34:42AM -0300, Alexandre Oliva wrote: On Apr 22, 2001, Eric Lemings [EMAIL PROTECTED] wrote: Currently, they just install their .pc file into pkg-config's data directory. Which is exactly the wrong approach. A package should never

Re: Libtool and Pkg-Config

2001-04-22 Thread Eric Lemings
Eric Lemings wrote: What I do know though is that a few (if not several) packages are already using pkg-config. So if libtool is extended with that functionality, it should be compatible with the current behavior of pkg-config. This means that libtool would first look for the .pc files

Re: Libtool and Pkg-Config

2001-04-22 Thread Eric Lemings
[EMAIL PROTECTED] wrote: On Sun, Apr 22, 2001 at 01:29:23AM -0600, Eric Lemings wrote: I was thinking that if the data maintained by pkg-config could somehow be added to the .la files and libtool could keep track (a registry perhaps) of installed .la files, that would just about cover

Re: Libtool and Pkg-Config

2001-04-22 Thread Eric Lemings
Alexandre Oliva wrote: On Apr 22, 2001, Eric Lemings [EMAIL PROTECTED] wrote: It works the same more or less. New Autoconf macros that use pkg-config look for it in the current path and it looks for data on installed libraries in its data directory. And how are packages going

Re: Libtool and Pkg-Config

2001-04-22 Thread Eric Lemings
Alexandre Oliva wrote: On Apr 21, 2001, Eric Lemings [EMAIL PROTECTED] wrote: 2.0 spawned a separate tool called pkg-config that allows all packages to use one tool rather than several different scripts to query compile flags, link flags, and other configuration data. What I don't

Libtool and Pkg-Config

2001-04-21 Thread Eric Lemings
Because of a growing number of config scripts for packages in GNOME 1.2 (e.g. glib-config, xml-config, orbit-config. etc), development of GNOME 2.0 spawned a separate tool called pkg-config that allows all packages to use one tool rather than several different scripts to query compile flags,

Re: Libtool and Pkg-Config

2001-04-21 Thread Eric Lemings
"Gary V. Vaughan" wrote: Yes, I have been thinking about this. Although I was planning on writing a macro for autoconf-2.50 which would help generate the foo-config scripts. I think your idea is a much better approach, and I'll add it to the TODO list presently. Thanks. You mean I

Separate Source Directories

2001-01-17 Thread Eric Lemings
Dear Libtoolers, How do you build a library using Libtool from source files that are located in different directories? For example moduleA/sourceA1.c moduleA/sourceA2.c moduleA/... moduleB/sourceB1.c moduleB/sourceB2.c moduleB/...