Re: $(datadir) and @datadir@

2007-02-08 Thread Albert Chin
verride it at build time (e.g. make datadir=''). Not so with @datadir@ where the @datadir@ string is replaced in-place. -- albert chin ([EMAIL PROTECTED])

Re: Large number of tests when shell has limited argument list space

2007-02-06 Thread Albert Chin
On Tue, Feb 06, 2007 at 03:24:14PM -0600, Bob Friesenhahn wrote: > On Tue, 6 Feb 2007, Albert Chin wrote: > > > >I don't know if this is easy, but check-TESTS could be modified to > >iterate over more than one $(TESTS) variable: > > check-TESTS: $(TESTS1) $(TEST

Re: Large number of tests when shell has limited argument list space

2007-02-06 Thread Albert Chin
On Tue, Feb 06, 2007 at 09:06:42AM +0100, Ralf Wildenhues wrote: > * Albert Chin wrote on Tue, Feb 06, 2007 at 05:52:43AM CET: > > ImageMagick-6.2.9 has a large number of tests. The check-TESTS rule in > > automake-1.10 is: > > check-TESTS: $(TESTS) > > ... &

Large number of tests when shell has limited argument list space

2007-02-05 Thread Albert Chin
e the problem on AIX 4.3.3 and HP-UX 10.20 as the userbase is too small to warrant a fix? -- albert chin ([EMAIL PROTECTED])

Re: AM_FCFLAGS not working as I expect...

2005-11-08 Thread Albert Chin
de: > > .f90.o: > $(FCCOMPILE) -c -o $@ $(AM_FCFLAGS) $(FCFLAGS_f90) $< > > .f90.obj: > $(FCCOMPILE) -c -o $@ $(AM_FCFLAGS) $(FCFLAGS_f90) > `$(CYGPATH_W) '$<'` > > .f90.lo: > $(LTFCCOMPILE) -c -o $@ $(FCFLAGS_f90) $< > > as you suggested. Unfortunately, that didn't seem to help libtools tag > problem. If --tag=F77 works, add it to the above. -- albert chin ([EMAIL PROTECTED])

Use of really long lines in Makefile.in

2005-02-03 Thread Albert Chin
ES_1 = [list of sources < 2048 chars] foo_SOURCES_2 = [list of sources < 2048 chars] ... This doesn't take into consideration substitutions on the RHS but there's nothing that can be done with that apriori. -- albert chin ([EMAIL PROTECTED])

Re: Feature request

2004-09-17 Thread Albert Chin
files for libtool 1.5 are in /opt/libtool15, I'd still like an environment variable that defines the .m4 search path. Or, does this then become an autoconf problem and not an automake one because of the new GNU m4 feature? -- albert chin ([EMAIL PROTECTED])

Re: Feature request

2004-09-17 Thread Albert Chin
On Fri, Sep 17, 2004 at 10:50:09AM +0200, Andreas Schwab wrote: > Albert Chin <[EMAIL PROTECTED]> writes: > > > When building software with installable .m4 files (libtool, pkgconfig, > > gtk+, etc.), if each software program is installed to a separate > > directory

Feature request

2004-09-16 Thread Albert Chin
that aclocal would query that does the job of -I? pkgconfig uses the PKG_CONFIG_PATH variable giving locations for pkg-config to query for .pc files. Doing something similar with aclocal would make automating use of aclocal in build scripts much easier. -- albert chin ([EMAIL PROTECTED])

Re: Need a way to pass options to libtool

2004-05-25 Thread Albert Chin
t: AM_CXXFLAGS += [your additions] -- albert chin ([EMAIL PROTECTED])

Re: libtool verbosity

2004-05-20 Thread Albert Chin
your tool would be interested in errors during a build, rather than rebuilding from scratch to find out what went wrong? -- albert chin ([EMAIL PROTECTED])

Re: automake 1.8.3: Tru64: fix for depcomp

2004-04-29 Thread Albert Chin
On Thu, Apr 29, 2004 at 11:14:15AM +0200, Nicolas Joly wrote: > On Thu, Apr 29, 2004 at 12:37:56AM -0500, Albert Chin wrote: > > On Sat, Apr 24, 2004 at 12:22:30PM +0200, Nicolas Joly wrote: > > > With Tru64 cc compiler, shared objects can also be used to make a > > > st

Re: automake 1.8.3: Tru64: fix for depcomp

2004-04-28 Thread Albert Chin
.5 which now generates 2 separate objects (PIC vs. non PIC) > for the 2 libraries (shared vs. static); like other compilers. Are you sure? I thought all object files on Tru64 UNIX were PIC? -- albert chin ([EMAIL PROTECTED])