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