Re: Manual Example

2006-06-03 Thread Paulo J. Matos
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

Re: Manual Example

2006-05-30 Thread Thomas 'Tom' R. Treadway III
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

Re: Manual Example

2006-05-30 Thread Ralf Wildenhues
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

Re: Manual Example

2006-05-30 Thread Thomas 'Tom' R. Treadway III
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

Re: Manual Example

2006-05-26 Thread Ralf Wildenhues
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

Re: Manual Example

2006-05-26 Thread Ralf Wildenhues
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)

Manual Example

2006-05-26 Thread Paulo J. Matos
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]