On Tue, May 19, 2009 at 09:29:10AM +0200, Jan Rittinger wrote:
That's no solution in my eyes...
Now I get the following configure output for the clients module...
checking for OpenSSL >= 0x0090800f... configure: error: not sufficient
... and cannot build the clients code anymore.
which version of openssl do you have? see `openssl version` Stefan ps: maybe, we (c|sh)ould also consider making the error message a bit more informative than "not sufficient", e.g., stating which (non-sufficient) version was found ...
Jan
On May 18, 2009, at 20:40, Fabian wrote:
Update of /cvsroot/monetdb/buildtools/conf In directory 23jxhf1.ch3.sourceforge.com:/tmp/cvs-serv29422
Modified Files: Tag: May2009 MonetDB.m4 Log Message: check for >openssl-0.9.8, sha-2 is only implemented there, thanks Jan Rittinger
U MonetDB.m4 Index: MonetDB.m4 =================================================================== RCS file: /cvsroot/monetdb/buildtools/conf/MonetDB.m4,v retrieving revision 1.118 retrieving revision 1.118.2.1 diff -u -d -r1.118 -r1.118.2.1 --- MonetDB.m4 6 May 2009 16:08:00 -0000 1.118 +++ MonetDB.m4 18 May 2009 18:39:58 -0000 1.118.2.1 @@ -2402,6 +2402,19 @@ fi if test "x$have_openssl" != xno; then AC_DEFINE(HAVE_OPENSSL, 1, [Define if you have the OpenSSL library]) + dnl SHA-2 is implemented starting from version 0.9.8 + req_openssl_ver=0x0090800f + AC_MSG_CHECKING([for OpenSSL >= $req_openssl_ver]) + AC_TRY_COMPILE([#include
],[ +#if !defined(OPENSSL_VERSION_NUMBER) +#error "Hmmm no OpenSSL version?" +#endif +#if (OPENSSL_VERSION_NUMBER < ${req_openssl_ver}L) +#error "Need more recent version than " OPENSSL_VERSION_TEXT +#endif], + [AC_MSG_RESULT(OK)], + [AC_MSG_ERROR([not sufficient])] + ) else OPENSSL_LIBS="" OPENSSL_INCS="" ------------------------------------------------------------------------------ Crystal Reports - New Free Runtime and 30 Day Trial Check out the new simplified licensing option that enables unlimited royalty-free distribution of the report engine for externally facing server and web deployment. http://p.sf.net/sfu/businessobjects _______________________________________________ Monetdb-checkins mailing list Monetdb-checkins@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/monetdb-checkins
-- Jan Rittinger Lehrstuhl Datenbanken und Informationssysteme Wilhelm-Schickard-Institut für Informatik Eberhard-Karls-Universität Tübingen
http://www-db.informatik.uni-tuebingen.de/team/rittinger
------------------------------------------------------------------------------ Crystal Reports - New Free Runtime and 30 Day Trial Check out the new simplified licensing option that enables unlimited royalty-free distribution of the report engine for externally facing server and web deployment. http://p.sf.net/sfu/businessobjects _______________________________________________ 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 |