Skip to content

Commit fab3525

Browse files
committed
v2.4.29
1 parent 51b2d9f commit fab3525

File tree

3 files changed

+9
-8
lines changed

3 files changed

+9
-8
lines changed

ChangeLog

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
v2.4.29
2+
----------------------------------------------------------------------------------------------------
13
* Fixed HTTP-01 challenges to not carry a final newline, as some ACME
24
server fail to ignore it. [Michael Kaufmann (@mkauf)]
35
* Fixed missing label+newline in server-status plain text output when

configure.ac

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
#
1515

1616
AC_PREREQ([2.69])
17-
AC_INIT([mod_md], [2.4.28], [[email protected]])
17+
AC_INIT([mod_md], [2.4.29], [[email protected]])
1818

1919
LT_PREREQ([2.2.6])
2020
LT_INIT()
@@ -76,7 +76,6 @@ AC_ARG_WITH([openssl], [AS_HELP_STRING([--with-openssl], [Use openssl from this
7676

7777
# Checks for programs.
7878
AC_PROG_CC
79-
AC_PROG_CC_STDC
8079

8180
# extern, we need to find where the apxs is. which then
8281
# can tell us the various directories we need.
@@ -137,10 +136,6 @@ else
137136
APACHECTL=""
138137
fi
139138

140-
# We need crypto to be in our link path, check for it.
141-
#
142-
AC_CHECK_LIB([crypto], [SHA256_Init], , [AC_MSG_ERROR("library crypto not found")])
143-
144139
# We need a JSON lib, like jansson
145140
#
146141
if test x"$request_jansson" = "xcheck"; then
@@ -241,6 +236,10 @@ AM_COND_IF([FOUND_OPENSSL_BIN],,[AC_MSG_ERROR([required program 'openssl' not fo
241236
AC_SUBST(OPENSSL_BIN)
242237

243238

239+
# We need crypto to be in our link path, check for it.
240+
#
241+
AC_CHECK_LIB([crypto], [SHA256_Init], , [AC_MSG_ERROR("library crypto not found")])
242+
244243
GEN_DIR="$PWD/test/gen"
245244
AC_SUBST(GEN_DIR)
246245

src/md_version.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,15 +27,15 @@
2727
* @macro
2828
* Version number of the md module as c string
2929
*/
30-
#define MOD_MD_VERSION "2.4.28-git"
30+
#define MOD_MD_VERSION "2.4.29-git"
3131

3232
/**
3333
* @macro
3434
* Numerical representation of the version number of the md module
3535
* release. This is a 24 bit number with 8 bits for major number, 8 bits
3636
* for minor and 8 bits for patch. Version 1.2.3 becomes 0x010203.
3737
*/
38-
#define MOD_MD_VERSION_NUM 0x02041c
38+
#define MOD_MD_VERSION_NUM 0x02041d
3939

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

0 commit comments

Comments
 (0)