diff options
author | Jirka Hladky <jhladky@redhat.com> | 2024-10-15 21:50:08 +0200 |
---|---|---|
committer | Jirka Hladky <jhladky@redhat.com> | 2024-10-15 21:50:08 +0200 |
commit | e0c1d0c863e1155f34bc391ce63cafcebe691bd2 (patch) | |
tree | ae50901fb15d43c9446ab903fc06807e6fc9ce49 | |
parent | src/haveged.c - only warn when creating of named semaphore fails (diff) | |
download | haveged-e0c1d0c863e1155f34bc391ce63cafcebe691bd2.tar.xz haveged-e0c1d0c863e1155f34bc391ce63cafcebe691bd2.zip |
Bumped version to 1.9.20
-rw-r--r-- | ChangeLog | 3 | ||||
-rwxr-xr-x | configure | 20 | ||||
-rw-r--r-- | configure.ac | 2 | ||||
-rw-r--r-- | src/havege.h | 4 |
4 files changed, 16 insertions, 13 deletions
@@ -1,3 +1,6 @@ +v1.9.20 (Oct 15, 2024) [Jirka Hladky] +* Only warn when creating of named semaphore fails + v1.9.19 (Oct 02, 2024) [Jirka Hladky] * Added --time_interval N to add entropy unconditionally every N seconds @@ -1,6 +1,6 @@ #! /bin/sh # Guess values for system-dependent variables and create Makefiles. -# Generated by GNU Autoconf 2.71 for haveged 1.9.19. +# Generated by GNU Autoconf 2.71 for haveged 1.9.20. # # # Copyright (C) 1992-1996, 1998-2017, 2020-2021 Free Software Foundation, @@ -618,8 +618,8 @@ MAKEFLAGS= # Identity of this package. PACKAGE_NAME='haveged' PACKAGE_TARNAME='haveged' -PACKAGE_VERSION='1.9.19' -PACKAGE_STRING='haveged 1.9.19' +PACKAGE_VERSION='1.9.20' +PACKAGE_STRING='haveged 1.9.20' PACKAGE_BUGREPORT='' PACKAGE_URL='' @@ -1355,7 +1355,7 @@ if test "$ac_init_help" = "long"; then # Omit some internal or obsolete options to make the list less imposing. # This message is too long to be a string in the A/UX 3.1 sh. cat <<_ACEOF -\`configure' configures haveged 1.9.19 to adapt to many kinds of systems. +\`configure' configures haveged 1.9.20 to adapt to many kinds of systems. Usage: $0 [OPTION]... [VAR=VALUE]... @@ -1426,7 +1426,7 @@ fi if test -n "$ac_init_help"; then case $ac_init_help in - short | recursive ) echo "Configuration of haveged 1.9.19:";; + short | recursive ) echo "Configuration of haveged 1.9.20:";; esac cat <<\_ACEOF @@ -1544,7 +1544,7 @@ fi test -n "$ac_init_help" && exit $ac_status if $ac_init_version; then cat <<\_ACEOF -haveged configure 1.9.19 +haveged configure 1.9.20 generated by GNU Autoconf 2.71 Copyright (C) 2021 Free Software Foundation, Inc. @@ -1857,7 +1857,7 @@ cat >config.log <<_ACEOF This file contains any messages produced by compilers while running configure, to aid debugging if configure makes a mistake. -It was created by haveged $as_me 1.9.19, which was +It was created by haveged $as_me 1.9.20, which was generated by GNU Autoconf 2.71. Invocation command line was $ $0$ac_configure_args_raw @@ -4361,7 +4361,7 @@ fi # Define the identity of the package. PACKAGE='haveged' - VERSION='1.9.19' + VERSION='1.9.20' printf "%s\n" "#define PACKAGE \"$PACKAGE\"" >>confdefs.h @@ -14775,7 +14775,7 @@ cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 # report actual input values of CONFIG_FILES etc. instead of their # values after options handling. ac_log=" -This file was extended by haveged $as_me 1.9.19, which was +This file was extended by haveged $as_me 1.9.20, which was generated by GNU Autoconf 2.71. Invocation command line was CONFIG_FILES = $CONFIG_FILES @@ -14843,7 +14843,7 @@ ac_cs_config_escaped=`printf "%s\n" "$ac_cs_config" | sed "s/^ //; s/'/'\\\\\\\\ cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 ac_cs_config='$ac_cs_config_escaped' ac_cs_version="\\ -haveged config.status 1.9.19 +haveged config.status 1.9.20 configured by $0, generated by GNU Autoconf 2.71, with options \\"\$ac_cs_config\\" diff --git a/configure.ac b/configure.ac index ff1cbaa..fca9372 100644 --- a/configure.ac +++ b/configure.ac @@ -3,7 +3,7 @@ ## Minimum Autoconf version AC_PREREQ([2.59]) -AC_INIT([haveged],[1.9.19]) +AC_INIT([haveged],[1.9.20]) AC_CONFIG_AUX_DIR(config) AC_USE_SYSTEM_EXTENSIONS AC_CONFIG_HEADER([config.h]) diff --git a/src/havege.h b/src/havege.h index e12ec64..5b6873e 100644 --- a/src/havege.h +++ b/src/havege.h @@ -1,7 +1,7 @@ /** ** Simple entropy harvester based upon the havege RNG ** - ** Copyright 2018-2022 Jirka Hladky hladky DOT jiri AT gmail DOT com + ** Copyright 2018-2024 Jirka Hladky hladky DOT jiri AT gmail DOT com ** Copyright 2009-2014 Gary Wuertz gary@issiweb.com ** Copyright 2011-2012 BenEleventh Consulting manolson@beneleventh.com ** @@ -31,7 +31,7 @@ extern "C" { * header/package version as a numeric major, minor, patch triple. See havege_version() * below for usage. */ -#define HAVEGE_PREP_VERSION "1.9.19" +#define HAVEGE_PREP_VERSION "1.9.20" /** * Basic types */ |