aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xconfigure.py6
-rw-r--r--doc/log.txt2
-rw-r--r--readme.txt2
-rw-r--r--src/ssl/unix_socket/unx_sock.cpp3
4 files changed, 8 insertions, 5 deletions
diff --git a/configure.py b/configure.py
index 4fd2a5119..024711a1c 100755
--- a/configure.py
+++ b/configure.py
@@ -40,9 +40,9 @@ class BuildConfigurationInformation(object):
"""
version_major = 1
version_minor = 9
- version_patch = 4
- version_so_patch = 4
- version_suffix = ''
+ version_patch = 5
+ version_so_patch = 5
+ version_suffix = '-dev'
version_string = '%d.%d.%d%s' % (
version_major, version_minor, version_patch, version_suffix)
diff --git a/doc/log.txt b/doc/log.txt
index 5d16f8f9b..042fe6f17 100644
--- a/doc/log.txt
+++ b/doc/log.txt
@@ -1,4 +1,6 @@
+* 1.9.5-dev, ????-??-??
+
* 1.9.4, 2010-03-09
- Add the Ajisai SSLv3/TLSv1.0 implementation
- Add GOST 34.10-2001 public key signature scheme
diff --git a/readme.txt b/readme.txt
index 6f1f87ddd..3b3729123 100644
--- a/readme.txt
+++ b/readme.txt
@@ -1,4 +1,4 @@
-Botan 1.9.4, 2010-03-09
+Botan 1.9.5-dev, ????-??-??
Botan is a C++ class library for performing a wide variety of
cryptographic operations.
diff --git a/src/ssl/unix_socket/unx_sock.cpp b/src/ssl/unix_socket/unx_sock.cpp
index ca4d476b7..0552a33b6 100644
--- a/src/ssl/unix_socket/unx_sock.cpp
+++ b/src/ssl/unix_socket/unx_sock.cpp
@@ -1,6 +1,6 @@
/**
* Unix Socket
-* (C) 2004-2006 Jack Lloyd
+* (C) 2004-2010 Jack Lloyd
*
* Released under the terms of the Botan license
*/
@@ -11,6 +11,7 @@
#include <sys/types.h>
#include <sys/socket.h>
#include <sys/time.h>
+#include <netinet/in.h>
#include <netdb.h>
#include <unistd.h>
#include <errno.h>