From: james Date: Sat, 21 Apr 2007 22:19:48 +0000 (+0000) Subject: Moved OpenVPN version number from configure.ac X-Git-Tag: v2.1_rc3~2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ce3515838b184056231a5d871465709ec84de28e;p=thirdparty%2Fopenvpn.git 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 --- diff --git a/configure.ac b/configure.ac index 4d1e2ece0..db84a5d77 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 000000000..e759b3e60 --- /dev/null +++ b/version.m4 @@ -0,0 +1,2 @@ +dnl define the OpenVPN version +define(OPENVPN_VERSION,[2.1_rc2f])