diff options
-rw-r--r-- | configure.ac | 3 | ||||
-rw-r--r-- | version.m4 | 2 |
2 files changed, 4 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index 4d1e2ec..db84a5d 100644 --- a/configure.ac +++ b/configure.ac @@ -25,7 +25,8 @@ dnl Process this file with autoconf to produce a configure script. AC_PREREQ(2.50) -AC_INIT([OpenVPN], [2.1_rc2b], [openvpn-users@lists.sourceforge.net], [openvpn]) +m4_include(version.m4) +AC_INIT([OpenVPN], [OPENVPN_VERSION], [openvpn-users@lists.sourceforge.net], [openvpn]) AM_CONFIG_HEADER(config.h) AC_CONFIG_SRCDIR(syshead.h) diff --git a/version.m4 b/version.m4 new file mode 100644 index 0000000..e759b3e --- /dev/null +++ b/version.m4 @@ -0,0 +1,2 @@ +dnl define the OpenVPN version +define(OPENVPN_VERSION,[2.1_rc2f]) |