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
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
|
# configure.ac --- configuration setup for VM
# Author: Robert Widhopf-Fenk <hack@robf.de>
# Copyright (C) 2006-2007 Robert Widhopf-Fenk <hack@robf.de>
# Copyright (C) 2010 Uday S Reddy <reddyuday@launchpad.net>
# VM is free software; you can redistribute it and/or modify it under the
# terms of the GNU Library General Public License as published by the Free
# Software Foundation; either version 2 of the License, or (at your option)
# any later version.
# VM is distributed in the hope that it will be useful, but WITHOUT ANY
# WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
# FOR A PARTICULAR PURPOSE. See the GNU Library General Public License for
# more details.
# You should have received a copy of the GNU Library General Public License
# along with this program; if not, write to the Free Software Foundation,
# Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
# Process this file with autoconf to produce a new configure script
# VM_ARG_SUBST(VAR, OPTION, VAL, DESC[, DEFAULT[, ACTION]])
#
# Substitute the autoconf variable VAR to a value specified by the user
# option --with-OPTION[=VAL] (described by DESC), or with a DEFAULT value.
# If an additional ACTION is given, it is executed at the top of the
# ACTION-IF-FOUND part of AC_ARG_WITH.
# #### WARNING: pay attention to the quoting of ACTION if given !!!!!
AC_DEFUN([VM_ARG_SUBST],
[
AC_SUBST([$1])
AC_ARG_WITH([$2],
AC_HELP_STRING([--with-][$2]ifelse($3, [], [], [=$3]),
[$4]ifelse($5, [], [], [ [[[$5]]]])),
[
ifelse($6, [], [], $6)
$1="${withval}"
],
ifelse($5, [], [], [$1="$5"]))
])
# Find a (g)tar program and make sure it is GNU one. A failure is not fatal
# since tar is needed for non critical targets only.
AC_DEFUN([VM_PROG_GNU_TAR],
[ AC_CHECK_PROGS(TAR, gtar tar)
if test "x${TAR}" = "xtar" ; then
AC_MSG_CHECKING([that tar is GNU tar])
${TAR} --version > /dev/null 2>&1 || TAR=
if test "x${TAR}" = "x" ; then
AC_MSG_RESULT(no)
else
AC_MSG_RESULT(yes)
fi
fi
if test "x${TAR}" = "x" ; then
AC_MSG_WARN([*** No GNU tar program found.])
AC_MSG_WARN([*** Some targets will be unavailable.])
fi ])
# Find an xargs program. A failure is not fatal, only clean/tarball will not
# work
AC_DEFUN([VM_PROG_XARGS],
[ AC_CHECK_PROG(XARGS, xargs, xargs)
if test "x${XARGS}" = "x" ; then
AC_MSG_WARN([*** No xargs program found.])
AC_MSG_WARN([*** make clean/tarball will not work.])
fi ])
# Find a makeinfo program. A failure is not fatal, only info files won't be
# built.
AC_DEFUN([VM_PROG_MAKEINFO],
[ AC_CHECK_PROG(MAKEINFO, makeinfo, makeinfo)
if test "x${MAKEINFO}" = "x" ; then
AC_MSG_WARN([*** No makeinfo program found.])
AC_MSG_WARN([*** Info files will not be built.])
fi ])
# Find a texi2dvi program. A failure is not fatal, only dvi and pdf files
# won't be built.
AC_DEFUN([VM_PROG_TEXI2DVI],
[ AC_CHECK_PROG(TEXI2DVI, texi2dvi, texi2dvi)
if test "x${TEXI2DVI}" = "x" ; then
AC_MSG_WARN([*** No texi2dvi program found.])
AC_MSG_WARN([*** DVI and PDF files will not be built.])
fi ])
# Choose an Emacs flavor according to the --with-emacs user option, or try
# emacs and xemacs.
# We use EMACS_PROG instead of EMACS to avoid colliding with Emacs' own
# internal environment.
AC_DEFUN([VM_PROG_EMACS],
[ AC_ARG_WITH([emacs],
AC_HELP_STRING([--with-emacs=PROG],
[choose which flavor of Emacs to use]),
[ EMACS_PROG="${withval}" ],
[ AC_CHECK_PROGS(EMACS_PROG, emacs xemacs) ])
if test "x${EMACS_PROG}" = "x" ; then
dnl This is critical enough to generate an error and not a warning...
AC_MSG_ERROR([*** No Emacs program found.])
fi
# EMACS TYPE ##################################################
AC_MSG_CHECKING([checking emacs-type of ${EMACS_PROG}])
cat > conftest.el <<TEST
(princ (format "%s" (if (featurep 'xemacs ) 'xemacs 'emacs)))
TEST
EMACS_FLAVOR=`"${EMACS_PROG}" --no-site-file --batch -l conftest.el | ${GREP} .`
AC_MSG_RESULT([${EMACS_FLAVOR}])
# EMACS VERSION ###############################################
AC_MSG_CHECKING([checking emacs-version of ${EMACS_PROG}])
cat > conftest.el <<TEST
(princ (format "%d" emacs-major-version))
TEST
EMACS_VERSION=`"${EMACS_PROG}" --no-site-file --batch -l conftest.el | ${GREP} .`
if test ${EMACS_VERSION} -lt 21; then
AC_MSG_ERROR([Emacs version ${EMACS_VERSION} is too old, 21 is minimum!])
fi
# EMACS DEPENDENT SETTINGS ####################################
# We may add a version check here ...
AC_MSG_RESULT([${EMACS_VERSION}])
# Copied from gnus aclocal.m4
AC_ARG_WITH(lispdir,[ --with-lispdir=DIR where to install lisp files], lispdir=${withval})
AC_MSG_CHECKING([where .elc files should go])
if test -z "$lispdir"; then
dnl Set default value
theprefix=$prefix
if test "x$theprefix" = "xNONE"; then
theprefix=$ac_default_prefix
fi
datarootdir="\$(prefix)/share"
datadir="${datarootdir}"
if test "$EMACS_FLAVOR" = "xemacs"; then
datarootdir="\$(prefix)/lib"
datadir="${datarootdir}/${EMACS_FLAVOR}/site-packages/etc"
lispdir="${datarootdir}/${EMACS_FLAVOR}/site-packages/lisp/vm"
else
lispdir="${datarootdir}/${EMACS_FLAVOR}/site-lisp/vm"
fi
for thedir in share lib; do
potential=
if test -d "${theprefix}/${thedir}/${EMACS_FLAVOR}/site-lisp"; then
if test "$EMACS_FLAVOR" = "xemacs"; then
lispdir="\$(prefix)/${thedir}/${EMACS_FLAVOR}/site-packages/lisp/vm"
else
lispdir="${datarootdir}/${EMACS_FLAVOR}/site-lisp/vm"
fi
break
fi
done
fi
AC_MSG_RESULT($lispdir)
AC_SUBST(lispdir)
AC_ARG_WITH(etcdir,[ --with-etcdir=DIR where to install data files], etcdir=${withval})
AC_MSG_CHECKING([where data files should go])
if test -z "$etcdir"; then
dnl Set default value
etcdir="${datadir}/vm"
fi
pixmapdir="${etcdir}/pixmaps"
AC_MSG_RESULT($etcdir)
AC_SUBST(etcdir)
AC_SUBST(pixmapdir)
AC_ARG_WITH(docdir,[ --with-docdir=DIR where to install doc files],
docdir=${withval},
dnl Set default value. Install ancillary documentation in etcdir,
dnl following Emacs conventions.
docdir="${etcdir}")
AC_MSG_CHECKING([where doc files should go])
AC_MSG_RESULT($docdir)
AC_SUBST(docdir)
# if test "x${EMACS_FLAVOR}" = "xemacs" ; then
# PACKAGEDIR="${prefix}/share/emacs/site-lisp"
# else
# PACKAGEDIR="${HOME}/.xemacs/xemacs-packages"
# fi
AC_SUBST(EMACS_PROG)
AC_SUBST(EMACS_FLAVOR)
AC_SUBST(EMACS_VERSION)
])
# copied from gnus aclocal.m4
AC_DEFUN([VM_BUILD_FLAGS], [
AC_MSG_CHECKING([which options to pass on to (X)Emacs])
if test "x$FLAGS" = "x"; then
if test "x$EMACS_FLAVOR" = "xxemacs"; then
FLAGS="-batch -no-autoloads -l \$(srcdir)/vm-build.el"
else
FLAGS="-batch -q -no-site-file -no-init-file -l \$(srcdir)/vm-build.el"
fi
else
FLAGS=$FLAGS
fi
AC_MSG_RESULT($FLAGS)
AC_SUBST(FLAGS)
])
# Copied from gnus aclocal.m4 (AC_PATH_INFO_DIR)
AC_DEFUN([VM_PATH_INFO_DIR], [
AC_MSG_CHECKING([where the TeXinfo docs should go])
dnl Set default value. This must be an absolute path.
if test "$infodir" = "\${datarootdir}/info"; then
if test "$EMACS_FLAVOR" = "xemacs"; then
infodir="\$(prefix)/${thedir}/${EMACS_FLAVOR}/site-packages/info"
fi
fi
AC_MSG_RESULT($infodir)
AC_SUBST(infodir)
])
# --with-other-dir option
AC_DEFUN([VM_OTHERDIRS],
[ VM_ARG_SUBST([OTHERDIRS], [other-dirs], [DIRS],
[set other needed lisp directories (a list of semicolon separated paths)],
[],)
AC_MSG_CHECKING([otherdirs])
cat > conftest.el <<TEST
(let ((otherdirs (delete "" (split-string "${OTHERDIRS}" ";")))
absolutedirs
dir)
(while otherdirs
(setq dir (expand-file-name (vm-fix-cygwin-path (car otherdirs)))
otherdirs (cdr otherdirs))
(if (not (file-exists-p dir))
(error "Directory %S does not exist!" dir)
(add-to-list 'absolutedirs dir)))
(princ (format "%S" absolutedirs)))
TEST
OTHERDIRS=`"${EMACS_PROG}" --no-site-file --batch -l ${srcdir}/lisp/vm-build.el -l conftest.el | tr -d "\r\n"`
AC_MSG_RESULT($OTHERDIRS)
AC_SUBST(OTHERDIRS)
])
##############################################################################
AC_INIT([VM], [8.2.0b], [vm@lists.launchpad.net])
# Name of the application
# Version (release) number
# Contact address
AC_COPYRIGHT([Copyright (C) 2009-2010 VM Development Team <vm@lists.launchpad.net>])
AC_CONFIG_SRCDIR([configure.ac])
AC_CONFIG_FILES([Makefile lisp/Makefile info/Makefile src/Makefile pixmaps/Makefile vm-load.el])
# Common system utilities checking:
AC_PROG_MAKE_SET
AC_PROG_INSTALL
AC_PROG_LN_S
AC_PATH_PROG(RM, rm, /bin/rm)
AC_PATH_PROG(LS, ls, /bin/ls)
AC_PATH_PROG(MKDIR, mkdir, /bin/mkdir)
AC_PATH_PROG(GREP, grep, /bin/grep)
# External programs checking:
VM_PROG_XARGS
VM_PROG_GNU_TAR
VM_PROG_MAKEINFO
VM_PROG_TEXI2DVI
VM_PROG_EMACS
VM_BUILD_FLAGS
VM_PATH_INFO_DIR
VM_OTHERDIRS
# is there a sane way to set this to a useful default?
VM_ARG_SUBST([PACKAGEDIR], [package-dir], [DIR],
[set the Emacs package directory to DIR],)
VM_ARG_SUBST([SYMLINKS], [symlinks], [],
[install VM by linking instead of copying], [no])
VM_ARG_SUBST([LINKPATH], [linkpath], [PATH],
[path to symlink from if `pwd' does not work])
AC_OUTPUT
# configure.ac ends here
|