1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
|
From 4875e8266e134d73128fd6e393429e5d24f8e4ee Mon Sep 17 00:00:00 2001
From: Nathan Angelacos <nangel@alpinelinux.org>
Date: Sun, 30 Jun 2013 21:58:00 -0700
Subject: [PATCH 1/4] Modernize configure.ac for newer autotools
---
ChangeLog | 3 +++
configure.ac | 14 +++++++-------
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
--
1.8.3.2
|