Re: Hack for inter-library dependency (make DESTDIR=... install) problem.

2001-11-30 Thread Brian May
le this would work, it has the (IMHO) nasty side affect that any libraries previously installed in, say /usr/lib, will take priority (I think) over the library that was just built in the source code tree. It also means hacking around with the Makefiles. -- Brian May <[EMAIL PROTECTED]>

Re: Search paths with duplicated .la libraries

2001-07-04 Thread Brian May
when creating Debian packages). If an old copy of the library exists in /usr/lib, then that will get used instead of the library that has just been compiled. -- Brian May <[EMAIL PROTECTED]> ___ Libtool mailing list [EMAIL PROTECTED] http://mail.gnu.org/mailman/listinfo/libtool

Re: install phase fails

2001-05-28 Thread Brian May
arched /usr/lib first(??), it might link the wrong version of the library. My preferred fix would be to replace instances of .../path/to/lib/liba.la with something like .../path/to/lib/.libs/liba.so which would be guaranteed to get the correct library. -- Brian May <[EMAIL PROTECTED]> _

Re: install phase fails

2001-05-26 Thread Brian May
>>>>> "Brian" == Brian May <[EMAIL PROTECTED]> writes: >>>>> "Alexandre" == Alexandre Oliva <[EMAIL PROTECTED]> writes: Alexandre> The problem has to do with requiring relinking at Alexandre> install time. This is ne

Re: install phase fails

2001-05-24 Thread Brian May
>>>>> "Brian" == Brian May <[EMAIL PROTECTED]> writes: Alexandre> In general, when relinking is necessary, you must not Alexandre> use a different prefix to install than the one used to Alexandre> build. Brian> In which case, you are

Re: install phase fails

2001-05-24 Thread Brian May
o, why did this work with libtool 1.4, but then suddenly stop working? -- Brian May <[EMAIL PROTECTED]> ___ Libtool mailing list [EMAIL PROTECTED] http://mail.gnu.org/mailman/listinfo/libtool

install phase fails

2001-05-23 Thread Brian May
#x27;. make[1]: Leaving directory `/home/bam/tmp/libtool-1.4/mdemo' [note: this test conducted on a stable Debian system; it also fails on unstable. It use to work on unstable, the only change I can think of is Linux 2.4.4 instead of 2.4.3 and glibc 2.2.3 instead of 2.2.2 ] -- Brian May <[EMAIL PROTECTED]> ___ Libtool mailing list [EMAIL PROTECTED] http://mail.gnu.org/mailman/listinfo/libtool

Re: Building shared libs as dynamically-loaded perl modules

2001-02-15 Thread Brian May
nk convenience libraries need to compile two sets of libraries: *.a which contains non-PIC code and *.al which contains PIC code. -- Brian May <[EMAIL PROTECTED]> ___ Libtool mailing list [EMAIL PROTECTED] http://mail.gnu.org/mailman/listinfo/libtool

Re: lib*.so symlink

2001-02-04 Thread Brian May
look at this, I will, after I am satisfied the previous problems have been fixed (with regards to interlibrary dependencies). -- Brian May <[EMAIL PROTECTED]> ___ Libtool mailing list [EMAIL PROTECTED] http://mail.gnu.org/mailman/listinfo/libtool

Re: lib*.so symlink && patches

2001-02-04 Thread Brian May
>>>>> "Brian" == Brian May <[EMAIL PROTECTED]> writes: Brian> /usr/lib/libz.so -> libz.so.1.1.3 /usr/lib/libz.la -> Brian> libz.la.1.1.3 /usr/lib/libz.so.1 -> libz.so.1.1.3 Brian> /usr/lib/libz.so.1.1.3 /usr/lib/libz.la.1.1.3 Me a

Re: lib*.so symlink

2001-02-03 Thread Brian May
et matters straight (I am still not quite sure of this). For situation i) what linking libx.la, the version pointer to by libx.so is used? ii) when dlopening libx.la, the version pointed to by libx.so is used? -- Brian May <[EMAIL PROTECTED]> ___ Libtool mailing list [EMAIL PROTECTED] http://mail.gnu.org/mailman/listinfo/libtool

Re: lib*.so symlink

2001-02-03 Thread Brian May
>>>>> "Brian" == Brian May <[EMAIL PROTECTED]> writes: Alexandre> Presumably, libz.la would be that from the older Alexandre> version, since libz.la is used for linking. And then, Alexandre> because libtool sets dlname to the SONAME of the

Re: lib*.so symlink

2001-02-02 Thread Brian May
Alexandre> latest version thereof (as per the lib package). Or Alexandre> something like that :-) Agreed. In the discussion on debian-policy, there was some concern that this system would break ldconfig, but it appears that these concerns are not justified. For instance ldc

lib*.so symlink

2001-02-02 Thread Brian May
his is already a potential problem (programs designed for libz.so.1 could mistakenly use the libz.la file from libz.so.2 build). So I won't consider these problems here. Any comments? -- Brian May <[EMAIL PROTECTED]> ___ Libtool mailing list

Re: interdependancies between libraries

2001-01-21 Thread Brian May
(eg. the run time search path specifying the installation path - at least this way it should work, I think?). No sense in breaking a feature on *all* platforms just because some can't cope... -- Brian May <[EMAIL PROTECTED]> ___ Libtool mailing list [EMAIL PROTECTED] http://mail.gnu.org/mailman/listinfo/libtool

Re: interdependancies between libraries

2001-01-21 Thread Brian May
that is the programmers fault, and libtool shouldn't go out of its way to try and resolve/break the issue. -- Brian May <[EMAIL PROTECTED]> ___ Libtool mailing list [EMAIL PROTECTED] http://mail.gnu.org/mailman/listinfo/libtool

Re: interdependancies between libraries

2001-01-17 Thread Brian May
roject. Then it adds the Wesley> right -L options. That seems to help the 2nd problem, Thanks. Any ideas on the first problem? -- Brian May <[EMAIL PROTECTED]> ___ Libtool mailing list [EMAIL PROTECTED] http://mail.gnu.org/mailman/listinfo/libtool

Re: interdependancies between libraries

2001-01-17 Thread Brian May
ared l2.lo -L/usr/lib -ll1 -Wl,-soname -Wl,libl2.so.0 -o .libs/libl2.so.0.0.0 /usr/bin/ld: cannot find -ll1 collect2: ld returned 1 exit status libtool: install: error: relink `libl2.la' with the above command before installing it libtool: install: warning: remember to run `libtool --fini

Re: interdependancies between libraries

2001-01-17 Thread Brian May
>>>>> "Kevin" == Kevin Ryde <[EMAIL PROTECTED]> writes: >> On Tue, Jan 16, 2001 at 01:50:57PM +1100, Brian May wrote: > >> Oh, another observation: installing the libraries in their >> non-final > location (as required for Debia

Re: Separate Source Directories

2001-01-17 Thread Brian May
ken from Heimdal). (oh, before my patch the upstream version also had: libvers_la_LDFLAGS = -static which meant non-PIC code was compiled in the shared libraries. I didn't like this, so removed it). -- Brian May <[EMAIL PROTECTED]> ___ Li

interdependancies between libraries

2001-01-15 Thread Brian May
depdemo.static /home/bam/source/cvs/libtool/depdemo/a/bin/depdemo.static /usr/bin/install -c depdemo.static /home/bam/source/cvs/libtool/depdemo/a/bin/depdemo.static make[2]: Nothing to be done for `install-data-am'. make[2]: Leaving directory `/ho

Re: mailing list archives

2001-01-15 Thread Brian May
>>>>> "Brian" == Brian May <[EMAIL PROTECTED]> writes: Brian> Hello, according to the Brian> http://www.gnu.org/software/libtool/>, the mailing Brian> list archives for this mailing list are kept at Brian> http://www.geocrawler.com/l

mailing list archives

2001-01-15 Thread Brian May
er.com/archives/3/404/2000/9/0/4316399/> (although that prediction seems to be overly optimistic now :-(. ) So, is there anything wrong with the mailing list and/or archives, or is there nothing worth getting discussed? -- Brian May <[EMAIL PROTECTED]>