On Sun, Nov 05, 2006 at 01:24:05PM +0100, Sjoerd Mullender wrote:
On 11/04/2006 03:09 PM, Stefan Manegold wrote:
Update of /cvsroot/monetdb/MonetDB/conf In directory sc8-pr-cvs7.sourceforge.net:/tmp/cvs-serv14667/conf
Modified Files: monet.m4 Log Message:
fixed detection of default bits: configure requires to quote "[" & "]" by duplicating them: "[[" & "]]"
Index: monet.m4 =================================================================== RCS file: /cvsroot/monetdb/MonetDB/conf/monet.m4,v retrieving revision 1.310 retrieving revision 1.311 diff -u -d -r1.310 -r1.311 --- monet.m4 2 Nov 2006 13:34:25 -0000 1.310 +++ monet.m4 4 Nov 2006 14:09:36 -0000 1.311 @@ -262,7 +262,7 @@ esac else AC_CHECK_SIZEOF(long) - bits=$[$ac_cv_sizeof_long*8] + bits=$[[$ac_cv_sizeof_long*8]]
This is actually not very portable. $[...] is a bash-ism. Use bits=`expr $ac_cv_sizeof_long \* 8` instead.
done. Thanks! Stefan
fi AC_SUBST(bits)
------------------------------------------------------------------------- Using Tomcat but need to do more? Need to support web services, security? Get stuff done quickly with pre-integrated technology to make your job easier Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642 _______________________________________________ Monetdb-checkins mailing list Monetdb-checkins@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/monetdb-checkins
-- Sjoerd Mullender
------------------------------------------------------------------------- Using Tomcat but need to do more? Need to support web services, security? Get stuff done quickly with pre-integrated technology to make your job easier Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642 _______________________________________________ Monetdb-developers mailing list Monetdb-developers@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/monetdb-developers
-- | Dr. Stefan Manegold | mailto:Stefan.Manegold@cwi.nl | | CWI, P.O.Box 94079 | http://www.cwi.nl/~manegold/ | | 1090 GB Amsterdam | Tel.: +31 (20) 592-4212 | | The Netherlands | Fax : +31 (20) 592-4312 |