Re: preventing autoheader from overwriting my files...

2004-07-15 Thread Alexandre Duret-Lutz
>>> "Dale" == Dale E Martin <[EMAIL PROTECTED]> writes: Dale> Hello. I've got a header file I want autotools to handle for me, Dale> WarpedConfig.h. My WarpedConfig.h.in has header guards in it and has Dale> "#undef"s for all of the things I want defined. I have this in my Dale> configure.a

Re: preventing autoheader from overwriting my files, take 2

2004-07-15 Thread Stephen Torri
On Thu, 2004-07-15 at 10:55, Dale E Martin wrote: > I have reread the docs and I'm not finding my answer, so I'm going to try > to precisely restate the issue here and hopefully get some help. > > I have a header template file that I wrote by hand. It has stuff in it > like guards that I want to

preventing autoheader from overwriting my files, take 2

2004-07-15 Thread Dale E Martin
I have reread the docs and I'm not finding my answer, so I'm going to try to precisely restate the issue here and hopefully get some help. I have a header template file that I wrote by hand. It has stuff in it like guards that I want to stay there. I would like configure to process my template a

Re: preventing autoheader from overwriting my files...

2004-07-14 Thread Stephen Torri
On Wed, 2004-07-14 at 18:50, Dale E Martin wrote: > > Autoconfigure script will take that file and the user configurations > > chosen and generate the end result file WarpedConfig.h in src/warped > > directory. > > OK, so you're saying don't write the .in file, write this autoconfigure.ac > file t

Re: preventing autoheader from overwriting my files...

2004-07-14 Thread Dale E Martin
> Do not include WarpedConfig.h.in in the AC_CONFIG_HEADERS. Autoheader > only needs the end result WarpedConfig.h in the AC_CONFIG_HEADERS. It > will scan the autoconfigure.ac file and create WarpedConfig.h.in. I don't want it to generate WarpedConfig.h.in, I guess that's my point. > Autoconfigu

Re: preventing autoheader from overwriting my files...

2004-07-14 Thread Stephen Torri
On Wed, 2004-07-14 at 15:23, Dale E Martin wrote: > Hello. I've got a header file I want autotools to handle for me, > WarpedConfig.h. My WarpedConfig.h.in has header guards in it and has > "#undef"s for all of the things I want defined. I have this in my > configure.ac: > AC_CONFIG_HEADERS([src

preventing autoheader from overwriting my files...

2004-07-14 Thread Dale E Martin
Hello. I've got a header file I want autotools to handle for me, WarpedConfig.h. My WarpedConfig.h.in has header guards in it and has "#undef"s for all of the things I want defined. I have this in my configure.ac: AC_CONFIG_HEADERS([src/warped/WarpedConfig.h:src/warped/WarpedConfig.h.in]) Norma