diff --git a/ChangeLog b/ChangeLog index d059e90..c70190f 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,30 @@ +commit 03ee43ca89edaf4dfa79412dc91aa89694634445 +Author: Arnaud Cornet +Date: Sun Nov 15 20:14:28 2009 +0000 + + [BUG] fatal() on nick change on gamesurge network + + Some time gamesurge sends a "foo NICK :foo" which we didn't handle + correctly. + +commit 31ae5ac0bf2651778979fb974bba4e0fb6b4f0b8 +Author: Arnaud Cornet +Date: Mon Aug 24 21:26:46 2009 +0200 + + [autostuff] Rewrite. Use non recursive make. Drop src/config.h.in that must be populated by autoheader + +commit 889f3cc1b7b4ed62f1d34c5afee6835ec30b72a6 +Author: Arnaud Cornet +Date: Mon Aug 24 19:05:48 2009 +0200 + + Add -git to version string. + +commit c496bd702791b451d2bc248679405eaa0c9d9d41 +Author: Arnaud Cornet +Date: Mon Aug 24 19:05:45 2009 +0200 + + Update src/version.h and Changelog for release. + commit 70fbf99c7f6422a033220211307f6085a453edc3 Author: Arnaud Cornet Date: Wed Aug 19 22:02:56 2009 +0200 diff --git a/configure.ac b/configure.ac index f81b667..789b59a 100644 --- a/configure.ac +++ b/configure.ac @@ -60,9 +60,9 @@ AS_IF([test "x$enable_debug" = "xyes"], [ ]) AM_CONDITIONAL(OIDENTD, test x$enable_identd = xyes) AS_IF([test "x$with_openssl" != "xno"], [ - AC_CHECK_LIB(ssl, SSL_read, [], [ + AC_CHECK_LIB(ssl, SSL_read, [with_openssl=yes], [ AC_MSG_ERROR([library 'ssl' is required for OpenSSL support]) - ], -lssl) + ], -lssl) AC_CHECK_LIB(crypto, CRYPTO_new_ex_data, [], [ AC_MSG_ERROR([library 'crypto' is required for OpenSSL support]) ], -lcrypto) diff --git a/src/version.h b/src/version.h index 4bb316b..af19140 100644 --- a/src/version.h +++ b/src/version.h @@ -1 +1 @@ -#define BIP_VERSION "0.8.2-git" +#define BIP_VERSION "0.8.3"