Re: AH_TEMPLATE feature [#7250]

2003-01-23 Thread Sleepycat support
I wanted to contact you regarding Support Request #7250 that you currently have open with Sleepycat Software. I believe we are waiting for additional information from you before we can proceed on this Support Request, and I just wanted to make sure that email has not been dropped somewhere and tha

AC_HELP_STRING Help

2003-01-23 Thread Bill Wendling
Hi all, I want to produce a help string like this: --with-foo[=DIR]Use the foo package (note the []s around the =DIR bit). When I use the option like this: AC_ARG_WITH([foo], [AC_HELP_STRING([--with-foo[=DIR]], [Use the foo package])],,)

Re: AC_HELP_STRING Help

2003-01-23 Thread Olaf Weber
Bill Wendling writes: > Hi all, > I want to produce a help string like this: > --with-foo[=DIR]Use the foo package > (note the []s around the =DIR bit). When I use the option like this: > AC_ARG_WITH([foo], > [AC_HELP_STRING([--with-foo[=DIR]], >

Re: AC_HELP_STRING Help

2003-01-23 Thread Guido Draheim
Bill Wendling schrieb: Hi all, I want to produce a help string like this: --with-foo[=DIR]Use the foo package (note the []s around the =DIR bit). When I use the option like this: AC_ARG_WITH([foo], [AC_HELP_STRING([--with-foo[=DIR]], [Use

Re: AC_HELP_STRING Help

2003-01-23 Thread Bill Wendling
Also sprach Olaf Weber: } Bill Wendling writes: } } > Hi all, } > I want to produce a help string like this: } } > --with-foo[=DIR]Use the foo package } } > (note the []s around the =DIR bit). When I use the option like this: } } > AC_ARG_WITH([foo], } > [AC_HELP_STR

Re: AC_HELP_STRING Help

2003-01-23 Thread Bill Wendling
Also sprach Guido Draheim: } Bill Wendling schrieb: } >Hi all, } > } >I want to produce a help string like this: } > } >--with-foo[=DIR]Use the foo package } > } >(note the []s around the =DIR bit). When I use the option like this: } > } >AC_ARG_WITH([foo], } >[AC_HELP_S

Re: AC_HELP_STRING Help

2003-01-23 Thread Roger Leigh
Bill Wendling <[EMAIL PROTECTED]> writes: > I want to produce a help string like this: > > --with-foo[=DIR]Use the foo package > > (note the []s around the =DIR bit). When I use the option like this: > > AC_ARG_WITH([foo], > [AC_HELP_STRING([--with-foo[=DIR]], >

Re: AC_HELP_STRING Help

2003-01-23 Thread Guido Draheim
Roger Leigh schrieb: Bill Wendling <[EMAIL PROTECTED]> writes: I want to produce a help string like this: --with-foo[=DIR]Use the foo package (note the []s around the =DIR bit). When I use the option like this: AC_ARG_WITH([foo], [AC_HELP_STRING([--with-foo[=DIR]],

Re: AC_HELP_STRING Help

2003-01-23 Thread Philip Willoughby
Hi, Today, Guido Draheim wrote: >That's actually quite weird - so the ac_help_string macro will count >the chars of the argument literal in full glory but the [] brackets get >interpreted as m4 quotations later - after the indent computations. hmmm. 2.57 has the same problem. A small amount of

Re: checking if CC supports weak symbols

2003-01-23 Thread Peter Eisentraut
Ralf Corsepius writes: > More precisely, I am trying to detect whether a c-compiler supports > gcc's "function __attribute__((weak))" syntax or not. Is there any reason to think that compilers other than GCC support this syntax? -- Peter Eisentraut [EMAIL PROTECTED]

Re: AC_HELP_STRING Help

2003-01-23 Thread Peter Eisentraut
Bill Wendling writes: > I want to produce a help string like this: > --with-foo[=DIR]Use the foo package > (note the []s around the =DIR bit). When I use the option like this: > AC_ARG_WITH([foo], > [AC_HELP_STRING([--with-foo[=DIR]], > [Use

Re: checking if CC supports weak symbols

2003-01-23 Thread Ralf Corsepius
On Fri, 2003-01-24 at 00:53, Peter Eisentraut wrote: > Ralf Corsepius writes: > > > More precisely, I am trying to detect whether a c-compiler supports > > gcc's "function __attribute__((weak))" syntax or not. > > Is there any reason to think that compilers other than GCC support this > syntax? W

Re: checking if CC supports weak symbols

2003-01-23 Thread Raja R Harinath
Hi, Peter Eisentraut <[EMAIL PROTECTED]> writes: > Ralf Corsepius writes: > >> More precisely, I am trying to detect whether a c-compiler supports >> gcc's "function __attribute__((weak))" syntax or not. > > Is there any reason to think that compilers other than GCC support this > syntax? I'm no