Hi,
I am new to autoconf,autoheader, etc and I'd like to use a predefined header
template like:
my_tool.h.in
/* My header input file */
#include my.h
#undef HAVE_FEATURE_1
#undef HAVE_FEATURE_2
#ifdef HAVE_FEATURE_1
#include my_1.h
#endif
/* Some comment */
The configure.in I imagine
Hi,
I am new to autoconf,autoheader, etc and I'd like to use a predefined header
template like:
my_tool.h.in
/* My header input file */
#include my.h
#undef HAVE_FEATURE_1
#undef HAVE_FEATURE_2
#ifdef HAVE_FEATURE_1
#include my_1.h
#endif
/* Some comment */
The configure.in I imagine l
ated and discouraged.
Thanks
Markus
On Mon Nov 22 22:51 , Andreas Schwab <[EMAIL PROTECTED]> sent:
>Markus Moeller [EMAIL PROTECTED]> writes:
>
>> If I do so my predefined my_tool.h gets overwritten. Is there a way to use a
>> predefined template file ?
>
>You can us
Andreas,
Yes that works, but if I use [EMAIL PROTECTED] it always drops the @host. is @ a
special character ? How do I escape it ?
Thank you very much
Markus
On Mon Nov 22 23:41 , Andreas Schwab <[EMAIL PROTECTED]> sent:
>Markus Moeller [EMAIL PROTECTED]> writes:
>
>> I