Page MenuHome GnuPG

No OneTemporary

diff --git a/ChangeLog b/ChangeLog
index 8a76269..92b3880 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,84 +1,90 @@
+2002-12-04 Werner Koch <wk@gnupg.org>
+
+ Released 0.4.6.
+
+ * configure.ac: Set LT version to 7/7/0.
+
2002-11-25 Werner Koch <wk@gnupg.org>
* configure.ac: Bumbed version number.
2002-11-12 Werner Koch <wk@gnupg.org>
* config.sub, config.guess: Updated from ftp.gnu.org/gnu/config
to version 2002-11-08.
2002-08-23 Werner Koch <wk@gnupg.org>
Released 0.4.5.
* configure.ac (KSBA_CONFIG_LIBS): Renamed from KSBA_LIBS and
removed the libdir because it is set by the config script.
2002-08-09 Werner Koch <wk@gnupg.org>
Released 0.4.4.
2002-06-25 Werner Koch <wk@gnupg.org>
Released 0.4.3.
* configure.ac: Set LT version to 6/6/0.
2002-06-17 Werner Koch <wk@gnupg.org>
* configure.ac: Don't check for ranlib because it is done by libtool.
2002-06-04 Werner Koch <wk@gnupg.org>
Released 0.4.2.
* configure.ac: Bumbed libversion due to added interfaces.
2002-05-03 Werner Koch <wk@gnupg.org>
Released 0.4.1.
2002-04-15 Werner Koch <wk@gnupg.org>
Released 0.4.0.
* configure.ac: Bumbed libversion due to added interfaces.
* NEWS: Started tracking news.
2002-04-01 Werner Koch <wk@gnupg.org>
Released 0.2.3.
2002-03-13 Werner Koch <wk@gnupg.org>
Released 0.2.2.
2002-03-04 Werner Koch <wk@gnupg.org>
* configure.ac: Bumbed version to 0.2.1
2002-02-07 Werner Koch <wk@gnupg.org>
* configure.ac: Bumped version to 0.2.0
* Makefile.am: Add doc directory and VERSION kludge
2002-01-11 Werner Koch <wk@gnupg.org>
* configure.ac (AC_C_INLINE): New.
2001-12-17 Werner Koch <wk@gnupg.org>
* configure.ac (KSBA_LIBS,KSBA_CFLAGS): Set them.
Copyright 2001, 2002 g10 Code GmbH
This file is free software; as a special exception the author gives
unlimited permission to copy and/or distribute it, with or without
modifications, as long as this notice is preserved.
This file is distributed in the hope that it will be useful, but
WITHOUT ANY WARRANTY, to the extent permitted by law; without even the
implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
diff --git a/NEWS b/NEWS
index f64be22..1f27009 100644
--- a/NEWS
+++ b/NEWS
@@ -1,69 +1,69 @@
-Noteworthy changes in version 0.4.6 (unreleased)
+Noteworthy changes in version 0.4.6 (2002-12-04)
------------------------------------------------
* DNs in pkcs#10 request are now created in reversed order as
specified by rfc2253.
* The content-type signed attribute is created.
* Fixed a parser bug with a id-aa-encrypKeyPref attribute.
* Interface changes relative to the 0.4.3 release:
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
ksba_cms_get_sigattr_oids NEW
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Noteworthy changes in version 0.4.5 (2002-08-23)
------------------------------------------------
* Removed some debugging output.
* Added an autoconf macro.
Noteworthy changes in version 0.4.4 (2002-08-09)
------------------------------------------------
* Multiple signatures can now be created and parsed.
Noteworthy changes in version 0.4.3 (2002-06-25)
------------------------------------------------
* More bug fixes.
* Interface changes relative to the 0.4.2 release:
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
ksba_writer_write_octet_string NEW
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Noteworthy changes in version 0.4.2 (2002-06-04)
------------------------------------------------
* Some bug fixes and a new function.
* Interface changes relative to the 0.4.1 release:
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
ksba_cms_identify NEW
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Noteworthy changes in version 0.4.1 (2002-05-03)
------------------------------------------------
* Minor fixes.
Noteworthy changes in version 0.4.0 (2002-04-15)
------------------------------------------------
* Nearly all stuff needed for the Aegypten project is now in place.
Copyright 2002 g10 Code GmbH
This file is free software; as a special exception the author gives
unlimited permission to copy and/or distribute it, with or without
modifications, as long as this notice is preserved.
This file is distributed in the hope that it will be useful, but
WITHOUT ANY WARRANTY, to the extent permitted by law; without even the
implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
diff --git a/configure.ac b/configure.ac
index dd2e8ae..67db407 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,117 +1,117 @@
# configure.ac - for libksba
# Copyright (C) 2001, 2002 g10 Code GmbH
#
# This file is part of KSBA
#
# KSBA is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# KSBA is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
# Process this file with autoconf to produce a configure script.
# Version number: Remember to change immediately *after* a release.
# Append a "-cvs" for non-released versions.
-AC_INIT(libksba, 0.4.6-cvs, gpa-dev@gnupg.org)
+AC_INIT(libksba, 0.4.6, gpa-dev@gnupg.org)
# LT Version numbers: Remember to change them just *before* a release.
# (Interfaces removed: CURRENT++, AGE=0, REVISION=0)
# (Interfaces added: CURRENT++, AGE++, REVISION=0)
# (No interfaces changed: REVISION++)
# Please remember to document interface changes in the NEWS file.
-LIBKSBA_LT_CURRENT=6
-LIBKSBA_LT_AGE=6
-LIBKSBA_LT_REVISION=2
+LIBKSBA_LT_CURRENT=7
+LIBKSBA_LT_AGE=7
+LIBKSBA_LT_REVISION=0
#-------------------
PACKAGE=$PACKAGE_NAME
VERSION=$PACKAGE_VERSION
AC_CONFIG_SRCDIR([src/ksba.h])
AM_INIT_AUTOMAKE($PACKAGE, $VERSION)
AM_CONFIG_HEADER(config.h)
AH_TOP([
/* need this, because some autoconf tests rely on this (e.g. stpcpy)
* and it should be used for new programs */
#define _GNU_SOURCE 1
])
dnl AH_BOTTOM([
dnl
dnl #])
AM_MAINTAINER_MODE
AC_SUBST(LIBKSBA_LT_CURRENT)
AC_SUBST(LIBKSBA_LT_AGE)
AC_SUBST(LIBKSBA_LT_REVISION)
AC_SUBST(PACKAGE)
AC_SUBST(VERSION)
AC_DEFINE_UNQUOTED(PACKAGE, "$PACKAGE", [Name of this package])
AC_DEFINE_UNQUOTED(VERSION, "$VERSION", [Version of this package])
# Checks for programs.
missing_dir=`cd $ac_aux_dir && pwd`
AM_MISSING_PROG(ACLOCAL, aclocal, $missing_dir)
AM_MISSING_PROG(AUTOCONF, autoconf, $missing_dir)
AM_MISSING_PROG(AUTOMAKE, automake, $missing_dir)
AM_MISSING_PROG(AUTOHEADER, autoheader, $missing_dir)
#AM_MISSING_PROG(MAKEINFO, makeinfo, $missing_dir)
AC_PROG_AWK
AC_PROG_CC
AC_PROG_CPP
AC_PROG_INSTALL
AC_PROG_LN_S
AC_PROG_MAKE_SET
#AC_ARG_PROGRAM
AC_PROG_YACC
AC_C_INLINE
AM_PROG_LIBTOOL
if test "$GCC" = yes; then
CFLAGS="$CFLAGS -Wall -Wcast-align -Wshadow -Wstrict-prototypes"
fi
# Checks for libraries.
# Checks for header files.
AC_HEADER_STDC
AC_CHECK_HEADERS([string.h])
# Checks for typedefs, structures, and compiler characteristics.
AC_C_CONST
# Checks for library functions.
AC_CHECK_FUNCS([memmove strchr strtol strtoul stpcpy timegm])
# To be used in ksba-config
KSBA_CONFIG_LIBS="-lksba"
KSBA_CONFIG_CFLAGS=""
AC_SUBST(KSBA_CONFIG_LIBS)
AC_SUBST(KSBA_CONFIG_CFLAGS)
AC_CONFIG_FILES([
Makefile
src/Makefile
src/ksba-config
tests/Makefile
doc/Makefile
])
AC_OUTPUT

File Metadata

Mime Type
text/x-diff
Expires
Fri, Dec 19, 2:17 PM (1 d, 16 h)
Storage Engine
local-disk
Storage Format
Raw Data
Storage Handle
60/dd/394eadc770442c3bc8e41f0e22e1

Event Timeline