Split rank_one_type_parm_complex from rank_one_type
[deliverable/binutils-gdb.git] / gdb / acinclude.m4
... / ...
CommitLineData
1dnl written by Rob Savoye <rob@cygnus.com> for Cygnus Support
2dnl major rewriting for Tcl 7.5 by Don Libes <libes@nist.gov>
3
4# Keep these includes in sync with the aclocal_m4_deps list in
5# Makefile.in.
6
7sinclude(acx_configure_dir.m4)
8
9# This gets GDB_AC_LIBMCHECK.
10sinclude(libmcheck.m4)
11
12# This gets GDB_AC_TRANSFORM.
13sinclude(transform.m4)
14
15# This gets AM_GDB_WARNINGS.
16sinclude(warning.m4)
17
18# AM_GDB_UBSAN
19sinclude(sanitize.m4)
20
21# This gets GDB_AC_SELFTEST.
22sinclude(selftest.m4)
23
24dnl gdb/configure.in uses BFD_NEED_DECLARATION, so get its definition.
25sinclude(../bfd/bfd.m4)
26
27dnl This gets the standard macros.
28sinclude(../config/acinclude.m4)
29
30dnl This gets AC_PLUGINS, needed by ACX_LARGEFILE.
31sinclude(../config/plugins.m4)
32
33dnl For ACX_LARGEFILE.
34sinclude(../config/largefile.m4)
35
36dnl For AM_SET_LEADING_DOT.
37sinclude(../config/lead-dot.m4)
38
39dnl This gets autoconf bugfixes.
40sinclude(../config/override.m4)
41
42dnl For ZW_GNU_GETTEXT_SISTER_DIR.
43sinclude(../config/gettext-sister.m4)
44
45dnl For AC_LIB_HAVE_LINKFLAGS.
46sinclude(../config/lib-ld.m4)
47sinclude(../config/lib-prefix.m4)
48sinclude(../config/lib-link.m4)
49
50dnl For ACX_PKGVERSION and ACX_BUGURL.
51sinclude(../config/acx.m4)
52
53dnl for TCL definitions
54sinclude(../config/tcl.m4)
55
56dnl For dependency tracking macros.
57sinclude([../config/depstand.m4])
58
59dnl For AM_LC_MESSAGES
60sinclude([../config/lcmessage.m4])
61
62dnl For AM_LANGINFO_CODESET.
63sinclude([../config/codeset.m4])
64
65sinclude([../config/iconv.m4])
66
67sinclude([../config/zlib.m4])
68
69m4_include([common/common.m4])
70
71dnl For libiberty_INIT.
72m4_include(libiberty.m4)
73
74dnl For GDB_AC_PTRACE.
75m4_include(ptrace.m4)
76
77m4_include(ax_cxx_compile_stdcxx.m4)
78
79## ----------------------------------------- ##
80## ANSIfy the C compiler whenever possible. ##
81## From Franc,ois Pinard ##
82## ----------------------------------------- ##
83
84# Copyright (C) 1996-2019 Free Software Foundation, Inc.
85
86# This program is free software; you can redistribute it and/or modify
87# it under the terms of the GNU General Public License as published by
88# the Free Software Foundation; either version 2, or (at your option)
89# any later version.
90
91# This program is distributed in the hope that it will be useful,
92# but WITHOUT ANY WARRANTY; without even the implied warranty of
93# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
94# GNU General Public License for more details.
95
96# You should have received a copy of the GNU General Public License
97# along with this program; if not, see <http://www.gnu.org/licenses/>.
98
99# serial 1
100
101# @defmac AC_PROG_CC_STDC
102# @maindex PROG_CC_STDC
103# @ovindex CC
104# If the C compiler in not in ANSI C mode by default, try to add an option
105# to output variable @code{CC} to make it so. This macro tries various
106# options that select ANSI C on some system or another. It considers the
107# compiler to be in ANSI C mode if it handles function prototypes correctly.
108#
109# If you use this macro, you should check after calling it whether the C
110# compiler has been set to accept ANSI C; if not, the shell variable
111# @code{am_cv_prog_cc_stdc} is set to @samp{no}. If you wrote your source
112# code in ANSI C, you can make an un-ANSIfied copy of it by using the
113# program @code{ansi2knr}, which comes with Ghostscript.
114# @end defmac
115
116AC_DEFUN([AM_PROG_CC_STDC],
117[AC_REQUIRE([AC_PROG_CC])
118AC_BEFORE([$0], [AC_C_INLINE])
119AC_BEFORE([$0], [AC_C_CONST])
120dnl Force this before AC_PROG_CPP. Some cpp's, eg on HPUX, require
121dnl a magic option to avoid problems with ANSI preprocessor commands
122dnl like #elif.
123dnl FIXME: can't do this because then AC_AIX won't work due to a
124dnl circular dependency.
125dnl AC_BEFORE([$0], [AC_PROG_CPP])
126AC_MSG_CHECKING([for ${CC-cc} option to accept ANSI C])
127AC_CACHE_VAL(am_cv_prog_cc_stdc,
128[am_cv_prog_cc_stdc=no
129ac_save_CC="$CC"
130# Don't try gcc -ansi; that turns off useful extensions and
131# breaks some systems' header files.
132# AIX -qlanglvl=ansi
133# Ultrix and OSF/1 -std1
134# HP-UX 10.20 and later -Ae
135# HP-UX older versions -Aa -D_HPUX_SOURCE
136# SVR4 -Xc -D__EXTENSIONS__
137for ac_arg in "" -qlanglvl=ansi -std1 -Ae "-Aa -D_HPUX_SOURCE" "-Xc -D__EXTENSIONS__"
138do
139 CC="$ac_save_CC $ac_arg"
140 AC_TRY_COMPILE(
141[#include <stdarg.h>
142#include <stdio.h>
143#include <sys/types.h>
144#include <sys/stat.h>
145/* Most of the following tests are stolen from RCS 5.7's src/conf.sh. */
146struct buf { int x; };
147FILE * (*rcsopen) (struct buf *, struct stat *, int);
148static char *e (p, i)
149 char **p;
150 int i;
151{
152 return p[i];
153}
154static char *f (char * (*g) (char **, int), char **p, ...)
155{
156 char *s;
157 va_list v;
158 va_start (v,p);
159 s = g (p, va_arg (v,int));
160 va_end (v);
161 return s;
162}
163int test (int i, double x);
164struct s1 {int (*f) (int a);};
165struct s2 {int (*f) (double a);};
166int pairnames (int, char **, FILE *(*)(struct buf *, struct stat *, int), int, int);
167int argc;
168char **argv;
169], [
170return f (e, argv, 0) != argv[0] || f (e, argv, 1) != argv[1];
171],
172[am_cv_prog_cc_stdc="$ac_arg"; break])
173done
174CC="$ac_save_CC"
175])
176if test -z "$am_cv_prog_cc_stdc"; then
177 AC_MSG_RESULT([none needed])
178else
179 AC_MSG_RESULT([$am_cv_prog_cc_stdc])
180fi
181case "x$am_cv_prog_cc_stdc" in
182 x|xno) ;;
183 *) CC="$CC $am_cv_prog_cc_stdc" ;;
184esac
185])
186
187dnl written by Guido Draheim <guidod@gmx.de>, original by Alexandre Oliva
188dnl Version 1.3 (2001/03/02)
189dnl source http://www.gnu.org/software/ac-archive/Miscellaneous/ac_define_dir.html
190
191AC_DEFUN([AC_DEFINE_DIR], [
192 test "x$prefix" = xNONE && prefix="$ac_default_prefix"
193 test "x$exec_prefix" = xNONE && exec_prefix='${prefix}'
194 ac_define_dir=`eval echo [$]$2`
195 ac_define_dir=`eval echo [$]ac_define_dir`
196 ifelse($3, ,
197 AC_DEFINE_UNQUOTED($1, "$ac_define_dir"),
198 AC_DEFINE_UNQUOTED($1, "$ac_define_dir", $3))
199])
200
201dnl See whether we need a declaration for a function.
202dnl The result is highly dependent on the INCLUDES passed in, so make sure
203dnl to use a different cache variable name in this macro if it is invoked
204dnl in a different context somewhere else.
205dnl gcc_AC_CHECK_DECL(SYMBOL,
206dnl [ACTION-IF-FOUND [, ACTION-IF-NOT-FOUND [, INCLUDES]]])
207AC_DEFUN([gcc_AC_CHECK_DECL],
208[AC_MSG_CHECKING([whether $1 is declared])
209AC_CACHE_VAL(gcc_cv_have_decl_$1,
210[AC_TRY_COMPILE([$4],
211[#ifndef $1
212char *(*pfn) = (char *(*)) $1 ;
213#endif], eval "gcc_cv_have_decl_$1=yes", eval "gcc_cv_have_decl_$1=no")])
214if eval "test \"`echo '$gcc_cv_have_decl_'$1`\" = yes"; then
215 AC_MSG_RESULT(yes) ; ifelse([$2], , :, [$2])
216else
217 AC_MSG_RESULT(no) ; ifelse([$3], , :, [$3])
218fi
219])dnl
220
221dnl Check multiple functions to see whether each needs a declaration.
222dnl Arrange to define HAVE_DECL_<FUNCTION> to 0 or 1 as appropriate.
223dnl gcc_AC_CHECK_DECLS(SYMBOLS,
224dnl [ACTION-IF-NEEDED [, ACTION-IF-NOT-NEEDED [, INCLUDES]]])
225AC_DEFUN([gcc_AC_CHECK_DECLS],
226[for ac_func in $1
227do
228changequote(, )dnl
229 ac_tr_decl=HAVE_DECL_`echo $ac_func | tr 'abcdefghijklmnopqrstuvwxyz' 'ABCDEFGHIJKLMNOPQRSTUVWXYZ'`
230changequote([, ])dnl
231gcc_AC_CHECK_DECL($ac_func,
232 [AC_DEFINE_UNQUOTED($ac_tr_decl, 1) $2],
233 [AC_DEFINE_UNQUOTED($ac_tr_decl, 0) $3],
234dnl It is possible that the include files passed in here are local headers
235dnl which supply a backup declaration for the relevant prototype based on
236dnl the definition of (or lack of) the HAVE_DECL_ macro. If so, this test
237dnl will always return success. E.g. see libiberty.h's handling of
238dnl `basename'. To avoid this, we define the relevant HAVE_DECL_ macro to
239dnl 1 so that any local headers used do not provide their own prototype
240dnl during this test.
241#undef $ac_tr_decl
242#define $ac_tr_decl 1
243 $4
244)
245done
246dnl Automatically generate config.h entries via autoheader.
247if test x = y ; then
248 patsubst(translit([$1], [a-z], [A-Z]), [\w+],
249 [AC_DEFINE([HAVE_DECL_\&], 1,
250 [Define to 1 if we found this declaration otherwise define to 0.])])dnl
251fi
252])
253
254dnl Find the location of the private Tcl headers
255dnl When Tcl is installed, this is TCL_INCLUDE_SPEC/tcl-private/generic
256dnl When Tcl is in the build tree, this is not needed.
257dnl
258dnl Note: you must use first use SC_LOAD_TCLCONFIG!
259AC_DEFUN([CY_AC_TCL_PRIVATE_HEADERS], [
260 AC_MSG_CHECKING([for Tcl private headers])
261 private_dir=""
262 dir=`echo ${TCL_INCLUDE_SPEC}/tcl-private/generic | sed -e s/-I//`
263 if test -f ${dir}/tclInt.h ; then
264 private_dir=${dir}
265 fi
266
267 if test x"${private_dir}" = x; then
268 AC_ERROR(could not find private Tcl headers)
269 else
270 TCL_PRIVATE_INCLUDE="-I${private_dir}"
271 AC_MSG_RESULT(${private_dir})
272 fi
273])
274
275dnl Find the location of the private Tk headers
276dnl When Tk is installed, this is TK_INCLUDE_SPEC/tk-private/generic
277dnl When Tk is in the build tree, this not needed.
278dnl
279dnl Note: you must first use SC_LOAD_TKCONFIG
280AC_DEFUN([CY_AC_TK_PRIVATE_HEADERS], [
281 AC_MSG_CHECKING([for Tk private headers])
282 private_dir=""
283 dir=`echo ${TK_INCLUDE_SPEC}/tk-private/generic | sed -e s/-I//`
284 if test -f ${dir}/tkInt.h; then
285 private_dir=${dir}
286 fi
287
288 if test x"${private_dir}" = x; then
289 AC_ERROR(could not find Tk private headers)
290 else
291 TK_PRIVATE_INCLUDE="-I${private_dir}"
292 AC_MSG_RESULT(${private_dir})
293 fi
294])
295
296dnl GDB_AC_DEFINE_RELOCATABLE([VARIABLE], [ARG-NAME], [SHELL-VARIABLE])
297dnl For use in processing directory values for --with-foo.
298dnl If the path in SHELL_VARIABLE is relative to the prefix, then the
299dnl result is relocatable, then this will define the C macro
300dnl VARIABLE_RELOCATABLE to 1; otherwise it is defined as 0.
301AC_DEFUN([GDB_AC_DEFINE_RELOCATABLE], [
302 if test "x$exec_prefix" = xNONE || test "x$exec_prefix" = 'x${prefix}'; then
303 if test "x$prefix" = xNONE; then
304 test_prefix=/usr/local
305 else
306 test_prefix=$prefix
307 fi
308 else
309 test_prefix=$exec_prefix
310 fi
311 value=0
312 case [$3] in
313 "${test_prefix}"|"${test_prefix}/"*|\
314 '${exec_prefix}'|'${exec_prefix}/'*)
315 value=1
316 ;;
317 esac
318 AC_DEFINE_UNQUOTED([$1]_RELOCATABLE, $value, [Define if the $2 directory should be relocated when GDB is moved.])
319])
320
321dnl GDB_AC_WITH_DIR([VARIABLE], [ARG-NAME], [HELP], [DEFAULT])
322dnl Add a new --with option that defines a directory.
323dnl The result is stored in VARIABLE. AC_DEFINE_DIR is called
324dnl on this variable, as is AC_SUBST.
325dnl ARG-NAME is the base name of the argument (without "--with").
326dnl HELP is the help text to use.
327dnl If the user's choice is relative to the prefix, then the
328dnl result is relocatable, then this will define the C macro
329dnl VARIABLE_RELOCATABLE to 1; otherwise it is defined as 0.
330dnl DEFAULT is the default value, which is used if the user
331dnl does not specify the argument.
332AC_DEFUN([GDB_AC_WITH_DIR], [
333 AC_ARG_WITH([$2], AS_HELP_STRING([--with-][$2][=PATH], [$3]), [
334 [$1]=$withval], [[$1]=[$4]])
335 AC_DEFINE_DIR([$1], [$1], [$3])
336 AC_SUBST([$1])
337 GDB_AC_DEFINE_RELOCATABLE([$1], [$2], ${ac_define_dir})
338 ])
339
340dnl GDB_AC_CHECK_BFD([MESSAGE], [CV], [CODE], [HEADER])
341dnl Check whether BFD provides a feature.
342dnl MESSAGE is the "checking" message to display.
343dnl CV is the name of the cache variable where the result is stored.
344dnl The result will be "yes" or "no".
345dnl CODE is some code to compile that checks for the feature.
346dnl A link test is run.
347dnl HEADER is the name of an extra BFD header to include.
348AC_DEFUN([GDB_AC_CHECK_BFD], [
349 OLD_CFLAGS=$CFLAGS
350 OLD_LDFLAGS=$LDFLAGS
351 OLD_LIBS=$LIBS
352 # Put the old CFLAGS/LDFLAGS last, in case the user's (C|LD)FLAGS
353 # points somewhere with bfd, with -I/foo/lib and -L/foo/lib. We
354 # always want our bfd.
355 CFLAGS="-I${srcdir}/../include -I../bfd -I${srcdir}/../bfd $CFLAGS"
356 ZLIBDIR=`echo $zlibdir | sed 's,\$(top_builddir)/,,g'`
357 LDFLAGS="-L../bfd -L../libiberty $ZLIBDIR $LDFLAGS"
358 intl=`echo $LIBINTL | sed 's,${top_builddir}/,,g'`
359 LIBS="-lbfd -liberty -lz $intl $LIBS"
360 AC_CACHE_CHECK([$1], [$2],
361 [AC_TRY_LINK(
362 [#include <stdlib.h>
363 #include "bfd.h"
364 #include "$4"
365 ],
366 [return $3;], [[$2]=yes], [[$2]=no])])
367 CFLAGS=$OLD_CFLAGS
368 LDFLAGS=$OLD_LDFLAGS
369 LIBS=$OLD_LIBS])
370
371dnl GDB_GUILE_PROGRAM_NAMES([PKG-CONFIG], [VERSION])
372dnl
373dnl Define and substitute 'GUILD' to contain the absolute file name of
374dnl the 'guild' command for VERSION, using PKG-CONFIG. (This is
375dnl similar to Guile's 'GUILE_PROGS' macro.)
376AC_DEFUN([GDB_GUILE_PROGRAM_NAMES], [
377 AC_CACHE_CHECK([for the absolute file name of the 'guild' command],
378 [ac_cv_guild_program_name],
379 [ac_cv_guild_program_name="`$1 --variable guild $2`"
380
381 # In Guile up to 2.0.11 included, guile-2.0.pc would not define
382 # the 'guild' and 'bindir' variables. In that case, try to guess
383 # what the program name is, at the risk of getting it wrong if
384 # Guile was configured with '--program-suffix' or similar.
385 if test "x$ac_cv_guild_program_name" = "x"; then
386 guile_exec_prefix="`$1 --variable exec_prefix $2`"
387 ac_cv_guild_program_name="$guile_exec_prefix/bin/guild"
388 fi
389 ])
390
391 if ! "$ac_cv_guild_program_name" --version >&AS_MESSAGE_LOG_FD 2>&AS_MESSAGE_LOG_FD; then
392 AC_MSG_ERROR(['$ac_cv_guild_program_name' appears to be unusable])
393 fi
394
395 GUILD="$ac_cv_guild_program_name"
396 AC_SUBST([GUILD])
397])
398
399dnl GDB_GUILD_TARGET_FLAG
400dnl
401dnl Compute the value of GUILD_TARGET_FLAG.
402dnl For native builds this is empty.
403dnl For cross builds this is --target=<host>.
404AC_DEFUN([GDB_GUILD_TARGET_FLAG], [
405 if test "$cross_compiling" = no; then
406 GUILD_TARGET_FLAG=
407 else
408 GUILD_TARGET_FLAG="--target=$host"
409 fi
410 AC_SUBST(GUILD_TARGET_FLAG)
411])
412
413dnl GDB_TRY_GUILD([SRC-FILE])
414dnl
415dnl We precompile the .scm files and install them with gdb, so make sure
416dnl guild works for this host.
417dnl The .scm files are precompiled for several reasons:
418dnl 1) To silence Guile during gdb startup (Guile's auto-compilation output
419dnl is unnecessarily verbose).
420dnl 2) Make gdb developers see compilation errors/warnings during the build,
421dnl and not leave it to later when the user runs gdb.
422dnl 3) As a convenience for the user, so that one copy of the files is built
423dnl instead of one copy per user.
424dnl
425dnl Make sure guild can handle this host by trying to compile SRC-FILE, and
426dnl setting ac_cv_guild_ok to yes or no.
427dnl Note that guild can handle cross-compilation.
428dnl It could happen that guild can't handle the host, but guile would still
429dnl work. For the time being we're conservative, and if guild doesn't work
430dnl we punt.
431AC_DEFUN([GDB_TRY_GUILD], [
432 AC_REQUIRE([GDB_GUILD_TARGET_FLAG])
433 AC_CACHE_CHECK([whether guild supports this host],
434 [ac_cv_guild_ok],
435 [echo "$ac_cv_guild_program_name compile $GUILD_TARGET_FLAG -o conftest.go $1" >&AS_MESSAGE_LOG_FD
436 if "$ac_cv_guild_program_name" compile $GUILD_TARGET_FLAG -o conftest.go "$1" >&AS_MESSAGE_LOG_FD 2>&AS_MESSAGE_LOG_FD; then
437 ac_cv_guild_ok=yes
438 else
439 ac_cv_guild_ok=no
440 fi])
441])
This page took 0.023364 seconds and 4 git commands to generate.