Re: [suggestion] new target GTAGS.

2000-12-22 Thread Tom Tromey
"" == Shigio Yamaguchi [EMAIL PROTECTED] writes: In BSD system, '/usr/obj' + current directory is used for build directory. (from now on, I say it 'obj' directory.) If there is a convention in automake, I can support it. There isn't a simple convention like this. The person building the

Re: ./configure .deps directory

2000-12-22 Thread Tom Tromey
Derek What's $(top_builddir)/.deps get used for when there aren't any C Derek sources in $(top_srcdir) or $(top_builddir)? Thanks, I checked in the fix. Tom

Re: [PATCH] Re: vtexi.test failing

2000-12-21 Thread Tom Tromey
Derek Whoops. Forgot to put [PATCH] in the subject line. Don't worry too much about that convention. Anyway, I already checked in a slightly different fix for the bug. Tom

Re: [PATCH] etags support

2000-12-21 Thread Tom Tromey
"Derek" == Derek R Price [EMAIL PROTECTED] writes: Derek I added rudimentary support for different implementations of Derek etags (read the one Automake expects and Exuberent etags) since Derek they take slightly different options. Exuberent etags is the Derek version distributed with RedHat

Re: ./configure .deps directory

2000-12-20 Thread Tom Tromey
"Derek" == Derek R Price [EMAIL PROTECTED] writes: Derek Is there a good reason the configure script creates Derek $(top_builddir)/.deps during the test that sets $DEPDIR and Derek doesn't delete it again? Besides some developer or other Derek needing sleep? ;) Derek My distribution

Re: Automake suffixes ordering [patch]

2000-12-20 Thread Tom Tromey
"Kevin" == Kevin Ryde [EMAIL PROTECTED] writes: Kevin I'd like to propose the patch below to put any $(SUFFIXES) from Kevin Makefile.am at the head of the .SUFFIXES list in Makefile.in. Thanks, I finally checked this in. Tom

Re: problem compiling on DEC with dependencies (cxx -M)

2000-12-20 Thread Tom Tromey
"Patrick" == Patrick Guio [EMAIL PROTECTED] writes: Patrick I am not sure if this is to be adressed to libtool or maybe Patrick automake since the problem might come from depcom... Anyway Patrick I am trying to build a c++ library using libtool on a Patrick alphaev6-dec-osf5.0 using cxx. Did

Re: More fun with BUILT_SOURCES

2000-12-20 Thread Tom Tromey
"Braden" == Braden McDaniel [EMAIL PROTECTED] writes: Tom I'd really like to find a better solution for the built files Tom problem. This is currently too hard to do in automake. Braden I ended up doing this: Braden $(libfoo_la_OBJECTS): mybuiltheader.h I recently changed how BUILT_SOURCES

Re: Dependency Help

2000-12-17 Thread Tom Tromey
"Tim" == Tim Heath [EMAIL PROTECTED] writes: Tim CXX=aCC CC=aCC ./configure --enable-dependency-tracking Tim Is this the correct way to use thise new dependency generation? Yes. Tim When I touch a .C that should cause other .o's to be regenerated Tim it is not occurring. It does not attempt

Re: Troubles using automake with CygWin on NT

2000-12-17 Thread Tom Tromey
"Walter" == Walter Lievens [EMAIL PROTECTED] writes: Walter Since I want to install MySQL++ (the C++ API of MySQL), I need Walter to use automake. I'm a bit suprised. Ordinarily a package maintainer uses `make dist'; then the person building the package doesn't need automake. Walter

Re: [Fwd: --add-missing]

2000-12-17 Thread Tom Tromey
"Derek" == Derek R Price [EMAIL PROTECTED] writes: Me too. But the point is that GNU packages are supposed to ship with texinfo.tex. Derek Is there a web page somewhere with this standard on it? I Derek browsed briefly but I haven't been able to locate one. It is in the GNU Coding

Re: choosing a source file based on configure

2000-12-17 Thread Tom Tromey
"Bryan" == Bryan VanDeVen [EMAIL PROTECTED] writes: Bryan what is the best way to use a different source file based on Bryan the outcome of configure? We would like to normailly produce a Bryan stubbed out version of a lib function, and only use the real Bryan version when building inside the

Re: A new release?

2000-12-17 Thread Tom Tromey
"John" == John R Cary [EMAIL PROTECTED] writes: John Are there any plans for a new release of automake? We wish. John There is an old problem, mentioned at John http://sources.redhat.com/ml/automake/1999-05/msg00011.html with John the choice of AR for C++ libraries. The CVS automake has a

Re: FYI: AM_PROG_REGEX was broken

2000-11-25 Thread Tom Tromey
Pavel I have checked (manually) all Automake *.m4 files for Pavel underquoting. AM_PROG_REGEX was actually broken. Now it's Pavel fixed. Thanks. Tom

Re: automake version 1.5 : when ?

2000-11-25 Thread Tom Tromey
"Benoit" == benoit LOOF [EMAIL PROTECTED] writes: Benoit Does anybody know when automake 1.5 will be available ? Nobody knows. Tom

Re: Wanting to checkout cvs automake

2000-11-25 Thread Tom Tromey
"Tim" == Tim Heath [EMAIL PROTECTED] writes: TimI execute the command with the following output: Tim cvs -z 9 -d :pserver:[EMAIL PROTECTED]:/cvs/automake login Tim (Logging in to [EMAIL PROTECTED]) Tim CVS password: Tim cvs [login aborted]: connect to anoncvs.cygnus.com:2401 failed: Tim

Re: variable substitution in AC_OUTPUT

2000-11-25 Thread Tom Tromey
"Marc" == Marc van Woerkom [EMAIL PROTECTED] writes: Marc MY_MODULES="Base Dataserver2" Marc MY_MAKEFILES="`for D in $MY_MODULES; do echo $ac_n ' '$D/Makefile; done`" Marc AC_OUTPUT([ Marc Makefile Marc macros/Makefile Marc $MY_MAKEFILES Marc src/Makefile Marc

Re: More fun with BUILT_SOURCES

2000-11-25 Thread Tom Tromey
"Braden" == Braden McDaniel [EMAIL PROTECTED] writes: I realize that BUILT_SOURCES is known to be problematic, but I haven't found any other solution. Any suggestions? Add explicit dependencies on it. There's no other way to ensure it's generated. BUILT_SOURCES used to work only with

Re: Unusual directory structure

2000-11-25 Thread Tom Tromey
"Fred" == F Labrosse [EMAIL PROTECTED] writes: Fred I found a way to do all that. My only whish, for now, is that I Fred would like to have a new kind of target: OBJECTS to only build Fred .o files and not complete programs or libraries. Can you Fred comment on that? There have been a couple

Re: libraries built from subdirectories

2000-11-19 Thread Tom Tromey
"Marc" == User Marc van Woerkom [EMAIL PROTECTED] writes: Marc I have a question regarding automake 1.4/1.4a: Marc Is it possible to build a single library from source files Marc that reside in a couple of subdirectories beneath? This is possible with the cvs automake. Tom

Re: spurious output for dependency checking

2000-11-19 Thread Tom Tromey
"Paul" == Paul Martinolich [EMAIL PROTECTED] writes: Paul Using the CVS version of automake, I am getting spurious output Paul from the dependency checking /usr/local/share/aclocal/depend.m4 Paul line 50. Thanks for the report and the patch. I'm going to check it in. Tom

Re: Attempting to unit test

2000-11-19 Thread Tom Tromey
"Pavel" == Pavel Roskin [EMAIL PROTECTED] writes: check_PROGRAMS = test_program test_program_SOURCES = test.C Pavel You have discovered a bug in Automake. It still exists in the Pavel current CVS version. Pavel Don't start lines in Makefile.am with spaces. Automake will not Pavel

Re: automake make check error (and more, really)

2000-11-19 Thread Tom Tromey
"Melissa" == Brown, Melissa [EMAIL PROTECTED] writes: Melissa Here's the error I get when doing the make check on Melissa automake-1.4: Melissa . Melissa . Melissa . Melissa PASS: yaccpp.test Melissa = Melissa 2 of 194 tests failed Melissa = Look at the

Re: Compiler Flags

2000-11-19 Thread Tom Tromey
"Simon" == Simon Richter [EMAIL PROTECTED] writes: On Fri, 17 Nov 2000, Tim Heath wrote: How do I add compiler flags? What AM is necessary to accomplish that? Simon Make your configure.in add them to $CFLAGS, before AC_PROG_CC Simon (to make sure the compiler actually accepts them).

Re: documentation

2000-11-19 Thread Tom Tromey
"Benoit" == benoit LOOF [EMAIL PROTECTED] writes: Benoit I'd lihe to know if there any gurther documentation about automake. Benoit I've looked at www.gnu.org/software/automake. Is there any other Benoit location ? Last time I looked, this site is out of date. This is the source of a

Re: Fix for script magic.

2000-11-01 Thread Tom Tromey
Pavel Pavel If you omit the space before the path, then 4.2BSD based systems Pavel (such as Sequent DYNIX) will ignore the line, because they interpret Pavel `#! /' as a 4-byte magic number. Pavel Reliable sources tell me that this is a myth albeit a

Re: any way to generate debug AND non-debug releases?

2000-10-05 Thread Tom Tromey
"Allen" == [EMAIL PROTECTED] writes: Allen I would like to be able to build both debug and release builds Allen of some libraries and apps that are using the GNU build Allen system. It seems that there must be an easy way to specify Allen multiple targets (one simply stripped of symbols). Can

Re: Two CVS repositories.

2000-10-05 Thread Tom Tromey
"Pavel" == Pavel Roskin [EMAIL PROTECTED] writes: Pavel :pserver:[EMAIL PROTECTED]:/cvs/automake This is the master repository. Pavel :pserver:[EMAIL PROTECTED]:/cvs They mirror the repo here. Pavel This is getting confusing. One of the repositories should be Pavel killed. Login on that

Re: avoiding target $(srcdir)/Makefile.in

2000-10-05 Thread Tom Tromey
"john" == john heasley [EMAIL PROTECTED] writes: john is there a macro or option to automake to ommit the target john for $(srcdir)/Makefile.in, such that it is not necessary to john include Makefile.am and configure.in in a distribution? FYI, we don't support not distributing these files. It

Re: libdir = @libdir@ = libdir = $(shell pwd)

2000-09-12 Thread Tom Tromey
"Clark" == Clark Rawlins [EMAIL PROTECTED] writes: Clark When I went to generate my Makefile using configure I expected Clark that my libdir variable would be set to ${prefix}/lib not Clark $(shell pwd). What is going on? What other information is Clark relavant? Is this the right place to

Re: VPATH in automake

2000-09-08 Thread Tom Tromey
"James" == James Bonfield [EMAIL PROTECTED] writes: James eg_SOURCES = a/a.c b/b.c c/c.c As Alexandre says, this works in the cvs automake. James Notice the lack of a plus sign. Automake handles `+=' "specially", which unfortunately means it sometimes doesn't do what you expect. James In

Re: PATCH: depcomp cpp method output

2000-09-05 Thread Tom Tromey
"Alex" == Alex Hornby [EMAIL PROTECTED] writes: Alex Here is the first broken out part of my parallel built sources Alex patch, which I agreed to split up and resubmit back in the midst Alex of time. I hope you still have the time to review these. It is time for us to start writing test code

Re: Auto regeneration of Makefile.in and Makefile

2000-08-29 Thread Tom Tromey
"Tim" == Tim Heath [EMAIL PROTECTED] writes: Tim It appears that when I modify Makefile.am it will then Tim automatically modify Makefile.in. If I modify Makefile.in it Tim will automatically cause the Makefile to be regenerated. How can Tim I stop that? Generally speaking, you don't really

Re: Two tests fail

2000-08-28 Thread Tom Tromey
Pavel ldflags.test is a new test and should probably be added to Pavel XFAIL_TESTS. Done. Pavel lex4.test is broken by the last change committed by Tom Tromey Pavel on 2000-08-27. For some reason joe.Po is no longer present in Pavel Makefile.in Fixed. Thanks. Tom

question about `make clean'

2000-08-26 Thread Tom Tromey
Right now `make clean' cleans directories in the reverse of the order it builds them. This is mostly correct. However, there are a couple of automake PRs that point out that for subdir cleans it would be better to clean depth first. Right now we clean `.' before the subdirs by default. I'm

Re: tags and config.in when srcdir!=builddir

2000-08-20 Thread Tom Tromey
"Kevin" == Kevin Ryde [EMAIL PROTECTED] writes: Kevin Using a recent cvs automake, I tried "make TAGS" in a separate Kevin object directory, but the etags command got config.in without a Kevin $(srcdir) path. Perhaps the @CONFIG@ in tags.am should be in Kevin the list that gets uniquified and

Re: dependency tracking

2000-08-07 Thread Tom Tromey
"" == Jiann-Ming Su [EMAIL PROTECTED] writes: Is automake's dependency tracking smart enough to know when a header file has been removed? I'm currently using 1.4a. There is no official 1.4a. You're probably using Red Hat. In 1.4 automake was not smart enough to detect this situation. This

Re: Telling aclocal about prefix/share/aclocal/something.m4

2000-07-20 Thread Tom Tromey
Murray However, if the share/aclocal/something.m4 is installed in Murray under a --prefix which is not where aclocal is installed, how Murray should I (or the user) tell aclocal to look in this second Murray  directory as well as it's normal share/aclocal/ directory? aclocal -I /the/directory

Re: install-info

2000-07-19 Thread Tom Tromey
Peter Automake-generated makefiles should somehow be coping with the Peter possibility that install-info is not available. Currently, the Peter uninstall target of CVS Autoconf is doesn't work for me because Peter of this. (The `info' RPM somehow placed it at Peter /sbin/install-info.) Can you

Re: -c -o

2000-07-19 Thread Tom Tromey
Martin And then, for full functionality, automake should use that Martin variable in generating rules, right? Martin .c.o: Martin $(CC) $(CFLAGS) ... @CC_C_O@ $ This won't be sufficient. Automake will need more information. Tom

Re: Fortran dependency tracking

2000-07-18 Thread Tom Tromey
Martin Wrt to supporting every compiler, let's forget about it. So Martin far I haven't seen a single compiler with decent dependency Martin tracking support. And even if they did, you can be certain Martin that each and every one would use a different option syntax Martin and output format. We

Re: [patch] DESTDIR support for cpio

2000-07-18 Thread Tom Tromey
"Tim" == Tim Heath [EMAIL PROTECTED] writes: Tim I am interested in combining libraries created in a deep project Tim into one library instead of a bunch of little ones. How can this Tim be accomplished? Use libtool convenience libraries for the subdirectories, and combine them into a single

Re: Fortran dependency tracking

2000-07-18 Thread Tom Tromey
Martin I understand you're trying to get a new release out. It isn't that. It's just that I (and, apparently, the other automake hackers) have very little time. Tom

Re: substitution

2000-07-18 Thread Tom Tromey
Jerome I try to write a transportable AC_DEFUN: Jerome I want to wrire simple substitution command as (in bash): Jerome $bb=${BB%%.*} Jerome Is there a more transportable way to do that ? This is more of an autoconf question. Generally the answer is "use sed". Do you really mean to assign to

Re: Fortran dependency tracking

2000-07-17 Thread Tom Tromey
I removed the autoconf list from the followups. Dependency tracking doesn't involve autoconf. Martin First of all, an automake-generated makefile refuses to work Martin if there is no C source file specified in Makefile.am (only Martin Fortran source files). Could you submit a bug report to

Re: [patch] DESTDIR support for cpio

2000-07-17 Thread Tom Tromey
Alain It was/is my understanding that automake honoured DESTDIR. It does. Any failure of DESTDIR is most likely a bug in a particular package's Makefile.am. If not, then it is an automake bug and should be reported. Tom

Re: Use automake for sources in subdirs?

2000-07-17 Thread Tom Tromey
Andy I am trying to use automake 1.4 on an existing software package Andy whose source directory are organized as a set of subdirectories. Andy How can I write a makefile.am to automatically generate a Andy library file from these source files? The easiest way in 1.4 is to make a libtool

Re: Fortran dependency tracking

2000-07-17 Thread Tom Tromey
Martin If I understand the automake philosophy right, then it Martin suffices to support only a few compilers, generate the Martin dependencies on the maintainer's site, and include them into Martin the distributed Makefiles. Actually, ideally we'd like to support every compiler. However, I

Re: newbie: samples

2000-07-16 Thread Tom Tromey
Jerome Where can we get a large variety of `Makefile.am' scripts ? Download a lot of GNU packages. Tom

Re: [Re: Shared library with source in sub directories]

2000-07-14 Thread Tom Tromey
Murray Apparently I should do with this with a noinst_LTLIBRARIES, so Murray you do need to correct the bit in the automake manual that Murray says that it isn't allowed. I think that has already been fixed. When I looked at my copy of the manual this morning it said that check_LTLIBRARIES is

Re: Non-trivial example of Java automake?

2000-07-14 Thread Tom Tromey
Mo Paul, could you post a link to your project? I am going to be Mo rewriting the build system for the tcljava project using automake, Mo so I would also like to take a peek at some examples. I already Mo have macros to do the JVM detection, I am just interested in the Mo .java and .jar rules you

Re: Support for making perl scripts...

2000-07-09 Thread Tom Tromey
Peter Alternatively, the GNU standards could catch up with reality Peter and make `docdir' a standard directory. Not everyone uses Peter Texinfo. For GNU Standards changes you'd have to write to RMS. Tom

Re: multilevel subdirs

2000-07-09 Thread Tom Tromey
Lars What I want to know if the config.status problem was the only Lars reason why the SUBDIR variable should only contain single-level Lars directory names? In that case, the "directory should not Lars contain '/'" warning could be removed. If there are more Lars problems, what are they? I

Re: Automake conditionals

2000-06-16 Thread Tom Tromey
Alexandre In particular, in the case of installing the library, you Alexandre must add the -rpath switch to LDFLAGS_LIBJS. I believe Alexandre that's the main reason why automake doesn't support Alexandre conditional installation of ltlibraries. Yes, that's right. Is there something we can do

Re: yacc lex bug in automake 1.4

2000-06-16 Thread Tom Tromey
"Jonas" == Jonas Berlin [EMAIL PROTECTED] writes: Jonas I don't know if this has been fixed or not, but in my Jonas automake-1.4-5 which came with RedHat 6.1, there are bugs in Jonas the main executable, i.e. "automake". Both the bugs you mention are fixed in the cvs automake. Jonas And then

Re: Maintaining header file directory structure on install

2000-06-15 Thread Tom Tromey
Ossama There may be an easier to achieve what you want. How about Ossama the following: Ossama pkgincludedir = $(prefix)/include/PackageName This is wrong in two ways. Use $(includedir)/PackageName instead. Tom

Re: Maintaining header file directory structure on install

2000-06-15 Thread Tom Tromey
Ossama pkgincludedir = $(prefix)/include/PackageName This is wrong in two ways. Use $(includedir)/PackageName instead. Ossama Thanks for clarification! That makes more sense! What's the Ossama second way it is wrong? Ossama pkgincludedir = $(includedir)/PackageName Ossama

Re: IDL dependencies, proposed solution.

2000-05-31 Thread Tom Tromey
"Alex" == Alex Hornby [EMAIL PROTECTED] writes: Alex Is there already an expand_make_variable() type function? Yes. You can use variable_value_as_list in automake to do this. But really you'll want to have direct support for IDL in automake, so that IDL files can be listed directly in

Re: IDL dependencies, proposed solution.

2000-05-31 Thread Tom Tromey
"Alex" == Alex Hornby [EMAIL PROTECTED] writes: Alex As IDL files use standard C preprocessor syntax for dependent Alex inclusion, is it not possible to wrap the idl compile in Alex depcomp? Interesting idea. I thought different IDL compilers generated different output file names, though. Is

Re: gmake vs. ucb make and SUBDIRS

2000-05-30 Thread Tom Tromey
. I think this problem is fixed in cvs. If it is the problem I am thinking of, then it is actually a combination of a BSD make oddity (it runs "sh -e") and a BSD sh oddity (it treats and || strangely). I think the problem was fixed by this change: 1999-03-02 Tom Trom

Re: Generating makefiles for Java project.

2000-05-30 Thread Tom Tromey
1. I can't get automake to read a dynamically created AC_OUTPUT parameter list. This is correct behavior but how do I specify which files it should create? Yes, automake needs a static AC_OUTPUT list. Automake uses the argument to AC_OUTPUT to determine which Makefile.am's to scan.

Re: Name clash with VERSION

2000-05-26 Thread Tom Tromey
"John" == John R Sheets [EMAIL PROTECTED] writes: John Is it possible to change the VERSION #define to something different? Use the third argument to AM_INIT_AUTOMAKE to disable the define. Then AC_DEFINE anything else you want. Tom

Re: Building libraries without _SOURCES

2000-05-24 Thread Tom Tromey
John No, I haven't tried CVS automake, but that's not really an John option for this project. It'll be an uphill battle to get my John automake-ifying patches accepted in the first place (to the WINE John project), so I'm pretty much stuck with released versions. I totally understand. It would

Re: configure fails to configure libtool

2000-05-19 Thread Tom Tromey
"Bram" == Bram Stolk [EMAIL PROTECTED] writes: Bram My own autoconf 2.13 generated configure script fails, due to Bram unknown --build option to ltconfig (not present in Mesa's Bram configure). You probably have a mismatch between your libtool m4 macro and your ltconfig version. I'd ask on

Re: shall `make uninstall' remove directories?

2000-05-16 Thread Tom Tromey
"Akim" == Akim Demaille [EMAIL PROTECTED] writes: Akim Honestly, I see no difference between plenty of small utilities Akim and one big. The difference is moot to me (Hm, I read that Akim somewhere, but I'm not sure I'm writing correct English :). There's a difference to me. I get to hear

RE: shall `make uninstall' remove directories?

2000-05-16 Thread Tom Tromey
"David" == Masterson, David [EMAIL PROTECTED] writes: David Would those complaints be really due to "too many files" David (ie. size issue) or "too many files with questionable purpose"? Actually I think it is not size (in bytes) or purpose, but rather the annoyance of typing "ls" and seeing

Re: shall `make uninstall' remove directories?

2000-05-16 Thread Tom Tromey
"Peter" == Peter Eisentraut [EMAIL PROTECTED] writes: I think we should not introduce more utilities. We have way too many already. How about reimplementing this as a patch to "missing"? Peter Hmm, "missing" _fakes_ a given program (with touch, etc.) Peter whereas mkinstalldirs,

Re: shall `make uninstall' remove directories?

2000-05-15 Thread Tom Tromey
"Peter" == Peter Eisentraut [EMAIL PROTECTED] writes: Peter Might part of that perceived uselessness come from the fact Peter that it doesn't remove the directories? I don't think so. I think that one big reason is that you have to keep (the skeleton of) the build tree around for "uninstall"

Re: shall `make uninstall' remove directories?

2000-05-15 Thread Tom Tromey
"Peter" == Peter Eisentraut [EMAIL PROTECTED] writes: Peter The added beauty of this approach would be that `rminstalldirs' Peter would be to `rmdir -p' what `mkinstalldirs' is now to `mkdir Peter -p'. A possible (though perhaps not perfect) implementation of Peter rminstalldirs is attached for

Re: shall `make uninstall' remove directories?

2000-05-15 Thread Tom Tromey
"Pavel" == Pavel Roskin [EMAIL PROTECTED] writes: Pavel Let's make "missing" handle "mkdir -p" to begin with. That would be fine with me. Pavel I still insist that no directories should be removed by "make Pavel uninstall" unless they defininely belong to the package being Pavel uninstalled.

Re: Example of multilibs

2000-05-12 Thread Tom Tromey
Michael Does anyone have an example that uses automake's multilib Michael feature that I could look at? The automake multilib support isn't really complete. Tom

RE: Changing the name of the PACKAGE at configure time

2000-05-10 Thread Tom Tromey
"David" == Masterson, David [EMAIL PROTECTED] writes: David If you want, I have a Perl tool that I picked up and enhanced David called PKGLINK that could help with this. Basically, with David pkglink, you install all packages in there own prefix directory David and then use pkglink to

Re: Changing the name of the PACKAGE at configure time

2000-05-10 Thread Tom Tromey
JMarc Thanks for the tip. Does it mean that what I am trying to do is JMarc not a good idea, or that automake is lacking a feature? I'm not sure it is either of these. JMarc What I mean is that I am ready to provide a more "standard" way JMarc of installing several LyX versions concurrently,

Re: Changing the name of the PACKAGE at configure time

2000-05-10 Thread Tom Tromey
"JMarc" == Jean-Marc Lasgouttes [EMAIL PROTECTED] writes: JMarc With autoconf, since I want to use the autogenerated makefile JMarc rules, I figured out that setting PACKAGE to the right value at JMarc configure time should work. Unfortunately, I cannot get the JMarc name of the installed

Re: Questions about automake 1.4

2000-05-08 Thread Tom Tromey
"David" == Masterson, David [EMAIL PROTECTED] writes: David * Does Automake assume that Info files should be part of the David distribution of a package (ie. "make dist")? Yes. David ** If so, why? GNU coding standards David ** Is there a means to specify that Info files should *not* be

Re: pb with @ substitution

2000-05-04 Thread Tom Tromey
"Axel" == Axel Boness [EMAIL PROTECTED] writes: Axel I tried things like : Axel MYDATA=@prefix@/@VERSION@/@PACKAGE@ Axel AC_SUBST(MYDATA) This is definitely in the archives. It comes up all the time. One answer is that you should use a sed rule in Makefile, and not AC_OUTPUT, if you want full

Re: Fix for the testsuite

2000-05-01 Thread Tom Tromey
"Pavel" == Pavel Roskin [EMAIL PROTECTED] writes: Pavel The attached patch fixes the testsuite. Currently some tests Pavel use some files (depcomp, install-sh, mkinstalldirs and missing) Pavel from the toplevel Automake directory if and only if srcdir=="." Thanks, I checked this in. Pavel I

Re: [Q] support for AC_CONFIG_FILES

2000-04-25 Thread Tom Tromey
"dv" == Didier Verna [EMAIL PROTECTED] writes: dv The latest cvs'ed automake doesn't appear to support autoconf's dv AC_CONFIG_FILES. I've seen an old thread about this (jan 2000) in dv the archives, but is there a patch in the queue for this ? There is. I thought Jim had checked it in. Tom

Re: multi-language-branch of libtool

2000-04-18 Thread Tom Tromey
"Ted" == Ted Irons [EMAIL PROTECTED] writes: Ted Does the multi-language-branch of libtool Ted work with autoconf-2.13 and automake-1.4? I haven't tried it, but I don't see why it wouldn't. I think Alexandre might do this already. Give it a try and tell us what you find out... T

Re: EXTRA_HEADERS problem

2000-04-16 Thread Tom Tromey
"Braden" == Braden N McDaniel [EMAIL PROTECTED] writes: Braden I have hacked around this problem by emptying the MY_HEADERS Braden variable explicitly in every Makefile.am in the project except Braden for the one where it's actually pertinent, but I have the Braden feeling that either this is a

Re: PATCH: C++ source files in sub directory

2000-04-12 Thread Tom Tromey
Alex Please disregard my earlier patch. I think all that needs adding Alex is a warning when there are C++ subdir sources without Alex subdir-objects being set. This case is supposed to work as well, though. Probably rule replication is the way to go. I can't look at this in the near future.

Re: automake --add-missing --copy

2000-04-05 Thread Tom Tromey
"Lars" == Lars J Aas [EMAIL PROTECTED] writes: Lars I've always been annoyed that automake --add-missing --copy Lars doesn't pass the "--copy"-option along to libtoolize, so I end Lars up with symlinked config.guess, config.sub, ltconfig and Lars ltmain.sh. Fixed. Lars This might be fixed

Re: Using EXTRA_SOURCES

2000-03-30 Thread Tom Tromey
Sam The basic problem is that source is conditionally compiled into Sam SDL, and supposedly the attached code is supposed to do the Sam "right thing", but I can't get it to include rules for the Sam objects. I can get the desired effect using automake Sam conditionals, but the complexity of

Re: yacc and flex

2000-03-22 Thread Tom Tromey
"Sascha" == Sascha Ziemann [EMAIL PROTECTED] writes: Sascha flex conf_lexer.l mv lex.yy.c conf_lexer.c Sascha gcc -c conf_lexer.c Sascha bison -y conf_parser.y mv y.tab.c conf_parser.c Sascha gcc -c conf_parser.c Sascha And this means, that the tokens are not available in the Sascha

Re: derived sources and parallel builds

2000-03-21 Thread Tom Tromey
"Alex" == Alex Hornby [EMAIL PROTECTED] writes: How about just creating standard Makefile dependencies? Foo_impl.o: Foo_s.hh Foo_c.hh Foo_s.cpp Foo_c.cpp Foo_impl.$(OBJEXT): Foo_s.hh Foo_c.hh Foo_s.cpp Foo_c.cpp Alex That would work. I wanted to avoid adding dependencies manually Alex

Re: Why does Makefile depend on BUILT_SOURCES?

2000-03-15 Thread Tom Tromey
"" == OKUJI Yoshinori [EMAIL PROTECTED] writes: 2. The target `Makefile' depends on $(BUILT_SOURCES). The solution may be to get rid of the dependency in the item 2, so my question is why Makefile must depend on BUILT_SOURCES. Is there some good reason? Only a historical one. In the

Re: numeral for first character--

2000-03-07 Thread Tom Tromey
"Olly" == Olly Betts [EMAIL PROTECTED] writes: localhost:~/src/4dim$ automake Makefile.am:2: bad macro name '4dim_SOURCES' Olly I hit this problem a few months ago. It's an unnecessary Olly restriction which is fixed in the CVS version of automake. Olly If you'd prefer not to use that you

Re: test pr19 failure: explanation

2000-03-04 Thread Tom Tromey
"Jim" == Jim Meyering [EMAIL PROTECTED] writes: Jim I've just looked into the failure of test pr19. I don't understand. pr19.test works fine for me. Tom

Re: REPLACE_GNU_GETOPT

2000-03-01 Thread Tom Tromey
"Hal" == Duston, Hal [EMAIL PROTECTED] writes: Hal I am setting my package up with automake/autoconf, and want to Hal provide gnu getopt if it is not available. I noticed Hal AC_REPLACE_GNU_GETOPT in the info file, but it doesn't seem to be Hal completely implemented. It is in automake, and

RE: REPLACE_GNU_GETOPT

2000-03-01 Thread Tom Tromey
Hal That would be something I would install on my development system? Hal Would I need to put it somewhere special so it doesn't go away if Hal I upgrade automake? I would really rather do it the "proper" way Hal if true. Or is get a copy the "proper" way? Still trying to get Hal my brain

<    4   5   6   7   8   9