Re: building same source with different flag

2001-12-27 Thread Alexandre Duret-Lutz
fix this: either teach `depcomp' to stick `-Wc,' or `-Xcompiler' before dependency tracking options when running libtool (some depcomp modes such as aix already do that properly), or teach `libtool' to ignore options (`-*') when updating $srcfile. Which one seems more sensible? both? -- Alexandre Duret-Lutz ___ Libtool mailing list [EMAIL PROTECTED] http://mail.gnu.org/mailman/listinfo/libtool

Re: building same source with different flag

2002-01-06 Thread Alexandre Duret-Lutz
Ted> configure does a prior check of gcc with -c and -o, and Ted> that passes. Ted> I have no idea why the configure check is using CFLAGS instead of Ted> CXXFLAGS. I changed the CXXFLAGS in ACX_CXXCOMPILE to Ted> AM_CXXFLAGS, but that made no difference. It

Re: libtool CVS permanently broken?

2002-01-07 Thread Alexandre Duret-Lutz
for a fix: http://mail.gnu.org/pipermail/automake-patches/2001-September/000234.html http://mail.gnu.org/pipermail/automake-patches/2001-October/000367.html [...] -- Alexandre Duret-Lutz ___ Libtool mailing list [EMAIL PROTECTED] http://mail.gnu.org/mailman/listinfo/libtool

Re: [bug-gnulib] Re: libtool 2.1a failed mdemo-make.test on Solaris

2005-07-19 Thread Alexandre Duret-Lutz
>>> "Bruno" == Bruno Haible <[EMAIL PROTECTED]> writes: [...] Bruno> all-local $(libfoo_la_OBJECTS): $(ARGZ_H) Hmmm, why do you need this since $(ARGZ_H) is already in $(BUILT_SOURCES), and "all" depends on $(BU

Re: Libtool -release and static libraries.

2006-02-16 Thread Alexandre Duret-Lutz
On Thu, Feb 16, 2006 at 04:22:24PM +1100, Brendon Costa wrote: > > The configure script exports the following two variables for use in > automake that help with versioning: > > PACKAGE_VERSION 1.0.6 > PACKAGE_VERSION_UNDERSCORE 1_0_6 > Sorry, that makes no sense : the substitutions a

Re: Libtool -release and static libraries.

2006-02-16 Thread Alexandre Duret-Lutz
On Thu, Feb 16, 2006 at 03:55:44PM +0100, Alexandre Duret-Lutz wrote: > Take the string "[EMAIL PROTECTED]@.la" (that's what > Automake reads). To canonize it, replace characters that are neither I meant to write "canonicalize". The above mistake should not be

Re: overriding libdir?

2006-04-13 Thread Alexandre Duret-Lutz
la Unless `php-config --extension-dir` returns something like $(prefix)/foo/bar, this setup will prevent non-root installations and cause distcheck to fail. See the "Hard-Coded Install Paths" of the Automake FAQ for inspiration. -- Alexandre Duret-Lutz

GNU Automake 1.10 released

2006-10-15 Thread Alexandre Duret-Lutz
lls a "Hello World!" example package in $(docdir). This example is used throughout the new "Autotools Introduction" chapter of the manual. -- Alexandre Duret-Lutz pgpF7loYDj2zG.pgp Description: PGP signature ___ http://lists.gnu.org/mailman/listinfo/libtool

Re: PATCH: pointless code removal

2002-03-06 Thread Alexandre Duret-Lutz
times appends things like `-Wc,-M', but I'm using the equivalent `-Xcompiler -M' here because it seems your patch remove the support for this. -- Alexandre Duret-Lutz ___ Libtool mailing list [EMAIL PROTECTED] http://mail.gnu.org/mailman/listinfo/libtool

Re: PATCH: pointless code removal

2002-03-06 Thread Alexandre Duret-Lutz
>>> "adl" == Alexandre Duret-Lutz <[EMAIL PROTECTED]> writes: [...] adl> libtool --compile gcc -c foo.c -Xcompiler -M Of course, I meant libtool --mode=compile gcc -c foo.c -Xcompiler -M [...] -- Alexandre Duret-Lutz

Re: Bug in libltdl?

2002-03-25 Thread Alexandre Duret-Lutz
.gnu.org/pipermail/libtool-patches/2002-March/001767.html A similar fix is present in Alexander Bluhm's set of patches against version 1.4.2: http://mail.gnu.org/pipermail/libtool-patches/2002-March/001770.html [...] -- Alexandre Duret-Lutz __

Re: distcheck with libtool

2002-04-13 Thread Alexandre Duret-Lutz
Can you try Automake 1.6.1? It should clean subdir libtool objects correctly. -- Alexandre Duret-Lutz ___ Libtool mailing list [EMAIL PROTECTED] http://mail.gnu.org/mailman/listinfo/libtool

Re: Bug in conditional library building

2002-05-23 Thread Alexandre Duret-Lutz
>>> "Patrick" == Patrick Guio <[EMAIL PROTECTED]> writes: [...] Patrick> am_libmudfas2d_la_OBJECTS = $(am__objects_1) Patrick> am_libmudfas3d_la_OBJECTS = $(am__objects_1) [...] This will be fixed in Automake 1.6.2. It is already fixed in

Automake 1.6d available (beta for Automake 1.7)

2002-09-18 Thread Alexandre Duret-Lutz
Here is a snapshot of the current development version of Automake. This should become Automake 1.7 *soon*. How soon will depends on the feedback we get on this beta. Please get it, install it, test it, torture it. Please report any issue by mail to <[EMAIL PROTECTED]>, or (preferred) using the

Re: autoreconf misses ltmain.sh

2002-09-19 Thread Alexandre Duret-Lutz
mail/libtool/2002-August/006640.html -- Alexandre Duret-Lutz ___ Libtool mailing list [EMAIL PROTECTED] http://mail.gnu.org/mailman/listinfo/libtool

Automake 1.6f available (beta for Automake 1.7)

2002-09-20 Thread Alexandre Duret-Lutz
lways distributed. * Use Autoconf's --trace interface to inspect configure.ac and get a more accurate view of it. * Add support for extending aclocal's default macro search path using a `dirlist' file within the aclocal directory. * automake --ou

Re: libfoo.la is already going to be installed in lib.

2002-09-22 Thread Alexandre Duret-Lutz
one as PR automake/350. Harlan> Is there a workaround/bugfix? Here is a workaround. Define FOO_AB as "FOO_A or FOO_B"": AM_CONDITIONAL(FOO_AB, test x"$FOO" = xa || test x"$FOO" = xb) then use FOO_AB to define lib_LTLIBRARIES in a single place. -- Alexa

Re: autoreconf misses ltmain.sh

2002-09-23 Thread Alexandre Duret-Lutz
released version of libtool that Ralf> is usable with autoconf-2.54 and automake-1.7 Not exactly: there is no release of Libtool that honors AC_CONFIG_AUX_DIR in configure.*ac*. Ralf> .. still nobody wanting to care to fix it? AFAICT it&

Automake 1.7 released

2002-09-25 Thread Alexandre Duret-Lutz
We're pleased to announce the release of Automake 1.7. This release contains many bug fixes and improvements. The NEWS entry is appended. You can find the new release here: ftp://sources.redhat.com/pub/automake/automake-1.7.tar.gz ftp://sources.redhat.com/pub/automake/automake-1.7.tar.

Automake 1.7.1 released

2002-10-18 Thread Alexandre Duret-Lutz
We're pleased to announce the release of Automake 1.7.1 This is a bug fix release. The list of fixed bugs is appended below. You can find the new release here: ftp://sources.redhat.com/pub/automake/automake-1.7.1.tar.gz ftp://sources.redhat.com/pub/automake/automake-1.7.1.tar.bz2 Soon

Re: [shell functions, was RE: solving of name conflicts in included.a]

2002-11-07 Thread Alexandre Duret-Lutz
toconf 2.54c announcement entirely :) -- Alexandre Duret-Lutz ___ Libtool mailing list [EMAIL PROTECTED] http://mail.gnu.org/mailman/listinfo/libtool

Re: getting a locally built library

2002-11-14 Thread Alexandre Duret-Lutz
mething like `*.o'; second, it should not output `-L../autoopts/.libs -lopts' but `../autoopts/libopts.la' since Bruce said `autogen_LDADD = $(top_builddir)/autoopts/libopts.la'. I'm tempted to think that the link rule was hand-edited (either in the Makefile(|.in|.am), or i

Re: getting a locally built library

2002-11-14 Thread Alexandre Duret-Lutz
>>> "Bruce" == Bruce Korb <[EMAIL PROTECTED]> writes: Bruce> Alexandre Duret-Lutz wrote: >> >> /bin/sh ../libtool --mode=link gcc -g -O2 -L/sw/lib -o autogen \ >> >> -export-dynamic -lguile *.o -L/sw/lib -lguile -lm \ >> >&

Automake 1.7.2 released

2002-12-05 Thread Alexandre Duret-Lutz
We're pleased to announce the release of Automake 1.7.2 This is a bug fix release. The list of bug fixes is appended. You can find the new release here: ftp://ftp.gnu.org/gnu/automake/automake-1.7.2.tar.bz2 ftp://ftp.gnu.org/gnu/automake/automake-1.7.2.tar.gz ftp://sources.redhat.com

Automake and `libtool --mode=clean'

2003-01-12 Thread Alexandre Duret-Lutz
Would it make sense that Automake start using `libtool --mode=clean rm -f ...' during `make clean', or has there been any trouble with this feature recently? Has it been tested in any way? A can't find any occurence of `mode=clean' in the Libtool test suite. --

Re: Pending release of 1.5

2003-02-05 Thread Alexandre Duret-Lutz
ease do so! If not, your woes may have to wait for Robert> 1.5.1. Great news! How about making a test release (1.4f, say), and announcing it to more that just [EMAIL PROTECTED] to get wider testing? The last snapshot of this branch (1.4d) is one year old, and not everybody is able to test L

Re: Pending release of 1.5

2003-02-05 Thread Alexandre Duret-Lutz
ng anybody listed in ChangeLog entries since the last release (this is mainly to make sure bug reporters have a chance to check that their bug is fixed before the real release). -- Alexandre Duret-Lutz ___ Libtool mailing list [EMAIL PROTECTED] http://mail.gnu.org/mailman/listinfo/libtool

ANN: new mailing list: autotools-announce@gnu.org

2003-02-10 Thread Alexandre Duret-Lutz
afford reading each tool's list, but still would like to hear about new releases, or are willing to test pre-releases. If you know such people, please tell them. You can subscribe here: http://mail.gnu.org/mailman/listinfo/autotools-announce Cheers, -- Alexandre Duret

Re: Automake 1.7.2b uploaded (beta for 1.7.3)

2003-02-16 Thread Alexandre Duret-Lutz
ibltdl/configure.in, and replace the above code by AC_CONFIG_AUX_DIR([../tools]) so that Automake find its files. If you decide to start shipping auxiliary files with libltdl, then this code can be changed to AC_CONFIG_AUX_DIR([.]). I suppose some people will mind about the extra ki

Re: 1.5 automatically generating C++, F77 tags

2003-06-03 Thread Alexandre Duret-Lutz
_LT_AC_TAGCONFIG.) As I see it, the only way to achieve what you want would be to rewrite the `case $tagname' switch from _LT_AC_TAGCONFIG in plain M4 (instead of shell). This way you can ensure that AC_LIBTOOL_LANG_CXX_CONFIG is expanded only if AC_PROG_CXX has been called first. Likewise fo

Re: 1.5 automatically generating C++, F77 tags

2003-06-03 Thread Alexandre Duret-Lutz
e other. E.g., # I only use Libtool with C programs, I don't need it for C++. ... AC_PROG_CC AC_PROG_LIBTOOL AC_PROG_CXX ... -- Alexandre Duret-Lutz ___ Libtool mailing list [EMAIL PROTECTED] http://mail.gnu.org/mailman/listinfo/libtool

Re: 1.5 automatically generating C++, F77 tags

2003-06-04 Thread Alexandre Duret-Lutz
of m4_case([_LT_TAG], [C], , [CXX], [...], [F77], [...], [GCJ], [...], [RC], [...], [m4_fatal([unsupported tag name: ]"_LT_TAG")]) -- Alexandre Duret-Lutz ___ Libtool mailing list [EMAIL PROTECT

Re: (With Patch) Re: DESTDIR trouble

2003-07-07 Thread Alexandre Duret-Lutz
ress the "once for all" part would be to write a test case. [...] -- Alexandre Duret-Lutz ___ Libtool mailing list [EMAIL PROTECTED] http://mail.gnu.org/mailman/listinfo/libtool

Re: 9-gary-reduce-dist-size.patch

2003-09-25 Thread Alexandre Duret-Lutz
On Thu, Sep 25, 2003 at 11:40:26PM +0900, Peter O'Gorman wrote: > I kept getting crap like this: > autoreconf: running: automake --add-missing --copy --force-missing > Can't locate object method "TIEHASH" via package > "Tie::RefHash::Nestable" at /usr/local/bin/automake line 517. > autoreconf: fail

Re: 9-gary-reduce-dist-size.patch

2003-09-25 Thread Alexandre DURET-LUTZ
On Fri, Sep 26, 2003 at 12:27:42AM +0900, Peter O'Gorman wrote: > -BEGIN PGP SIGNED MESSAGE- > Hash: SHA1 > > Alexandre Duret-Lutz wrote: > | This seems to be an old version of Automake. The last Nestable > | use was removed on 2003-08-12. > > I just check

Re: Version numbering

2003-09-29 Thread Alexandre Duret-Lutz
at would be counter intuitive. IMHO any numbering scheme ought to work with `ls -v'. -- Alexandre Duret-Lutz ___ Libtool mailing list [EMAIL PROTECTED] http://mail.gnu.org/mailman/listinfo/libtool

Re: Version numbering

2003-09-30 Thread Alexandre Duret-Lutz
annot mis-sort versions with letters with others. It could also gives some feeling of sense to accustomed to the odd/even version numbering scheme of Linux. -- Alexandre Duret-Lutz ___ Libtool mailing list [EMAIL PROTECTED] http://mail.gnu.org/mailman/listinfo/libtool

Re: bootstrapping CVS libtool

2003-11-22 Thread Alexandre Duret-Lutz
IL PROTECTED] http://mail.gnu.org/mailman/listinfo/autotools-announce [...] -- Alexandre Duret-Lutz ___ Libtool mailing list [EMAIL PROTECTED] http://mail.gnu.org/mailman/listinfo/libtool

Re: configuring libltdl

2003-11-25 Thread Alexandre Duret-Lutz
On Tue, Nov 25, 2003 at 01:39:10PM +, Gary V. Vaughan wrote: > > Good point. As long as we ship Makefile.in (and libtoolize --ltdl installs > only Makefile.in if $configure_ac has no reference to AM_INIT_AUTOMAKE) that > should satisfy the autoconf/libtool only audience... Hmm... you can't use

Re: configuring libltdl

2003-11-25 Thread Alexandre Duret-Lutz
On Tue, Nov 25, 2003 at 02:31:10PM +, Gary V. Vaughan wrote: > | To support this you need to rewrite Makefile.in without Automake (as > | Gettext does), or let these people AC_CONFIG_SUBDIRS the selfcontained > | libltdl package. > > Okay. Since we are trying to get rid of AC_CONFIG_SUBDIRS, w

Re: configuring libltdl

2003-11-25 Thread Alexandre Duret-Lutz
On Tue, Nov 25, 2003 at 03:07:53PM +, Gary V. Vaughan wrote: > > I thought you meant that Bruno had a macro that did AM_INIT_AUTOMAKE-a-like > AC_SUBSTing for gettext's needs, and that another similar macro could do the > necessary for libltdl. Would that it were so simple ;-) Wait a minute, w

Re: configuring libltdl

2003-11-25 Thread Alexandre Duret-Lutz
On Tue, Nov 25, 2003 at 03:35:25PM +, Gary V. Vaughan wrote: > If so, all we need is to add a call to AM_INIT_AUTOMAKE to > AC_LIB_LTDL. Hmmm, but then if a non-automake project calls > AC_LIB_LTDL, when they run autoreconf, it will run automake -a :-( Running automake in this case sounds sen

Automake 1.7f uploaded (third beta for Automake 1.8)

2003-11-25 Thread Alexandre Duret-Lutz
Hi people, This is the third beta release of the next version of Automake (1.8). Please try it and help us fixing as much bug as possible. If no important bug are reported against this version, I think it is ready to be called 1.8. I've appended the changes since 1.7d, as well as the updated full

Re: Automake 1.7f uploaded (third beta for Automake 1.8)

2003-11-26 Thread Alexandre Duret-Lutz
>>> "adl" == Alexandre Duret-Lutz <[EMAIL PROTECTED]> writes: adl> This is the third beta release of the next version of Automake (1.8). Sorry I messed with the URLs. The release is 1.7f, not 1.7e. Here are the corrected URL. ftp://alpha.gnu.org/gnu/autom

Automake 1.7h uploaded (fourth beta for Automake 1.8)

2003-12-02 Thread Alexandre Duret-Lutz
Hi people, Due to two last minute new features, we have yet another weekly beta of Automake 1.8. I sincerly hope this is the last one. If you are not blasé, or if you have not had the occasion to test previous versions, please give this one a try. You can find this beta here: ftp://alpha.g

Re: libtool 1.5a download broken

2003-12-09 Thread Alexandre Duret-Lutz
erim.net/pub/libtool-CVSROOT.tar.bz2 -- Alexandre Duret-Lutz ___ Libtool mailing list [EMAIL PROTECTED] http://mail.gnu.org/mailman/listinfo/libtool

GNU Automake 1.8 released

2003-12-10 Thread Alexandre Duret-Lutz
We're pleased to announce the release of Automake 1.8. Automake is a tool for automatically generating `Makefile.in's suitable for use with Autoconf, compliant with the GNU Makefile standards, and portable to various make implementations. This release contains many bug fixes and improvements. Th

Re: Missing, presumed Dead! Libtool CVS logging via e-mail

2003-12-31 Thread Alexandre Duret-Lutz
On Wed, Dec 31, 2003 at 02:11:34PM +, Scott James Remnant wrote: > The script and everything under CVSROOT that logged our commits and sent > them to [EMAIL PROTECTED] has been lost. > > Don't suppose anyone kept a copy of this around, and could re-add it to > CVSROOT (possibly fixing the broke

using --tag=XXX in automake-generated rules (Was: Re: 'ccache gcc' as compiler with libtool)

2004-01-02 Thread Alexandre Duret-Lutz
>>> "Gary" == Gary V Vaughan <[EMAIL PROTECTED]> writes: [...about Automake passing --tag=XXX to libtool...] Gary> Alexandre Duret-Lutz wrote: >> >> How can automake determine whether the version of libtool used in >> >> a package supports --

Re: using --tag=XXX in automake-generated rules

2004-01-07 Thread Alexandre Duret-Lutz
>>> "adl" == Alexandre Duret-Lutz <[EMAIL PROTECTED]> writes: [...] adl> 2004-01-02 Alexandre Duret-Lutz <[EMAIL PROTECTED]> adl> Fix for PR automake/289: adl> * automake.in (Automake::Struct::libtool_tag): New attribute. Define adl> it for

Re: Library dependencies & make install

2004-01-24 Thread Alexandre Duret-Lutz
all libraries, and once it is done relink all libraries. Would that work? If so, we need a way to tell libtool to copy libraries without relinking. -- Alexandre Duret-Lutz ___ Libtool mailing list [EMAIL PROTECTED] http://mail.gnu.org/mailman/listinfo/libtool

Re: libtool macros installed in pkgdatadir?

2004-01-29 Thread Alexandre Duret-Lutz
clocal replacement. As aclocal is slowly moving towards its replacement (which cannot exist yet because it requires M4 support), a next aclocal version may even include a --copy or --update option to try this behavior. Anyway, the point is that you should

Re: Why doesn't ...

2004-02-03 Thread Alexandre Duret-Lutz
lem is, but the missing libtool.m4 problem seems to be quite popular already before the release). Another way to ensure matching versions would be to turn ltmain.sh into an m4 macro. (I wouldn't have dared suggesting that if someone didn't already. I think it was Gary. Please mov

Re: multi part library?

2004-03-24 Thread Alexandre Duret-Lutz
eeking up-to-date information, I'd like to point out that the keywords to grep the documentations for are "convenience library". The Automake manual has a full section entitled `Libtool Convenience Libraries', and the Libtool manual mentions convenience

about libtool's trace interface for tags

2004-04-13 Thread Alexandre Duret-Lutz
would make sense to document it because it might be useful to other tools, and this will likely reduce the odds of breakages, e.g., when renaming internal symbols.) -- Alexandre Duret-Lutz ___ Libtool mailing list [EMAIL PROTECTED] http://mail.gn

Re: about libtool's trace interface for tags

2004-04-14 Thread Alexandre Duret-Lutz
>>> "Scott" == Scott James Remnant <[EMAIL PROTECTED]> writes: Scott> On Tue, 2004-04-13 at 22:39, Alexandre Duret-Lutz wrote: >> Is it done or is there any obstacle to it? I'm dreaming about >> Automake 1.9, and if possible I would like to in

Re: about libtool's trace interface for tags

2004-04-14 Thread Alexandre Duret-Lutz
>>> "Scott" == Scott James Remnant <[EMAIL PROTECTED]> writes: Scott> On Wed, 2004-04-14 at 08:00, Alexandre Duret-Lutz wrote: >> >>> "Scott" == Scott James Remnant <[EMAIL PROTECTED]> writes: >> Scott> On Tue, 2004-04-13

Re: about libtool's trace interface for tags

2004-04-17 Thread Alexandre Duret-Lutz
>>> "Scott" == Scott James Remnant <[EMAIL PROTECTED]> writes: Scott> On Wed, 2004-04-14 at 18:45, Alexandre Duret-Lutz wrote: >> Ah, thanks! Sorry for being dense, but since it takes >> tag names as argument, why is it called _LT_LANG? >&g

Re: Why doesn't ...

2004-06-16 Thread Alexandre Duret-Lutz
to install all the m4 files in the top-level directory, although nothing will read them here. -- Alexandre Duret-Lutz ___ Libtool mailing list [EMAIL PROTECTED] http://lists.gnu.org/mailman/listinfo/libtool

Automake 1.8d uploaded (release candidate for Automake 1.9)

2004-07-17 Thread Alexandre Duret-Lutz
Hi people, This is a release candidate for Automake 1.9. If you have some time, please help us tracking down bugs by trying this beta with your packages and reporting any issue you encounter. Especially, please shout loud if your package works with 1.8.5 but does not with 1.8d. I plan to release

Re: cvs build prob

2004-07-27 Thread Alexandre Duret-Lutz
On Tue, Jul 27, 2004 at 05:15:17PM +0100, Patrick Welche wrote: > Reminder of the miscreant line: > > output_verbose_link_cmd="`$echo \"X$output_verbose_link_cmd\" | $Xsed -e > \"$no_glob_subst\"`" > Why not replacing it with output_verbose_link_cmd=`$echo "X$output_verbose_link_cmd" | $Xsed

GNU Automake 1.9 released

2004-07-28 Thread Alexandre Duret-Lutz
We're pleased to announce the release of Automake 1.9. This release contains many bug fixes and improvements, but not as much as in previous major releases. The NEWS entry is appended. Thanks to all people who have been testing pre-release, reporting bugs, contributing code, suggesting enhanceme

Re: ltmain.sh

2004-07-29 Thread Alexandre Duret-Lutz
inutes on my high end Mac, and up Gary> to an hour for some of our other developers :-( Does it? Running ./bootstrap takes 8 minutes on my poor PC. -- Alexandre Duret-Lutz ___ Libtool mailing list [EMAIL PROTECTED] http://lists.gnu.org/mailman/listinfo/libtool

GNU Automake 1.9.1 released

2004-08-11 Thread Alexandre Duret-Lutz
We're pleased to announce the release of Automake 1.9.1. This is a tiny bug-fix release motivated by (1) the Debian GNU/Linux freeze, and (2) a three-week vacation starting in a couple of days :) The list of bug fixes is appended; we have not yet heard about regressions introduced by 1.9. You can

Re: compile problem

2004-09-07 Thread Alexandre Duret-Lutz
on, Inc. +# Copyright (C) 2003, 2004 Free Software Foundation, Inc. # # This file is part of GNU Automake. # @@ -33,8 +33,9 @@ END cat > Makefile.am << 'END' +AUTOMAKE_OPTIONS = subdir-objects lib_LTLIBRARIES = libmod1.la mod2.la -libmod1_la_SOURCES = mod1.c +libmod1_la_SOURCES = sub/mod1.c libmod1_la_LDFLAGS = -module libmod1_la_LIBADD = -dlopen mod2.la mod2_la_SOURCES = mod2.c @@ -50,9 +51,9 @@ END -mkdir liba +mkdir sub liba -cat > mod1.c << 'END' +cat > sub/mod1.c << 'END' int mod1 () { -- Alexandre Duret-Lutz ___ Libtool mailing list [EMAIL PROTECTED] http://lists.gnu.org/mailman/listinfo/libtool

Re: compile problem

2004-09-07 Thread Alexandre Duret-Lutz
o files. [...] Gary> Meant to ask, why doesn't AM_INIT_AUTOMAKE (conditionally if Gary> necessary) simply invoke AM_PROG_CC_C_O? We know it's needed only after processing the Makefile.am files. -- Alexandre Duret-Lutz ___ Libtool mai

GNU Automake 1.9.2 released (10th anniversary release)

2004-09-19 Thread Alexandre Duret-Lutz
We're pleased to announce the release of Automake 1.9.2. This is a small bug-fix release (the list of bugs fixed is appended), and this is also an anniversary release. Automake was started on 1994-09-19 so it has 10 years today. To celebrate this the manual has been augmented with a "History"

Re: compile problem

2004-09-20 Thread Alexandre Duret-Lutz
but I haven't flushed all my mails yet. I agree it would be better to set down a common lock scheme, although that really should not hold any release. -- Alexandre Duret-Lutz ___ Libtool mailing list [EMAIL PROTECTED] http://lists.gnu.org/mailman/listinfo/libtool

Re: compile problem

2004-09-20 Thread Alexandre Duret-Lutz
AC_PROG_RANLIB, etc. I once thought that since Automake knew what extra macros where required, it could generate a configure.ac fragment with these. But that sounds too fragile and tricky. -- Alexandre Duret-Lutz ___ Libtool mailing list [EMAIL PROTECTED] http://lists.gnu.org/mailman/listinfo/libtool

GNU Automake 1.9.3 released

2004-11-01 Thread Alexandre Duret-Lutz
We're pleased to announce the release of Automake 1.9.3. This is a bug-fix release, the list of bugs fixed is appended. You can find the new release here: ftp://ftp.gnu.org/gnu/automake/automake-1.9.3.tar.gz ftp://ftp.gnu.org/gnu/automake/automake-1.9.3.tar.gz.sig ftp://ftp.gnu.org/g

Re: License of m4/ltoptions.m4

2004-11-09 Thread Alexandre Duret-Lutz
ng) are intermixed into aclocal.m4. (Seems another good reason to prefer setups with m4_include). (*) Amusingly, Automake's own aclocal.m4 is probably the only aclocal.m4 where there is no such confusion. -- Alexandre Duret-Lutz ___ Libtool mailing list [EMAIL PROTECTED] http://lists.gnu.org/mailman/listinfo/libtool

Re: TODO

2004-11-09 Thread Alexandre Duret-Lutz
order) 2. relink everything (in random order) Would this work? (I think I already asked and the answer was no, but I cannot find that answer in the archive.) -- Alexandre Duret-Lutz ___ Libtool mailing list [EMAIL PROTECTED] http://lists.gnu.org

Re: License of m4/ltoptions.m4

2004-11-10 Thread Alexandre Duret-Lutz
the file were m4_included (we don't do that for Automake macros anyway, but is that a reason to disallow it?) -- Alexandre Duret-Lutz ___ Libtool mailing list [EMAIL PROTECTED] http://lists.gnu.org/mailman/listinfo/libtool

Re: TODO

2004-11-10 Thread Alexandre Duret-Lutz
>>> "Bob" == Bob Friesenhahn <[EMAIL PROTECTED]> writes: Bob> On Wed, 10 Nov 2004, Alexandre Duret-Lutz wrote: [...] >> 1. install all programs and libraries without relinking (in random order) >> 2. relink everything (in random order) [...] Bob>

Re: License of m4/ltoptions.m4

2004-11-10 Thread Alexandre Duret-Lutz
erms that you use for the rest of the package. "configuration script generated by Autoconf" is what the aux scripts already use. "or any derived output" is a lame attempt to allow tools such as aclocal (without singling out aclocal)

Re: TODO

2004-11-10 Thread Alexandre Duret-Lutz
>>> "Noah" == Noah Misch <[EMAIL PROTECTED]> writes: Noah> On Wed, Nov 10, 2004 at 01:17:19AM +0100, Alexandre Duret-Lutz wrote: >> - the relinking dependency debacle: >> >> For libtool to relink libraries when installing them, all >> depe

Re: License of m4/ltoptions.m4

2004-11-10 Thread Alexandre Duret-Lutz
>>> "Gary" == Gary V Vaughan <[EMAIL PROTECTED]> writes: Gary> Alexandre Duret-Lutz wrote: [...] >> I don't understand the intent of "as input to GNU Autoconf, GNU >> Automake, or GNU Libtool". AFAICT Libtool does not input m4 >>

Re: License of m4/ltoptions.m4

2004-11-10 Thread Alexandre Duret-Lutz
; script (and perhaps some associated intermediate files), Paul> then you may distribute this file and the derived files Paul> for that purpose, under the same terms that you use for Paul> the rest of the package. [...] President Eggert, you have my vote! -- Alexandre Duret-Lutz _

Re: Convincing Automake to support libtool

2004-11-21 Thread Alexandre Duret-Lutz
IG_MACRO_DIR to way you thought. It certainly isn't the Automake manual. See also http://lists.gnu.org/archive/html/libtool-patches/2004-11/msg00097.html -- Alexandre Duret-Lutz ___ Libtool mailing list [EMAIL PROTECTED] http://lists.gnu.org/mailman/listinfo/libtool

Re: libtoolize: `configure.ac' does not exist

2004-11-25 Thread Alexandre Duret-Lutz
mply call the installed `libtool' as shown in the manual. You do not need libtoolize in such a setup. -- Alexandre Duret-Lutz ___ Libtool mailing list [EMAIL PROTECTED] http://lists.gnu.org/mailman/listinfo/libtool

Re: libtool --silent based on MAKEFLAGS?

2004-12-12 Thread Alexandre Duret-Lutz
$(AM_LIBTOOLFLAGS)' replaced by `libfoo_la_LIBTOOLFLAGS' if it exists. I'm working on this right now. -- Alexandre Duret-Lutz ___ Libtool mailing list [EMAIL PROTECTED] http://lists.gnu.org/mailman/listinfo/libtool

Re: libtool: unrecognized option `--tag=CC'

2005-01-04 Thread Alexandre Duret-Lutz
On Tue, Jan 04, 2005 at 02:10:14PM +0100, Ralf Wildenhues wrote: > > As your build also shows (I've deleted that because I could've guessed > it), the automatic rebuilding rules call `automake' again, which is > likely much newer than the shipped ltmain.sh. Automake creates the > rules that contai

GNU Automake 1.9.5 released

2005-02-12 Thread Alexandre Duret-Lutz
I'm pleased to announce the release of Automake 1.9.5. This is a bug-fix release, the list of bugs fixed is appended. You can find the new release here: ftp://ftp.gnu.org/gnu/automake/automake-1.9.5.tar.gz ftp://ftp.gnu.org/gnu/automake/automake-1.9.5.tar.gz.sig ftp://ftp.gnu.org/gnu