Re: results with automake-1.6d

2002-09-22 Thread Alexandre Duret-Lutz
kill -0 17058 Art> + kill 17058 Art> + exit 1 Art> FAIL: cond5.test [...] automake is slower nowadays because it runs autoconf (in this autoconf hasn't been run before so there is no cache to help). I'm installing the following patch. 2002-09-22 Alexandre Duret-Lutz <[EM

Re: results with automake-1.6d

2002-09-22 Thread Alexandre Duret-Lutz
ocal: macro `gt_INTTYPES_PRI' required but not defined Art> + exit 1 Art> FAIL: subdircond.test [...] This looks like an incomplete Gettext installation. These macros come from the files intdvi0.m4, uintmax_t.m4, inttypes.m4, and inttypes-pri.m4. Can you locate them on your system? Bruno, does this ring a bell? -- Alexandre Duret-Lutz

Re: Subdirectory problem

2002-09-22 Thread Alexandre Duret-Lutz
> it. Thanks. I'm installing the following patch to fix this bug. (This will go in Automake 1.7.) However you'll see that this issue disappears if you use `AUTOMAKE_OPTIONS = subdir-objects', so that shouldn't be a problem for you. 2002-09-22 Alexandre Duret-Lutz <[

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's fixed in CVS Libtool. -- Alexandre Duret-Lutz

Re: Subdirectory problem

2002-09-24 Thread Alexandre Duret-Lutz
ltlibrary', | ('LTLIBRARY' => $onelib, This caused a failure (subobj9.test). In fact we need to clean both directories. I'm installing the following fix-to-the-fix. 2002-09-24 Alexandre Duret-Lutz <[EMAIL PROTECTED]> * automake.in (handle_single_transform

Re: Problem with 'make distcheck'

2002-09-25 Thread Alexandre Duret-Lutz
>>> "Sebastian" == Sebastian Huber <[EMAIL PROTECTED]> writes: Sebastian> Why are these files in the build directory? No idea, sorry. Could you send a bug report? -- Alexandre Duret-Lutz

Re: texinfo10 prob

2002-09-25 Thread Alexandre Duret-Lutz
find file `--version'. Patrick> <*> --version Patrick> Please type another input file name: Patrick> so obviously it won't get very far ;) Ouch! Ok, let's assume the worse (i.e., that "tex -version" won't work either) and check for &qu

Re: Problem with 'make distcheck'

2002-09-25 Thread Alexandre Duret-Lutz
>>> "Tom" == Tom Tromey <[EMAIL PROTECTED]> writes: [...] Tom> I know in the past it didn't work to put `$(top_srcdir)' in a path in Tom> a _SOURCES variable. Alexandre, has this changed? Not to my knowledge. The issue I remember is PR/325. [...] -- Alexandre Duret-Lutz

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.

Re: Automake 1.7 released

2002-09-26 Thread Alexandre Duret-Lutz
's up with the plan of changing all packages to depend on an explicit automake version, so that `automake' can become the latest release?) -- Alexandre Duret-Lutz

Re: Problem with 'make distcheck'

2002-09-27 Thread Alexandre Duret-Lutz
e will have "\$\(top_dir\)" in its name). -- Alexandre Duret-Lutz

Re: subdir-objects and 1.7

2002-09-28 Thread Alexandre Duret-Lutz
hich are conditionally built should be listed in the EXTRA_libucdmibs_la_SOURCES variables. This is needed, not only for the dependency tracking code to work, but also for targets that processes all sources like `tags', `ctags', etc, and also so the source files get distributed. That was already the case in 1.5, though. -- Alexandre Duret-Lutz

Re: Problems with ansi2knr

2002-10-14 Thread Alexandre Duret-Lutz
l> compilers. Seems like Ansi2knr didn't work when per-target flags or subdirectory sources where used. The following patch should fix it. Unfortunately I don't have the time to run the test suite know, so it might as well break something else :) 2002-10-14 Alexa

Re: Can automake conditional tests be indented?

2002-10-19 Thread Alexandre Duret-Lutz
>>> "Harlan" == Harlan Stenn <[EMAIL PROTECTED]> writes: Harlan> Can/should one indent automake conditionals in the Harlan> Makefile.am, It shouldn't work. (That's fortunate because indented if/else usually appear as shell commands in rules.) -- Alexandre Duret-Lutz

Re: Automake-1.7.1: make problem

2002-10-19 Thread Alexandre Duret-Lutz
>>> "Frédéric" == Frédéric L W Meunier <[EMAIL PROTECTED]> writes: Frédéric> I don't know what's wrong. I did a cvs up Release-1-7-1 from Frédéric> Release-1-7. 1.7 installed but 1.7.1 gives the following: Run the `./bootstrap' script. -- Alexandre Duret-Lutz

Re: Selecting between directories?

2002-10-19 Thread Alexandre Duret-Lutz
f you use an m4 macro for this. Something along the lines of m4_define([MY_PROJECT_DIR_VALUE], [sub1]) AC_SUBST([MY_PROJECT_DIR], [MY_PROJECT_DIR_VALUE]) AC_OUTPUT([Makefile specific/Makefile specific/MY_PROJECT_DIR_VALUE/Makefile common/Makefile common/Makefile/subdir3 common/Makefile/subdir4 ]) -- Alexandre Duret-Lutz

Re: How to specify 2 stage build in Makefile.am

2002-10-19 Thread Alexandre Duret-Lutz
nswer is BUILT_SOURCES = CubeViewUI.h this will cause CubeViewUI.h to be built before anything else. -- Alexandre Duret-Lutz

Re: FYI: same library installed several times in same directory(PR/350)

2002-10-22 Thread Alexandre Duret-Lutz
t a fix which should be fairly easy to do; but I don't have the time to work on Automake these days. Harlan> I'd hate to have to hack around this problem using Harlan> something like: [...] Harlan> (assuming I can get this hack to work). I don't know, sorry. -- Alexandre Duret-Lutz

automake/44: conditional redefinitions (Was: Re: Automake 1.6.3 issue)

2002-10-11 Thread Alexandre Duret-Lutz
estion is when should this construct be allowed? I agree #2 is useful when the definitions and redefinitions are in different files. IMO #3 would be helpful when the (re)definitions are in the same file. I can't think of any reason why a variable would be redefined in the same file, except user's inattention. Opinions? -- Alexandre Duret-Lutz

Re: Need help with aclocal parsing

2002-10-12 Thread Alexandre Duret-Lutz
7;s rules for Fortran 77. Here are the excerpts from Tom> acinclude.m4 that seem to cause problems when using aclocal. Thanks for the report. I'm installing the following patch on HEAD and branch-1-7 (so it will be in Automake 1.7.1). Please let me know if you try this change and find i

<    5   6   7   8   9   10