summaryrefslogtreecommitdiffabout
authorMichael Krelin <hacker@klever.net>2007-06-24 14:36:57 (UTC)
committer Michael Krelin <hacker@klever.net>2007-06-24 14:36:57 (UTC)
commit4696aae9da3500f600cedd482501a89d41fd27ec (patch) (unidiff)
treea18b190c5b3a4da9f2824a60f76457ae6ab845d4
parent5999c7b9517e52918046cbd846a35de451de6383 (diff)
downloadlibopkele-4696aae9da3500f600cedd482501a89d41fd27ec.zip
libopkele-4696aae9da3500f600cedd482501a89d41fd27ec.tar.gz
libopkele-4696aae9da3500f600cedd482501a89d41fd27ec.tar.bz2
libopkele: bumped version to 0.2.1 and summarized news.0.2.1
Diffstat (more/less context) (show whitespace changes)
-rw-r--r--NEWS.xml3
-rw-r--r--configure.ac2
2 files changed, 4 insertions, 1 deletions
diff --git a/NEWS.xml b/NEWS.xml
index 69fa8cb..0d4d2f3 100644
--- a/NEWS.xml
+++ b/NEWS.xml
@@ -1,25 +1,28 @@
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>
19 <ni>Canonicalization bugfix</ni> 22 <ni>Canonicalization bugfix</ni>
20 <ni>Slightly improved interoperability with buggy implementations</ni> 23 <ni>Slightly improved interoperability with buggy implementations</ni>
21 </version> 24 </version>
22 <version version="0.0" date="July 25th, 2005"> 25 <version version="0.0" date="July 25th, 2005">
23 <ni>Initial release</ni> 26 <ni>Initial release</ni>
24 </version> 27 </version>
25</news> 28</news>
diff --git a/configure.ac b/configure.ac
index d5cb9ec..97f0eae 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,25 +1,25 @@
1AC_INIT([libopkele], [0.2], [libopkele-bugs@klever.net]) 1AC_INIT([libopkele], [0.2.1], [libopkele-bugs@klever.net])
2AC_CONFIG_SRCDIR([include/opkele/opkele-config.h]) 2AC_CONFIG_SRCDIR([include/opkele/opkele-config.h])
3AC_CONFIG_HEADERS([config.h include/opkele/acconfig.h]) 3AC_CONFIG_HEADERS([config.h include/opkele/acconfig.h])
4AM_INIT_AUTOMAKE([dist-bzip2]) 4AM_INIT_AUTOMAKE([dist-bzip2])
5 5
6AC_PROG_INSTALL 6AC_PROG_INSTALL
7AC_PROG_CXX 7AC_PROG_CXX
8AC_PROG_CC 8AC_PROG_CC
9AC_PROG_LIBTOOL 9AC_PROG_LIBTOOL
10 10
11AC_HEADER_STDC 11AC_HEADER_STDC
12 12
13AC_PATH_PROG([XSLTPROC],[xsltproc],[true]) 13AC_PATH_PROG([XSLTPROC],[xsltproc],[true])
14AC_WITH_PKGCONFIG 14AC_WITH_PKGCONFIG
15 15
16PKG_CHECK_MODULES([OPENSSL],[openssl],,[ 16PKG_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/])
18]) 18])
19 19
20WANT_KONFORKA="yes" 20WANT_KONFORKA="yes"
21AC_ARG_ENABLE([konforka], 21AC_ARG_ENABLE([konforka],
22 AC_HELP_STRING([--disable-konforka],[do not use konforka library (default: use if found)]), 22 AC_HELP_STRING([--disable-konforka],[do not use konforka library (default: use if found)]),
23 [ 23 [
24 test "${enableval}" = "no" && WANT_KONFORKA="no" 24 test "${enableval}" = "no" && WANT_KONFORKA="no"
25 ] 25 ]