Root/package/ead/src/tinysrp/aclocal.m4

1dnl aclocal.m4 generated automatically by aclocal 1.4a
2
3dnl Copyright (C) 1994, 1995-8, 1999 Free Software Foundation, Inc.
4dnl This file 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
13dnl
14dnl check for signal type
15dnl
16dnl AC_RETSIGTYPE isn't quite right, but almost.
17dnl
18define(TYPE_SIGNAL,[
19AC_MSG_CHECKING([POSIX signal handlers])
20AC_CACHE_VAL(cv_has_posix_signals,
21[AC_TRY_COMPILE(
22[#include <sys/types.h>
23#include <signal.h>
24#ifdef signal
25#undef signal
26#endif
27extern void (*signal ()) ();], [],
28cv_has_posix_signals=yes, cv_has_posix_signals=no)])
29AC_MSG_RESULT($cv_has_posix_signals)
30if test $cv_has_posix_signals = yes; then
31   AC_DEFINE(RETSIGTYPE, void) AC_DEFINE(POSIX_SIGTYPE)
32else
33  if test $ac_cv_type_signal = void; then
34     AC_DEFINE(RETSIGTYPE, void)
35  else
36     AC_DEFINE(RETSIGTYPE, int)
37  fi
38fi])dnl
39
40# Like AC_CONFIG_HEADER, but automatically create stamp file.
41
42AC_DEFUN(AM_CONFIG_HEADER,
43[AC_PREREQ([2.12])
44AC_CONFIG_HEADER([$1])
45dnl When config.status generates a header, we must update the stamp-h file.
46dnl This file resides in the same directory as the config header
47dnl that is generated. We must strip everything past the first ":",
48dnl and everything past the last "/".
49AC_OUTPUT_COMMANDS(changequote(<<,>>)dnl
50ifelse(patsubst(<<$1>>, <<[^ ]>>, <<>>), <<>>,
51<<test -z "<<$>>CONFIG_HEADERS" || echo timestamp > patsubst(<<$1>>, <<^\([^:]*/\)?.*>>, <<\1>>)stamp-h<<>>dnl>>,
52<<am_indx=1
53for am_file in <<$1>>; do
54  case " <<$>>CONFIG_HEADERS " in
55  *" <<$>>am_file "*<<)>>
56    echo timestamp > `echo <<$>>am_file | sed -e 's%:.*%%' -e 's%[^/]*$%%'`stamp-h$am_indx
57    ;;
58  esac
59  am_indx=`expr "<<$>>am_indx" + 1`
60done<<>>dnl>>)
61changequote([,]))])
62
63# Do all the work for Automake. This macro actually does too much --
64# some checks are only needed if your package does certain things.
65# But this isn't really a big deal.
66
67# serial 1
68
69dnl Usage:
70dnl AM_INIT_AUTOMAKE(package,version, [no-define])
71
72AC_DEFUN(AM_INIT_AUTOMAKE,
73[AC_REQUIRE([AC_PROG_INSTALL])
74dnl We require 2.13 because we rely on SHELL being computed by configure.
75AC_PREREQ([2.13])
76PACKAGE=[$1]
77AC_SUBST(PACKAGE)
78VERSION=[$2]
79AC_SUBST(VERSION)
80dnl test to see if srcdir already configured
81if test "`cd $srcdir && pwd`" != "`pwd`" && test -f $srcdir/config.status; then
82  AC_MSG_ERROR([source directory already configured; run "make distclean" there first])
83fi
84ifelse([$3],,
85AC_DEFINE_UNQUOTED(PACKAGE, "$PACKAGE", [Name of package])
86AC_DEFINE_UNQUOTED(VERSION, "$VERSION", [Version number of package]))
87AC_REQUIRE([AM_SANITY_CHECK])
88AC_REQUIRE([AC_ARG_PROGRAM])
89dnl FIXME This is truly gross.
90missing_dir=`cd $ac_aux_dir && pwd`
91AM_MISSING_PROG(ACLOCAL, aclocal, $missing_dir)
92AM_MISSING_PROG(AUTOCONF, autoconf, $missing_dir)
93AM_MISSING_PROG(AUTOMAKE, automake, $missing_dir)
94AM_MISSING_PROG(AUTOHEADER, autoheader, $missing_dir)
95AM_MISSING_PROG(MAKEINFO, makeinfo, $missing_dir)
96AC_REQUIRE([AC_PROG_MAKE_SET])])
97
98#
99# Check to make sure that the build environment is sane.
100#
101
102AC_DEFUN(AM_SANITY_CHECK,
103[AC_MSG_CHECKING([whether build environment is sane])
104# Just in case
105sleep 1
106echo timestamp > conftestfile
107# Do `set' in a subshell so we don't clobber the current shell's
108# arguments. Must try -L first in case configure is actually a
109# symlink; some systems play weird games with the mod time of symlinks
110# (eg FreeBSD returns the mod time of the symlink's containing
111# directory).
112if (
113   set X `ls -Lt $srcdir/configure conftestfile 2> /dev/null`
114   if test "[$]*" = "X"; then
115      # -L didn't work.
116      set X `ls -t $srcdir/configure conftestfile`
117   fi
118   if test "[$]*" != "X $srcdir/configure conftestfile" \
119      && test "[$]*" != "X conftestfile $srcdir/configure"; then
120
121      # If neither matched, then we have a broken ls. This can happen
122      # if, for instance, CONFIG_SHELL is bash and it inherits a
123      # broken ls alias from the environment. This has actually
124      # happened. Such a system could not be considered "sane".
125      AC_MSG_ERROR([ls -t appears to fail. Make sure there is not a broken
126alias in your environment])
127   fi
128
129   test "[$]2" = conftestfile
130   )
131then
132   # Ok.
133   :
134else
135   AC_MSG_ERROR([newly created file is older than distributed files!
136Check your system clock])
137fi
138rm -f conftest*
139AC_MSG_RESULT(yes)])
140
141dnl AM_MISSING_PROG(NAME, PROGRAM, DIRECTORY)
142dnl The program must properly implement --version.
143AC_DEFUN(AM_MISSING_PROG,
144[AC_MSG_CHECKING(for working $2)
145# Run test in a subshell; some versions of sh will print an error if
146# an executable is not found, even if stderr is redirected.
147# Redirect stdin to placate older versions of autoconf. Sigh.
148if ($2 --version) < /dev/null > /dev/null 2>&1; then
149   $1=$2
150   AC_MSG_RESULT(found)
151else
152   $1="$3/missing $2"
153   AC_MSG_RESULT(missing)
154fi
155AC_SUBST($1)])
156
157

Archive Download this file



interactive