Update src/version.h and Changelog for release.

This commit is contained in:
Arnaud Cornet 2009-11-15 20:21:24 +00:00
parent 03ee43ca89
commit 06a67e08af
3 changed files with 30 additions and 3 deletions

View File

@ -1,3 +1,30 @@
commit 03ee43ca89edaf4dfa79412dc91aa89694634445
Author: Arnaud Cornet <nohar@t1r.net>
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 <nohar@t1r.net>
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 <nohar@t1r.net>
Date: Mon Aug 24 19:05:48 2009 +0200
Add -git to version string.
commit c496bd702791b451d2bc248679405eaa0c9d9d41
Author: Arnaud Cornet <nohar@t1r.net>
Date: Mon Aug 24 19:05:45 2009 +0200
Update src/version.h and Changelog for release.
commit 70fbf99c7f6422a033220211307f6085a453edc3
Author: Arnaud Cornet <nohar@t1r.net>
Date: Wed Aug 19 22:02:56 2009 +0200

View File

@ -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)

View File

@ -1 +1 @@
#define BIP_VERSION "0.8.2-git"
#define BIP_VERSION "0.8.3"