diff options
author | james <james@e7ae566f-a301-0410-adde-c780ea21d3b5> | 2007-04-21 22:19:48 +0000 |
---|---|---|
committer | james <james@e7ae566f-a301-0410-adde-c780ea21d3b5> | 2007-04-21 22:19:48 +0000 |
commit | ce3515838b184056231a5d871465709ec84de28e (patch) | |
tree | 3a0639c36d57c690530b14c9f4d58f26cdd6b360 | |
parent | Added a Windows README file to the installer than (diff) | |
download | openvpn-ce3515838b184056231a5d871465709ec84de28e.tar.xz |
Moved OpenVPN version number from configure.ac
to version.m4
git-svn-id: http://svn.openvpn.net/projects/openvpn/branches/BETA21/openvpn@1866 e7ae566f-a301-0410-adde-c780ea21d3b5
Diffstat (limited to '')
-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]) |