diff options
author | Nicholas Marriott <nicholas.marriott@gmail.com> | 2018-10-19 08:35:23 +0100 |
---|---|---|
committer | Nicholas Marriott <nicholas.marriott@gmail.com> | 2018-10-19 08:35:23 +0100 |
commit | bc6211cca5b06714ea2e57f247cd98b509a441c1 (patch) | |
tree | 9b53e5fdf2d51c2841c52264c6645064bde7d8b5 | |
parent | 164590e34c1797b735f4ecfd6fe8e406fbfbc144 (diff) | |
download | rtmux-bc6211cca5b06714ea2e57f247cd98b509a441c1.tar.gz rtmux-bc6211cca5b06714ea2e57f247cd98b509a441c1.tar.bz2 rtmux-bc6211cca5b06714ea2e57f247cd98b509a441c1.zip |
Instead of "master" for the version number, use "next-X.X". It is more
useful to include the next version number.
-rw-r--r-- | configure.ac | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac index 5b4bc4a2..8cd33b6c 100644 --- a/configure.ac +++ b/configure.ac @@ -1,6 +1,6 @@ # configure.ac -AC_INIT(tmux, master) +AC_INIT([tmux], next-2.9) AC_PREREQ([2.60]) AC_CONFIG_AUX_DIR(etc) @@ -35,7 +35,7 @@ AC_USE_SYSTEM_EXTENSIONS test "$sysconfdir" = '${prefix}/etc' && sysconfdir=/etc # Is this --enable-debug? -test "x$VERSION" = xmaster && enable_debug=yes +case "x$VERSION" in xnext*) enable_debug=yes;; esac AC_ARG_ENABLE( debug, AC_HELP_STRING(--enable-debug, enable debug build flags), |