-rw-r--r-- | COPYING | 2 | ||||
-rw-r--r-- | NEWS.xml | 5 | ||||
-rw-r--r-- | configure.ac | 2 |
3 files changed, 7 insertions, 2 deletions
@@ -1,19 +1,19 @@ | |||
1 | Copyright (c) 2005 Klever Group (http://www.klever.net/) | 1 | Copyright (c) 2005-2007 Klever Group (http://www.klever.net/) |
2 | 2 | ||
3 | Permission is hereby granted, free of charge, to any person obtaining a copy of | 3 | Permission is hereby granted, free of charge, to any person obtaining a copy of |
4 | this software and associated documentation files (the "Software"), to deal in | 4 | this software and associated documentation files (the "Software"), to deal in |
5 | the Software without restriction, including without limitation the rights to | 5 | the Software without restriction, including without limitation the rights to |
6 | use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies | 6 | use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies |
7 | of the Software, and to permit persons to whom the Software is furnished to do | 7 | of the Software, and to permit persons to whom the Software is furnished to do |
8 | so, subject to the following conditions: | 8 | so, subject to the following conditions: |
9 | 9 | ||
10 | The above copyright notice and this permission notice shall be included in all | 10 | The above copyright notice and this permission notice shall be included in all |
11 | copies or substantial portions of the Software. | 11 | copies or substantial portions of the Software. |
12 | 12 | ||
13 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | 13 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR |
14 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | 14 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, |
15 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | 15 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE |
16 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | 16 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER |
17 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | 17 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, |
18 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE | 18 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE |
19 | SOFTWARE. | 19 | SOFTWARE. |
@@ -1,6 +1,11 @@ | |||
1 | <?xml version="1.0" encoding="us-ascii"?> | 1 | <?xml version="1.0" encoding="us-ascii"?> |
2 | <news> | 2 | <news> |
3 | <version version="0.1" date="January 12th, 2007"> | ||
4 | <ni>OpenID simple registration extension implementation</ni> | ||
5 | <ni>OpenID extensions framework</ni> | ||
6 | <ni>Canonicalization bugfix</ni> | ||
7 | </version> | ||
3 | <version version="0.0" date="July 25th, 2005"> | 8 | <version version="0.0" date="July 25th, 2005"> |
4 | <ni>Initial release</ni> | 9 | <ni>Initial release</ni> |
5 | </version> | 10 | </version> |
6 | </news> | 11 | </news> |
diff --git a/configure.ac b/configure.ac index 2ce5f71..4729e92 100644 --- a/configure.ac +++ b/configure.ac | |||
@@ -1,33 +1,33 @@ | |||
1 | AC_INIT([libopkele], [0.0], [libopkele-bugs@klever.net]) | 1 | AC_INIT([libopkele], [0.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_RESULT([yes]) | 17 | AC_MSG_RESULT([yes]) |
18 | ],[ | 18 | ],[ |
19 | AC_MSG_ERROR([no openssl library found. get one from http://www.openssl.org/]) | 19 | AC_MSG_ERROR([no openssl library found. get one from http://www.openssl.org/]) |
20 | ] | 20 | ] |
21 | ) | 21 | ) |
22 | 22 | ||
23 | WANT_KONFORKA="yes" | 23 | WANT_KONFORKA="yes" |
24 | AC_ARG_ENABLE([konforka], | 24 | AC_ARG_ENABLE([konforka], |
25 | AC_HELP_STRING([--disable-konforka],[do not use konforka library (default: use if found)]), | 25 | AC_HELP_STRING([--disable-konforka],[do not use konforka library (default: use if found)]), |
26 | [ | 26 | [ |
27 | test "${enableval}" = "no" && WANT_KONFORKA="no" | 27 | test "${enableval}" = "no" && WANT_KONFORKA="no" |
28 | ] | 28 | ] |
29 | ) | 29 | ) |
30 | if test "${WANT_KONFORKA}" = "yes" ; then | 30 | if test "${WANT_KONFORKA}" = "yes" ; then |
31 | PKG_CHECK_MODULES([KONFORKA],[konforka],[ | 31 | PKG_CHECK_MODULES([KONFORKA],[konforka],[ |
32 | AC_MSG_RESULT([yes]) | 32 | AC_MSG_RESULT([yes]) |
33 | AC_SUBST([KONFORKA_CFLAGS]) | 33 | AC_SUBST([KONFORKA_CFLAGS]) |