Skip to content

Commit

Permalink
v1.0.6
Browse files Browse the repository at this point in the history
  • Loading branch information
Stefan Eissing committed Nov 30, 2017
1 parent a1c2253 commit 6e502c4
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 4 deletions.
4 changes: 4 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
v1.0.6
----------------------------------------------------------------------------------------------------
* fix in configure: checking for the correct arc4random_buf now.

v1.0.5
----------------------------------------------------------------------------------------------------
* restricting post_config dry run to be more silent and performing
Expand Down
4 changes: 2 additions & 2 deletions configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
#

AC_PREREQ([2.69])
AC_INIT([mod_md], [1.0.5], [[email protected]])
AC_INIT([mod_md], [1.0.6], [[email protected]])

LT_PREREQ([2.2.6])
LT_INIT()
Expand Down Expand Up @@ -321,7 +321,7 @@ AC_CHECK_HEADERS([ \
])

# we'd like to use this, if it exists
AC_CHECK_FUNC(arc4random, [CFLAGS="$CFLAGS -DMD_HAVE_ARC4RANDOM"], [])
AC_CHECK_FUNC(arc4random_buf, [CFLAGS="$CFLAGS -DMD_HAVE_ARC4RANDOM"], [])


# Checks for typedefs, structures, and compiler characteristics.
Expand Down
4 changes: 2 additions & 2 deletions src/md_version.h
Original file line number Diff line number Diff line change
Expand Up @@ -26,15 +26,15 @@
* @macro
* Version number of the md module as c string
*/
#define MOD_MD_VERSION "1.0.5-git"
#define MOD_MD_VERSION "1.0.6-git"

/**
* @macro
* Numerical representation of the version number of the md module
* release. This is a 24 bit number with 8 bits for major number, 8 bits
* for minor and 8 bits for patch. Version 1.2.3 becomes 0x010203.
*/
#define MOD_MD_VERSION_NUM 0x010005
#define MOD_MD_VERSION_NUM 0x010006

#define MD_EXPERIMENTAL 0
#define MD_ACME_DEF_URL "https://acme-v01.api.letsencrypt.org/directory"
Expand Down

0 comments on commit 6e502c4

Please sign in to comment.