]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - contrib/bmake/configure.in
Update capsicum-test to git commit 7707222b46abe52d18fd4fbb76115ffdb3e6f74b
[FreeBSD/FreeBSD.git] / contrib / bmake / configure.in
1 dnl
2 dnl RCSid:
3 dnl     $Id: configure.in,v 1.70 2021/02/01 18:29:26 sjg Exp $
4 dnl
5 dnl Process this file with autoconf to produce a configure script
6 dnl
7 AC_PREREQ(2.50)
8 AC_INIT([bmake], [20210201], [sjg@NetBSD.org])
9 AC_CONFIG_HEADERS(config.h)
10
11 dnl make srcdir absolute
12 case "$srcdir" in
13 /*) ;;
14 *) srcdir=`cd $srcdir && pwd`;;
15 esac
16
17 dnl get _MAKE_VERSION
18 . $srcdir/VERSION
19 OS=`uname -s`
20
21 dnl
22 AC_ARG_WITH(defshell,
23 [  --with-defshell=SHELL  use SHELL by default - must be sh compatible, use sh or ksh to pick the internal definitions],
24 [case "${withval}" in
25 yes)   AC_MSG_ERROR(bad value ${withval} given for bmake DEFSHELL) ;;
26 no)    ;;
27 *)     case "$with_defshell" in
28        sh)  DEFSHELL_INDEX=DEFSHELL_INDEX_SH;;  # it's the default anyway
29        ksh) DEFSHELL_INDEX=DEFSHELL_INDEX_KSH;;
30        csh) DEFSHELL_INDEX=DEFSHELL_INDEX_CSH;; # kidding right?
31        *)   defshell_path=$with_defshell;;      # better be sh compatible!
32        esac
33        ;;
34        esac])
35 dnl
36 case "$OS" in
37 CYGWIN*|MINGW*) use_makefile=no;;
38 *) use_makefile=yes;;
39 esac
40 AC_ARG_WITH(makefile,
41 [  --without-makefile disable use of generated makefile],
42 [case "${withval}" in
43 yes|no) use_makefile=${withval};;
44 *) AC_MSG_ERROR(bad value ${withval} given for makefile) ;;
45 esac])
46 dnl
47 use_meta=yes
48 AC_ARG_WITH(meta,
49 [  --without-meta disable use of meta-mode],
50 [case "${withval}" in
51 yes|no) use_meta=${withval};;
52 *) AC_MSG_ERROR(bad value ${withval} given for meta) ;;
53 esac])
54 dnl
55 AC_ARG_WITH(filemon,
56 [  --with-filemon={no,dev,ktrace,path/filemon.h} indicate filemon method for meta-mode. Path to filemon.h implies dev],
57 [ case "/${withval}" in
58 /no) use_filemon=no;;
59 /*trace) filemon_h=no use_filemon="${withval}";;
60 */filemon.h) filemon_h="${withval}";;
61 */filemon*) filemon_h="${withval}/filemon.h";;
62 *) AC_MSG_ERROR(bad value ${withval} given for filemon) ;;
63 esac
64 case "$use_filemon,$filemon_h" in
65 ,*.h) use_filemon=dev;;
66 esac
67 ],
68 [
69 case "$OS" in
70 NetBSD) filemon_h=no use_filemon=ktrace;;
71 *)
72     for d in "/usr/include/dev/filemon" "$prefix/include/dev/filemon" "$srcdir/../../sys/dev/filemon"
73     do  
74         for x in "/$OS" ""
75         do
76             filemon_h="$d$x/filemon.h"
77             test -s "$filemon_h" && break
78         done
79         test -s "$filemon_h" && { use_filemon=dev; break; }
80     done
81     ;;
82 esac
83 use_filemon=${use_filemon:-no}
84 case "$use_filemon" in
85 dev) ;;
86 *) filemon_h=no;;
87 esac
88 ])
89 dnl echo "Note: use_meta=$use_meta use_filemon=$use_filemon filemon_h=$filemon_h" >&6
90 case "$use_meta" in
91 yes)
92         case "$use_filemon" in
93         no) ;;
94         *) echo "Using: filemon_${use_filemon}.c" >&6;;
95         esac
96         ;;
97 esac
98 dnl
99 dnl Check for OS problems
100 dnl Solaris's signal.h only privides sigset_t etc if one of
101 dnl _EXTENSIONS_ _POSIX_C_SOURCE or _XOPEN_SOURCE are defined.
102 dnl The later two seem to cause more problems than they solve so if we
103 dnl see _EXTENSIONS_ we use it.
104 AC_USE_SYSTEM_EXTENSIONS
105 dnl Checks for programs.
106 AC_PROG_CC
107 AC_PROG_CC_C99
108 dnl AC_PROG_GCC_TRADITIONAL
109 AC_PROG_INSTALL
110 dnl Executable suffix - normally empty; .exe on os2.
111 AC_SUBST(ac_exe_suffix)dnl
112 dnl
113 dnl Hurd refuses to define PATH_MAX or MAXPATHLEN
114 if test -x /usr/bin/getconf; then
115    bmake_path_max=`getconf PATH_MAX / 2> /dev/null`
116    # only a numeric response is useful
117    test ${bmake_path_max:-0} -gt 0 2> /dev/null || bmake_path_max=
118 fi
119 bmake_path_max=${bmake_path_max:-1024}
120 if test $bmake_path_max -gt 1024; then
121    # this is all we expect
122    bmake_path_max=1024
123 fi
124 echo "Using: BMAKE_PATH_MAX=$bmake_path_max" >&6
125 AC_SUBST(bmake_path_max)dnl
126 dnl
127 dnl AC_C_CROSS
128 dnl
129
130 dnl Checks for header files.
131 AC_HEADER_SYS_WAIT
132 AC_HEADER_DIRENT
133 dnl Keep this list sorted
134 AC_CHECK_HEADERS(sys/param.h)
135 dnl On BSDi at least we really need sys/param.h for sys/sysctl.h
136 AC_CHECK_HEADERS([sys/sysctl.h], [], [],
137 [#ifdef HAVE_SYS_PARAM_H
138 # include <sys/param.h>
139 # endif
140 ])
141
142 AC_CHECK_HEADERS( \
143         ar.h \
144         err.h \
145         fcntl.h \
146         libgen.h \
147         limits.h \
148         paths.h \
149         poll.h \
150         ranlib.h \
151         sys/mman.h \
152         sys/select.h \
153         sys/socket.h \
154         sys/time.h \
155         sys/uio.h \
156         utime.h \
157         )
158
159 dnl Both *BSD and Linux have sys/cdefs.h, most do not.
160 dnl If it is missing, we add -I${srcdir}/missing to CFLAGS
161 dnl also if sys/cdefs.h does not have __RCSID we need to use ours
162 dnl but we need to include the host's one too *sigh*
163 AC_CHECK_HEADER(sys/cdefs.h,
164 echo $ECHO_N "checking whether sys/cdefs.h is compatible... $ECHO_C" >&6
165 AC_EGREP_CPP(yes,
166 [#include <sys/cdefs.h>
167 #ifdef __RCSID
168 yes
169 #endif
170 ],
171 echo yes  >&6,
172 echo no  >&6; CPPFLAGS="${CPPFLAGS} -I`cd ${srcdir}/missing && pwd` -DNEED_HOST_CDEFS_H"),
173 CPPFLAGS="${CPPFLAGS} -I`cd ${srcdir}/missing && pwd`")
174
175 dnl Checks for typedefs, structures, and compiler characteristics.
176 AC_C___ATTRIBUTE__
177 AC_C_BIGENDIAN
178 AC_C_CONST
179 AC_TYPE_MODE_T
180 AC_TYPE_OFF_T
181 AC_TYPE_PID_T
182 AC_TYPE_SIZE_T
183 AC_TYPE_UINT32_T
184 AC_DECL_SYS_SIGLIST
185 AC_HEADER_TIME
186 AC_STRUCT_TM
187
188 dnl we need sig_atomic_t
189 AH_TEMPLATE([sig_atomic_t],[type that signal handlers can safely frob])
190 AC_CHECK_TYPE(sig_atomic_t,,[
191 AC_DEFINE([sig_atomic_t],[int],)
192 ],[
193 #ifdef HAVE_SYS_TYPES_H
194 #include <sys/types.h>
195 #endif
196 #include <signal.h>
197 ])
198
199 dnl Checks for library functions.
200 AC_TYPE_SIGNAL
201 AC_FUNC_VFORK
202 AC_FUNC_VPRINTF
203 AC_FUNC_WAIT3
204 dnl Keep this list sorted
205 AC_CHECK_FUNCS( \
206         err \
207         errx \
208         getcwd \
209         getenv \
210         getopt \
211         getwd \
212         killpg \
213         mmap \
214         putenv \
215         select \
216         setenv \
217         setpgid \
218         setsid \
219         sigaction \
220         sigvec \
221         snprintf \
222         strerror \
223         strftime \
224         strsep \
225         strtod \
226         strtol \
227         sysctl \
228         unsetenv \
229         vsnprintf \
230         wait3 \
231         wait4 \
232         waitpid \
233         warn \
234         warnx \
235         )
236
237 dnl functions which we may need to provide
238 AC_REPLACE_FUNCS( \
239         realpath \
240         dirname \
241         stresep \
242         strlcpy \
243         )
244
245 AC_CHECK_LIB([util], [emalloc],
246     [ AC_CHECK_LIB([util], [erealloc],
247       [ AC_CHECK_LIB([util], [estrdup],
248         [ AC_CHECK_LIB([util], [estrndup],
249           [ LIBS="$LIBS -lutil"
250             CPPFLAGS="$CPPFLAGS -DUSE_EMALLOC" ])])])])
251
252 dnl
253 dnl Structures
254 dnl
255 AC_HEADER_STAT
256 AC_STRUCT_ST_RDEV
257 dnl
258 echo "checking if compiler supports __func__" >&6
259 AC_LANG(C)
260 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([],[[const char *func = __func__;]])],,
261         AC_DEFINE(__func__, __FUNCTION__, C99 function name))
262 dnl
263 dnl we want this for unit-tests/Makefile
264 echo $ECHO_N "checking if diff -u works... $ECHO_C" >&6
265 if diff -u /dev/null /dev/null > /dev/null 2>&1; then
266    diff_u=-u
267    echo yes >&6
268 else
269    diff_u=
270    echo no >&6
271 fi
272 dnl
273 dnl AC_* don't quite cut it.
274 dnl 
275 echo "checking for MACHINE & MACHINE_ARCH..." >&6
276 cat > conftest.$ac_ext <<EOF
277 #include "confdefs.h"
278 #include <sys/param.h>
279 #ifdef MACHINE
280 machine=MACHINE
281 #endif
282 #ifdef MACHINE_ARCH
283 machine_arch=MACHINE_ARCH
284 #endif
285 EOF
286
287 default_machine=`(eval "$ac_cpp conftest.$ac_ext") 2>&5 | 
288         egrep machine= | tr -d ' "'`
289 rm -rf conftest*
290 if test "$default_machine"; then
291         eval "$default_machine"
292 fi
293 machine=${machine:-`$srcdir/machine.sh`}
294 machine_arch=${machine_arch:-`$srcdir/machine.sh arch`}
295 echo "defaults: MACHINE=$machine, MACHINE_ARCH=$machine_arch" 1>&6
296 dnl
297 dnl now allow overrides
298 dnl
299 AC_ARG_WITH(machine,
300 [  --with-machine=MACHINE  explicitly set MACHINE],
301 [case "${withval}" in
302 yes)   AC_MSG_ERROR(bad value ${withval} given for bmake MACHINE) ;;
303 no)    ;;
304 generic) machine=`$srcdir/machine.sh`;;
305 *)     machine=$with_machine;;
306 esac])
307 force_machine=
308 AC_ARG_WITH(force_machine,
309 [  --with-force-machine=MACHINE  set FORCE_MACHINE],
310 [case "${withval}" in
311 yes)   force_machine=FORCE_;;
312 no)    ;;
313 *)     force_machine=FORCE_; machine=$with_force_machine;;
314 esac])
315 dnl
316 force_machine_arch=
317 AC_ARG_WITH(force_machine_arch,
318 [  --with-force-machine-arch=MACHINE  set FORCE_MACHINE_ARCH],
319 [case "${withval}" in
320 yes)   force_machine_arch=FORCE_;;
321 no)    ;;
322 *)     force_machine_arch=FORCE_; machine_arch=$with_force_machine_arch;;
323 esac])
324 dnl
325 AC_ARG_WITH(machine_arch,
326 [  --with-machine_arch=MACHINE_ARCH  explicitly set MACHINE_ARCH],
327 [case "${withval}" in
328 yes)   AC_MSG_ERROR(bad value ${withval} given for bmake MACHINE_ARCH) ;;
329 no)    ;;
330 *)     machine_arch=$with_machine_arch;;
331 esac])
332 dnl
333 dnl Tell them what we ended up with
334 dnl
335 echo "Using: ${force_machine}MACHINE=$machine, ${force_machine_arch}MACHINE_ARCH=$machine_arch" 1>&6
336 dnl
337 dnl Allow folk to control _PATH_DEFSYSPATH
338 dnl
339 default_sys_path=\${prefix}/share/mk
340 AC_ARG_WITH(default-sys-path,
341 [  --with-default-sys-path=PATH:DIR:LIST  use an explicit _PATH_DEFSYSPATH
342         MAKESYSPATH is a ':' separated list of directories 
343         that bmake will search for system .mk files. 
344         _PATH_DEFSYSPATH is its default value.],
345 [case "${withval}" in
346 yes)    AC_MSG_ERROR(bad value ${withval} given for bmake _PATH_DEFSYSPATH) ;;
347 no)     ;;
348 *)      default_sys_path="$with_default_sys_path"
349         ;;
350 esac])
351 dnl
352 dnl Some folk don't like this one
353 dnl
354 AC_ARG_WITH(path-objdirprefix,
355 [  --with-path-objdirprefix=PATH  override _PATH_OBJDIRPREFIX],
356 [case "${withval}" in
357 yes)   AC_MSG_ERROR(bad value ${withval} given for bmake _PATH_OBJDIRPREFIX) ;;
358 no)    CPPFLAGS="$CPPFLAGS -DNO_PATH_OBJDIRPREFIX" ;;
359 *)     CPPFLAGS="$CPPFLAGS \"-D_PATH_OBJDIRPREFIX=\\\"$with_path-objdir\\\"\"" ;;
360 esac])
361 dnl
362 dnl And this can be handy to do with out.
363 dnl
364 AC_ARG_ENABLE(pwd-override,
365 [  --disable-pwd-override  disable $PWD overriding getcwd()],
366 [case "${enableval}" in
367 yes)   ;;
368 no)    CPPFLAGS="$CPPFLAGS -DNO_PWD_OVERRIDE" ;;
369 *)     AC_MSG_ERROR(bad value ${enableval} given for pwd-override option) ;;
370 esac])
371 dnl
372 dnl Just for grins
373 dnl
374 AC_ARG_ENABLE(check-make-chdir,
375 [  --disable-check-make-chdir disable make trying to guess 
376         when it should automatically cd ${.CURDIR}],
377 [case "${enableval}" in
378 yes)   ;;
379 no)    CPPFLAGS="$CPPFLAGS -DNO_CHECK_MAKE_CHDIR" ;;
380 *)     AC_MSG_ERROR(bad value ${enableval} given for check-make-chdir option) ;;
381 esac])
382 dnl
383 dnl On non-BSD systems, bootstrap won't work without mk
384 dnl
385 AC_ARG_WITH(mksrc,
386 [  --with-mksrc=PATH tell makefile.boot where to find mk src],
387 [case "${withval}" in
388 ""|yes|no) ;;
389 *) test -s $withval/install-mk && mksrc=$withval ||
390 AC_MSG_ERROR(bad value ${withval} given for mksrc cannot find install-mk)
391 ;;
392 esac
393 ])
394 dnl
395 dnl Now make sure we have a value
396 dnl
397 srcdir=`cd $srcdir && pwd`
398 for mksrc in $mksrc $srcdir/mk $srcdir/../mk mk
399 do
400         test -s $mksrc/install-mk || continue
401         mksrc=`cd $mksrc && pwd`
402         break
403 done
404 mksrc=`echo $mksrc | sed "s,$srcdir,\\\${srcdir},"`
405 echo "Using: MKSRC=$mksrc" 1>&6
406 dnl On some systems we want a different default shell by default
407 if test -x /usr/xpg4/bin/sh; then
408         defshell_path=${defshell_path:-/usr/xpg4/bin/sh}
409 fi
410 if test -n "$defshell_path"; then
411         echo "Using: SHELL=$defshell_path"  >&6
412         AC_DEFINE_UNQUOTED(DEFSHELL_CUSTOM, "$defshell_path", Path of default shell)
413 fi
414 if test -n "$DEFSHELL_INDEX"; then
415        AC_DEFINE_UNQUOTED(DEFSHELL_INDEX, $DEFSHELL_INDEX, Shell spec to use by default)
416 fi        
417 dnl
418 AC_SUBST(machine)
419 AC_SUBST(force_machine)
420 AC_SUBST(machine_arch)
421 AC_SUBST(force_machine_arch)
422 AC_SUBST(mksrc)
423 AC_SUBST(default_sys_path)
424 AC_SUBST(INSTALL)
425 AC_SUBST(GCC)
426 AC_SUBST(diff_u)
427 AC_SUBST(use_meta)
428 AC_SUBST(use_filemon)
429 AC_SUBST(filemon_h)
430 AC_SUBST(_MAKE_VERSION)
431 bm_outfiles="Makefile.config unit-tests/Makefile.config make-bootstrap.sh"
432 if test $use_makefile = yes; then
433    bm_outfiles="makefile $bm_outfiles"
434 fi
435 AC_OUTPUT($bm_outfiles)
436 cat <<EOF
437
438 You can now run
439
440         sh ./make-bootstrap.sh
441
442 to produce a fully functional bmake.
443
444 EOF