-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathconfigure.ac
170 lines (153 loc) · 6.45 KB
/
configure.ac
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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
dnl Configure script for Shell debugger
define(DEBUGGER, kshdb)
define(POSIXSHELL, ksh)
AC_INIT([kshdb],[1.1.1],[rocky@gnu.org])
AM_MAINTAINER_MODE
AM_INIT_AUTOMAKE([foreign])
AC_CONFIG_SRCDIR(DEBUGGER.in)
if test x$srcdir = x ; then
srcdir=$ac_pwd
fi
# List of output variables produced by this configure script
#
AC_SUBST(DIFF)
AC_SUBST(DIFF_OPTS)
CMDLINE_INVOKED='${0##*/} == ${.sh.file##*/}'
AC_SUBST(CMDLINE_INVOKED)
## --with-ksh can be used to tell the kshdb script and the regression
## test which ksh to run. It can be omitted too in which case we'll
## look for a ksh binary.
AC_ARG_WITH(POSIXSHELL, AS_HELP_STRING([--with-POSIXSHELL],[location of POSIXSHELL program]), SH_PROG=$withval)
if test "$SH_PROG" = "yes" || test "$SH_PROG" = "no" || test -z "$SH_PROG"
then
AC_PATH_PROGS(SH_PROG, ksh93t ksh93 ksh, no)
fi
if test "$SH_PROG" = no; then
AC_MSG_ERROR([I didn't find the] POSIXSHELL [executable.\
You might want to use the] --with-POSIXSHELL [option.])
fi
AC_MSG_CHECKING([Checking whether $SH_PROG is compatible with DEBUGGER])
if ! $SH_PROG -e '((.sh.version >= 20141224))' ; then
ksh_version=$($SH_PROG -e 'print ${.sh.version}')
AC_MSG_RESULT([Need version later than 2014-12-24 and you have $ksh_version])
AC_MSG_ERROR([You might want to retry with another POSIXSHELL using the --with-POSIXSHELL option.])
else
AC_MSG_RESULT(yes!)
fi
dnl We use a diff in regression testing
AC_PATH_PROG(DIFF, diff, no)
DIFF_OPTS=
if test "$DIFF" = no ; then
AC_PATH_PROG(DIFF, cmp, no)
else
dnl Try for GNU diff options.
# MSDOG output uses \r\n rather than \n in tests
for diff_opt in -w --unified -b ; do
if $DIFF $diff_opt $0 $0 > /dev/null 2>&1; then
AC_MSG_RESULT([adding $diff_opt to diff in regression tests])
DIFF_OPTS="$DIFF_OPTS $diff_opt"
fi
done
fi
# Get the fully expanded name of pkgdatadir. This is used in kshdb.in
# and dbg-main.sh.in and for installing debugger files.
pkgdatadir=$datadir/DEBUGGER
AC_SUBST_DIR(PKGDATADIR, $pkgdatadir)
AM_MISSING_PROG(GIT2CL, git2cl, $missing_dir)
AC_PROG_LN_S
AC_PATH_PROG(RM, rm, true)
AC_CONFIG_FILES([ \
Makefile \
command/Makefile \
command/info_sub/Makefile \
command/set_sub/Makefile \
command/show_sub/Makefile \
data/Makefile \
doc/Makefile \
dbg-trace.sh \
init/Makefile \
lib/Makefile \
test/Makefile \
test/data/Makefile \
test/example/Makefile \
test/integration/Makefile \
test/integration/check-common.sh \
test/unit/Makefile \
])
AC_CONFIG_FILES(DEBUGGER, [chmod +x DEBUGGER])
AC_CONFIG_FILES([test/example/hanoi.sh],
[chmod +x test/example/hanoi.sh])
AC_CONFIG_FILES([test/integration/test-bug-args],
[chmod +x test/integration/test-bug-args])
AC_CONFIG_FILES([test/integration/test-break],
[chmod +x test/integration/test-break])
AC_CONFIG_FILES([test/integration/test-bug-errexit],
[chmod +x test/integration/test-bug-errexit])
AC_CONFIG_FILES([test/integration/test-bugIFS],
[chmod +x test/integration/test-bugIFS])
AC_CONFIG_FILES([test/integration/test-condition],
[chmod +x test/integration/test-condition])
AC_CONFIG_FILES([test/integration/test-delete],
[chmod +x test/integration/test-delete])
AC_CONFIG_FILES([test/integration/test-display],
[chmod +x test/integration/test-display])
AC_CONFIG_FILES([test/integration/test-enable],
[chmod +x test/integration/test-enable])
AC_CONFIG_FILES([test/integration/test-examine],
[chmod +x test/integration/test-examine])
AC_CONFIG_FILES([test/integration/test-frame],
[chmod +x test/integration/test-frame])
AC_CONFIG_FILES([test/integration/test-list],
[chmod +x test/integration/test-list])
AC_CONFIG_FILES([test/integration/test-next],
[chmod +x test/integration/test-next])
AC_CONFIG_FILES([test/integration/test-restart],
[chmod +x test/integration/test-restart])
AC_CONFIG_FILES([test/integration/test-setshow],
[chmod +x test/integration/test-setshow])
AC_CONFIG_FILES([test/integration/test-info-args],
[chmod +x test/integration/test-info-args])
AC_CONFIG_FILES([test/integration/test-skip],
[chmod +x test/integration/test-skip])
AC_CONFIG_FILES([test/integration/test-step],
[chmod +x test/integration/test-step])
AC_CONFIG_FILES([test/integration/test-subshell1],
[chmod +x test/integration/test-subshell1])
AC_CONFIG_FILES([test/unit/test-alias.sh], [chmod +x test/unit/test-alias.sh])
AC_CONFIG_FILES([test/unit/test-break.sh],
[chmod +x test/unit/test-break.sh])
AC_CONFIG_FILES([test/unit/test-cmd-complete.sh],
[chmod +x test/unit/test-cmd-complete.sh])
AC_CONFIG_FILES([test/unit/test-lib-complete.sh],
[chmod +x test/unit/test-lib-complete.sh])
AC_CONFIG_FILES([test/unit/test-columns.sh],
[chmod +x test/unit/test-columns.sh])
AC_CONFIG_FILES([test/unit/test-dbg-opts.sh],
[chmod +x test/unit/test-dbg-opts.sh])
AC_CONFIG_FILES([test/unit/test-eval.sh],
[chmod +x test/unit/test-eval.sh])
AC_CONFIG_FILES([test/unit/test-examine.sh],
[chmod +x test/unit/test-examine.sh])
AC_CONFIG_FILES([test/unit/test-file.sh],
[chmod +x test/unit/test-file.sh])
AC_CONFIG_FILES([test/unit/test-filecache.sh],
[chmod +x test/unit/test-filecache.sh])
AC_CONFIG_FILES([test/unit/test-get-sourceline.sh],
[chmod +x test/unit/test-get-sourceline.sh])
AC_CONFIG_FILES([test/unit/test-fns.sh], [chmod +x test/unit/test-fns.sh])
AC_CONFIG_FILES([test/unit/test-frame.sh], [chmod +x test/unit/test-frame.sh])
AC_CONFIG_FILES([test/unit/test-journal.sh],
[chmod +x test/unit/test-journal.sh])
AC_CONFIG_FILES([test/unit/test-msg.sh],
[chmod +x test/unit/test-msg.sh])
AC_CONFIG_FILES([test/unit/test-pre.sh], [chmod +x test/unit/test-pre.sh])
AC_CONFIG_FILES([test/unit/test-run.sh], [chmod +x test/unit/test-run.sh])
AC_CONFIG_FILES([test/unit/test-save-restore.sh],
[chmod +x test/unit/test-save-restore.sh])
AC_CONFIG_FILES([test/unit/test-setshow.sh],
[chmod +x test/unit/test-setshow.sh])
AC_CONFIG_FILES([test/unit/test-sort.sh],
[chmod +x test/unit/test-sort.sh])
AC_CONFIG_FILES([test/unit/test-tty.sh],
[chmod +x test/unit/test-tty.sh])
AC_OUTPUT