Protected message

2004-04-01 Thread eric

Site changes

2004-04-03 Thread eric

Re: Yahoo!

2004-04-06 Thread eric

Re: weird flags set by configure

2002-11-05 Thread Eric Siegerman
quickly become a habit ... well, fairly quickly; the first couple of wasted builds are a great inducement to learning :-) -- | | /\ |-_|/ > Eric Siegerman, Toronto, Ont.[EMAIL PROTECTED] | | / Just Say No to the "faceless cannonfodder" stereotype. - http://www.ainurin.net/ (an Orc site)

Java Support In Future Releases?

2002-11-07 Thread Eric Lemings
, Eric.

Re: LEX & YACC support

2002-11-12 Thread Eric Siegerman
intermediate is foo.c (leaving aside the even-more-transient y.tab. silliness); foo.o and foo.h are both legitimate final products of the rule. -- | | /\ |-_|/ > Eric Siegerman, Toronto, Ont.[EMAIL PROTECTED] | | / Just Say No to the "faceless cannonfodder" stereotype. - http://www.ainurin.net/ (an Orc site)

missing fi for compilation to .obj

2002-11-14 Thread Eric Blake
; then $(CYGPATH_W) '$<'; else $(CYGPATH_W) '$(srcdir)/$<'`; \ Notice the missing fi inside the backticks. I don't have the automake sources in front of me, but the file to patch gets installed as /usr/share/automake/am/depend2.am. 2002-11-14 Eric Blake <[EMAIL PR

Re: how to use multiple automake's at the same time?

2002-12-03 Thread Eric Siegerman
rojects where you need a different version, name it explicitly: /usr/local/stow/automake-1.4/bin/automake [options] -- | | /\ |-_|/ > Eric Siegerman, Toronto, Ont.[EMAIL PROTECTED] | | / Just Say No to the "faceless cannonfodder" stereotype. - http://www.ainurin.net/ (an Orc site)

Re: Java class files, again

2003-01-31 Thread Eric Siegerman
der* -- but it understands Java better than I believe make (and thus automake) ever will. So one possibility might be to pull the code for the task out of ant, and turn it into a standalone Java-compiler driver; then call it from a Makefile, as the gods and Stuart Feldman intended :-) A few other

Re: How do I make a portable test??

2003-02-14 Thread Eric Siegerman
On Fri, Feb 14, 2003 at 06:41:04PM +, Dr. David Kirkby wrote: > Eric Siegerman wrote: > AC_HAVE_HEADERS(gsl/gsl_sf_ellint.h,[gsl_inc_count=$(($gsl_inc_count + > 1))]) Right; "$((expr))" -- "arithmetic expansion" it's called in ksh(1) -- is another nonstandar

Re: Can I force 'make install' to depend on 'make test'?

2003-03-24 Thread Eric Siegerman
On some systems it's called "md5sum"; other systems might not have it at all. But "cmp" is as sure to be there as are "cat" and "ls". -- | | /\ |-_|/ > Eric Siegerman, Toronto, Ont.[EMAIL PROTECTED] | | / A distributed system is one on which I cannot get any work done, because a machine I have never heard of has crashed. - Leslie Lamport

Re: Can I force 'make install' to depend on 'make test'?

2003-03-31 Thread Eric Siegerman
l supported, but more or less deprecated. -- | | /\ |-_|/ > Eric Siegerman, Toronto, Ont.[EMAIL PROTECTED] | | / A distributed system is one on which I cannot get any work done, because a machine I have never heard of has crashed. - Leslie Lamport

Re: Duplicated macro's argh

2003-06-11 Thread Eric Dorland
me how to rewrite my > makefiles the "right way". > > I suspect this is a dependency bug in the Debian packaging system, which > ony people who don't know enough about autotools (like me) will > experience, as everyone who knows will have upgraded automake already. The

Re: 1.7.6, DIST_SUBDIRS, and distcheck

2003-08-22 Thread Eric Siegerman
DIRS = ... ... SUBDIRS = $(UNCONDITIONAL_SUBDIRS) @MAKE_SNTP@ DIST_SUBDIRS = $(UNCONDITIONAL_SUBDIRS) sntp That won't solve your other problems of course. -- | | /\ |-_|/ > Eric Siegerman, Toronto, Ont.[EMAIL PROTECTED] | | / When I came back around from the dark side, the

Re: Variable substitution in source files

2003-09-15 Thread Eric Siegerman
the values into it. Then call the script from the Makefiles, either explicitly or via an implicit rule. > -- and sometimes I need to do it to a file where there isn't a > Makefile in that directory. So add one... -- | | /\ |-_|/ > Eric Siegerman, Toronto, Ont.[EMAIL P

Re: how to change the behaviour of "make check"?

2003-09-17 Thread Eric Siegerman
ly runs if the first one succeeded, runs the tests while ignoring errors. -- | | /\ |-_|/ > Eric Siegerman, Toronto, Ont.[EMAIL PROTECTED] | | / When I came back around from the dark side, there in front of me would be the landing area where the crew was, and the Earth, all in the vi

mkinstalldirs detritus

2003-09-26 Thread Eric Sunshine
Hello, The mkinstalldirs script which ships with Autoconf and Automake leaves bogus directories named "-p" and "--" in its wake on platforms (such as NextStep and OpenStep) for which the `mkdir' command does not recognize any options. Here is a patch which fixes this bug. The patch is base

Re: mkinstalldirs detritus

2003-09-26 Thread Eric Sunshine
Alexandre Duret-Lutz wrote: Thank you. Automake is the master for this file. Given Andrea's comment and yours about _AS_MKDIR_P_PREPARE, how about the following instead? + test -d ./-p && rmdir ./-p + test -d ./-- && rmdir ./-- + # Clean up after NextStep and OpenStep mkdir. +

Re: precompiled header suggestion

2003-10-02 Thread Eric Siegerman
help avoid them. The situation seems very similar to that of Autoconf's config.cache. Those files used to be kept between runs by default, but it was decided that doing so causes too many problems, so now the default is to throw them away; the user must ask for the less-safe behaviour. -- | |

Re: Libs ordering in LDADD

2003-10-20 Thread Eric Siegerman
ence to undefined function bazzle(), but nothing *following* foo.o on the command line can satisfy that reference. You get an "undefined" error. But with: ld foo.o -lbar the linker knows, while searching -lbar, that it needs bazzle(). The situation with two libraries is s

Re: Desired feature

2003-12-04 Thread Eric Siegerman
hardwired, it'll frustrate some users who want it the other way; and unless all levels are hardwired the same way, it'll confuse and frustrate *most* users. -- | | /\ |-_|/ > Eric Siegerman, Toronto, Ont.[EMAIL PROTECTED] | | / It must be said that they would have so

[PATCH] cleanup config.status.lineno

2004-01-07 Thread Eric Sunshine
Hello, Here is a patch for Automake which ensures that generated makefiles also clean up config.status.lineno at distclean time. (Makefiles already know how to clean up configure.lineno, but neglect to remove its cousin.) Eric 2003-01-07 Eric Sunshine <[EMAIL PROTECTED]>

Re: Question about common_files

2004-01-07 Thread Eric Siegerman
of the subpackage to be buildable, you have to defeat this behaviour (or rather, you had to do so the last time I tried it), by: AC_CONFIG_AUX_DIR([.]) See http://www.mail-archive.com/[EMAIL PROTECTED]/msg08005.html for the gory details. -- | | /\ |-_|/ > Eric Siegerman, Tor

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

2004-01-31 Thread Eric Sunshine
On Sat, 31 Jan 2004 23:28:29 +0100, Alexandre Duret-Lutz wrote: > I'm posting it here for comment. (In fact I'm mainly hoping > that some kind fellow will point out English mistakes...) It is well written. > One of the output (here `data.c') is used as a witness of the run of > `foo'. Perhaps:

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

2004-02-04 Thread Eric Siegerman
d "foo" is suppressed. This scales to multiple outputs too, but it gets a bit ugly, since one has to impose a serial ordering on all of them: data.c data.h data.x data.y: data.foo foo data.foo data.h: data.c data.x: data.h data.y: data.x I h

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

2004-02-05 Thread Eric Siegerman
On Thu, Feb 05, 2004 at 10:49:07AM +1100, Robert Collins wrote: > 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): > > da

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

2004-02-06 Thread Eric Siegerman
it :-) [Usually I avoid me-too posts, but in this case it seems warranted.] -- | | /\ |-_|/ > Eric Siegerman, Toronto, Ont.[EMAIL PROTECTED] | | / It must be said that they would have sounded better if the singer wouldn't throw his fellow band members to the ground a

installing headers files in /usr/local/include...

2004-02-11 Thread Eric Tchepannou
Hello all, I have written (I am still writing actually) an application and use automake/autoconf. I would like to have my headers to be installed under /usr/local/include when applying make install. I wonder if someone can help me how to reach this with automake. Thanks for any contribution.

Re: installing headers files in /usr/local/include...

2004-02-11 Thread Eric Tchepannou
Thanks Adreas, What about if my headers should be in /usr/local/include/myapp ? cheers On Wednesday 11 February 2004 15:22, you wrote: > Eric Tchepannou <[EMAIL PROTECTED]> writes: > > Hello all, > > > > I have written (I am still writing actually) an application an

Re: AM_INIT_AUTOMAKE Call in Automake 1.7

2004-02-11 Thread Eric Siegerman
0: using the `aclocal' command, and then run `automake' again. -- | | /\ |-_|/ > Eric Siegerman, Toronto, Ont.[EMAIL PROTECTED] | | / It must be said that they would have sounded better if the singer wouldn't throw his fellow band members to the ground and toss the drum kit around during songs. - Patrick Lenneau

Re: AM_INIT_AUTOMAKE Call in Automake 1.7

2004-02-11 Thread Eric Siegerman
be that the right aclocal program is still finding the old 1.4 macros. I don't know how to check for that, but take a look at aclocal.m4, to see if you can find anything that indicates which version of the Automake-related macros aclocal picked up. -- | | /\ |-_|/ > Eric Siegerman, To

Re: html texinfo install?

2004-02-17 Thread Eric Siegerman
target for making the texinfo-based subset of the HTML might indeed be "texinfohtml", and correspondingly for install and uninstall. But that should be purely a detail of automake's implementation: html: texinfohtml whatever_other_html_targets_make_sense It need not, a

Re: html texinfo install?

2004-02-17 Thread Eric Siegerman
because I chose to CVSify the package. Maybe this isn't Karl's responsibility; and I'm not sure what, if anything, can be done about it in any case; but it seemed worth bringing up while we're on the subject. -- | | /\ |-_|/ > Eric Siegerman, Toronto, Ont.[EMAIL PROT

Re: html texinfo install?

2004-02-17 Thread Eric Siegerman
ion *not* as a criticism, but merely as a data point relevent to the version-check question. It's perfectly ok to add new features that require the new program version to process them; it's a disregard for *backward* compatibility that's antisocial behaviour, and again, I'm not acc

Re: FEATURE REQUEST: make uninstall should delete empty directories.

2004-03-03 Thread Eric Siegerman
spec file is (intended to be) hand-written, or at least hand-tuned; so decisions about which directories to list in it are made by a human, not by code. -- | | /\ |-_|/ > Eric Siegerman, Toronto, Ont.[EMAIL PROTECTED] | | / It must be said that they would have sounded bette

Re: Automake 1.8.3 doesn't build?

2004-04-18 Thread Eric Sunshine
Alexandre Duret-Lutz wrote: This suggests that shell running this code does not split $list and $subdir get the full list. Zsh would do that. Could you compare the output of grep 'SHELL =' Makefile on the working and non-working tarballs? CVS Autoconf has a new SHELL selection code. That could

Re: Automake 1.8.3 doesn't build?

2004-04-18 Thread Eric Sunshine
On Sun, 18 Apr 2004 10:02:14 -0500 (CDT), Bob Friesenhahn wrote: > On Sun, 18 Apr 2004, Alexandre Duret-Lutz wrote: > > This suggests that shell running this code does not split $list > > and $subdir get the full list. Zsh would do that. Could you > > compare the output of grep 'SHELL =' Makefile

Re: [Bug-tar] Re: AMTAR brokenness

2004-04-18 Thread Eric Sunshine
On Sun, 18 Apr 2004 23:18:05 +0200, Alexandre Duret-Lutz wrote: > [EMAIL PROTECTED] selects the new pax format defined by POSIX > +1003.1-2001. It supports filenames with up to 65535 characters. > +However this format is very young and should probably be avoided in > +all packages that do not targ

Re: Automake 1.8.3 doesn't build?

2004-04-18 Thread Eric Sunshine
On Sun, 18 Apr 2004 13:08:54 -0500 (CDT), Bob Friesenhahn wrote: > On Sun, 18 Apr 2004, Eric Sunshine wrote: > > Can you apply the following manual edit to the configure script > > (not the configure.ac file) and report if it fixes the problem? > > In con

Re: Automake 1.8.3 doesn't build?

2004-04-19 Thread Eric Sunshine
On Sun, 18 Apr 2004 16:45:00 -0500 (CDT), Bob Friesenhahn wrote: > On Sun, 18 Apr 2004, Eric Sunshine wrote: > > I can submit a patch to autoconf-patches to make Autoconf's shell > > selection more backward-compatible with earlier versions of Autoconf, > > however thi

Re: Automake 1.8.3 doesn't build?

2004-04-20 Thread Eric Sunshine
On Mon, 19 Apr 2004 21:01:58 +0200, Alexandre Duret-Lutz wrote: > A suggestion was to always use `SHELL = /bin/sh' in Makefiles. > I simply don't know how correct this is, because that's how it > was in the past before Chris Provenzano changed it to what it is > now. The reason for that change see

Buy VĂ­agra and many other medicines here.

2004-05-07 Thread Eric Henley
No doctor visit needed I don't like emails.

svn copy conflicts with autotools ?

2004-12-01 Thread Eric PAIRE
should be modified to handle subversion philosophy), and in particular when doing a 'svn copy'. Thanks for your comments (and your solutions), Eric PAIRE

Re: svn copy conflicts with autotools ?

2004-12-01 Thread Eric PAIRE
Hello Gary, Gary Thomas wrote: Bonjour, Eric :-) On Wed, 2004-12-01 at 04:38, Eric PAIRE wrote: Hi all, Here is the description of a problem met with subversion and autotools. If anybody has a clean solution, let me/us know: 1) I have a project using the autotools for the environment management

Re: svn copy conflicts with autotools ?

2004-12-02 Thread Eric PAIRE
Bob Friesenhahn wrote: On Wed, 1 Dec 2004, Eric PAIRE wrote: It this solution is so obvious, I don't understand why autotools developers have not already set up a tool which automatically removes the files generated by the autotools (perhaps this tool exists and I don't know abou

make -k fails on cygwin [Was: Test failures in coreutils-5.3.0 on cygwin]

2005-01-14 Thread Eric Blake
hive/html/libtool-patches/2004-12/msg00091.html, parsing $MAKEFLAGS is inherently non-portable. `info make' also has a page dedicated to "Phony Targets" that discusses the more portable way to have a recursive target, although I don't know how well it scales to the more than 15 recu

Re: make -k fails on cygwin

2005-01-15 Thread Eric Blake
mostlyclean-recursive, > clean-recursive, distclean-recursive, maintainer-clean-recursive): > Process all words of $MAKEFLAGS when checking for -k. > * tests/check4.test: New file. > * tests/Makefile.am (TESTS): Add check4.test. > Report from Eric Blake. I verified t

Re: installing to $(includedir)/namespace/

2005-01-31 Thread Eric Hanchrow
something1incdir = $(includedir)/dir1 something1inc_HEADERS = header1.h header2.h ... something2incdir = $(includedir)/dir2 something2inc_HEADERS = header3.h hea (clipped from http://sources.redhat.com/ml/automake/2001-04/msg00346.html) but that "something1incdir" do

Re: is there a way to ensure that at least a certain automake version is used?

2005-05-29 Thread Eric Hanchrow
AM_INIT_AUTOMAKE takes a VERSION option that does what you want. -- I don't care where he was born. He's one of us, in all the ways that matter most. (Even, perhaps, in the groping.) -- Steven Den Beste, on Arnold Schwarzenegger

Defining Macros With Literal Values

2005-10-26 Thread Eric Lemings
alternate names in config.h such as: /* Define to the value of SEEK_SET from . */ #define MY_SEEK_SET 0 ... Can this be done in Autotools? If so, how? Thanks, Eric.

RE: Defining Macros With Literal Values

2005-11-11 Thread Eric Lemings
> -Original Message- > From: Andreas Schwab [mailto:[EMAIL PROTECTED] > Sent: Wednesday, October 26, 2005 2:28 PM > To: Eric Lemings > Cc: 'autoconf@gnu.org'; 'automake@gnu.org' > Subject: Re: Defining Macros With Literal Values > >

Re: FW: shall `make uninstall' remove directories?

2000-05-15 Thread Eric Siegerman
try to do the Right Thing (which, as others have pointed out, is impossible in theory), but to make Automake work better with stow, which makes the Right Thing trivial. -- | | /\ |-_|/ > Eric Siegerman, Toronto, Ont.[EMAIL PROTECTED] | | / to me, Charlie Brown represented the co

Re: shall `make uninstall' remove directories?

2000-05-16 Thread Eric Siegerman
t was capable of removing a /usr/local! -- | | /\ |-_|/ > Eric Siegerman, Toronto, Ont.[EMAIL PROTECTED] | | / to me, Charlie Brown represented the courage to be sincere in the face of ridicule. he was NOT a loser. thank you, Mr. Schulz. - Robert C. Mayo

Compile Only

2000-05-19 Thread Eric Lemings
I have a directory that contains only source files that I only want to compile when I do a make all. What should I put in the Makefile.am file? Thanks, Eric.

Re: Makefile.in not generated using Automake

2011-06-14 Thread Eric Blake
age from automake and failed to check for non-zero exit status. Automake won't produce Makefile.in if required files are missing. -- Eric Blake ebl...@redhat.com+1-801-349-2682 Libvirt virtualization library http://libvirt.org signature.asc Description: OpenPGP digital signature

Re: Weird behaviour of AM_CONDITIONAL

2011-09-02 Thread Eric Blake
, so the test is always true. -- Eric Blake ebl...@redhat.com+1-801-349-2682 Libvirt virtualization library http://libvirt.org

Re: [PATCH 09/25] syntax-check: fix violations and re-enable sc_makefile_at_at_check.

2011-11-16 Thread Eric Blake
s commit is purely for future repo archaeology. Then it's not NEWS-worthy. It's worth keeping that analysis in the git commit message (as you say, for repo archaeology), but let's limit it to just there, rather than potentially causing users to worry about some perceived loss of porta

bug#10237: AM_SILENT_RULES does not work with NonStop make

2011-12-07 Thread Eric Blake
elled $(MODULE). But that is unrelated to fixing AM_SILENT_RULES to produce POSIX-compliant makefiles. -- Eric Blake ebl...@redhat.com+1-919-301-3266 Libvirt virtualization library http://libvirt.org signature.asc Description: OpenPGP digital signature

bug#8071: Please rename automake invocation node

2011-12-30 Thread Eric Blake
the old name to the previous node, then we may want to move the anchor to appear after the @node. -- Eric Blake ebl...@redhat.com+1-919-301-3266 Libvirt virtualization library http://libvirt.org signature.asc Description: OpenPGP digital signature

RFC: cool hack for simplifying do_subst generation of scripts

2012-01-12 Thread Eric Blake
$(srcdir)/$@.in >$@.tmp + $(do_subst) $(srcdir)/$@.in | ./config.status --file=- >$@.tmp chmod +x $@.tmp chmod a-w $@.tmp mv -f $@.tmp $@ -- Eric Blake ebl...@redhat.com+1-919-301-3266 Libvirt virtualization library http://libvirt.org signature.asc Description: OpenPGP digital signature

Re: Automake 1.11.2b test release

2012-01-27 Thread Eric Blake
in automake. Re-read the list where we discussed this - gcc is doing a better maintenance job of multilib support in the first place, so this move is intended to point you towards the better-maintained source in the first place. -- Eric Blake ebl...@redhat.com+1-919-301-3266 Libvirt vi

Re: *simple* example using Autotest

2012-02-07 Thread Eric Blake
figure out, but that should hopefully help you get started on seeing how others have used it. -- Eric Blake ebl...@redhat.com+1-919-301-3266 Libvirt virtualization library http://libvirt.org signature.asc Description: OpenPGP digital signature

Re: pkglibdir, pkgdatadir and program_transform_name

2012-02-27 Thread Eric Blake
by way of a new standardized configure option for specifying the alternate package name of the second installation, and then adding automake and/or autoconf support for providing configure support for an alternate package name, seems like it would be worthwhile for more than just grub. -- Eric

Re: automake 1.11.3 check-TESTS and command line length

2012-02-27 Thread Eric Blake
t > eats away space that could be used by those command lines? Oh joy ... Yes. Unlike on *ix systems, where argv and environ are independent entities, Windows makes you deal with both limits at the same time, so increasing the size of environ reduces the size permitted in argv. -- Eric Blake e

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

2012-03-13 Thread Eric Blake
conditions make it so there are no contents in a directory, then the directory is created _unless_ the noinst_ prefix also appeared with that directory. -- Eric Blake ebl...@redhat.com+1-919-301-3266 Libvirt virtualization library http://libvirt.org signature.asc Description: OpenPGP digital signature

Re: Don't distribute auto*tools output; do distribute autoreconf input

2012-05-10 Thread Eric Blake
ical way to do this? No, because the moment you quit distributing these files, you have required end users to have more tools available than normally required by the GNU Coding Standards to even be able to use your tarball. -- Eric Blake ebl...@redhat.com+1-919-301-3266 Libvirt virtualizatio

[PATCH] config: drop scripts that automake says are not independent

2012-06-26 Thread Eric Blake
these scripts are updated. * config/srclist.txt: Drop elisp-comp, missing, and ylwrap. * build-aux/elisp-comp: Delete. * build-aux/missing: Likewise. * build-aux/ylwrap: Likewise. Signed-off-by: Eric Blake --- Any objections to this patch? ChangeLog|8 ++ build-aux/elisp-comp

Re: [PATCH] config: drop scripts that automake says are not independent

2012-06-26 Thread Eric Blake
[adding autoconf] On 06/26/2012 12:26 PM, Bruno Haible wrote: > Eric Blake wrote: >> * build-aux/elisp-comp: Delete. > > What about modules/elisp-comp? That module has only had one edit: it's introduction in 2006: https://lists.gnu.org/archive/html/bug-gnulib/2006-08/msg0024

Re: GNU Automake 1.11.6 released (fixes a SECURITY VULNERABILITY!)

2012-07-09 Thread Eric Dorland
; > ftp://ftp.gnu.org/gnu/automake/automake-1.11.6.tar.gz > ftp://ftp.gnu.org/gnu/automake/automake-1.11.6.tar.xz > > Please report bugs and problems to , and send > general comments and feedback to . > > Thanks to everyone who has reported problems, contributed patches, > and

Re: GNU Automake 1.11.6 released (fixes a SECURITY VULNERABILITY!)

2012-07-09 Thread Eric Dorland
* Stefano Lattarini (stefano.lattar...@gmail.com) wrote: > On 07/10/2012 12:14 AM, Eric Dorland wrote: > > > > Are older versions of automake also vulnerable? > > > Yes, all those back to 1.4 (at least). Sorry for not stating that > explicitly. Awesome :) Is there

Re: GNU Automake 1.11.6 released (fixes a SECURITY VULNERABILITY!)

2012-07-10 Thread Eric Dorland
* Stefano Lattarini (stefano.lattar...@gmail.com) wrote: > On 07/10/2012 12:40 AM, Eric Dorland wrote: > > * Stefano Lattarini (stefano.lattar...@gmail.com) wrote: > >> On 07/10/2012 12:14 AM, Eric Dorland wrote: > >>> > >>> Are older versions of auto

Re: GNU Automake 1.11.6 released (fixes a SECURITY VULNERABILITY!)

2012-07-12 Thread Eric Dorland
* Stefano Lattarini (stefano.lattar...@gmail.com) wrote: > On 07/10/2012 12:14 AM, Eric Dorland wrote: > > > > Are older versions of automake also vulnerable? > > > Yes, all those back to 1.4 (at least). Sorry for not stating that > explicitly. So I'm not obvi

Re: GNU Automake 1.11.6 released (fixes a SECURITY VULNERABILITY!)

2012-07-12 Thread Eric Dorland
* Stefano Lattarini (stefano.lattar...@gmail.com) wrote: > On 07/12/2012 08:23 PM, Eric Dorland wrote: > > * Stefano Lattarini (stefano.lattar...@gmail.com) wrote: > >> On 07/10/2012 12:14 AM, Eric Dorland wrote: > >>> > >>> Are older versions of automake

Re: GNU Automake 1.11.6 released (fixes a SECURITY VULNERABILITY!)

2012-07-13 Thread Eric Dorland
gt; *not* fix it for the more modern versions (e.g., Automake 1.11), probably > being convinced it had been solved as part of the fix for CVE-2009-4029; > so I spoke too fast and inconsiderately by accusing them so somehow > withold a security fix from upstream. I didn't write the patch

Re: distinguish automake 1.11 from 1.12+ at autoconf time

2012-08-06 Thread Eric Blake
there's something you do with 1.12 that doesn't work with 1.11 and therefore you are trying to make it conditional so that 1.11 can still process the rest of the file. Determine that feature, and we are that much closer to helping you conditionalize your configure.ac to work with both

v1.11.6 tag missing from automake.git?

2012-08-14 Thread Eric Blake
I see v1.12.2, but no tag for v1.11.6 for the CVE-2012-3386 fix. Is this intentional? -- Eric Blake ebl...@redhat.com+1-919-301-3266 Libvirt virtualization library http://libvirt.org signature.asc Description: OpenPGP digital signature

Re: v1.11.6 tag missing from automake.git?

2012-08-14 Thread Eric Blake
On 08/14/2012 04:24 PM, Stefano Lattarini wrote: > Hi Eric. > > On 08/15/2012 12:16 AM, Eric Blake wrote: >> I see v1.12.2, but no tag for v1.11.6 for the CVE-2012-3386 fix. >> > Hmm... I can see it without problems: > > <http://git.savannah.gnu.org/cgit/automa

Re: [Automake-NG] Automake vs. Automake-NG

2012-08-21 Thread Eric Blake
fig.site that forces noisy builds. The 'silent-rules' change in automake change did NOT make more builds instantly silent, nor are we preventing you from your goal of noisy builds for the Fedora buildbots. Quit beating a dead horse to spread FUD about something which is not true. -- Er

Re: [PATCH] {master} compile: remove support for $(INCLUDES)

2012-08-22 Thread Eric Blake
u provided a feature that could be probed at m4 time in order to write a configure.ac that can then set an automake conditional, so that Makefile.am can then set either INCLUDES or AM_CPPFLAGS as appropriate within the two branches of the conditional. -- Eric Blake ebl...@redhat.com+1-919-3

Re: [PATCH] {master} compile: remove support for $(INCLUDES)

2012-08-22 Thread Eric Blake
eloper_Toolset/1/html/User_Guide/chap-Red_Hat_Developer_Toolset.html#sect-Red_Hat_Developer_Toolset-About -- Eric Blake ebl...@redhat.com+1-919-301-3266 Libvirt virtualization library http://libvirt.org signature.asc Description: OpenPGP digital signature

Re: [libvirt] libvirt build failure w/GNU make and automake.git (automake regression?)

2012-09-12 Thread Eric Blake
ot;undefine" test script. Indeed - while the upstream debate continues on whether 'make', 'automake', or both should be patched to allow 'undefine', downstream in libvirt, I am pushing this trivial patch: From a20f06d9d9b0353d7fb7a8e11a631253d5961b96 Mon Sep 17 00:

Re: Pre-built binary package

2012-09-20 Thread Eric Blake
In all other cases, it makes more sense for the user to build the binary themselves from the source (where user includes major distros, who will then package it up in .rpm or apt formats as appropriate for the distro, and where the distro package-manager software like yum or apt-get can then b

Re: apt-get/yum like dependency installation in autotool

2012-10-23 Thread Eric Blake
otools is not the place to do this: https://lists.gnu.org/archive/html/bug-autoconf/2012-09/msg00049.html -- Eric Blake ebl...@redhat.com+1-919-301-3266 Libvirt virtualization library http://libvirt.org signature.asc Description: OpenPGP digital signature

Re: looking for a good example of non-recursive Make using project

2012-11-19 Thread Eric Blake
e}/file3.c ${more}/file4.c so that a rename now only has to touch the 'more =' line, rather than every use. -- Eric Blake ebl...@redhat.com+1-919-301-3266 Libvirt virtualization library http://libvirt.org signature.asc Description: OpenPGP digital signature

Re: Conditional AC_DEFINE with m4_define variable?

2012-12-22 Thread Eric Blake
o type, without quite so much quoting: version_suffix=dc_version_suffix AS_IF([test "x$version_suffix" = "xdevel"], [ AC_DEFINE([USE_REVISION], [1], [Use the revision number.]) ]) > > Does anyone know how to implement this correctly? It really depends on what you are trying to accomplish by deciding something at m4 time, but deferring the action on that decision until configure time. -- Eric Blake eblake redhat com+1-919-301-3266 Libvirt virtualization library http://libvirt.org signature.asc Description: OpenPGP digital signature

Re: [IMPORTANT] A new versioning scheme for automake releases, and a new branching scheme for the Git repository

2013-01-30 Thread Eric Dorland
x27; should be rewindable. > > If you agree with my proposal, I think the new schemes could be > implemented right after the 1.13.2 release; so that the planned > Automake 1.13.3 will be released as 1.14, and the planned Automake > 1.14 will be released as Automake 2.0. I think it wo

Re: [Automake-NG] Removal of INCLUDES in favour of AM_CPPFLAGS

2013-02-01 Thread Eric Blake
hope that we can get automake stable enough that you can spend some fun time with Automake-NG. -- Eric Blake eblake redhat com+1-919-301-3266 Libvirt virtualization library http://libvirt.org signature.asc Description: OpenPGP digital signature

Re: [Automake-NG] Removal of INCLUDES in favour of AM_CPPFLAGS

2013-02-02 Thread Eric Blake
hat it will be easier to fix issues upstream and re-release than to make the distros have to carry downstream patches against configure.ac and Makefile.am that require rerunning the autotools as part of the distro process. -- Eric Blake eblake redhat com+1-919-301-3266 Libvirt virtualizati

Re: Autoreconf stops with "non-POSIX variable name"

2013-03-29 Thread Eric Blake
e Automake flags (in AM_INIT_AUTOMAKE, for example). Or don't use $(shell), or upgrade to Automake-NG (which _requires_ GNU make to be installed on the end-user's machine, and therefore should let you use GNU make extensions without question). -- Eric Blake eblake redhat com+1-91

Re: Autoreconf stops with "non-POSIX variable name"

2013-04-01 Thread Eric Blake
On 04/01/2013 05:07 PM, Borchert, Oliver wrote: > Eric and Russ, > > thanks for the reply. After long testing back and forth I decided to use > AC_SUBST. > My solution might not be the cleanest but it works for me. It may work for you, but it alienates all users that were pre

Re: $(OBJEXT) equivalent for .lo files?

2013-04-16 Thread Eric Blake
eed across platforms? .lo, on the other hand, is platform independent, so it needs no variable wrapper. -- Eric Blake eblake redhat com+1-919-301-3266 Libvirt virtualization library http://libvirt.org signature.asc Description: OpenPGP digital signature

Re: Put GNU build system files in a subdirectory?

2013-04-24 Thread Eric Blake
ion to this: https://lists.gnu.org/archive/html/automake/2013-04/msg00014.html with this answer of no (which really means: if YOU write the patches and prove that they are worth maintaining, then it could be added in the future, but no one else is interested in this unusual setup): https://lists.gn

Re: GNU Automake 1.14 released

2013-07-27 Thread Eric Dorland
f the Automake-generated > targets 'dist-shar' and 'dist-tarZ' will unconditionally display > (non-fatal) warnings at make runtime. > > * New configure runtime warnings about "rm -f" support: > > - To simplify transition to Automake 2.0, the shell code expanded by > AM_INIT_AUTOMAKE now checks (at configure runtime) that the default > 'rm' program in PATH doesn't complain when called without any > non-option argument if the '-f' option is given (so that commands like > "rm -f" and "rm -rf" act as a no-op, instead of raising usage errors). > If this is not the case, the configure script is aborted, to call the > attention of the user on the issue, and invite him to fix his PATH. > The checked 'rm' behavior is very widespread in the wild, and will be > required by future POSIX versions: > > <http://austingroupbugs.net/view.php?id=542> > > The user can still force the configure process to complete even in the > presence of a broken 'rm' by defining the ACCEPT_INFERIOR_RM_PROGRAM > environment variable to "yes". And the generated Makefiles should > still work correctly even when such broken 'rm' is used. But note > that this will no longer be the case with Automake 2.0 though, so, if > you encounter the warning, please report it to us ASAP (and try to fix > your environment as well). > > > -- Eric Dorland ICQ: #61138586, Jabber: ho...@jabber.com signature.asc Description: Digital signature

Re: Setting python interpreter in scripts

2013-07-31 Thread Eric Blake
d this to your configure.ac: AC_SUBST([PYTHON], ...) AC_CONFIG_FILES([script], [chmod +x script]) prior to the AC_OUTPUT, so that running config.status (as part of the configure script itself) will automatically replace @PYTHON@ from the script.in template into the output script without you rep

Re: GNU Automake 1.14 released

2013-08-08 Thread Eric Dorland
* Eric Dorland (e...@debian.org) wrote: > Hi Stefano, > > I was just getting around to packaging this for Debian and I have a > question. Given the new versioning scheme shouldn't the APIVERSION (as > defined in configure.ac) be 1.13 and not 1.14? Or more precisely, does >

Re: GNU Automake 1.14 released

2013-08-08 Thread Eric Dorland
* Dan Kegel (d...@kegel.com) wrote: > On Thu, Aug 8, 2013 at 2:39 PM, Eric Dorland wrote: > > Previously I would upgrade the automake package to the latest version > > and add a new binary package for the previous version. So, for > > example, if automake was at version 1.10

Re: GNU Automake 1.14 released

2013-08-08 Thread Eric Dorland
* Dan Kegel (d...@kegel.com) wrote: > On Thu, Aug 8, 2013 at 4:43 PM, Eric Dorland wrote: > >> That sounds kind of risky, promises of compatibility notwithstanding. > > > > Can you elaborate why? > > No. I'm just being paranoid. But there is good prece

Re: GNU Automake 1.14 released

2013-08-21 Thread Eric Dorland
* Stefano Lattarini (stefano.lattar...@gmail.com) wrote: > [Re-adding the list, sorry for the confusion] > > On 08/12/2013 06:16 AM, Eric Dorland wrote: > > * Stefano Lattarini (stefano.lattar...@gmail.com) wrote: > >> Hi everybody. > > > > (You didn&#x

Re: autotest, automake & non-recursive makes

2013-09-26 Thread Eric Blake
around. Perhaps others have better solutions? And when you do come to consensus on the best solution, please also send a patch to the autoconf list so that they can update their manual to include it as an example. -- Eric Blake eblake redhat com+1-919-301-3266 Libvirt virtualization library h

Re: autotest, automake & non-recursive makes

2013-09-26 Thread Eric Blake
On 09/26/2013 12:13 PM, Diab Jerius wrote: > On Thu, Sep 26, 2013 at 2:09 PM, Eric Blake wrote: >> On 09/26/2013 10:16 AM, Diab Jerius wrote: >>> I embarked on a journey yesterday involving automake, autotest, and >>> non-recursive makes. I started with the

  1   2   3   >