And here's a more complete solution (patch sent as an "attached ile")
2012-05-29 10:14:53 PDT in Blitz++ Library
Here's a fix: diff -r 262deb840568 blitz/array/expr.h --- a/blitz/array/expr.h Wed Jan 25 10:48:31 2012 -0500 +++ b/blitz/array/expr.h Tue May 29 15:58:56 2012 +0200 @@ -243,7 +243,7 @@ template<int N> typename tvresult<N>::Type fastRead_tv(diffType i) const - { return iter_.fastRead_tv<N>(i); } + { return iter_.template fastRead_tv<N>(i); }...
2012-05-29 07:12:08 PDT in Blitz++ Library
Glad it finally worked. I have no experience with any IDE, the messages you've posted does not tell anymore than you've written. Sylwester.
2012-05-17 00:58:56 PDT in GDL - GNU Data La...
Perhaps trying with a freshly unpacked tarball might help - maybe the previous unsuccessful configure runs introduced some wrong pathnames into the Makefiles? S.
2012-05-08 10:15:47 PDT in GDL - GNU Data La...
Concerning cmake: notice the space and a dot after the command - the correct invocation is "cmake ." - with a dot after a space. Concerning the .tar.gz: of course it's OK, but using a release tarball you will generally get the same functionalities as from the packaged versions of GDL which are available for most of the distros. HTH, Sylwester.
2012-05-08 05:02:30 PDT in GDL - GNU Data La...
> If root privilages are not required then I dont know why I am getting error like"permission denied". Since you have used root privilages once already, config.log was created by root, and a normal user cannot overwirte it. You can do "sudo chown -R your_username gdl" to make everything in the gdl directory belong to your user. > I have installed cmake but I am...
2012-05-08 04:36:42 PDT in GDL - GNU Data La...
0. there's no reason to compile gdl with root privilages... and there're plenty of reasons not to do it 1. you need to install cmake before using it 2. which version of gdl are you trying to compile? (if having problems with the cvs version, please try the last release instead) S.
2012-05-08 03:23:55 PDT in GDL - GNU Data La...
Hi, The "-e" command line option support was introduced in gdl 0.9rc4: http://gnudatalanguage.cvs.sf.net/viewvc/gnudatalanguage/gdl/NEWS GDL 0.9rc2 is more than three years old - please upgrade! Sylwester.
2012-05-08 02:56:46 PDT in GDL - GNU Data La...
BTW, why not try with CMake. We plan to drop support for the autotools-based configuration (i.e. via configure script) after the next release. To use CMake, simply type "cmake ." instead of "./configure", and then follow as usual with "make". HTH, S.
2012-05-08 00:24:20 PDT in GDL - GNU Data La...
Perhaps running "autoreconf" or "libtoolize" in the same directory where the configure script seats might help? S.
2012-05-08 00:23:16 PDT in GDL - GNU Data La...