Doc.
[rsync/rsync.git] / popt-1.2 / aclocal.m4
CommitLineData
62402cb1
MP
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# Do all the work for Automake. This macro actually does too much --
14# some checks are only needed if your package does certain things.
15# But this isn't really a big deal.
16
17# serial 1
18
19dnl Usage:
20dnl AM_INIT_AUTOMAKE(package,version, [no-define])
21
22AC_DEFUN(AM_INIT_AUTOMAKE,
23[AC_REQUIRE([AM_PROG_INSTALL])
24PACKAGE=[$1]
25AC_SUBST(PACKAGE)
26VERSION=[$2]
27AC_SUBST(VERSION)
28dnl test to see if srcdir already configured
29if test "`cd $srcdir && pwd`" != "`pwd`" && test -f $srcdir/config.status; then
30 AC_MSG_ERROR([source directory already configured; run "make distclean" there first])
31fi
32ifelse([$3],,
33AC_DEFINE_UNQUOTED(PACKAGE, "$PACKAGE")
34AC_DEFINE_UNQUOTED(VERSION, "$VERSION"))
35AC_REQUIRE([AM_SANITY_CHECK])
36AC_REQUIRE([AC_ARG_PROGRAM])
37dnl FIXME This is truly gross.
38missing_dir=`cd $ac_aux_dir && pwd`
39AM_MISSING_PROG(ACLOCAL, aclocal, $missing_dir)
40AM_MISSING_PROG(AUTOCONF, autoconf, $missing_dir)
41AM_MISSING_PROG(AUTOMAKE, automake, $missing_dir)
42AM_MISSING_PROG(AUTOHEADER, autoheader, $missing_dir)
43AM_MISSING_PROG(MAKEINFO, makeinfo, $missing_dir)
44AC_REQUIRE([AC_PROG_MAKE_SET])])
45
46
47# serial 1
48
49AC_DEFUN(AM_PROG_INSTALL,
50[AC_REQUIRE([AC_PROG_INSTALL])
51test -z "$INSTALL_SCRIPT" && INSTALL_SCRIPT='${INSTALL_PROGRAM}'
52AC_SUBST(INSTALL_SCRIPT)dnl
53])
54
55#
56# Check to make sure that the build environment is sane.
57#
58
59AC_DEFUN(AM_SANITY_CHECK,
60[AC_MSG_CHECKING([whether build environment is sane])
61# Just in case
62sleep 1
63echo timestamp > conftestfile
64# Do `set' in a subshell so we don't clobber the current shell's
65# arguments. Must try -L first in case configure is actually a
66# symlink; some systems play weird games with the mod time of symlinks
67# (eg FreeBSD returns the mod time of the symlink's containing
68# directory).
69if (
70 set X `ls -Lt $srcdir/configure conftestfile 2> /dev/null`
71 if test "[$]*" = "X"; then
72 # -L didn't work.
73 set X `ls -t $srcdir/configure conftestfile`
74 fi
75 if test "[$]*" != "X $srcdir/configure conftestfile" \
76 && test "[$]*" != "X conftestfile $srcdir/configure"; then
77
78 # If neither matched, then we have a broken ls. This can happen
79 # if, for instance, CONFIG_SHELL is bash and it inherits a
80 # broken ls alias from the environment. This has actually
81 # happened. Such a system could not be considered "sane".
82 AC_MSG_ERROR([ls -t appears to fail. Make sure there is not a broken
83alias in your environment])
84 fi
85
86 test "[$]2" = conftestfile
87 )
88then
89 # Ok.
90 :
91else
92 AC_MSG_ERROR([newly created file is older than distributed files!
93Check your system clock])
94fi
95rm -f conftest*
96AC_MSG_RESULT(yes)])
97
98dnl AM_MISSING_PROG(NAME, PROGRAM, DIRECTORY)
99dnl The program must properly implement --version.
100AC_DEFUN(AM_MISSING_PROG,
101[AC_MSG_CHECKING(for working $2)
102# Run test in a subshell; some versions of sh will print an error if
103# an executable is not found, even if stderr is redirected.
104# Redirect stdin to placate older versions of autoconf. Sigh.
105if ($2 --version) < /dev/null > /dev/null 2>&1; then
106 $1=$2
107 AC_MSG_RESULT(found)
108else
109 $1="$3/missing $2"
110 AC_MSG_RESULT(missing)
111fi
112AC_SUBST($1)])
113
114# Like AC_CONFIG_HEADER, but automatically create stamp file.
115
116AC_DEFUN(AM_CONFIG_HEADER,
117[AC_PREREQ([2.12])
118AC_CONFIG_HEADER([$1])
119dnl When config.status generates a header, we must update the stamp-h file.
120dnl This file resides in the same directory as the config header
121dnl that is generated. We must strip everything past the first ":",
122dnl and everything past the last "/".
123AC_OUTPUT_COMMANDS(changequote(<<,>>)dnl
124ifelse(patsubst(<<$1>>, <<[^ ]>>, <<>>), <<>>,
125<<test -z "<<$>>CONFIG_HEADERS" || echo timestamp > patsubst(<<$1>>, <<^\([^:]*/\)?.*>>, <<\1>>)stamp-h<<>>dnl>>,
126<<am_indx=1
127for am_file in <<$1>>; do
128 case " <<$>>CONFIG_HEADERS " in
129 *" <<$>>am_file "*<<)>>
130 echo timestamp > `echo <<$>>am_file | sed -e 's%:.*%%' -e 's%[^/]*$%%'`stamp-h$am_indx
131 ;;
132 esac
133 am_indx=`expr "<<$>>am_indx" + 1`
134done<<>>dnl>>)
135changequote([,]))])
136
137
138# serial 1
139
140AC_DEFUN(AM_C_PROTOTYPES,
141[AC_REQUIRE([AM_PROG_CC_STDC])
142AC_REQUIRE([AC_PROG_CPP])
143AC_MSG_CHECKING([for function prototypes])
144if test "$am_cv_prog_cc_stdc" != no; then
145 AC_MSG_RESULT(yes)
146 AC_DEFINE(PROTOTYPES)
147 U= ANSI2KNR=
148else
149 AC_MSG_RESULT(no)
150 U=_ ANSI2KNR=./ansi2knr
151 # Ensure some checks needed by ansi2knr itself.
152 AC_HEADER_STDC
153 AC_CHECK_HEADERS(string.h)
154fi
155AC_SUBST(U)dnl
156AC_SUBST(ANSI2KNR)dnl
157])
158
159
160# serial 1
161
162# @defmac AC_PROG_CC_STDC
163# @maindex PROG_CC_STDC
164# @ovindex CC
165# If the C compiler in not in ANSI C mode by default, try to add an option
166# to output variable @code{CC} to make it so. This macro tries various
167# options that select ANSI C on some system or another. It considers the
168# compiler to be in ANSI C mode if it handles function prototypes correctly.
169#
170# If you use this macro, you should check after calling it whether the C
171# compiler has been set to accept ANSI C; if not, the shell variable
172# @code{am_cv_prog_cc_stdc} is set to @samp{no}. If you wrote your source
173# code in ANSI C, you can make an un-ANSIfied copy of it by using the
174# program @code{ansi2knr}, which comes with Ghostscript.
175# @end defmac
176
177AC_DEFUN(AM_PROG_CC_STDC,
178[AC_REQUIRE([AC_PROG_CC])
179AC_BEFORE([$0], [AC_C_INLINE])
180AC_BEFORE([$0], [AC_C_CONST])
181dnl Force this before AC_PROG_CPP. Some cpp's, eg on HPUX, require
182dnl a magic option to avoid problems with ANSI preprocessor commands
183dnl like #elif.
184dnl FIXME: can't do this because then AC_AIX won't work due to a
185dnl circular dependency.
186dnl AC_BEFORE([$0], [AC_PROG_CPP])
187AC_MSG_CHECKING(for ${CC-cc} option to accept ANSI C)
188AC_CACHE_VAL(am_cv_prog_cc_stdc,
189[am_cv_prog_cc_stdc=no
190ac_save_CC="$CC"
191# Don't try gcc -ansi; that turns off useful extensions and
192# breaks some systems' header files.
193# AIX -qlanglvl=ansi
194# Ultrix and OSF/1 -std1
195# HP-UX -Aa -D_HPUX_SOURCE
196# SVR4 -Xc -D__EXTENSIONS__
197for ac_arg in "" -qlanglvl=ansi -std1 "-Aa -D_HPUX_SOURCE" "-Xc -D__EXTENSIONS__"
198do
199 CC="$ac_save_CC $ac_arg"
200 AC_TRY_COMPILE(
201[#include <stdarg.h>
202#include <stdio.h>
203#include <sys/types.h>
204#include <sys/stat.h>
205/* Most of the following tests are stolen from RCS 5.7's src/conf.sh. */
206struct buf { int x; };
207FILE * (*rcsopen) (struct buf *, struct stat *, int);
208static char *e (p, i)
209 char **p;
210 int i;
211{
212 return p[i];
213}
214static char *f (char * (*g) (char **, int), char **p, ...)
215{
216 char *s;
217 va_list v;
218 va_start (v,p);
219 s = g (p, va_arg (v,int));
220 va_end (v);
221 return s;
222}
223int test (int i, double x);
224struct s1 {int (*f) (int a);};
225struct s2 {int (*f) (double a);};
226int pairnames (int, char **, FILE *(*)(struct buf *, struct stat *, int), int, int);
227int argc;
228char **argv;
229], [
230return f (e, argv, 0) != argv[0] || f (e, argv, 1) != argv[1];
231],
232[am_cv_prog_cc_stdc="$ac_arg"; break])
233done
234CC="$ac_save_CC"
235])
236if test -z "$am_cv_prog_cc_stdc"; then
237 AC_MSG_RESULT([none needed])
238else
239 AC_MSG_RESULT($am_cv_prog_cc_stdc)
240fi
241case "x$am_cv_prog_cc_stdc" in
242 x|xno) ;;
243 *) CC="$CC $am_cv_prog_cc_stdc" ;;
244esac
245])
246