Although the TLSRPT_VERSION__... variables in configure.ac have been updated for release 0.5.1, AC_INIT still refers to 0.5.1rc2.
This means that, when updating from a previous version,
autoreconf --verbose --install --force
./configure
make
leaves many references to 0.5.1rc2, eg in Makefile and libtlsrpt.pc.
--- a/configure.ac
+++ b/configure.ac
@@ -1,4 +1,4 @@
-AC_INIT([libtlsrpt], [0.5.1rc2], [bl@sys4.de])
+AC_INIT([libtlsrpt], [0.5.1], [bl@sys4.de])
AM_INIT_AUTOMAKE([-Wall -Werror foreign])
AC_PROG_CC
AM_PROG_AR
seems to be sufficient, but will break again with the next release.
Although the TLSRPT_VERSION__... variables in configure.ac have been updated for release 0.5.1, AC_INIT still refers to 0.5.1rc2.
This means that, when updating from a previous version,
leaves many references to 0.5.1rc2, eg in
Makefileandlibtlsrpt.pc.seems to be sufficient, but will break again with the next release.