Re: Question on check-process / autoconf-2.6.3

2010-01-07 Thread Dr. Ing. Dieter Jurzitza
Hi folks, thank you for the honor, but this feedback of mine isn't even worth mentioning - so keep me out of the log, the work has been done by someone else. And be assured that it is of no importance whether you denote the "Dr" or don't if you still think my "contribution" is worth mentioning

Re: Question on check-process / autoconf-2.6.3

2010-01-07 Thread Eric Blake
According to Ralf Wildenhues on 1/6/2010 12:26 PM: Hi Ralf, > > That sounds like a good compromise. Proposed patch below; OK to commit? > Dieter, OK to add you to THANKS? FWIW, I think it is customary to do so > without name affixes like Dr. Yes, your fix looks like what I was describing. I

Re: Question on check-process / autoconf-2.6.3

2010-01-07 Thread Ralf Wildenhues
* Eric Blake wrote on Thu, Jan 07, 2010 at 02:00:08PM CET: > According to Ralf Wildenhues on 1/6/2010 12:26 PM: > > > > That sounds like a good compromise. Proposed patch below; OK to commit? > > Dieter, OK to add you to THANKS? FWIW, I think it is customary to do so > > without name affixes lik

Re: specify AC_INIT version externally

2010-01-07 Thread Carsten Heinrici
> What's the easiest way to specify the AC_INIT package version external to > configure.ac? why not including just another m4 file which defines the version number? example: ./version.m4 m4_define([VERSION_NUMBER],[1.2.3]) ./package/configure.ac m4_include([../version.m4]) AC_INIT([package

Re: specify AC_INIT version externally

2010-01-07 Thread Ralf Wildenhues
* Carsten Heinrici wrote on Thu, Jan 07, 2010 at 09:00:06PM CET: > why not including just another m4 file which defines the version number? > example: That is a possibility. > ./version.m4 > m4_define([VERSION_NUMBER],[1.2.3]) > > ./package/configure.ac > m4_include([../version.m4]) > AC_I