** kzeitler@lucent.com, Nov 29: Cursor placement with mouse in long
[bpt/emacs.git] / lispintro / aclocal.m4
CommitLineData
613d8ea4
EZ
1dnl aclocal.m4 generated automatically by aclocal 1.4-p4
2
b398a621 3dnl Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2002, 2003,
5b0d63bc 4dnl 2004, 2005, 2006 Free Software Foundation, Inc.
613d8ea4
EZ
5dnl This file is free software; the Free Software Foundation
6dnl gives unlimited permission to copy and/or distribute it,
7dnl with or without modifications, as long as this notice is preserved.
8
9dnl This program is distributed in the hope that it will be useful,
10dnl but WITHOUT ANY WARRANTY, to the extent permitted by law; without
11dnl even the implied warranty of MERCHANTABILITY or FITNESS FOR A
12dnl PARTICULAR PURPOSE.
13
14# Do all the work for Automake. This macro actually does too much --
15# some checks are only needed if your package does certain things.
16# But this isn't really a big deal.
17
18# serial 1
19
20dnl Usage:
21dnl AM_INIT_AUTOMAKE(package,version, [no-define])
22
23AC_DEFUN(AM_INIT_AUTOMAKE,
24[AC_REQUIRE([AC_PROG_INSTALL])
25PACKAGE=[$1]
26AC_SUBST(PACKAGE)
27VERSION=[$2]
28AC_SUBST(VERSION)
29dnl test to see if srcdir already configured
30if test "`cd $srcdir && pwd`" != "`pwd`" && test -f $srcdir/config.status; then
31 AC_MSG_ERROR([source directory already configured; run "make distclean" there first])
32fi
33ifelse([$3],,
34AC_DEFINE_UNQUOTED(PACKAGE, "$PACKAGE", [Name of package])
35AC_DEFINE_UNQUOTED(VERSION, "$VERSION", [Version number of package]))
36AC_REQUIRE([AM_SANITY_CHECK])
37AC_REQUIRE([AC_ARG_PROGRAM])
38dnl FIXME This is truly gross.
39missing_dir=`cd $ac_aux_dir && pwd`
40AM_MISSING_PROG(ACLOCAL, aclocal, $missing_dir)
41AM_MISSING_PROG(AUTOCONF, autoconf, $missing_dir)
42AM_MISSING_PROG(AUTOMAKE, automake, $missing_dir)
43AM_MISSING_PROG(AUTOHEADER, autoheader, $missing_dir)
44AM_MISSING_PROG(MAKEINFO, makeinfo, $missing_dir)
45AC_REQUIRE([AC_PROG_MAKE_SET])])
46
47#
48# Check to make sure that the build environment is sane.
49#
50
51AC_DEFUN(AM_SANITY_CHECK,
52[AC_MSG_CHECKING([whether build environment is sane])
53# Just in case
54sleep 1
55echo timestamp > conftestfile
56# Do `set' in a subshell so we don't clobber the current shell's
57# arguments. Must try -L first in case configure is actually a
58# symlink; some systems play weird games with the mod time of symlinks
59# (eg FreeBSD returns the mod time of the symlink's containing
60# directory).
61if (
62 set X `ls -Lt $srcdir/configure conftestfile 2> /dev/null`
63 if test "[$]*" = "X"; then
64 # -L didn't work.
65 set X `ls -t $srcdir/configure conftestfile`
66 fi
67 if test "[$]*" != "X $srcdir/configure conftestfile" \
68 && test "[$]*" != "X conftestfile $srcdir/configure"; then
69
70 # If neither matched, then we have a broken ls. This can happen
71 # if, for instance, CONFIG_SHELL is bash and it inherits a
72 # broken ls alias from the environment. This has actually
73 # happened. Such a system could not be considered "sane".
74 AC_MSG_ERROR([ls -t appears to fail. Make sure there is not a broken
75alias in your environment])
76 fi
77
78 test "[$]2" = conftestfile
79 )
80then
81 # Ok.
82 :
83else
84 AC_MSG_ERROR([newly created file is older than distributed files!
85Check your system clock])
86fi
87rm -f conftest*
88AC_MSG_RESULT(yes)])
89
90dnl AM_MISSING_PROG(NAME, PROGRAM, DIRECTORY)
91dnl The program must properly implement --version.
92AC_DEFUN(AM_MISSING_PROG,
93[AC_MSG_CHECKING(for working $2)
94# Run test in a subshell; some versions of sh will print an error if
95# an executable is not found, even if stderr is redirected.
96# Redirect stdin to placate older versions of autoconf. Sigh.
97if ($2 --version) < /dev/null > /dev/null 2>&1; then
98 $1=$2
99 AC_MSG_RESULT(found)
100else
101 $1="$3/missing $2"
102 AC_MSG_RESULT(missing)
103fi
104AC_SUBST($1)])
105