Linking Static Libraries Directly Into Static Libtool Libraries

2006-02-08 Thread Eric Lemings
Hello, How do I configure and run the libtool script so that when it is creating a static library that it links or embeds any dependent static libraries directly into the newly created static library? Thanks, Eric. ___ http://lists.gnu.org/mailman/lis

RE: Mysterious Dependencies

2006-01-24 Thread Eric Lemings
Greetings! Is this bug still in the GCC 4.x releases? (See messages below.) Or has it been fixed in the GCC 4.x releases? Thanks, Eric. > -Original Message- > From: Bob Friesenhahn [mailto:[EMAIL PROTECTED] > Sent: Tuesday, January 24, 2006 6:51 PM > To: Eric Lemings &g

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 -L/usr/src/redhat/BUILD/gcc-3.4.4-20050721/obj-i386-redhat-linux/i386-r

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: > >

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: > >

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

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.   _

C++ Support In Future Releases?

2002-11-06 Thread Eric Lemings
Hello all,   After reading through Section 11.1 of the Libtool Manual and the list of features in future releases (http://www.gnu.org/software/libtool/future.html), I can't help but wonder how well future releases of Libtool are going to support C++ libraries, especially now that GCC is stand

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

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 othe

Re: Libtool and Pkg-Config

2001-04-22 Thread Eric Lemings
Havoc Pennington wrote: I think for libtool it's as simple as having a concept of a "package" in addition to a concept of a library, so we can pass "gtk+-2.0" to libtool instead of "-L/home/hp/unst/lib -L/usr/X11R6/lib -lgtk-x11-1.3 -lgdk-x11-1.3 -lXext -lgdk_pixbuf-1.3 -lm -lpangox -lX11 -lpango

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 direc

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 file

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 t

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 act

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, link

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/... moduleB/