Skip to content

Commit

Permalink
v2.4.29
Browse files Browse the repository at this point in the history
  • Loading branch information
icing committed Dec 3, 2024
1 parent 51b2d9f commit fab3525
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 8 deletions.
2 changes: 2 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
v2.4.29
----------------------------------------------------------------------------------------------------
* Fixed HTTP-01 challenges to not carry a final newline, as some ACME
server fail to ignore it. [Michael Kaufmann (@mkauf)]
* Fixed missing label+newline in server-status plain text output when
Expand Down
11 changes: 5 additions & 6 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], [2.4.28], [[email protected]])
AC_INIT([mod_md], [2.4.29], [[email protected]])

LT_PREREQ([2.2.6])
LT_INIT()
Expand Down Expand Up @@ -76,7 +76,6 @@ AC_ARG_WITH([openssl], [AS_HELP_STRING([--with-openssl], [Use openssl from this

# Checks for programs.
AC_PROG_CC
AC_PROG_CC_STDC

# extern, we need to find where the apxs is. which then
# can tell us the various directories we need.
Expand Down Expand Up @@ -137,10 +136,6 @@ else
APACHECTL=""
fi

# We need crypto to be in our link path, check for it.
#
AC_CHECK_LIB([crypto], [SHA256_Init], , [AC_MSG_ERROR("library crypto not found")])

# We need a JSON lib, like jansson
#
if test x"$request_jansson" = "xcheck"; then
Expand Down Expand Up @@ -241,6 +236,10 @@ AM_COND_IF([FOUND_OPENSSL_BIN],,[AC_MSG_ERROR([required program 'openssl' not fo
AC_SUBST(OPENSSL_BIN)


# We need crypto to be in our link path, check for it.
#
AC_CHECK_LIB([crypto], [SHA256_Init], , [AC_MSG_ERROR("library crypto not found")])

GEN_DIR="$PWD/test/gen"
AC_SUBST(GEN_DIR)

Expand Down
4 changes: 2 additions & 2 deletions src/md_version.h
Original file line number Diff line number Diff line change
Expand Up @@ -27,15 +27,15 @@
* @macro
* Version number of the md module as c string
*/
#define MOD_MD_VERSION "2.4.28-git"
#define MOD_MD_VERSION "2.4.29-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 0x02041c
#define MOD_MD_VERSION_NUM 0x02041d

#define MD_ACME_DEF_URL "https://acme-v02.api.letsencrypt.org/directory"
#define MD_TAILSCALE_DEF_URL "file://localhost/var/run/tailscale/tailscaled.sock"
Expand Down

0 comments on commit fab3525

Please sign in to comment.