summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNathan Angelacos <nangel@alpinelinux.org>2013-06-30 21:58:00 -0700
committerNathan Angelacos <nangel@alpinelinux.org>2013-06-30 21:58:00 -0700
commit4875e8266e134d73128fd6e393429e5d24f8e4ee (patch)
tree994206c9e91dbb38c82d55e7dc458722b30d7f2f
parent3ded2397d4964b8ff8f5c534b36b73ec6da117dc (diff)
downloadhaserl-4875e8266e134d73128fd6e393429e5d24f8e4ee.tar.bz2
haserl-4875e8266e134d73128fd6e393429e5d24f8e4ee.tar.xz
Modernize configure.ac for newer autotools
-rw-r--r--ChangeLog3
-rw-r--r--configure.ac14
2 files changed, 10 insertions, 7 deletions
diff --git a/ChangeLog b/ChangeLog
index a244edf..dffc9d1 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,6 @@
+ 0.9.31
+ * Modernize configure.ac
+
2013-27-06
0.9.30
* The Mayhem Team of CMU found an undisclosed segfault when the first
diff --git a/configure.ac b/configure.ac
index 7998afb..74560c5 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,6 +1,6 @@
# Process this file with autoconf to produce a configure script.
-AC_INIT([haserl],[0.9.30],[Nathan Angelacos - nangel@users.sourceforge.net],[haserl])
-AM_INIT_AUTOMAKE([haserl],[$PACKAGE_VERSION])
+AC_INIT([haserl],[0.9.31],[Nathan Angelacos - nangel@users.sourceforge.net],[haserl])
+AM_INIT_AUTOMAKE
# Checks for programs.
AC_PROG_CC
@@ -56,7 +56,7 @@ ac_report_bash_extensions=disabled
AC_ARG_WITH(lua,
- AC_HELP_STRING([--with-lua[[=DIR]]], [use lua in DIR]),
+ AS_HELP_STRING([--with-lua[[=DIR]]],[use lua in DIR]),
[ case "$withval" in
no) ac_report_have_lua=disabled
;;
@@ -90,7 +90,7 @@ AM_CONDITIONAL(USE_LUA, test x$ac_report_have_lua = xenabled)
# shell: ordinary Haserl code with embedded Lua
AC_ARG_ENABLE(luashell,
- AC_HELP_STRING([--enable-luashell], [Includes the standard Lua shell - Haserl with embedded Lua (default is yes if Lua's enabled)]),
+ AS_HELP_STRING([--enable-luashell],[Includes the standard Lua shell - Haserl with embedded Lua (default is yes if Lua's enabled)]),
[case "${enableval}" in
yes) luashell=true ;;
no) luashell=false ;;
@@ -103,7 +103,7 @@ fi
# shell: precompiled Haserl code - compiled Lua code
AC_ARG_ENABLE(luacshell,
- AC_HELP_STRING([--enable-luacshell], [Includes the compiled Lua shell - precompiled Haserl/Lua (default is yes if Lua's enabled)]),
+ AS_HELP_STRING([--enable-luacshell],[Includes the compiled Lua shell - precompiled Haserl/Lua (default is yes if Lua's enabled)]),
[case "${enableval}" in
yes) luacshell=true ;;
no) luacshell=false ;;
@@ -121,7 +121,7 @@ fi
# the Linux shell is always available
AC_ARG_ENABLE(bashshell,
- AC_HELP_STRING([--enable-bashshell], [Includes the Bash or another Linux shell (default is yes)]),
+ AS_HELP_STRING([--enable-bashshell],[Includes the Bash or another Linux shell (default is yes)]),
[case "${enableval}" in
yes) bashshell=true ;;
no) bashshell=false ;;
@@ -149,7 +149,7 @@ fi
# Do we include scott's bash extensions
AC_ARG_ENABLE(bash-extensions,
- AC_HELP_STRING([--enable-bash-extensions], [Includes bash extensions to the haserl script language (default is no)]),
+ AS_HELP_STRING([--enable-bash-extensions],[Includes bash extensions to the haserl script language (default is no)]),
[case "${enableval}" in
yes) bashextensions=true
ac_report_bash_extensions=enabled