1 | dnl aclocal.m4 generated automatically by aclocal 1.3 |
---|
2 | |
---|
3 | dnl Copyright (C) 1994, 1995, 1996, 1997, 1998 Free Software Foundation, Inc. |
---|
4 | dnl This Makefile.in is free software; the Free Software Foundation |
---|
5 | dnl gives unlimited permission to copy and/or distribute it, |
---|
6 | dnl with or without modifications, as long as this notice is preserved. |
---|
7 | |
---|
8 | dnl This program is distributed in the hope that it will be useful, |
---|
9 | dnl but WITHOUT ANY WARRANTY, to the extent permitted by law; without |
---|
10 | dnl even the implied warranty of MERCHANTABILITY or FITNESS FOR A |
---|
11 | dnl PARTICULAR PURPOSE. |
---|
12 | |
---|
13 | |
---|
14 | # Like AC_CONFIG_HEADER, but automatically create stamp file. |
---|
15 | |
---|
16 | AC_DEFUN(AM_CONFIG_HEADER, |
---|
17 | [AC_PREREQ([2.12]) |
---|
18 | AC_CONFIG_HEADER([$1]) |
---|
19 | dnl When config.status generates a header, we must update the stamp-h file. |
---|
20 | dnl This file resides in the same directory as the config header |
---|
21 | dnl that is generated. We must strip everything past the first ":", |
---|
22 | dnl and everything past the last "/". |
---|
23 | AC_OUTPUT_COMMANDS(changequote(<<,>>)dnl |
---|
24 | ifelse(patsubst(<<$1>>, <<[^ ]>>, <<>>), <<>>, |
---|
25 | <<test -z "<<$>>CONFIG_HEADERS" || echo timestamp > patsubst(<<$1>>, <<^\([^:]*/\)?.*>>, <<\1>>)stamp-h<<>>dnl>>, |
---|
26 | <<am_indx=1 |
---|
27 | for am_file in <<$1>>; do |
---|
28 | case " <<$>>CONFIG_HEADERS " in |
---|
29 | *" <<$>>am_file "*<<)>> |
---|
30 | echo timestamp > `echo <<$>>am_file | sed -e 's%:.*%%' -e 's%[^/]*$%%'`stamp-h$am_indx |
---|
31 | ;; |
---|
32 | esac |
---|
33 | am_indx=`expr "<<$>>am_indx" + 1` |
---|
34 | done<<>>dnl>>) |
---|
35 | changequote([,]))]) |
---|
36 | |
---|
37 | # Do all the work for Automake. This macro actually does too much -- |
---|
38 | # some checks are only needed if your package does certain things. |
---|
39 | # But this isn't really a big deal. |
---|
40 | |
---|
41 | # serial 1 |
---|
42 | |
---|
43 | dnl Usage: |
---|
44 | dnl AM_INIT_AUTOMAKE(package,version, [no-define]) |
---|
45 | |
---|
46 | AC_DEFUN(AM_INIT_AUTOMAKE, |
---|
47 | [AC_REQUIRE([AM_PROG_INSTALL]) |
---|
48 | PACKAGE=[$1] |
---|
49 | AC_SUBST(PACKAGE) |
---|
50 | VERSION=[$2] |
---|
51 | AC_SUBST(VERSION) |
---|
52 | dnl test to see if srcdir already configured |
---|
53 | if test "`cd $srcdir && pwd`" != "`pwd`" && test -f $srcdir/config.status; then |
---|
54 | AC_MSG_ERROR([source directory already configured; run "make distclean" there first]) |
---|
55 | fi |
---|
56 | ifelse([$3],, |
---|
57 | AC_DEFINE_UNQUOTED(PACKAGE, "$PACKAGE") |
---|
58 | AC_DEFINE_UNQUOTED(VERSION, "$VERSION")) |
---|
59 | AC_REQUIRE([AM_SANITY_CHECK]) |
---|
60 | AC_REQUIRE([AC_ARG_PROGRAM]) |
---|
61 | dnl FIXME This is truly gross. |
---|
62 | missing_dir=`cd $ac_aux_dir && pwd` |
---|
63 | AM_MISSING_PROG(ACLOCAL, aclocal, $missing_dir) |
---|
64 | AM_MISSING_PROG(AUTOCONF, autoconf, $missing_dir) |
---|
65 | AM_MISSING_PROG(AUTOMAKE, automake, $missing_dir) |
---|
66 | AM_MISSING_PROG(AUTOHEADER, autoheader, $missing_dir) |
---|
67 | AM_MISSING_PROG(MAKEINFO, makeinfo, $missing_dir) |
---|
68 | AC_REQUIRE([AC_PROG_MAKE_SET])]) |
---|
69 | |
---|
70 | |
---|
71 | # serial 1 |
---|
72 | |
---|
73 | AC_DEFUN(AM_PROG_INSTALL, |
---|
74 | [AC_REQUIRE([AC_PROG_INSTALL]) |
---|
75 | test -z "$INSTALL_SCRIPT" && INSTALL_SCRIPT='${INSTALL_PROGRAM}' |
---|
76 | AC_SUBST(INSTALL_SCRIPT)dnl |
---|
77 | ]) |
---|
78 | |
---|
79 | # |
---|
80 | # Check to make sure that the build environment is sane. |
---|
81 | # |
---|
82 | |
---|
83 | AC_DEFUN(AM_SANITY_CHECK, |
---|
84 | [AC_MSG_CHECKING([whether build environment is sane]) |
---|
85 | # Just in case |
---|
86 | sleep 1 |
---|
87 | echo timestamp > conftestfile |
---|
88 | # Do `set' in a subshell so we don't clobber the current shell's |
---|
89 | # arguments. Must try -L first in case configure is actually a |
---|
90 | # symlink; some systems play weird games with the mod time of symlinks |
---|
91 | # (eg FreeBSD returns the mod time of the symlink's containing |
---|
92 | # directory). |
---|
93 | if ( |
---|
94 | set X `ls -Lt $srcdir/configure conftestfile 2> /dev/null` |
---|
95 | if test "[$]*" = "X"; then |
---|
96 | # -L didn't work. |
---|
97 | set X `ls -t $srcdir/configure conftestfile` |
---|
98 | fi |
---|
99 | if test "[$]*" != "X $srcdir/configure conftestfile" \ |
---|
100 | && test "[$]*" != "X conftestfile $srcdir/configure"; then |
---|
101 | |
---|
102 | # If neither matched, then we have a broken ls. This can happen |
---|
103 | # if, for instance, CONFIG_SHELL is bash and it inherits a |
---|
104 | # broken ls alias from the environment. This has actually |
---|
105 | # happened. Such a system could not be considered "sane". |
---|
106 | AC_MSG_ERROR([ls -t appears to fail. Make sure there is not a broken |
---|
107 | alias in your environment]) |
---|
108 | fi |
---|
109 | |
---|
110 | test "[$]2" = conftestfile |
---|
111 | ) |
---|
112 | then |
---|
113 | # Ok. |
---|
114 | : |
---|
115 | else |
---|
116 | AC_MSG_ERROR([newly created file is older than distributed files! |
---|
117 | Check your system clock]) |
---|
118 | fi |
---|
119 | rm -f conftest* |
---|
120 | AC_MSG_RESULT(yes)]) |
---|
121 | |
---|
122 | dnl AM_MISSING_PROG(NAME, PROGRAM, DIRECTORY) |
---|
123 | dnl The program must properly implement --version. |
---|
124 | AC_DEFUN(AM_MISSING_PROG, |
---|
125 | [AC_MSG_CHECKING(for working $2) |
---|
126 | # Run test in a subshell; some versions of sh will print an error if |
---|
127 | # an executable is not found, even if stderr is redirected. |
---|
128 | # Redirect stdin to placate older versions of autoconf. Sigh. |
---|
129 | if ($2 --version) < /dev/null > /dev/null 2>&1; then |
---|
130 | $1=$2 |
---|
131 | AC_MSG_RESULT(found) |
---|
132 | else |
---|
133 | $1="$3/missing $2" |
---|
134 | AC_MSG_RESULT(missing) |
---|
135 | fi |
---|
136 | AC_SUBST($1)]) |
---|
137 | |
---|