]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - gdb/acinclude.m4
PR guile/17146 preparatory work.
[thirdparty/binutils-gdb.git] / gdb / acinclude.m4
CommitLineData
c906108c
SS
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
7d928dac
PA
4# Keep these includes in sync with the aclocal_m4_deps list in
5# Makefile.in.
6
c971b7fa
PA
7sinclude(acx_configure_dir.m4)
8
17ef446e
PA
9# This gets GDB_AC_LIBMCHECK.
10sinclude(libmcheck.m4)
11
c906108c 12dnl gdb/configure.in uses BFD_NEED_DECLARATION, so get its definition.
85981d60 13sinclude(../bfd/bfd.m4)
c906108c 14
7d928dac 15dnl This gets the standard macros.
c906108c
SS
16sinclude(../config/acinclude.m4)
17
7d928dac
PA
18dnl This gets AC_PLUGINS, needed by ACX_LARGEFILE.
19sinclude(../config/plugins.m4)
20
21dnl For ACX_LARGEFILE.
22sinclude(../config/largefile.m4)
23
24dnl For AM_SET_LEADING_DOT.
25sinclude(../config/lead-dot.m4)
26
27dnl This gets autoconf bugfixes.
fdc59709
PB
28sinclude(../config/override.m4)
29
7d928dac 30dnl For ZW_GNU_GETTEXT_SISTER_DIR.
20e95c23 31sinclude(../config/gettext-sister.m4)
85981d60 32
7fa2210b
DJ
33dnl For AC_LIB_HAVE_LINKFLAGS.
34sinclude(../config/lib-ld.m4)
35sinclude(../config/lib-prefix.m4)
36sinclude(../config/lib-link.m4)
37
c16158bc
JM
38dnl For ACX_PKGVERSION and ACX_BUGURL.
39sinclude(../config/acx.m4)
40
5062cc19
KS
41dnl for TCL definitions
42sinclude(../config/tcl.m4)
43
a417dc56
RW
44dnl For dependency tracking macros.
45sinclude([../config/depstand.m4])
46
a8111142
TT
47dnl For AM_LC_MESSAGES
48sinclude([../config/lcmessage.m4])
49
6c7a06a3
TT
50dnl For AM_LANGINFO_CODESET.
51sinclude([../config/codeset.m4])
52
b040ad30
JB
53sinclude([../config/zlib.m4])
54
3266f10b
TT
55m4_include([common/common.m4])
56
56157b4a
AC
57## ----------------------------------------- ##
58## ANSIfy the C compiler whenever possible. ##
59## From Franc,ois Pinard ##
60## ----------------------------------------- ##
61
ecd75fc8 62# Copyright (C) 1996-2014 Free Software Foundation, Inc.
56157b4a
AC
63
64# This program is free software; you can redistribute it and/or modify
65# it under the terms of the GNU General Public License as published by
66# the Free Software Foundation; either version 2, or (at your option)
67# any later version.
68
69# This program is distributed in the hope that it will be useful,
70# but WITHOUT ANY WARRANTY; without even the implied warranty of
71# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
72# GNU General Public License for more details.
73
74# You should have received a copy of the GNU General Public License
7785b880 75# along with this program; if not, see <http://www.gnu.org/licenses/>.
56157b4a
AC
76
77# serial 1
78
79# @defmac AC_PROG_CC_STDC
80# @maindex PROG_CC_STDC
81# @ovindex CC
82# If the C compiler in not in ANSI C mode by default, try to add an option
83# to output variable @code{CC} to make it so. This macro tries various
84# options that select ANSI C on some system or another. It considers the
85# compiler to be in ANSI C mode if it handles function prototypes correctly.
86#
87# If you use this macro, you should check after calling it whether the C
88# compiler has been set to accept ANSI C; if not, the shell variable
89# @code{am_cv_prog_cc_stdc} is set to @samp{no}. If you wrote your source
90# code in ANSI C, you can make an un-ANSIfied copy of it by using the
91# program @code{ansi2knr}, which comes with Ghostscript.
92# @end defmac
93
94AC_DEFUN([AM_PROG_CC_STDC],
95[AC_REQUIRE([AC_PROG_CC])
96AC_BEFORE([$0], [AC_C_INLINE])
97AC_BEFORE([$0], [AC_C_CONST])
98dnl Force this before AC_PROG_CPP. Some cpp's, eg on HPUX, require
99dnl a magic option to avoid problems with ANSI preprocessor commands
100dnl like #elif.
101dnl FIXME: can't do this because then AC_AIX won't work due to a
102dnl circular dependency.
103dnl AC_BEFORE([$0], [AC_PROG_CPP])
104AC_MSG_CHECKING([for ${CC-cc} option to accept ANSI C])
105AC_CACHE_VAL(am_cv_prog_cc_stdc,
106[am_cv_prog_cc_stdc=no
107ac_save_CC="$CC"
108# Don't try gcc -ansi; that turns off useful extensions and
109# breaks some systems' header files.
110# AIX -qlanglvl=ansi
111# Ultrix and OSF/1 -std1
112# HP-UX 10.20 and later -Ae
113# HP-UX older versions -Aa -D_HPUX_SOURCE
114# SVR4 -Xc -D__EXTENSIONS__
115for ac_arg in "" -qlanglvl=ansi -std1 -Ae "-Aa -D_HPUX_SOURCE" "-Xc -D__EXTENSIONS__"
116do
117 CC="$ac_save_CC $ac_arg"
118 AC_TRY_COMPILE(
119[#include <stdarg.h>
120#include <stdio.h>
121#include <sys/types.h>
122#include <sys/stat.h>
123/* Most of the following tests are stolen from RCS 5.7's src/conf.sh. */
124struct buf { int x; };
125FILE * (*rcsopen) (struct buf *, struct stat *, int);
126static char *e (p, i)
127 char **p;
128 int i;
129{
130 return p[i];
131}
132static char *f (char * (*g) (char **, int), char **p, ...)
133{
134 char *s;
135 va_list v;
136 va_start (v,p);
137 s = g (p, va_arg (v,int));
138 va_end (v);
139 return s;
140}
141int test (int i, double x);
142struct s1 {int (*f) (int a);};
143struct s2 {int (*f) (double a);};
144int pairnames (int, char **, FILE *(*)(struct buf *, struct stat *, int), int, int);
145int argc;
146char **argv;
147], [
148return f (e, argv, 0) != argv[0] || f (e, argv, 1) != argv[1];
149],
150[am_cv_prog_cc_stdc="$ac_arg"; break])
151done
152CC="$ac_save_CC"
153])
154if test -z "$am_cv_prog_cc_stdc"; then
155 AC_MSG_RESULT([none needed])
156else
157 AC_MSG_RESULT([$am_cv_prog_cc_stdc])
158fi
159case "x$am_cv_prog_cc_stdc" in
160 x|xno) ;;
161 *) CC="$CC $am_cv_prog_cc_stdc" ;;
162esac
163])
234b45d4 164
03b952fd
JB
165dnl Originally from Bruno Haible, but with some modifications
166dnl for the GDB project.
234b45d4
KB
167
168AC_DEFUN([AM_ICONV],
169[
170 dnl Some systems have iconv in libc, some have it in libiconv (OSF/1 and
171 dnl those with the standalone portable GNU libiconv installed).
172
173 AC_ARG_WITH([libiconv-prefix],
d2596e2e 174 AS_HELP_STRING([--with-libiconv-prefix=DIR], [search for libiconv in DIR/include and DIR/lib]), [
234b45d4 175 for dir in `echo "$withval" | tr : ' '`; do
94ae1714
TT
176 if test -d $dir/include; then LIBICONV_INCLUDE="-I$dir/include"; fi
177 if test -d $dir/lib; then LIBICONV_LIBDIR="-L$dir/lib"; fi
234b45d4
KB
178 done
179 ])
180
f18c4681 181 BUILD_LIBICONV_LIBDIRS="../libiconv/lib/.libs ../libiconv/lib/_libs"
6c7a06a3
TT
182 BUILD_LIBICONV_INCLUDE="-I../libiconv/include"
183
234b45d4
KB
184 AC_CACHE_CHECK(for iconv, am_cv_func_iconv, [
185 am_cv_func_iconv="no, consider installing GNU libiconv"
186 am_cv_lib_iconv=no
6c7a06a3 187 am_cv_use_build_libiconv=no
f0f20949 188 am_cv_build_libiconv_path=
94ae1714 189
4edb1e84
JB
190 # If libiconv is part of the build tree, then try using it over
191 # any system iconv.
192 if test -d ../libiconv; then
f18c4681
JB
193 for lib_dir in $BUILD_LIBICONV_LIBDIRS; do
194 am_save_LIBS="$LIBS"
195 am_save_CPPFLAGS="$CPPFLAGS"
196 LIBS="$LIBS $lib_dir/libiconv.a"
197 CPPFLAGS="$CPPFLAGS $BUILD_LIBICONV_INCLUDE"
198 AC_TRY_LINK([#include <stdlib.h>
234b45d4 199#include <iconv.h>],
f18c4681
JB
200 [iconv_t cd = iconv_open("","");
201 iconv(cd,NULL,NULL,NULL,NULL);
202 iconv_close(cd);],
203 am_cv_use_build_libiconv=yes
f0f20949 204 am_cv_build_libiconv_path=$lib_dir/libiconv.a
f18c4681
JB
205 am_cv_lib_iconv=yes
206 am_cv_func_iconv=yes)
207 LIBS="$am_save_LIBS"
208 CPPFLAGS="$am_save_CPPFLAGS"
209 if test "$am_cv_use_build_libiconv" = "yes"; then
f18c4681
JB
210 break
211 fi
212 done
234b45d4 213 fi
94ae1714 214
4edb1e84
JB
215 # Next, try to find iconv in libc.
216 if test "$am_cv_func_iconv" != yes; then
217 AC_TRY_LINK([#include <stdlib.h>
218#include <iconv.h>],
219 [iconv_t cd = iconv_open("","");
220 iconv(cd,NULL,NULL,NULL,NULL);
221 iconv_close(cd);],
222 am_cv_func_iconv=yes)
223 fi
224
225 # If iconv was not in libc, try -liconv. In this case, arrange to
226 # look in the libiconv prefix, if it was specified by the user.
227 if test "$am_cv_func_iconv" != yes; then
6c7a06a3 228 am_save_CPPFLAGS="$CPPFLAGS"
4edb1e84
JB
229 am_save_LIBS="$LIBS"
230 if test -n "$LIBICONV_INCLUDE"; then
231 CPPFLAGS="$CPPFLAGS $LIBICONV_INCLUDE"
232 LIBS="$LIBS $LIBICONV_LIBDIR"
233 fi
234 LIBS="$LIBS -liconv"
6c7a06a3
TT
235 AC_TRY_LINK([#include <stdlib.h>
236#include <iconv.h>],
237 [iconv_t cd = iconv_open("","");
238 iconv(cd,NULL,NULL,NULL,NULL);
239 iconv_close(cd);],
240 am_cv_lib_iconv=yes
241 am_cv_func_iconv=yes)
242 LIBS="$am_save_LIBS"
fc3b640d 243 CPPFLAGS="$am_save_CPPFLAGS"
6c7a06a3 244 fi
234b45d4 245 ])
94ae1714
TT
246
247 # Set the various flags based on the cache variables. We can't rely
248 # on the flags to remain set from the above code, due to caching.
fc3b640d
TT
249 LIBICONV=
250 if test "$am_cv_lib_iconv" = yes; then
251 LIBICONV="-liconv"
94ae1714
TT
252 else
253 LIBICONV_LIBDIR=
254 LIBICONV_INCLUDE=
fc3b640d
TT
255 fi
256 if test "$am_cv_use_build_libiconv" = yes; then
f0f20949 257 LIBICONV="$am_cv_build_libiconv_path"
f18c4681 258 LIBICONV_LIBDIR=""
fc3b640d
TT
259 LIBICONV_INCLUDE="$BUILD_LIBICONV_INCLUDE"
260 fi
261 CPPFLAGS="$CPPFLAGS $LIBICONV_INCLUDE"
262 LIBS="$LIBS $LIBICONV_LIBDIR $LIBICONV"
94ae1714 263
234b45d4
KB
264 if test "$am_cv_func_iconv" = yes; then
265 AC_DEFINE(HAVE_ICONV, 1, [Define if you have the iconv() function.])
266 AC_MSG_CHECKING([for iconv declaration])
267 AC_CACHE_VAL(am_cv_proto_iconv, [
268 AC_TRY_COMPILE([
269#include <stdlib.h>
270#include <iconv.h>
271extern
272#ifdef __cplusplus
273"C"
274#endif
275#if defined(__STDC__) || defined(__cplusplus)
276size_t iconv (iconv_t cd, char * *inbuf, size_t *inbytesleft, char * *outbuf, size_t *outbytesleft);
277#else
278size_t iconv();
279#endif
280], [], am_cv_proto_iconv_arg1="", am_cv_proto_iconv_arg1="const")
281 am_cv_proto_iconv="extern size_t iconv (iconv_t cd, $am_cv_proto_iconv_arg1 char * *inbuf, size_t *inbytesleft, char * *outbuf, size_t *outbytesleft);"])
282 am_cv_proto_iconv=`echo "[$]am_cv_proto_iconv" | tr -s ' ' | sed -e 's/( /(/'`
283 AC_MSG_RESULT([$]{ac_t:-
284 }[$]am_cv_proto_iconv)
285 AC_DEFINE_UNQUOTED(ICONV_CONST, $am_cv_proto_iconv_arg1,
286 [Define as const if the declaration of iconv() needs const.])
287 fi
234b45d4 288])
14abd0fb 289
5b5d99cf
JB
290dnl written by Guido Draheim <guidod@gmx.de>, original by Alexandre Oliva
291dnl Version 1.3 (2001/03/02)
292dnl source http://www.gnu.org/software/ac-archive/Miscellaneous/ac_define_dir.html
293
294AC_DEFUN([AC_DEFINE_DIR], [
295 test "x$prefix" = xNONE && prefix="$ac_default_prefix"
296 test "x$exec_prefix" = xNONE && exec_prefix='${prefix}'
297 ac_define_dir=`eval echo [$]$2`
298 ac_define_dir=`eval echo [$]ac_define_dir`
299 ifelse($3, ,
300 AC_DEFINE_UNQUOTED($1, "$ac_define_dir"),
301 AC_DEFINE_UNQUOTED($1, "$ac_define_dir", $3))
302])
303
b9362cc7
AC
304dnl See whether we need a declaration for a function.
305dnl The result is highly dependent on the INCLUDES passed in, so make sure
306dnl to use a different cache variable name in this macro if it is invoked
307dnl in a different context somewhere else.
308dnl gcc_AC_CHECK_DECL(SYMBOL,
309dnl [ACTION-IF-FOUND [, ACTION-IF-NOT-FOUND [, INCLUDES]]])
da78b0e7 310AC_DEFUN([gcc_AC_CHECK_DECL],
b9362cc7
AC
311[AC_MSG_CHECKING([whether $1 is declared])
312AC_CACHE_VAL(gcc_cv_have_decl_$1,
313[AC_TRY_COMPILE([$4],
314[#ifndef $1
315char *(*pfn) = (char *(*)) $1 ;
316#endif], eval "gcc_cv_have_decl_$1=yes", eval "gcc_cv_have_decl_$1=no")])
317if eval "test \"`echo '$gcc_cv_have_decl_'$1`\" = yes"; then
318 AC_MSG_RESULT(yes) ; ifelse([$2], , :, [$2])
319else
320 AC_MSG_RESULT(no) ; ifelse([$3], , :, [$3])
321fi
322])dnl
323
324dnl Check multiple functions to see whether each needs a declaration.
325dnl Arrange to define HAVE_DECL_<FUNCTION> to 0 or 1 as appropriate.
326dnl gcc_AC_CHECK_DECLS(SYMBOLS,
327dnl [ACTION-IF-NEEDED [, ACTION-IF-NOT-NEEDED [, INCLUDES]]])
da78b0e7 328AC_DEFUN([gcc_AC_CHECK_DECLS],
b9362cc7
AC
329[for ac_func in $1
330do
331changequote(, )dnl
332 ac_tr_decl=HAVE_DECL_`echo $ac_func | tr 'abcdefghijklmnopqrstuvwxyz' 'ABCDEFGHIJKLMNOPQRSTUVWXYZ'`
333changequote([, ])dnl
334gcc_AC_CHECK_DECL($ac_func,
335 [AC_DEFINE_UNQUOTED($ac_tr_decl, 1) $2],
336 [AC_DEFINE_UNQUOTED($ac_tr_decl, 0) $3],
337dnl It is possible that the include files passed in here are local headers
338dnl which supply a backup declaration for the relevant prototype based on
339dnl the definition of (or lack of) the HAVE_DECL_ macro. If so, this test
340dnl will always return success. E.g. see libiberty.h's handling of
341dnl `basename'. To avoid this, we define the relevant HAVE_DECL_ macro to
342dnl 1 so that any local headers used do not provide their own prototype
343dnl during this test.
344#undef $ac_tr_decl
345#define $ac_tr_decl 1
346 $4
347)
348done
349dnl Automatically generate config.h entries via autoheader.
350if test x = y ; then
351 patsubst(translit([$1], [a-z], [A-Z]), [\w+],
352 [AC_DEFINE([HAVE_DECL_\&], 1,
353 [Define to 1 if we found this declaration otherwise define to 0.])])dnl
354fi
355])
356
5062cc19
KS
357dnl Find the location of the private Tcl headers
358dnl When Tcl is installed, this is TCL_INCLUDE_SPEC/tcl-private/generic
359dnl When Tcl is in the build tree, this is not needed.
360dnl
361dnl Note: you must use first use SC_LOAD_TCLCONFIG!
362AC_DEFUN([CY_AC_TCL_PRIVATE_HEADERS], [
363 AC_MSG_CHECKING([for Tcl private headers])
364 private_dir=""
365 dir=`echo ${TCL_INCLUDE_SPEC}/tcl-private/generic | sed -e s/-I//`
366 if test -f ${dir}/tclInt.h ; then
367 private_dir=${dir}
368 fi
369
370 if test x"${private_dir}" = x; then
371 AC_ERROR(could not find private Tcl headers)
372 else
373 TCL_PRIVATE_INCLUDE="-I${private_dir}"
374 AC_MSG_RESULT(${private_dir})
375 fi
376])
377
378dnl Find the location of the private Tk headers
379dnl When Tk is installed, this is TK_INCLUDE_SPEC/tk-private/generic
380dnl When Tk is in the build tree, this not needed.
381dnl
382dnl Note: you must first use SC_LOAD_TKCONFIG
383AC_DEFUN([CY_AC_TK_PRIVATE_HEADERS], [
384 AC_MSG_CHECKING([for Tk private headers])
385 private_dir=""
386 dir=`echo ${TK_INCLUDE_SPEC}/tk-private/generic | sed -e s/-I//`
387 if test -f ${dir}/tkInt.h; then
388 private_dir=${dir}
389 fi
390
391 if test x"${private_dir}" = x; then
392 AC_ERROR(could not find Tk private headers)
393 else
394 TK_PRIVATE_INCLUDE="-I${private_dir}"
395 AC_MSG_RESULT(${private_dir})
396 fi
397])
b14b1491 398
0c4a4063
DE
399dnl GDB_AC_DEFINE_RELOCATABLE([VARIABLE], [ARG-NAME], [SHELL-VARIABLE])
400dnl For use in processing directory values for --with-foo.
401dnl If the path in SHELL_VARIABLE is relative to the prefix, then the
b14b1491
TT
402dnl result is relocatable, then this will define the C macro
403dnl VARIABLE_RELOCATABLE to 1; otherwise it is defined as 0.
0c4a4063 404AC_DEFUN([GDB_AC_DEFINE_RELOCATABLE], [
b14b1491
TT
405 if test "x$exec_prefix" = xNONE || test "x$exec_prefix" = 'x${prefix}'; then
406 if test "x$prefix" = xNONE; then
407 test_prefix=/usr/local
408 else
409 test_prefix=$prefix
410 fi
411 else
412 test_prefix=$exec_prefix
413 fi
414 value=0
0c4a4063 415 case [$3] in
b14b1491
TT
416 "${test_prefix}"|"${test_prefix}/"*|\
417 '${exec_prefix}'|'${exec_prefix}/'*)
418 value=1
419 ;;
420 esac
421 AC_DEFINE_UNQUOTED([$1]_RELOCATABLE, $value, [Define if the $2 directory should be relocated when GDB is moved.])
0c4a4063
DE
422])
423
424dnl GDB_AC_WITH_DIR([VARIABLE], [ARG-NAME], [HELP], [DEFAULT])
425dnl Add a new --with option that defines a directory.
426dnl The result is stored in VARIABLE. AC_DEFINE_DIR is called
427dnl on this variable, as is AC_SUBST.
428dnl ARG-NAME is the base name of the argument (without "--with").
429dnl HELP is the help text to use.
430dnl If the user's choice is relative to the prefix, then the
431dnl result is relocatable, then this will define the C macro
432dnl VARIABLE_RELOCATABLE to 1; otherwise it is defined as 0.
433dnl DEFAULT is the default value, which is used if the user
434dnl does not specify the argument.
435AC_DEFUN([GDB_AC_WITH_DIR], [
436 AC_ARG_WITH([$2], AS_HELP_STRING([--with-][$2][=PATH], [$3]), [
437 [$1]=$withval], [[$1]=[$4]])
438 AC_DEFINE_DIR([$1], [$1], [$3])
439 AC_SUBST([$1])
440 GDB_AC_DEFINE_RELOCATABLE([$1], [$2], ${ac_define_dir})
b14b1491 441 ])
def63ff0
TT
442
443dnl GDB_AC_CHECK_BFD([MESSAGE], [CV], [CODE], [HEADER])
444dnl Check whether BFD provides a feature.
445dnl MESSAGE is the "checking" message to display.
446dnl CV is the name of the cache variable where the result is stored.
447dnl The result will be "yes" or "no".
448dnl CODE is some code to compile that checks for the feature.
449dnl A link test is run.
450dnl HEADER is the name of an extra BFD header to include.
451AC_DEFUN([GDB_AC_CHECK_BFD], [
452 OLD_CFLAGS=$CFLAGS
453 OLD_LDFLAGS=$LDFLAGS
454 OLD_LIBS=$LIBS
455 # Put the old CFLAGS/LDFLAGS last, in case the user's (C|LD)FLAGS
456 # points somewhere with bfd, with -I/foo/lib and -L/foo/lib. We
457 # always want our bfd.
458 CFLAGS="-I${srcdir}/../include -I../bfd -I${srcdir}/../bfd $CFLAGS"
459 LDFLAGS="-L../bfd -L../libiberty $LDFLAGS"
460 intl=`echo $LIBINTL | sed 's,${top_builddir}/,,g'`
461 # -ldl is provided by bfd/Makfile.am (LIBDL) <PLUGINS>.
462 if test "$plugins" = "yes"; then
a48b32c0 463 AC_SEARCH_LIBS(dlopen, dl)
def63ff0
TT
464 fi
465 LIBS="-lbfd -liberty $intl $LIBS"
466 AC_CACHE_CHECK([$1], [$2],
467 [AC_TRY_LINK(
468 [#include <stdlib.h>
469 #include "bfd.h"
470 #include "$4"
471 ],
472 [return $3;], [[$2]=yes], [[$2]=no])])
473 CFLAGS=$OLD_CFLAGS
474 LDFLAGS=$OLD_LDFLAGS
475 LIBS=$OLD_LIBS])