Thank you all for your help on this issue. Now everything seems to fit
in the right place. :-D
--
Paulo Jorge Matos - pocm at sat inesc-id pt
Web: http://sat.inesc-id.pt/~pocm
Computer and Software Engineering
INESC-ID - SAT Group
On May 30, 2006, at 10:18 AM, Ralf Wildenhues wrote:
Hello Thomas,
* Thomas 'Tom' R. Treadway III wrote on Tue, May 30, 2006 at
07:03:15PM CEST:
Is there a way to have commas in the text of AS_HELP_STRING?
For example:
AS_HELP_STRING([--with-HDF5=INC,LIB],[Location of HDF5 include files
and
Hello Thomas,
* Thomas 'Tom' R. Treadway III wrote on Tue, May 30, 2006 at 07:03:15PM CEST:
> Is there a way to have commas in the text of AS_HELP_STRING?
> For example:
> AS_HELP_STRING([--with-HDF5=INC,LIB],[Location of HDF5 include files
> and libraries])
It seems not, and it seems we need a
Is there a way to have commas in the text of AS_HELP_STRING?
For example:
AS_HELP_STRING([--with-HDF5=INC,LIB],[Location of HDF5 include files
and libraries])
trt
On May 26, 2006, at 4:45 AM, Ralf Wildenhues wrote:
silly me...
* Ralf Wildenhues wrote on Fri, May 26, 2006 at 01:39:04PM C
silly me...
* Ralf Wildenhues wrote on Fri, May 26, 2006 at 01:39:04PM CEST:
>
> AC_ARG_ENABLE([debug],
> AS_HELP_STRING([--enable-debug], [Turn on debugging]),
instead:
[AS_HELP_STRING([--enable-debug], [Turn on debugging])],
and with argument:
[AS_HELP_STRING([--enable-debug
Hi Paulo,
* Paulo J. Matos wrote on Fri, May 26, 2006 at 11:40:31AM CEST:
>
> AC_ARG_ENABLE(debug,
> [ --enable-debugTurn on debugging],
> [case "${enableval}" in
> yes) debug=true ;;
> no) debug=false ;;
> *) AC_MSG_ERROR(bad value ${enableval} for --enable-debug)
Hi all,
In: http://sources.redhat.com/automake/automake.html#Conditionals
AC_ARG_ENABLE(debug,
[ --enable-debugTurn on debugging],
[case "${enableval}" in
yes) debug=true ;;
no) debug=false ;;
*) AC_MSG_ERROR(bad value ${enableval} for --enable-debug) ;;
esac]