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