-rw-r--r-- | NEWS.xml | 3 | ||||
-rw-r--r-- | configure.ac | 2 |
2 files changed, 4 insertions, 1 deletions
@@ -1,18 +1,21 @@ | |||
1 | <?xml version="1.0" encoding="us-ascii"?> | 1 | <?xml version="1.0" encoding="us-ascii"?> |
2 | <news> | 2 | <news> |
3 | <version version="0.2.1" date="June 24th, 2007"> | ||
4 | <ni>open id server invalid signature bugfix</ni> | ||
5 | </version> | ||
3 | <version version="0.2" date="June 19th, 2007"> | 6 | <version version="0.2" date="June 19th, 2007"> |
4 | <ni>A few robustness improvements and optimizations</ni> | 7 | <ni>A few robustness improvements and optimizations</ni> |
5 | <ni>More liberal key/values messages parsing</ni> | 8 | <ni>More liberal key/values messages parsing</ni> |
6 | <ni>Changed unusable --with-pcre++ configure option to --with-pcrepp</ni> | 9 | <ni>Changed unusable --with-pcre++ configure option to --with-pcrepp</ni> |
7 | </version> | 10 | </version> |
8 | <version version="0.1.1" date="January 16th, 2007"> | 11 | <version version="0.1.1" date="January 16th, 2007"> |
9 | <ni>Fixed a bug in curl errors handling</ni> | 12 | <ni>Fixed a bug in curl errors handling</ni> |
10 | <ni>added --disable-ssl-verify-host and --disable-ssl-verify-peer options to | 13 | <ni>added --disable-ssl-verify-host and --disable-ssl-verify-peer options to |
11 | configure to alter default implementation of consumer's retrieve_links | 14 | configure to alter default implementation of consumer's retrieve_links |
12 | behaviour</ni> | 15 | behaviour</ni> |
13 | <ni>Build fix that eliminates the need to pass --disable-konforka in the | 16 | <ni>Build fix that eliminates the need to pass --disable-konforka in the |
14 | absence of it.</ni> | 17 | absence of it.</ni> |
15 | </version> | 18 | </version> |
16 | <version version="0.1" date="January 12th, 2007"> | 19 | <version version="0.1" date="January 12th, 2007"> |
17 | <ni>OpenID simple registration extension implementation</ni> | 20 | <ni>OpenID simple registration extension implementation</ni> |
18 | <ni>OpenID extensions framework</ni> | 21 | <ni>OpenID extensions framework</ni> |
diff --git a/configure.ac b/configure.ac index d5cb9ec..97f0eae 100644 --- a/configure.ac +++ b/configure.ac | |||
@@ -1,17 +1,17 @@ | |||
1 | AC_INIT([libopkele], [0.2], [libopkele-bugs@klever.net]) | 1 | AC_INIT([libopkele], [0.2.1], [libopkele-bugs@klever.net]) |
2 | AC_CONFIG_SRCDIR([include/opkele/opkele-config.h]) | 2 | AC_CONFIG_SRCDIR([include/opkele/opkele-config.h]) |
3 | AC_CONFIG_HEADERS([config.h include/opkele/acconfig.h]) | 3 | AC_CONFIG_HEADERS([config.h include/opkele/acconfig.h]) |
4 | AM_INIT_AUTOMAKE([dist-bzip2]) | 4 | AM_INIT_AUTOMAKE([dist-bzip2]) |
5 | 5 | ||
6 | AC_PROG_INSTALL | 6 | AC_PROG_INSTALL |
7 | AC_PROG_CXX | 7 | AC_PROG_CXX |
8 | AC_PROG_CC | 8 | AC_PROG_CC |
9 | AC_PROG_LIBTOOL | 9 | AC_PROG_LIBTOOL |
10 | 10 | ||
11 | AC_HEADER_STDC | 11 | AC_HEADER_STDC |
12 | 12 | ||
13 | AC_PATH_PROG([XSLTPROC],[xsltproc],[true]) | 13 | AC_PATH_PROG([XSLTPROC],[xsltproc],[true]) |
14 | AC_WITH_PKGCONFIG | 14 | AC_WITH_PKGCONFIG |
15 | 15 | ||
16 | PKG_CHECK_MODULES([OPENSSL],[openssl],,[ | 16 | PKG_CHECK_MODULES([OPENSSL],[openssl],,[ |
17 | AC_MSG_ERROR([no openssl library found. get one from http://www.openssl.org/]) | 17 | AC_MSG_ERROR([no openssl library found. get one from http://www.openssl.org/]) |