tags fail with dummy source for libtool

2019-12-02 Thread Robert Sachunsky
the desired linking _and_ recursive tag generation rules)? Regards, Robert

Automake and bitcode files

2015-10-21 Thread Robert Szewczyk
Hi, I have a project that brings in several conflicting options to automake/autotools and I'm looking for the best way to resolve the problem: * I am attempting to emit LLVM bitcode. The configure script helpfully determines that the OBJEXT for the files in question is .bc * the Makefile.am fil

Re: What is minimum set of Automake work files needed for distribution on github?

2015-09-30 Thread Robert Parker
Thanks guys for your well considered replies. You gave me plenty to think about. Presently my github projects have everything that make dist generates. Clearly the consensus is strongly against doing that so in time I will reduce my github repos to your recommendations. I still want to distribute

Re: What is minimum set of Automake work files needed for distribution on github?

2015-09-28 Thread Robert Parker
Thanks, that does make sense. On Mon, Sep 28, 2015 at 10:22 PM, Eric Blake wrote: > On 09/28/2015 04:20 AM, Robert Parker wrote: > > I need to meet the requirements of 2 sets of users, the ordinary user > who > > is only interested `./configure; make; make install` and the p

What is minimum set of Automake work files needed for distribution on github?

2015-09-28 Thread Robert Parker
I need to meet the requirements of 2 sets of users, the ordinary user who is only interested `./configure; make; make install` and the power users who want to start with `autoreconf`. So far google search on the topic has only increased my confusion. -- The Bundys, Cliven, Ted and Al. Great guy

Re: Generated Makefile fails to build

2014-09-19 Thread Robert Parker
On Sat, Sep 20, 2014 at 6:46 AM, Warren Young wrote: > Just stepping back a bit, some linkers are more tolerant than others about > the order of flags and such. Libraries that land in standard locations > like /usr/lib also obscure this issue, by rendering irrelevant an > improperly-placed or -c

Re: Generated Makefile fails to build

2014-09-19 Thread Robert Parker
On Sat, Sep 20, 2014 at 6:16 AM, Bob Friesenhahn < bfrie...@simple.dallas.tx.us> wrote: > A library is not a linker flag so it does not belong in LDFLAGS. Look into > using a 'LIBADD' type option instead. > > Thanks for pointing me in the right direction. The bad line in my Makefile.am has now be

Generated Makefile fails to build

2014-09-19 Thread Robert Parker
>> make make all-am make[1]: Entering directory `/home/bob/Documents/Programs/Pwordsaver' gcc -Wall -Wextra -g -O2 -lmhash -o pwordsaver pwordsaver.o fileutil.o pwordsaver.o: In function `dohash': /home/bob/Documents/Programs/Pwordsaver/pwordsaver.c:220: undefined reference to `mhash_init' /home/

Re: passing flags to C compiler but not to C++ compiler

2013-07-29 Thread Robert Boehne
On 07/29/13 10:55, Vincent Torri wrote: On Mon, Jul 29, 2013 at 5:17 PM, Robert Boehne wrote: On 07/27/13 16:26, Vincent Torri wrote: On Sat, Jul 27, 2013 at 10:24 PM, Robert Boehne wrote: On 07/27/13 00:32, Vincent Torri wrote: hello in my sources, i have both C and C++ files. Something

Re: passing flags to C compiler but not to C++ compiler

2013-07-29 Thread Robert Boehne
On 07/27/13 16:26, Vincent Torri wrote: On Sat, Jul 27, 2013 at 10:24 PM, Robert Boehne wrote: On 07/27/13 00:32, Vincent Torri wrote: hello in my sources, i have both C and C++ files. Something like my_lib_la_SOURCES = foo.c foo.cpp I want to pass, for example, -Wdeclaration-after

Re: passing flags to C compiler but not to C++ compiler

2013-07-27 Thread Robert Boehne
You add that flag to CXXFLAGS on the configure command line. configure CXXFLAGS=-Wdeclaration-after-statement Along with any other options you need. Vincent Torri wrote: >hello > >in my sources, i have both C and C++ files. Something like > >my_lib_la_SOURCES = foo.c foo.cpp > >I want to pass

Re: passing flags to C compiler but not to C++ compiler

2013-07-27 Thread Robert Boehne
he configure in the command, those settings will be saved in config.log so you can see what they were set to when you built. HTH, Robert Boehne

Re: libtool libraries requiring other libraries

2013-07-16 Thread Robert Boehne
cause they need to have everything listed in the proper order on the link line. If you add LT_INIT to configure.ac your problem should go away. HTH, Robert Boehne On 07/16/13 09:56, Steffen Sledz wrote: Sorry, if this is a faq, but i didn't found a clear answer searching around. Given situa

Re: Help with static linking

2013-05-31 Thread Robert Boehne
r in front of me, so YMMV, you should man ld to make sure those flags are correct. HTH, Robert Boehne Kip Warner wrote: >Hey lists, > >Sorry for posting on both autoconf and automake lists. I wasn't sure >which one would be more appropriate for this problem. > >I know

Re: install-strip variant that strips then installs?

2013-05-13 Thread Robert Boehne
uld not be portable. HTH, Robert Boehne Gavin Smith wrote: >On Tue, May 7, 2013 at 5:12 PM, Rhys Ulerich >wrote: >> I gather that 'make install-strip' installs and then strips binaries. >> Is there some variant that reverses the order? If not, any >> recomme

Re: problem with AM_PATH_PYTHON

2012-10-26 Thread Robert Boehne
On 10/26/12 09:04, Stefano Lattarini wrote: Hi Václav, sorry for the delay. On 10/15/2012 09:07 PM, Václav Zeman wrote: Hi. I am having a problem with AM_PATH_PYTHON. I have this in my configure.ac: AS_IF([test "x$with_python" = "xyes"], [AM_PATH_PYTHON([2.3], [:], [:]) AX_SWIG_PYTHON

Re: Cannot Create Executables (configure and -fPIC/-pic)

2012-08-21 Thread Robert Boehne
Jeffrey, If you look at config.log it will show you the test program that it was attempting to compile, and what errors that attempt generated. It seems like your compiler doesn't like "-fPIC -pic" and it has little to do with autotools. HTH, Robert On 08/21/12 17:06, Jeffr

Re: Dynamic package version numbers with Autoconf and Automake

2012-08-15 Thread Robert Boehne
ame changes there. So I would be very interested in a solution to these issues. Cheers, Robert

Re: should an empty "pkgdata_DATA" cause creation of $(pkgdatadir) by "make install"?

2012-03-13 Thread Robert Boehne
ld also be able to not create $(pkgdatadir) as well as a non-empty $(pkgdatadir). IMHO - whether this was by design or by accident isn't important. What's more important is that the behavior is intuitive, and this behavior (to me) is intuitive. Robert Boehne

Re: *simple* example using Autotest

2012-02-08 Thread Robert Boehne
On 02/07/12 16:46, Eric Blake wrote: On 02/07/2012 03:08 PM, Robert Boehne wrote: All, I'd like to start using Autotest in a project (that needs is badly) but the full-featured GNU M4 example is a bit hard to wrap my head around. Can anyone suggest another project I could look at

*simple* example using Autotest

2012-02-07 Thread Robert Boehne
All, I'd like to start using Autotest in a project (that needs is badly) but the full-featured GNU M4 example is a bit hard to wrap my head around. Can anyone suggest another project I could look at as an example, that has more basic/rudimentary Autotest use? Thanks, Robert

Re: [GSoC] Early design discussion for TAP/SubUnit support in automake.

2011-07-06 Thread Robert Collins
On Thu, Jul 7, 2011 at 7:03 AM, Stefano Lattarini wrote: > Hello Robert. >> >> >> > OTOH, I do believe this is a real concern, to be carefully addressed and >> > tested for.  Thanks for bringing this up. >> >> For Both TAP and subunit the test script

Re: [GSoC] Early design discussion for TAP/SubUnit support in automake.

2011-07-05 Thread Robert Collins
Very sorry for the slow response, been EBUSY with real-life. On Sun, May 22, 2011 at 11:42 PM, Stefano Lattarini wrote: > On Sunday 22 May 2011, Ralf Wildenhues wrote: >> Hi Stefano, and sorry for the long delay, >> > No problem, you had warned me in due time about such possible delays this > mon

Re: [GSoC Proposal] automake - Interfacing with a test protocol like TAP or subunit

2011-03-21 Thread Robert Collins
On Tue, Mar 22, 2011 at 8:41 AM, Stefano Lattarini > to its suboptimal documentation.  So I'm going to ask: Robert, as > the main proposer/supporter of the SubUnit protocol here, would you > be willing and ready to help me out during my prospective work with > GSoC, if I update

Re: [GSoC Proposal] automake - Interfacing with a test protocol like TAP or subunit

2011-03-20 Thread Robert Collins
On Sun, Mar 20, 2011 at 10:01 PM, Stefano Lattarini wrote: > Hello Robert, and thanks for the feedback. > > On Sunday 20 March 2011, Robert Collins wrote: >> On Sat, Mar 19, 2011 at 1:03 PM, Stefano Lattarini >> wrote: >> > ABSTRACT: >> > >> >  T

Re: [GSoC Proposal] automake - Interfacing with a test protocol like TAP or subunit

2011-03-20 Thread Robert Collins
On Sun, Mar 20, 2011 at 8:53 PM, Ralf Wildenhues wrote: > Hi Robert, > > thanks for the feedback.  I have a couple of questions: > > * Robert Collins wrote on Sun, Mar 20, 2011 at 05:10:16AM CET: >> TAP is an extremely simple protocol, and the extensions to it to >&

Re: [GSoC Proposal] automake - Interfacing with a test protocol like TAP or subunit

2011-03-19 Thread Robert Collins
On Sat, Mar 19, 2011 at 1:03 PM, Stefano Lattarini wrote: > ABSTRACT: > >  The Test Anything Protocol (TAP) is a simple text-based protocol >  that allows communication between test scripts and a test harness. ... > Now, in all honesty, I must say that I've chosen TAP not only for its > objective

Re: Autotools GSoC ideas

2011-03-08 Thread Robert Collins
On Wed, Mar 9, 2011 at 8:39 AM, Stefano Lattarini wrote: > I don't know how the GSoC proposals are evaluated, but if reviewers tend > to prefer more precise goals, extending the proposal in this way might > not be a smart move.  Maybe something like the following would be better? > >  ``Interfacin

Re: Autotools GSoC ideas

2011-03-07 Thread Robert Collins
On Tue, Mar 8, 2011 at 1:10 AM, Ralf Wildenhues wrote: > Hello, > > I'll throw a couple of suggestions for Autotools out there: > > 1) Interfacing with the Test Anything Protocol (TAP) (or maybe another > test protocol?).  Automake-generated Makefiles could be consumers of the > protocol for third

Re: GNU make or portable make? (was: Makefile to Makefile.am)

2010-08-17 Thread Robert J. Hansen
> I for one would be glad if automake required GNU make, since it > could make use of a lot of useful features which currently aren't > allowed. Similar to autoconf not requiring a POSIX shell, depite > the fact that non-POSIX shells are so far obsolete they are > irrelevant. Are there any tools

Re: call for help/crazy idea: nmake support

2010-08-01 Thread Robert J. Hansen
On 8/1/2010 2:11 PM, Ralf Wildenhues wrote: > So let me rephrase the question: if we have the ability to build > completely with MSVC within a shell environment such as MinGW/MSYS > would people still need something like nmake support? Speaking for myself and my projects -- no, I would not.

Re: Building prog first

2010-03-22 Thread Robert J. Hansen
On 3/22/10 6:50 PM, John Calcote wrote: > Reuben, you've just hit upon one of the two most significant problems > with Javadoc and the like (including doxygen, man pages, and info pages): Agreed -- which is why I think it would be wonderful if there was strong Autotools support for literate progra

Re: --gnits, AC_INIT and VERSION

2009-11-29 Thread Robert Collins
On Sun, 2009-11-29 at 22:10 +0100, Ralf Wildenhues wrote: > Hello Robert, and sorry for not replying on this earlier: Hi - no problems ;). > * Robert Collins wrote on Wed, Sep 23, 2009 at 10:03:42AM CEST: > > There was discussion about getting version numbers from VCS recently; >

Re: Non-recursive automake

2009-10-18 Thread Robert Collins
On Sun, 2009-10-18 at 08:39 +0200, Ralf Wildenhues wrote: > > http://sources.redhat.com/ml/automake/2001-08/msg00112.html > > > > This added a new directive 'subdir_include' which does an include but > > adjusts all the paths in the make/automake rules in the included > > fragment to the relative

Re: Non-recursive automake

2009-10-17 Thread Robert Collins
On Sat, 2009-10-17 at 20:09 -0500, Bob Friesenhahn wrote: > > I complained about this perhaps five years ago since it is the most > annoying issue related to non-recursive build. There was some > discussion on this list at that time but nothing was done to make > things better. > > It seems t

Re: how to detect broken install-sh?

2009-09-28 Thread Robert Collins
On Mon, 2009-09-28 at 08:56 +0200, Ralf Wildenhues wrote: > > You're much better off arguing that packages update to Autoconf 2.64, > in many cases the configure script will shrink by more than 15K over > the one generated by 2.63 (and it'll be a bit faster, too). Nice! - and I think they should

Re: how to detect broken install-sh?

2009-09-27 Thread Robert Collins
On Sun, 2009-09-27 at 20:38 -0500, Bob Friesenhahn wrote: > > Thats the key number - the amount of benefit that install-sh gives you. > > This violates a core principle of GNU in that "benefits" should be for > the benefit of the recipients of the software rather than for the for > the develope

Re: how to detect broken install-sh?

2009-09-27 Thread Robert Collins
On Sun, 2009-09-27 at 18:59 -0500, Bob Friesenhahn wrote: > On Mon, 28 Sep 2009, Robert Collins wrote: > > > > The landscape has changed though, and I suspect that if we gather stats > > about this we'll see that install-sh is dead weight for most packages > > ne

Re: how to detect broken install-sh?

2009-09-27 Thread Robert Collins
On Sun, 2009-09-27 at 16:00 -0500, Bob Friesenhahn wrote: > On Sun, 27 Sep 2009, Robert Collins wrote: > > > > I suggest dropping install-sh completely except for the coreutils > > package. coreutils is very portable, so its not unreasonable to require > > that it is ins

Re: how to detect broken install-sh?

2009-09-27 Thread Robert Collins
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Ralf Wildenhues wrote: What would be the best way? Do you think this might cause other >>> problems? >> I suggest dropping install-sh completely except for the coreutils >> package. > > Expecting GNU coreutils to be installed on each system is unrea

Re: how to detect broken install-sh?

2009-09-27 Thread Robert Collins
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Brian Gough wrote: > Hi, > > I'd like to hear thoughts about the best way to detect a broken install-sh. .. > Maybe it would be good to have a check for problems with install-sh. I think that is a waste of cycles for every project except Automake :).

Re: place automake files separately from source files

2009-09-26 Thread Robert Collins
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 > This way people can build using the GNU automake system if they so desires > and I do not overwrite the original non-automake Makefiles. Then how can I > specify the sources files in source1,c, etc. Keep in mind that the original > source tree ma

--gnits, AC_INIT and VERSION

2009-09-23 Thread Robert Collins
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 There was discussion about getting version numbers from VCS recently; I've done a slightly different thing for a while now: AC_DEFUN([SUBUNIT_MAJOR_VERSION], [0]) AC_DEFUN([SUBUNIT_MINOR_VERSION], [0]) AC_DEFUN([SUBUNIT_MICRO_VERSION], [2]) AC_DEFUN([S

Re: distcheck and uninstall

2009-09-18 Thread Robert Collins
On Sat, 2009-09-19 at 08:33 +0200, Ralf Wildenhues wrote: > No, I don't, but automake/NEWS indicates that it should've been around > 1.7, and 'git show Release-1-7:lib/am/distdir.am' looks good, too. Thanks again, Rob signature.asc Description: This is a digitally signed message part

Re: distcheck and uninstall

2009-09-18 Thread Robert Collins
On Sat, 2009-09-19 at 08:24 +0200, Ralf Wildenhues wrote: > Hello Robert, > > * Robert Collins wrote on Sat, Sep 19, 2009 at 06:16:25AM CEST: > > It would be nice if there was an option to tell automake not to (do > > 'uninstall' as part of distcheck | require tha

distcheck and uninstall

2009-09-18 Thread Robert Collins
It would be nice if there was an option to tell automake not to (do 'uninstall' as part of distcheck | require that uninstall leaves no files behind) distcheck is very useful, it catches many distribution related bugs like missing EXTRA_DIST and so on. However, uninstall as a target is much less

Re: invoke pkg-config with --static

2009-05-23 Thread Robert Collins
On Sat, 2009-05-23 at 18:18 +0200, Lorenzo Bettini wrote: > Ralf Wildenhues wrote: > > Of course, as soon as you propose your software for packaging at > > debian.org, they will count not using .Private as bug ... ;-) > > uh! Good to know that! Thanks :-) This is because when you link against

Re: My project can't use `silent-rules'

2009-05-17 Thread Robert Collins
On Sun, 2009-05-17 at 15:43 -0500, Bob Friesenhahn wrote: > The reason why my package can not use AC_INIT is that the package > version information is (often) computed by shell script code based on > the last entry in the project ChangeLog or other information. It is > (apparently) not possibl

Re: invoke pkg-config with --static

2009-05-16 Thread Robert Collins
On Sat, 2009-05-16 at 19:04 -0500, Bob Friesenhahn wrote: > On Sat, 16 May 2009, Lorenzo Bettini wrote: > > > when ./configure is run with --disable-shared, is there a way to invoke the > > pkg-config macro with --static (so that it does not select private > > libraries > > in the .pc file)? >

Re: rebuilding following a change in prefix?

2009-05-07 Thread Robert Collins
On Fri, 2009-05-08 at 06:52 +0200, Jan Engelhardt wrote: > Well, automake (unfortunately?) does not currently issue a recompile > when the compiler command changed. > It would be really cool to have that, though. Write the compiler command to a file (stamp-compiler). make things depend on that f

Setting output dir for support files

2009-04-30 Thread Robert J. Hansen
I've used Autotools in a few small projects before, but nothing which required auxiliary files to support the binaries. Typically, I've seen these auxiliary files stored in /usr/share/package-version/, and would like to do the same thing for my own package via Autotools. I'm able to get /usr/shar

Dealing with .asm files

2009-04-01 Thread Robert Homann
would like to keep the file names as they are). Duplicating rules seemed all wrong to me, so I tried adding '.asm' right after '.s' to the corresponding register_language() call in automake instead, and it just worked then. Now, would it hurt to add this extension to regular Automa

Re: Using ylwrap in parallel builds fails sometimes

2009-02-23 Thread Robert Homann
On Thu, 19 Feb 2009, Robert Homann wrote: Hi again! > I have some trouble building a yacc parser with Automake (using > ylwrap) in a parallel build. Usually, make -j runs fine on my project Replying to myself, adding the dependency scanner.c: parser.c to Makefile.am works fine (tha

Using ylwrap in parallel builds fails sometimes

2009-02-18 Thread Robert Homann
my Linux machine. Now, did I forget to add some additional rules to Makefile.am? Or do you think I have hit a bug in ylwrap or in GNU Make? Best regards, Robert Homann -- Windows is not the answer. Windows is the question. The answer is "No".

Re: Report to stdout like Linux kernel compilation does

2008-04-11 Thread Robert J. Hansen
John Calcote wrote: > Hmmm. I'd have to disagree here. I carefully consider every warning I > see, and evaluate whether or not it represents a real problem. Yes. This strikes me as perfectly sane behavior. Insisting on warning-free builds is not sane behavior, especially given just how many comp

Re: Report to stdout like Linux kernel compilation does

2008-04-11 Thread Robert J. Hansen
Bob Proulx wrote: To give you a different perspective, I *hate* that format because it hides problems and *makes debugging harder*. I want to see exactly the command that was executed. I want to see the entire command. I don't want to see an abbreviation of the command. Fortunately, no one i

Re: Bison C++ parsers and ylwrap

2008-02-26 Thread Robert J. Hansen
Ralf Wildenhues wrote: > It probably is a bug. I for one use bison/yacc very sparingly only and > lack the experience how to deal with it portably. Which is why it would > be better if someone else worked on fixing it. For whatever it's worth, I have always found bison's C++ support to be sub-p

Re: How to build source code while treating all warnings as errors with automake...

2008-02-18 Thread Robert J. Hansen
jasond wrote: Recently, I converted the project over to using Autotools and am wondering if there is a portable way to instruct automake to generate Makefiles that build code while treating all encountered warnings as errors? Probably so, and I'm sure Ralf will know what it is. However, this i

Re: Modifying CFLAGS for 'make distcheck'

2008-02-11 Thread Robert Collins
On Sat, 2008-02-09 at 14:52 -0600, Bob Friesenhahn wrote: > On Sat, 9 Feb 2008, Ralf Wildenhues wrote: > > > > If *that* were still a concern for a compression tool (as opposed to > > various vendor `tar' programs), then heck it should not be promoted at > > all for wider use. No, I don't think e

Re: Automatically Handling Tools that Produce Many Outputs

2007-12-10 Thread Robert Collins
On Mon, 2007-12-10 at 21:51 +, Olly Betts wrote: > > I can't think of a way to easily dig out statistically useful data > from a VCS or Google code search on how often it happens either to me > or > generally. But I mainly offered it as a more concrete example of the > sort of issues I had i

Re: Strictness

2007-08-12 Thread Robert Collins
On Sun, 2007-08-12 at 23:40 +0100, Noah Slater wrote: > > I disagree. In a centralised VCS sure, you can scale to 100's of commits > > a day - but in a distributed VCS - e.g. bzr, git, hg, monotone ... you > > tend to get 100's of commits on branches, and a much smaller number of > > branch merges

Re: Strictness

2007-08-12 Thread Robert Collins
On Sat, 2007-08-11 at 22:06 +0200, Carl Fürstenberg wrote: > On 8/11/07, Noah Slater <[EMAIL PROTECTED]> wrote: > > > I think you misunderstanding me, it's the generation if the changelog > > > that will take too long time. > > > > Well, yes - what else could I have understood from: > > > > > That

Re: Automake violations of the gnu coding conventions

2007-06-18 Thread Robert Collins
On Mon, 2007-06-18 at 17:27 -0700, K. Richard Pixley wrote: > > My question today is... is there any hope of bringing automake > generated > Makefiles back into line with the GNU coding standards so that these > applications will work once again? Use AM_MAINTAINER_MODE in your package; this wi

Re: autotools on mac os x

2007-05-04 Thread Robert J. Hansen
Could you give me an hand, i have been searching for 2 entire days.. Try Fink. http://fink.sourceforge.net

Sablotron and Autotools?

2007-04-26 Thread Robert J. Hansen
For a project I'm working on, I need a crossplatform XML inspector. GDOME2 is out because it doesn't work on OS X, so we're instead looking at Sablotron. Looking at the Autoconf Archive I don't see any m4 macros for Sablotron, nor does it come with a pkg-config file. What is the canonical

Re: amhello build prob

2006-10-25 Thread Robert J. Hansen
Ralf Wildenhues wrote: > Never mind what I wrote. Please. After the sea of good bits that have flowed from your PC in the last few months, Ralf, I think we're all just going to attribute whatever was wrong to TCP transmission error. It was time for a bad packet anyway. Resend? Thanks very much,

Re: Weird problem with LIBADD

2006-10-06 Thread Robert Boehne
an cheat by putting all the libraries in a circular dependency loop into a single library. Another potential method of cheating is to wait until runtime to load them (i.e. use dlopen). HTH, Robert Boehne References 1. http://wiki.azazil.net/GnuLibtoolProject/RoadMap

Can't find the correct set of libs on FC5/x64

2006-08-24 Thread Robert J. Hansen
I'm currently taking a course in graphics programming with OpenGL, and thought it would be kind of me to turn in assignments which are ./configurable. My desktop environment is an OS X box, and the TAs are running a variety of different Unices. This seems like a job for Autotools, so I set up a m

Disable implicit RCS rule of GNU Make

2006-06-19 Thread Robert Homann
is what I would prefer (because we include Automake snippets in Makefile.am files for this in multiple projects and wouldn't need to touch our configure.ac files then)? Sorry for putting short questions into long words... :) bye, Robert -- Windows is not the answer. Windows is the question. The answer is "No".

Fine-grained install control

2006-05-03 Thread Robert Lowe
mmand line options to configure. I'm thinking there is a right way and a wrong to do this, and I nothing jumped out at me from the manual. TIA, Robert

python.m4

2005-01-28 Thread Robert White
I am new to this list and automake. So, I apologize up front if I ask something stupid. I have been studying AM_PATH_PYTHON, because I have been developing some macros to augment it since it does not provide the necessary information to compile python extensions or programs/libraries that emb

Re: Configuring automake says autoconf 2.58 or higher needed. Have au toconf 2.59 installed. What is/goes wrong?

2005-01-17 Thread Robert Collins
On Mon, 2005-01-17 at 03:18 +, Andrew Suffield wrote: > Only the > sender can do anything better than this, because they're the only one > with the necessary information. Its not at all clear to me that they have sufficient information. Rob -- GPG key available at:

Re: Configuring automake says autoconf 2.58 or higher needed. Have au toconf 2.59 installed. What is/goes wrong?

2005-01-16 Thread Robert Collins
On Sun, 2005-01-16 at 07:01 -0500, Thomas Dickey wrote: > On Sun, 16 Jan 2005, Ralf Corsepius wrote: > > > On Sat, 2005-01-15 at 13:15 +0100, Alexandre Duret-Lutz wrote: > > > >> PS: I know this is not the first time, but I simply do not > >> understand why you respond to bug reports without C

Re: How to setup an example programs subdirectory?

2005-01-01 Thread Robert Collins
On Sat, 2005-01-01 at 20:24 -0500, Simon Perreault wrote: > Hi, > > I have a question for which I haven't been able to find an answer on my own, > using the usual resources (manual, google, etc). > > My project uses automake and I want to have a directory containing example > programs. These pr

Re: Automake and new tar

2004-12-28 Thread Robert Collins
On Thu, 2004-11-25 at 21:59 +0100, Christian Fredrik Kalager Schaller wrote: > Hi Automake hackers, > > I am maintainer of a GNOME module called gnome-themes-extras containing > a set of metathemes for the GNOME desktop. After upgrading my distro I > have been unable to 'make dist' gnome-themes-e

Re: Relative path in CPPFLAGS and distcheck

2004-12-06 Thread Robert Lowe
Alexandre Duret-Lutz wrote: [Please reply to [EMAIL PROTECTED] "Robert" == Robert Lowe <[EMAIL PROTECTED]> writes: Robert> Hi! Robert> I have a set of common headers files in includes/ and the following Robert> line in configure.ac: Robert> AC_SUBST(CPPFLAG

Re: non-recursive make and tests

2004-08-30 Thread Robert Collins
On Mon, 2004-08-30 at 20:30 -0500, Bob Friesenhahn wrote: > On Mon, 30 Aug 2004, Bob Friesenhahn wrote: > > > > It would be quite helpful if Automake offered a mode in which it > > automatically changed the working directory to the directory where the test > > program/script resides and set $srcd

Don't be left out

2004-04-02 Thread Robert Hogue
An associate of yours has set you up on a romantic appointment with someone. Click here to accept the invitation: http://lovestupidlove.com/confirm/?oc=53035649 The FREE dating web site CREATED BY WOMEN Click here if you do not wish to be invited again: http://lovestupidlove.com/remove/?oc=530

Re: RFC: doc for `Handling Tools that Produce Many Outputs'

2004-02-04 Thread Robert Collins
On Thu, 2004-02-05 at 10:36, Eric Siegerman wrote: > I believe this fails on the following corner case. Suppose the > date ordering is like this (with data.h being the oldest): > data.h data.foo data.c > > data.h is out of date with respect to data.foo, so one wants to > rebuild it, bu

Re: RFC: doc for `Handling Tools that Produce Many Outputs'

2004-01-31 Thread Robert Collins
On Sun, 2004-02-01 at 09:28, Alexandre Duret-Lutz wrote: > This is a new section I'd like to add to the FAQ. It has been > discussed two or three times on the list. > > I'm posting it here for comment. (In fact I'm mainly hoping > that some kind fellow will point out English mistakes...) Cute.

Re: pathnames containing spaces

2004-01-28 Thread Robert Collins
On Thu, 2004-01-29 at 00:08, Earnie Boyd wrote: > Good luck with fixing the white space problems in every process that > reads arguments and uses white space as a delimiter of some sort. Earnie has a very good point - GNU Arch faces the same problem with a limited set of tools - patch, diff and t

Re: Expressing dependencies

2004-01-04 Thread Robert Collins
On Mon, 2004-01-05 at 03:53, Laurence Finston wrote: > This is essentially what I tried to do by using the auxiliary program > `3DLDFcpl' in the rule for building the executable `3dldf' (roughly): > > 3dldf: $(3DLDF_CWEBS) >3DLDFcpl Thats not quite what I was suggesting. > Not changing

Re: Expressing dependencies

2004-01-03 Thread Robert Collins
On Sun, 2004-01-04 at 08:17, Laurence Finston wrote: > The problem is that make makes certain assumptions that don't apply when CWEB > is used. I think thats an incorrect statement. It would be more accurate to say that CWEB hasn't been built with any thought to the impact on make. Make has only

Re: non recursive includes proof of concept #2

2003-12-19 Thread Robert Collins
On Sat, 2003-12-20 at 00:41, Alexandre Duret-Lutz wrote: > >>> "Robert" == Robert Collins <[EMAIL PROTECTED]> writes: > > [...] > > Robert> It transforms macros and paths in an included file (called > Robert> Makefile.rules for now) , to make t

Re: HEAD test suite - 6 failures.

2003-12-19 Thread Robert Collins
On Sat, 2003-12-20 at 00:47, Alexandre Duret-Lutz wrote: > Robert> that the scripts in lib/ aren't chmodded correctly. > > Why aren't they? How did they loose their permissions? Errm, that was my fault. An oversight in a cvs extracting tool, that I wasn't aware

Re: HEAD test suite - 6 failures.

2003-12-19 Thread Robert Collins
On Thu, 2003-12-18 at 20:00, Alexandre Duret-Lutz wrote: > >>> "Robert" == Robert Collins <[EMAIL PROTECTED]> writes: > > Robert> Are the following tests known to fail (on debian unstable): > > Nein, no tests are known to fail. What does VERBOSE=x say

HEAD test suite - 6 failures.

2003-12-17 Thread Robert Collins
Are the following tests known to fail (on debian unstable): FAIL: ccnoco.test FAIL: gnits2.test FAIL: gnits3.test FAIL: pr300-lib.test FAIL: pr300-prog.test FAIL: python3.test Cheers, Rob -- GPG key available at: . signature.asc Description: This is a di

non-recursive via includes

2003-12-17 Thread Robert Collins
Ok, I plan to push this through a little closer to completion (some feedback from the maintainers would be greatly appreciated !) I've created a branch for this in arch: [EMAIL PROTECTED]/automake--nonrecursive--1.8 The arch repository is at http://people.initd.org/robertc/automake/ (G

We still have places left.

2003-12-10 Thread Robert
Hi,   We still have spaces left on our worldwide training seminars for 2004.   Reply to this email for our information pack.   Robert Seviour   Sales Training Specifically for Engineers   Tel:  +44 (0)1481 720 294 Fax:  +44 (0)1481 720 317 email:   [EMAIL PROTECTED]      PS

Re: Non-recursive make & maintenance issue

2003-12-09 Thread Robert Collins
On Wed, 2003-12-10 at 05:06, Tom Tromey wrote: > It isn't impossible. I once wrote up some ideas along these lines: > > http://sources.redhat.com/ml/automake/2001-07/msg00248.html > > Obviously I never got around to implementing this :-) Have you looked at either of my proof-of-concepts?

Re: failure building HEAD

2003-12-02 Thread Robert Collins
On Tue, 2003-12-02 at 21:44, Alexandre Duret-Lutz wrote: > I think this is the problem. Ben, you cannot write > `$output.tmp' because when $output is /dev/null a user cannot > create /dev/null.tmp. This change breaks the configuration of > all versions of Automake since 1.6 :( Yah, so, the right

Re: Non-recursive make & maintenance issue

2003-12-01 Thread Robert Collins
On Tue, 2003-12-02 at 02:10, Bob Friesenhahn wrote: > > Hmm, I'd prefer to do it via the include mechanism - see my crude, but > > effective updated proof of concept - posted here a minute ago. > > I like your include approach. It helps convert existing recursive > builds into non-recursive build

Re: Non-recursive make & maintenance issue

2003-12-01 Thread Robert Collins
On Tue, 2003-12-02 at 07:08, Bob Friesenhahn wrote: > By 'read only', I mean that there is an existing source tree with no > Makefile.am's (perhaps it uses some other build system) and you are > not allowed to (or shouldn't) update it. Since Automake supports > subdirectories, the Makefile.am does

oops, regression - updated proof of concept - #2a

2003-12-01 Thread Robert Collins
A minor oversight led to a regression, which I caught when the test cases finished running... here's a replacement patch. (Still use the test cases from my previous email). Rob -- GPG key available at: . Index: automake.in ===

Re: Non-recursive make & maintenance issue

2003-12-01 Thread Robert Collins
On Fri, 2003-11-28 at 03:49, Jirka Hanika wrote: > My view is that these (and other) problems disappear if you use a > per-directory Makefile.am; but I also see the benefits (esp. compilation > speed) of a non-recursive Makefile. So the solution could be to support > generating a single Makefile

Re: Non-recursive make & maintenance issue

2003-12-01 Thread Robert Collins
On Fri, 2003-11-28 at 04:29, Bob Friesenhahn wrote: > It is not a problem as long as Automake provides sufficient > automatic translation capabilities. There just needs to be a standard > way to create definitions and refer to existing definitions, including > those that Automake generates for it

Re: failure building HEAD

2003-12-01 Thread Robert Collins
On Mon, 2003-12-01 at 18:09, Alexandre Duret-Lutz wrote: > >>> "Robert" == Robert Collins <[EMAIL PROTECTED]> writes: > > [...] > > Robert> configure:1847: cd conftest && eval autoconf -o /dev/null conftest.ac > Robert> autom4te: cann

non recursive includes proof of concept #2

2003-12-01 Thread Robert Collins
Well, I finally snuck in a little time to update my proof of concept for non recursive includes. Still, I don't code perl - and it shows ;). How to use? Grab CVS automake, apply thepatch, drop the test files into tests subdir. Have a look at the test cases to see how to use it. What does it do

failure building HEAD

2003-11-30 Thread Robert Collins
checking whether autoconf is installed... yes checking whether autoconf works... no configure: error: The installed version of autoconf does not work. Please check config.log for error messages before this one. I get the above configuring CVS automake. from config.log: configure:1819: eval a

Free sales training for Engineering and Technical Companies

2003-11-28 Thread Robert
Is there someone in your company who could benefit from some professional sales-training?   Well, it’s yours for the asking.   Hello, I'm Robert Seviour, I run sales training seminars specific to engineering, technology and scientific companies. So that you can try it to see wheth

  1   2   3   >