summaryrefslogtreecommitdiffabout
Unidiff
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--NEWS.xml6
-rw-r--r--configure.ac2
2 files changed, 7 insertions, 1 deletions
diff --git a/NEWS.xml b/NEWS.xml
index 93d88f9..6b2a4ef 100644
--- a/NEWS.xml
+++ b/NEWS.xml
@@ -1,26 +1,32 @@
1<?xml version="1.0" encoding="us-ascii"?> 1<?xml version="1.0" encoding="us-ascii"?>
2<news> 2<news>
3 <version version="2.0.4" date="December 22nd, 2009">
4 <ni>added attribute exchange and oauth openid extensions contributed by Joseph
5 Smarr of Plaxo</ni>
6 <ni>removed legacy compatibility code and dependency on pcre</ni>
7 <ni>minor build fixes and improvements</ni>
8 </version>
3 <version version="2.0.3" date="September 1st, 2009"> 9 <version version="2.0.3" date="September 1st, 2009">
4 <ni>Fixed an URI normalization bug misnormalizing URIs with a single-character 10 <ni>Fixed an URI normalization bug misnormalizing URIs with a single-character
5 trailing component</ni> 11 trailing component</ni>
6 <ni>build improvements</ni> 12 <ni>build improvements</ni>
7 </version> 13 </version>
8 <version version="2.0.2" date="April 11th, 2009"> 14 <version version="2.0.2" date="April 11th, 2009">
9 <ni>Handling of unknown encodings during discovery</ni> 15 <ni>Handling of unknown encodings during discovery</ni>
10 <ni>Discovery robustness improvements</ni> 16 <ni>Discovery robustness improvements</ni>
11 <ni>Workaround for OPs (e.g. livejournal.com) breaking specs</ni> 17 <ni>Workaround for OPs (e.g. livejournal.com) breaking specs</ni>
12 <ni>Build fixes and improvements</ni> 18 <ni>Build fixes and improvements</ni>
13 </version> 19 </version>
14 <version version="2.0.1" date="November 22nd, 2008"> 20 <version version="2.0.1" date="November 22nd, 2008">
15 <ni>Compile-time fixes and improvements</ni> 21 <ni>Compile-time fixes and improvements</ni>
16 <ni>Portability improvements for FreeBSD</ni> 22 <ni>Portability improvements for FreeBSD</ni>
17 <ni>Really suppress debugging message from htmltidy when --disable-debug is in 23 <ni>Really suppress debugging message from htmltidy when --disable-debug is in
18 effect</ni> 24 effect</ni>
19 <ni>minor bugfixes</ni> 25 <ni>minor bugfixes</ni>
20 <ni>thread-safety improvements</ni> 26 <ni>thread-safety improvements</ni>
21 </version> 27 </version>
22 <version version="2.0" date="June 26th, 2008"> 28 <version version="2.0" date="June 26th, 2008">
23 <ni>OpenID 2.0 support</ni> 29 <ni>OpenID 2.0 support</ni>
24 <ni>Major rewrite of the whole thing</ni> 30 <ni>Major rewrite of the whole thing</ni>
25 <ni>Support for XRDS (YADIS and XRI/inames) discovery</ni> 31 <ni>Support for XRDS (YADIS and XRI/inames) discovery</ni>
26 <ni>Sheerly improved html-based discovery (only code using new, 2.0-enabled 32 <ni>Sheerly improved html-based discovery (only code using new, 2.0-enabled
diff --git a/configure.ac b/configure.ac
index 7fa2f85..e636253 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,25 +1,25 @@
1AC_INIT([libopkele], [2.0.3], [libopkele-bugs@klever.net]) 1AC_INIT([libopkele], [2.0.4], [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])
4AC_CONFIG_MACRO_DIR([aclocal.d]) 4AC_CONFIG_MACRO_DIR([aclocal.d])
5AC_CONFIG_AUX_DIR([aux.d]) 5AC_CONFIG_AUX_DIR([aux.d])
6AM_INIT_AUTOMAKE([dist-bzip2]) 6AM_INIT_AUTOMAKE([dist-bzip2])
7 7
8AC_PROG_INSTALL 8AC_PROG_INSTALL
9AC_PROG_CXX 9AC_PROG_CXX
10AC_PROG_CC 10AC_PROG_CC
11AC_PROG_LIBTOOL 11AC_PROG_LIBTOOL
12PKG_PROG_PKG_CONFIG 12PKG_PROG_PKG_CONFIG
13 13
14AC_HEADER_STDC 14AC_HEADER_STDC
15AC_CHECK_FUNCS([timegm]) 15AC_CHECK_FUNCS([timegm])
16 16
17AC_PATH_PROG([XSLTPROC],[xsltproc],[true]) 17AC_PATH_PROG([XSLTPROC],[xsltproc],[true])
18 18
19AC_MSG_CHECKING([for source tree version]) 19AC_MSG_CHECKING([for source tree version])
20if headrev=$(cd $srcdir && git rev-parse --verify HEAD 2>/dev/null) ; then 20if headrev=$(cd $srcdir && git rev-parse --verify HEAD 2>/dev/null) ; then
21 PACKAGE_SRC_VERSION="$(cd $srcdir && git describe --tags $headrev)" 21 PACKAGE_SRC_VERSION="$(cd $srcdir && git describe --tags $headrev)"
22 test "$PACKAGE_SRC_VERSION" = "$PACKAGE_VERSION" \ 22 test "$PACKAGE_SRC_VERSION" = "$PACKAGE_VERSION" \
23 -o "${PACKAGE_SRC_VERSION#${PACKAGE_VERSION}-}" != "$PACKAGE_SRC_VERSION" || PACKAGE_SRC_VERSION="${PACKAGE_VERSION}:${PACKAGE_SRC_VERSION}" 23 -o "${PACKAGE_SRC_VERSION#${PACKAGE_VERSION}-}" != "$PACKAGE_SRC_VERSION" || PACKAGE_SRC_VERSION="${PACKAGE_VERSION}:${PACKAGE_SRC_VERSION}"
24 ( cd $srcdir && git diff-index $headrev | read dirt ) && PACKAGE_SRC_VERSION="${PACKAGE_SRC_VERSION}-dirty" 24 ( cd $srcdir && git diff-index $headrev | read dirt ) && PACKAGE_SRC_VERSION="${PACKAGE_SRC_VERSION}-dirty"
25else 25else