source: trunk/third/sed/aclocal.m4 @ 17271

Revision 17271, 4.4 KB checked in by ghudson, 23 years ago (diff)
This commit was generated by cvs2svn to compensate for changes in r17270, which included commits to RCS files with non-trunk default branches.
Line 
1dnl aclocal.m4 generated automatically by aclocal 1.3
2
3dnl Copyright (C) 1994, 1995, 1996, 1997, 1998 Free Software Foundation, Inc.
4dnl This Makefile.in is free software; the Free Software Foundation
5dnl gives unlimited permission to copy and/or distribute it,
6dnl with or without modifications, as long as this notice is preserved.
7
8dnl This program is distributed in the hope that it will be useful,
9dnl but WITHOUT ANY WARRANTY, to the extent permitted by law; without
10dnl even the implied warranty of MERCHANTABILITY or FITNESS FOR A
11dnl PARTICULAR PURPOSE.
12
13
14# Like AC_CONFIG_HEADER, but automatically create stamp file.
15
16AC_DEFUN(AM_CONFIG_HEADER,
17[AC_PREREQ([2.12])
18AC_CONFIG_HEADER([$1])
19dnl When config.status generates a header, we must update the stamp-h file.
20dnl This file resides in the same directory as the config header
21dnl that is generated.  We must strip everything past the first ":",
22dnl and everything past the last "/".
23AC_OUTPUT_COMMANDS(changequote(<<,>>)dnl
24ifelse(patsubst(<<$1>>, <<[^ ]>>, <<>>), <<>>,
25<<test -z "<<$>>CONFIG_HEADERS" || echo timestamp > patsubst(<<$1>>, <<^\([^:]*/\)?.*>>, <<\1>>)stamp-h<<>>dnl>>,
26<<am_indx=1
27for 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`
34done<<>>dnl>>)
35changequote([,]))])
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
43dnl Usage:
44dnl AM_INIT_AUTOMAKE(package,version, [no-define])
45
46AC_DEFUN(AM_INIT_AUTOMAKE,
47[AC_REQUIRE([AM_PROG_INSTALL])
48PACKAGE=[$1]
49AC_SUBST(PACKAGE)
50VERSION=[$2]
51AC_SUBST(VERSION)
52dnl test to see if srcdir already configured
53if test "`cd $srcdir && pwd`" != "`pwd`" && test -f $srcdir/config.status; then
54  AC_MSG_ERROR([source directory already configured; run "make distclean" there first])
55fi
56ifelse([$3],,
57AC_DEFINE_UNQUOTED(PACKAGE, "$PACKAGE")
58AC_DEFINE_UNQUOTED(VERSION, "$VERSION"))
59AC_REQUIRE([AM_SANITY_CHECK])
60AC_REQUIRE([AC_ARG_PROGRAM])
61dnl FIXME This is truly gross.
62missing_dir=`cd $ac_aux_dir && pwd`
63AM_MISSING_PROG(ACLOCAL, aclocal, $missing_dir)
64AM_MISSING_PROG(AUTOCONF, autoconf, $missing_dir)
65AM_MISSING_PROG(AUTOMAKE, automake, $missing_dir)
66AM_MISSING_PROG(AUTOHEADER, autoheader, $missing_dir)
67AM_MISSING_PROG(MAKEINFO, makeinfo, $missing_dir)
68AC_REQUIRE([AC_PROG_MAKE_SET])])
69
70
71# serial 1
72
73AC_DEFUN(AM_PROG_INSTALL,
74[AC_REQUIRE([AC_PROG_INSTALL])
75test -z "$INSTALL_SCRIPT" && INSTALL_SCRIPT='${INSTALL_PROGRAM}'
76AC_SUBST(INSTALL_SCRIPT)dnl
77])
78
79#
80# Check to make sure that the build environment is sane.
81#
82
83AC_DEFUN(AM_SANITY_CHECK,
84[AC_MSG_CHECKING([whether build environment is sane])
85# Just in case
86sleep 1
87echo 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).
93if (
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
107alias in your environment])
108   fi
109
110   test "[$]2" = conftestfile
111   )
112then
113   # Ok.
114   :
115else
116   AC_MSG_ERROR([newly created file is older than distributed files!
117Check your system clock])
118fi
119rm -f conftest*
120AC_MSG_RESULT(yes)])
121
122dnl AM_MISSING_PROG(NAME, PROGRAM, DIRECTORY)
123dnl The program must properly implement --version.
124AC_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.
129if ($2 --version) < /dev/null > /dev/null 2>&1; then
130   $1=$2
131   AC_MSG_RESULT(found)
132else
133   $1="$3/missing $2"
134   AC_MSG_RESULT(missing)
135fi
136AC_SUBST($1)])
137
Note: See TracBrowser for help on using the repository browser.