*** empty log message ***
[deliverable/binutils-gdb.git] / gdb / configure.in
CommitLineData
c906108c 1dnl Autoconf configure script for GDB, the GNU debugger.
0f0cffd2 2dnl Copyright 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004
b6ba6518 3dnl Free Software Foundation, Inc.
c906108c
SS
4dnl
5dnl This file is part of GDB.
6dnl
7dnl This program is free software; you can redistribute it and/or modify
8dnl it under the terms of the GNU General Public License as published by
9dnl the Free Software Foundation; either version 2 of the License, or
10dnl (at your option) any later version.
11dnl
12dnl This program is distributed in the hope that it will be useful,
13dnl but WITHOUT ANY WARRANTY; without even the implied warranty of
14dnl MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15dnl GNU General Public License for more details.
16dnl
17dnl You should have received a copy of the GNU General Public License
18dnl along with this program; if not, write to the Free Software
19dnl Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
20
21dnl Process this file with autoconf to produce a configure script.
22
23AC_PREREQ(2.13)dnl
24AC_INIT(main.c)
25AC_CONFIG_HEADER(config.h:config.in)
413ccac7 26AM_MAINTAINER_MODE
c906108c
SS
27
28AC_PROG_CC
14abd0fb 29AC_GNU_SOURCE
c906108c
SS
30AC_AIX
31AC_ISC_POSIX
32AM_PROG_CC_STDC
33
34AC_CONFIG_AUX_DIR(`cd $srcdir;pwd`/..)
35AC_CANONICAL_SYSTEM
36
8bb2c122
MK
37# FIXME: kettenis/20030102: The AC_PROG_RANLIB from Autoconf 2.13
38# doesn't support cross-compilation, but the one from Autoconf 2.5x
39# does. Override RANLIB here (i.e. before running AC_PROG_RANLIB) to
40# deal with the lossage. Note that CY_GNU_GETTEXT currently calls
f6e85fc8 41# AC_PROG_RANLIB. This can be removed when we switch to Autoconf
8bb2c122
MK
42# 2.5x.
43AC_CHECK_TOOL(RANLIB, ranlib, :)
44
ddc9cd0f
AC
45dnl List of object files and targets accumulated by configure.
46
47CONFIG_OBS=
48CONFIG_DEPS=
49CONFIG_SRCS=
50ENABLE_CFLAGS=
51
52CONFIG_ALL=
53CONFIG_CLEAN=
54CONFIG_INSTALL=
55CONFIG_UNINSTALL=
56
0fbb3da7 57dnl Set up for gettext. PACKAGE is used when we call bindtextdomain.
ddc9cd0f 58
c906108c 59CY_GNU_GETTEXT
ddc9cd0f
AC
60
61localedir='${datadir}/locale'
62AC_SUBST(localedir)
63
64if test "x$POSUB" != x; then
65
66 dnl Lifted from GCC's config/gettext.m4.
67 AC_MSG_CHECKING(for catalogs to be installed)
68 # Look for .po and .gmo files in the source directory.
69 CATALOGS= AC_SUBST(CATALOGS)
70 XLINGUAS=
71 for cat in $srcdir/po/*.gmo $srcdir/po/*.po; do
72 # If there aren't any .gmo files the shell will give us the
73 # literal string "../path/to/srcdir/po/*.gmo" which has to be
74 # weeded out.
75 case "$cat" in *\**)
76 continue;;
77 esac
78 # The quadruple backslash is collapsed to a double backslash
79 # by the backticks, then collapsed again by the double quotes,
80 # leaving us with one backslash in the sed expression (right
81 # before the dot that mustn't act as a wildcard).
82 cat=`echo $cat | sed -e "s!$srcdir/!!" -e "s!\\\\.po!.gmo!"`
83 lang=`echo $cat | sed -e 's!po/!!' -e "s!\\\\.gmo!!"`
84 # The user is allowed to set LINGUAS to a list of languages to
85 # install catalogs for. If it's empty that means "all of them."
86 if test "x$LINGUAS" = x; then
87 CATALOGS="$CATALOGS $cat"
88 XLINGUAS="$XLINGUAS $lang"
89 else
90 case "$LINGUAS" in *$lang*)
91 CATALOGS="$CATALOGS $cat"
92 XLINGUAS="$XLINGUAS $lang"
93 ;;
94 esac
95 fi
96 done
97 LINGUAS="$XLINGUAS"
98 AC_MSG_RESULT($LINGUAS)
99
100 CONFIG_ALL="$CONFIG_ALL all-po"
101 CONFIG_CLEAN="$CONFIG_CLEAN clean-po"
102 CONFIG_INSTALL="$CONFIG_INSTALL install-po"
103 CONFIG_UNINSTALL="$CONFIG_UNINSTALL uninstall-po"
104fi
105
106PACKAGE=gdb
107AC_DEFINE_UNQUOTED(PACKAGE, "$PACKAGE", [Name of this package. ])
108AC_SUBST(PACKAGE)
0fbb3da7 109
5b5d99cf
JB
110debugdir=${libdir}/debug
111
112AC_ARG_WITH(separate-debug-dir,
113[ --with-separate-debug-dir=path Look for global separate debug info in this path [LIBDIR/debug]],
114[debugdir="${withval}"])
115
116AC_DEFINE_DIR(DEBUGDIR, debugdir,
117 [Global directory for separate debug files. ])
118#AC_DEFINE_UNQUOTED(DEBUGDIR, "$debugdir"),
c906108c 119
8dcde887
MK
120AC_CONFIG_SUBDIRS(doc testsuite)
121configdirs=
96baa820 122
27e9bf90 123. $srcdir/configure.host
c906108c 124
27e9bf90 125. $srcdir/configure.tgt
c906108c 126
27e9bf90
MK
127# Fetch the default architecture and default target vector from BFD.
128targ=$target; . $srcdir/../bfd/config.bfd
5c8cc331 129
27e9bf90
MK
130# We only want the first architecture, so strip off the others if
131# there is more than one.
132targ_archs=`echo $targ_archs | sed 's/ .*//'`
5c8cc331 133
27e9bf90
MK
134if test "x$targ_archs" != x; then
135 AC_DEFINE_UNQUOTED(DEFAULT_BFD_ARCH, $targ_archs,
136 [Define to BFD's default architecture. ])
1ba607ad 137fi
27e9bf90
MK
138if test "x$targ_defvec" != x; then
139 AC_DEFINE_UNQUOTED(DEFAULT_BFD_VEC, $targ_defvec,
140 [Define to BFD's default target vector. ])
1ba607ad
AC
141fi
142
8bb2c122
MK
143AC_ARG_PROGRAM
144
627af7ea
MK
145# The CLI cannot be disabled yet, but may be in the future.
146
147# Enable CLI.
148AC_ARG_ENABLE(gdbcli,
149[ --disable-gdbcli disable command-line interface (CLI)],
150 [case $enableval in
151 yes)
152 ;;
153 no)
154 AC_MSG_ERROR([the command-line interface cannot be disabled yet]) ;;
155 *)
156 AC_MSG_ERROR([bad value $enableval for --enable-gdbcli]) ;;
157 esac],
158 [enable_gdbcli=yes])
159if test x"$enable_gdbcli" = xyes; then
160 if test -d $srcdir/cli; then
161 CONFIG_OBS="$CONFIG_OBS \$(SUBDIR_CLI_OBS)"
162 CONFIG_DEPS="$CONFIG_DEPS \$(SUBDIR_CLI_DEPS)"
163 CONFIG_SRCS="$CONFIG_SRCS \$(SUBDIR_CLI_SRCS)"
627af7ea 164 ENABLE_CFLAGS="$ENABLE_CFLAGS \$(SUBDIR_CLI_CFLAGS)"
627af7ea
MK
165 fi
166fi
167
168# Enable MI.
169AC_ARG_ENABLE(gdbmi,
170[ --disable-gdbmi disable machine-interface (MI)],
171 [case $enableval in
172 yes | no)
173 ;;
174 *)
175 AC_MSG_ERROR([bad value $enableval for --enable-gdbmi]) ;;
176 esac],
177 [enable_gdbmi=yes])
178if test x"$enable_gdbmi" = xyes; then
179 if test -d $srcdir/mi; then
180 CONFIG_OBS="$CONFIG_OBS \$(SUBDIR_MI_OBS)"
181 CONFIG_DEPS="$CONFIG_DEPS \$(SUBDIR_MI_DEPS)"
182 CONFIG_SRCS="$CONFIG_SRCS \$(SUBDIR_MI_SRCS)"
627af7ea 183 ENABLE_CFLAGS="$ENABLE_CFLAGS \$(SUBDIR_MI_CFLAGS)"
627af7ea
MK
184 fi
185fi
186
287c1a40
MK
187# Enable TUI.
188AC_ARG_ENABLE(tui,
189[ --enable-tui enable full-screen terminal user interface (TUI)],
190 [case $enableval in
191 yes | no)
192 ;;
193 *)
194 AC_MSG_ERROR([bad value $enableval for --enable-tui]) ;;
c324d747 195 esac],enable_tui=yes)
287c1a40 196
8ee53726
MK
197# Enable gdbtk.
198AC_ARG_ENABLE(gdbtk,
d28f9cdf 199[ --enable-gdbtk enable gdbtk graphical user interface (GUI)],
8ee53726
MK
200 [case $enableval in
201 yes | no)
202 ;;
203 *)
204 AC_MSG_ERROR([bad value $enableval for --enable-gdbtk]) ;;
205 esac],
206 [if test -d $srcdir/gdbtk; then
207 enable_gdbtk=yes
208 else
209 enable_gdbtk=no
210 fi])
211# We unconditionally disable gdbtk tests on selected platforms.
212case $host_os in
213 go32* | windows*)
214 AC_MSG_WARN([gdbtk isn't supported on $host; disabling])
215 enable_gdbtk=no ;;
216esac
217
0e5d83e3
JJ
218# Libunwind support.
219AC_ARG_WITH(libunwind,
220[ --with-libunwind Use libunwind frame unwinding support],
221[case "${withval}" in
222 yes) enable_libunwind=yes ;;
223 no) enable_libunwind=no ;;
224 *) AC_MSG_ERROR(bad value ${withval} for GDB with-libunwind option) ;;
225esac],[
226 AC_CHECK_HEADERS(libunwind.h)
227 AC_CHECK_HEADERS(libunwind-ia64.h)
228 if test x"$ac_cv_header_libunwind_h" = xyes -a x"$ac_cv_header_libunwind_ia64_h" = xyes; then
229 enable_libunwind=yes;
230 fi
231])
232
233if test x"$enable_libunwind" = xyes; then
234 AC_CHECK_HEADERS(libunwind.h)
235 AC_CHECK_HEADERS(libunwind-ia64.h)
236 AC_DEFINE(HAVE_LIBUNWIND, 1)
237 CONFIG_OBS="$CONFIG_OBS libunwind-frame.o"
238 CONFIG_DEPS="$CONFIG_DEPS libunwind-frame.o"
239 CONFIG_SRCS="$CONFIG_SRCS libunwind-frame.c"
240fi
241
d28f9cdf
DJ
242# Profiling support.
243AC_ARG_ENABLE(profiling,
244[ --enable-profiling enable profiling of GDB],
245 [case $enableval in
246 yes | no)
247 ;;
248 *)
249 AC_MSG_ERROR([bad value $enableval for --enable-profile]) ;;
250 esac],
251 [enable_profiling=no])
252
d9feb4e7 253AC_CHECK_FUNCS(monstartup _mcleanup)
b0b1c2c0
MK
254AC_CACHE_CHECK([for _etext], ac_cv_var__etext,
255[AC_TRY_LINK(
256[#include <stdlib.h>
257extern char _etext;
258],
259[free (&_etext);], ac_cv_var__etext=yes, ac_cv_var__etext=no)])
260if test $ac_cv_var__etext = yes; then
261 AC_DEFINE(HAVE__ETEXT, 1,
262 [Define to 1 if your system has the _etext variable. ])
263fi
d28f9cdf 264if test "$enable_profiling" = yes ; then
d9feb4e7
DJ
265 if test $ac_cv_func_monstartup = no || test $ac_cv_func__mcleanup = no; then
266 AC_MSG_ERROR(--enable-profiling requires monstartup and _mcleanup)
267 fi
d28f9cdf
DJ
268 PROFILE_CFLAGS=-pg
269 OLD_CFLAGS="$CFLAGS"
270 CFLAGS="$CFLAGS $PROFILE_CFLAGS"
271
d9feb4e7
DJ
272 AC_CACHE_CHECK([whether $CC supports -pg], ac_cv_cc_supports_pg,
273 [AC_TRY_COMPILE([], [int x;], ac_cv_cc_supports_pg=yes,
274 ac_cv_cc_supports_pg=no)])
d28f9cdf 275
d9feb4e7
DJ
276 if test $ac_cv_cc_supports_pg = no; then
277 AC_MSG_ERROR(--enable-profiling requires a compiler which supports -pg)
278 fi
d28f9cdf
DJ
279
280 CFLAGS="$OLD_CFLAGS"
281fi
282
8bb2c122
MK
283# --------------------- #
284# Checks for programs. #
285# --------------------- #
286
7a292a7a 287AC_PROG_AWK
c906108c 288AC_PROG_INSTALL
8bb2c122
MK
289AC_PROG_LN_S
290AC_PROG_RANLIB
291AC_PROG_YACC
292
c906108c 293AC_CHECK_TOOL(AR, ar)
95ca63c4
CF
294AC_CHECK_TOOL(DLLTOOL, dlltool)
295AC_CHECK_TOOL(WINDRES, windres)
c906108c 296
8bb2c122 297# Needed for GNU/Hurd.
75c6e08a
MK
298AC_CHECK_TOOL(MIG, mig)
299
9a156167
MK
300# ---------------------- #
301# Checks for libraries. #
302# ---------------------- #
303
304# We might need to link with -lm; most simulators need it.
305AC_CHECK_LIB(m, main)
306
307# We need to link with -lw to get `wctype' on Solaris before Solaris
308# 2.6. Solaris 2.6 and beyond have this function in libc, and have a
309# libw that some versions of the GNU linker cannot hanle (GNU ld 2.9.1
310# is known to have this problem). Therefore we avoid libw if we can.
311AC_CHECK_FUNC(wctype, [],
312 [AC_CHECK_LIB(w, wctype)])
313
c890192f
MK
314# Some systems (e.g. Solaris) have `gethostbyname' in libnsl.
315AC_SEARCH_LIBS(gethostbyname, nsl)
316
9a156167
MK
317# Some systems (e.g. Solaris) have `socketpair' in libsocket.
318AC_SEARCH_LIBS(socketpair, socket)
319
4f0be353
MK
320# For the TUI, we need enhanced curses functionality.
321#
322# FIXME: kettenis/20040905: We prefer ncurses over the vendor-supplied
323# curses library because the latter might not provide all the
324# functionality we need. However, this leads to problems on systems
325# where the linker searches /usr/local/lib, but the compiler doesn't
326# search /usr/local/include, if ncurses is installed in /usr/local. A
327# default installation of ncurses on alpha*-dec-osf* will lead to such
328# a situation.
8b9cf735 329AC_SEARCH_LIBS(waddstr, [ncurses cursesX curses])
4f0be353 330
4f0be353
MK
331# Since GDB uses Readline, we need termcap functionality. In many
332# cases this will be provided by the curses library, but some systems
333# have a seperate termcap library, or no curses library at all.
287c1a40
MK
334
335case $host_os in
336 cygwin*)
337 if test -d $srcdir/libtermcap; then
338 LIBS="../libtermcap/libtermcap.a $LIBS"
339 ac_cv_search_tgetent="../libtermcap/libtermcap.a"
340 fi ;;
228a417c 341 go32* | *djgpp*)
287c1a40
MK
342 ac_cv_search_tgetent="none required"
343 ;;
287c1a40
MK
344esac
345
4f0be353
MK
346# These are the libraries checked by Readline.
347AC_SEARCH_LIBS(tgetent, [termcap tinfo curses ncurses])
287c1a40
MK
348
349if test "$ac_cv_search_tgetent" = no; then
350 AC_MSG_ERROR([no termcap library found])
351fi
352
5ee754fc
MK
353# ------------------------- #
354# Checks for header files. #
355# ------------------------- #
c906108c 356
9608ab8b 357AC_HEADER_DIRENT
5ee754fc 358AC_HEADER_STAT
c906108c 359AC_HEADER_STDC
5ee754fc 360AC_CHECK_HEADERS(link.h)
78434e59 361AC_CHECK_HEADERS(machine/reg.h)
5ee754fc
MK
362AC_CHECK_HEADERS(nlist.h)
363AC_CHECK_HEADERS(poll.h sys/poll.h)
a2f23071 364AC_CHECK_HEADERS(proc_service.h thread_db.h gnu/libc-version.h)
5ee754fc
MK
365AC_CHECK_HEADERS(stddef.h)
366AC_CHECK_HEADERS(stdlib.h)
367AC_CHECK_HEADERS(stdint.h)
368AC_CHECK_HEADERS(string.h memory.h strings.h)
369AC_CHECK_HEADERS(sys/fault.h)
370AC_CHECK_HEADERS(sys/file.h)
371AC_CHECK_HEADERS(sys/filio.h)
372AC_CHECK_HEADERS(sys/ioctl.h)
373AC_CHECK_HEADERS(sys/param.h)
374AC_CHECK_HEADERS(sys/proc.h)
375AC_CHECK_HEADERS(sys/procfs.h)
376AC_CHECK_HEADERS(sys/ptrace.h ptrace.h)
377AC_CHECK_HEADERS(sys/reg.h sys/debugreg.h)
378AC_CHECK_HEADERS(sys/select.h)
379AC_CHECK_HEADERS(sys/syscall.h)
086ec9eb 380AC_CHECK_HEADERS(sys/types.h)
5ee754fc
MK
381AC_CHECK_HEADERS(sys/user.h)
382AC_CHECK_HEADERS(sys/wait.h wait.h)
383AC_CHECK_HEADERS(termios.h termio.h sgtty.h)
384AC_CHECK_HEADERS(unistd.h)
385
b1d19a62 386# On Solaris 2.[789], we need to define _MSE_INT_H to avoid a clash
5ee754fc
MK
387# between <widec.h> and <wchar.h> that would cause AC_CHECK_HEADERS to
388# think that we don't have <curses.h> if we're using GCC.
389case $host_os in
b1d19a62 390 solaris2.[[789]])
5ee754fc
MK
391 if test "$GCC" = yes; then
392 AC_DEFINE(_MSE_INT_H, 1,
393 [[Define to 1 to avoid a clash between <widec.h> and <wchar.h> on
b1d19a62 394 Solaris 2.[789] when using GCC. ]])
5ee754fc
MK
395 fi ;;
396esac
3b78cdbb
DA
397AC_CHECK_HEADERS(curses.h cursesX.h ncurses.h ncurses/ncurses.h)
398AC_CHECK_HEADERS(ncurses/term.h term.h)
5ee754fc
MK
399
400# FIXME: kettenis/20030102: In most cases we include these
401# unconditionally, so what's the point in checking these?
402AC_CHECK_HEADERS(ctype.h time.h)
403
40a7debc
EZ
404dnl Check for struct stat with an st_blocks member
405AC_MSG_CHECKING(for member st_blocks in struct stat)
406AC_CACHE_VAL(gdb_cv_have_struct_stat_with_st_blocks_member,
407 [AC_TRY_COMPILE([#include <sys/types.h>
408#include <sys/stat.h>],
409 [struct stat st; (void) st.st_blocks;],
410 gdb_cv_have_struct_stat_with_st_blocks_member=yes,
411 gdb_cv_have_struct_stat_with_st_blocks_member=no)])
412AC_MSG_RESULT($gdb_cv_have_struct_stat_with_st_blocks_member)
413if test $gdb_cv_have_struct_stat_with_st_blocks_member = yes; then
414 AC_DEFINE(HAVE_STRUCT_STAT_ST_BLOCKS)
415fi
086ec9eb 416
b9362cc7
AC
417# ------------------------- #
418# Checks for declarations. #
419# ------------------------- #
420
421gcc_AC_CHECK_DECLS(getopt)
422
5ee754fc
MK
423# ------------------ #
424# Checks for types. #
425# ------------------ #
c906108c 426
5ee754fc
MK
427AC_TYPE_SIGNAL
428
429# ------------------------------------- #
430# Checks for compiler characteristics. #
431# ------------------------------------- #
c906108c
SS
432
433AC_C_CONST
bce58c09 434AC_C_INLINE
c906108c 435
5ee754fc
MK
436# ------------------------------ #
437# Checks for library functions. #
438# ------------------------------ #
439
c906108c 440AC_FUNC_ALLOCA
97bf5e38 441AC_FUNC_MMAP
46711df8 442AC_FUNC_VFORK
97bf5e38
MK
443AC_CHECK_FUNCS(canonicalize_file_name realpath)
444AC_CHECK_FUNCS(poll)
14abd0fb 445AC_CHECK_FUNCS(pread64)
97bf5e38
MK
446AC_CHECK_FUNCS(sbrk)
447AC_CHECK_FUNCS(setpgid setpgrp)
e1ea1d75 448AC_CHECK_FUNCS(sigaction sigprocmask sigsetmask)
97bf5e38 449AC_CHECK_FUNCS(socketpair)
b757528f 450AC_CHECK_FUNCS(syscall)
bcb3dc3d 451AC_CHECK_FUNCS(ttrace)
8b9cf735 452AC_CHECK_FUNCS(wborder)
97bf5e38 453
086ec9eb
MK
454# Check the return and argument types of ptrace. No canned test for
455# this, so roll our own.
456gdb_ptrace_headers='
457#if HAVE_SYS_TYPES_H
458# include <sys/types.h>
459#endif
460#if HAVE_SYS_PTRACE_H
461# include <sys/ptrace.h>
462#endif
463#if HAVE_UNISTD_H
464# include <unistd.h>
465#endif
466'
467# There is no point in checking if we don't have a prototype.
468gcc_AC_CHECK_DECLS(ptrace, , [
469 : ${gdb_cv_func_ptrace_ret='int'}
470 : ${gdb_cv_func_ptrace_args='int,int,long,long'}
471], $gdb_ptrace_headers)
472# Check return type.
473AC_CACHE_CHECK([return type of ptrace], gdb_cv_func_ptrace_ret,
474 AC_TRY_COMPILE($gdb_ptrace_headers,
5885ab49
MK
475 [extern int ptrace ();],
476 gdb_cv_func_ptrace_ret='int',
477 gdb_cv_func_ptrace_ret='long'))
086ec9eb
MK
478AC_DEFINE_UNQUOTED(PTRACE_TYPE_RET, $gdb_cv_func_ptrace_ret,
479 [Define as the return type of ptrace.])
480# Check argument types.
481AC_CACHE_CHECK([types of arguments for ptrace], gdb_cv_func_ptrace_args, [
482for gdb_arg1 in 'int' 'long'; do
483 for gdb_arg2 in 'pid_t' 'int' 'long'; do
484 for gdb_arg3 in 'int *' 'caddr_t' 'int' 'long'; do
485 for gdb_arg4 in 'int' 'long'; do
486 AC_TRY_COMPILE($gdb_ptrace_headers, [
487extern $gdb_cv_func_ptrace_ret
488 ptrace ($gdb_arg1, $gdb_arg2, $gdb_arg3, $gdb_arg4);
489], [gdb_cv_func_ptrace_args="$gdb_arg1,$gdb_arg2,$gdb_arg3,$gdb_arg4";
490 break 4;])
491 for gdb_arg5 in 'int *' 'int' 'long'; do
492 AC_TRY_COMPILE($gdb_ptrace_headers, [
493extern $gdb_cv_func_ptrace_ret
494 ptrace ($gdb_arg1, $gdb_arg2, $gdb_arg3, $gdb_arg4, $gdb_arg5);
495], [
496gdb_cv_func_ptrace_args="$gdb_arg1,$gdb_arg2,$gdb_arg3,$gdb_arg4,$gdb_arg5";
497 break 5;])
498 done
499 done
500 done
501 done
502done
503# Provide a safe default value.
504: ${gdb_cv_func_ptrace_args='int,int,long,long'}
505])
506ac_save_IFS=$IFS; IFS=','
507set dummy `echo "$gdb_cv_func_ptrace_args" | sed 's/\*/\*/g'`
508IFS=$ac_save_IFS
509shift
64218d3e 510AC_DEFINE_UNQUOTED(PTRACE_TYPE_ARG3, $[3],
086ec9eb
MK
511 [Define to the type of arg 3 for ptrace.])
512if test -n "$[5]"; then
64218d3e 513 AC_DEFINE_UNQUOTED(PTRACE_TYPE_ARG5, $[5],
086ec9eb
MK
514 [Define to the type of arg 5 for ptrace.])
515fi
516
72473524
DJ
517dnl AC_FUNC_SETPGRP does not work when cross compiling
518dnl Instead, assume we will have a prototype for setpgrp if cross compiling.
519if test "$cross_compiling" = no; then
520 AC_FUNC_SETPGRP
521else
522 AC_CACHE_CHECK([whether setpgrp takes no argument], ac_cv_func_setpgrp_void,
523 [AC_TRY_COMPILE([
524#include <unistd.h>
525], [
526 if (setpgrp(1,1) == -1)
527 exit (0);
528 else
529 exit (1);
530], ac_cv_func_setpgrp_void=no, ac_cv_func_setpgrp_void=yes)])
531if test $ac_cv_func_setpgrp_void = yes; then
532 AC_DEFINE(SETPGRP_VOID, 1)
533fi
534fi
c906108c 535
2b2d558c
MK
536# Check if sigsetjmp is available. Using AC_CHECK_FUNCS won't do
537# since sigsetjmp might only be defined as a macro.
538AC_CACHE_CHECK([for sigsetjmp], gdb_cv_func_sigsetjmp,
539[AC_TRY_COMPILE([
540#include <setjmp.h>
541], [sigjmp_buf env; while (! sigsetjmp (env, 1)) siglongjmp (env, 1);],
542gdb_cv_func_sigsetjmp=yes, gdb_cv_func_sigsetjmp=no)])
543if test $gdb_cv_func_sigsetjmp = yes; then
544 AC_DEFINE(HAVE_SIGSETJMP, 1, [Define if sigsetjmp is available. ])
545fi
546
06825bd1
MK
547# Assume we'll default to using the included libiberty regex.
548gdb_use_included_regex=yes
549
550# However, if the system regex is GNU regex, then default to *not*
551# using the included regex.
552AC_CACHE_CHECK(
553 [for GNU regex],
554 [gdb_cv_have_gnu_regex],
555 [AC_TRY_COMPILE(
556 [#include <gnu-versions.h>],
557 [#define REGEX_INTERFACE_VERSION 1
558#if _GNU_REGEX_INTERFACE_VERSION != REGEX_INTERFACE_VERSION
559# error "Version mismatch"
560#endif],
561 gdb_cv_have_gnu_regex=yes,
562 gdb_cv_have_gnu_regex=no)])
563if test $gdb_cv_have_gnu_regex = yes; then
564 gdb_use_included_regex=no
565fi
566
567AC_ARG_WITH(included-regex,
568 [ --without-included-regex don't use included regex; this is the default
569 on systems with version 2 of the GNU C library
570 (use with caution on other system)],
571 gdb_with_regex=$withval,
572 gdb_with_regex=$gdb_use_included_regex)
573if test "$gdb_with_regex" = yes; then
574 AC_DEFINE(USE_INCLUDED_REGEX, 1,
575 [Define to 1 if the regex included in libiberty should be used.])
576fi
577
70f9f479
MK
578# See if <sys/proc.h> defines `struct thread' with a td_pcb member.
579AC_CACHE_CHECK([for td_pcb in struct thread], gdb_cv_struct_thread_td_pcb,
d15be926
MK
580[AC_TRY_COMPILE([#include <sys/param.h>
581#include <sys/proc.h>], [struct thread td; td.td_pcb;],
70f9f479
MK
582gdb_cv_struct_thread_td_pcb=yes, gdb_cv_struct_thread_td_pcb=no)])
583if test $gdb_cv_struct_thread_td_pcb = yes; then
584 AC_DEFINE(HAVE_STRUCT_THREAD_TD_PCB, 1,
585 [Define to 1 if your system has td_pcb in struct thread.])
586fi
587
da7d81e3
NW
588# See if <sys/lwp.h> defines `struct lwp`.
589AC_CACHE_CHECK([for struct lwp], gdb_cv_struct_lwp,
590[AC_TRY_COMPILE([#include <sys/param.h>
591#include <sys/lwp.h>], [struct lwp l;],
592gdb_cv_struct_lwp=yes, gdb_cv_struct_lwp=no)])
593if test $gdb_cv_struct_lwp = yes; then
594 AC_DEFINE(HAVE_STRUCT_LWP, 1,
595 [Define to 1 if your system has struct lwp.])
596fi
597
78434e59
MK
598# See if <machine/reg.h> degines `struct reg'.
599AC_CACHE_CHECK([for struct reg in machine/reg.h], gdb_cv_struct_reg,
600[AC_TRY_COMPILE([#include <sys/types.h>
601#include <machine/reg.h>], [struct reg r;],
602gdb_cv_struct_reg=yes, gdb_cv_struct_reg=no)])
603if test $gdb_cv_struct_reg = yes; then
604 AC_DEFINE(HAVE_STRUCT_REG, 1,
605 [Define to 1 if your system has struct reg in <machine/reg.h>.])
606fi
607
0afdd437 608# See if <machine/reg.h> supports the %fs and %gs i386 segment registers.
7dfa765c 609# Older i386 BSD's don't have the r_fs and r_gs members of `struct reg'.
422ea4b8 610AC_CACHE_CHECK([for r_fs in struct reg], gdb_cv_struct_reg_r_fs,
7dfa765c 611[AC_TRY_COMPILE([#include <machine/reg.h>], [struct reg r; r.r_fs;],
422ea4b8
MK
612gdb_cv_struct_reg_r_fs=yes, gdb_cv_struct_reg_r_fs=no)])
613if test $gdb_cv_struct_reg_r_fs = yes; then
614 AC_DEFINE(HAVE_STRUCT_REG_R_FS)
7dfa765c 615fi
422ea4b8 616AC_CACHE_CHECK([for r_gs in struct reg], gdb_cv_struct_reg_r_gs,
7dfa765c 617[AC_TRY_COMPILE([#include <machine/reg.h>], [struct reg r; r.r_gs;],
422ea4b8
MK
618gdb_cv_struct_reg_r_gs=yes, gdb_cv_struct_reg_r_gs=no)])
619if test $gdb_cv_struct_reg_r_gs = yes; then
620 AC_DEFINE(HAVE_STRUCT_REG_R_GS)
7dfa765c
MK
621fi
622
0afdd437 623# See if <sys/ptrace.h> provides the PTRACE_GETREGS request.
f60300e7
MK
624AC_MSG_CHECKING(for PTRACE_GETREGS)
625AC_CACHE_VAL(gdb_cv_have_ptrace_getregs,
626[AC_TRY_COMPILE([#include <sys/ptrace.h>],
627 [PTRACE_GETREGS;],
628 [gdb_cv_have_ptrace_getregs=yes],
629 [gdb_cv_have_ptrace_getregs=no])])
630AC_MSG_RESULT($gdb_cv_have_ptrace_getregs)
631if test $gdb_cv_have_ptrace_getregs = yes; then
632 AC_DEFINE(HAVE_PTRACE_GETREGS)
633fi
634
0afdd437 635# See if <sys/ptrace.h> provides the PTRACE_GETFPXREGS request.
6ce2ac0b
MK
636AC_MSG_CHECKING(for PTRACE_GETFPXREGS)
637AC_CACHE_VAL(gdb_cv_have_ptrace_getfpxregs,
5c44784c 638[AC_TRY_COMPILE([#include <sys/ptrace.h>],
6ce2ac0b
MK
639 [PTRACE_GETFPXREGS;],
640 [gdb_cv_have_ptrace_getfpxregs=yes],
641 [gdb_cv_have_ptrace_getfpxregs=no])])
642AC_MSG_RESULT($gdb_cv_have_ptrace_getfpxregs)
643if test $gdb_cv_have_ptrace_getfpxregs = yes; then
644 AC_DEFINE(HAVE_PTRACE_GETFPXREGS)
5c44784c
JM
645fi
646
0afdd437
MK
647# See if <sys/ptrace.h> provides the PT_GETDBREGS request.
648AC_MSG_CHECKING(for PT_GETDBREGS)
649AC_CACHE_VAL(gdb_cv_have_pt_getdbregs,
650[AC_TRY_COMPILE([#include <sys/types.h>
651#include <sys/ptrace.h>],
652 [PT_GETDBREGS;],
653 [gdb_cv_have_pt_getdbregs=yes],
654 [gdb_cv_have_pt_getdbregs=no])])
655AC_MSG_RESULT($gdb_cv_have_pt_getdbregs)
656if test $gdb_cv_have_pt_getdbregs = yes; then
657 AC_DEFINE(HAVE_PT_GETDBREGS)
658fi
659
7e89e357
JT
660# See if <sys/ptrace.h> provides the PT_GETXMMREGS request.
661AC_MSG_CHECKING(for PT_GETXMMREGS)
662AC_CACHE_VAL(gdb_cv_have_pt_getxmmregs,
663[AC_TRY_COMPILE([#include <sys/types.h>
664#include <sys/ptrace.h>],
665 [PT_GETXMMREGS;],
666 [gdb_cv_have_pt_getxmmregs=yes],
667 [gdb_cv_have_pt_getxmmregs=no])])
668AC_MSG_RESULT($gdb_cv_have_pt_getxmmregs)
669if test $gdb_cv_have_pt_getxmmregs = yes; then
670 AC_DEFINE(HAVE_PT_GETXMMREGS)
671fi
672
27ca5dad
MC
673# See if stdint.h provides the uintptr_t type.
674# Autoconf 2.5X has an improved AC_CHECK_TYPE which will simplify this.
675AC_CACHE_CHECK([for uintptr_t in stdint.h], gdb_cv_have_uintptr_t,
676 [AC_TRY_COMPILE(
677 [#include <stdint.h>],
678 [uintptr_t foo = 0;],
679 gdb_cv_have_uintptr_t=yes,
680 gdb_cv_have_uintptr_t=no)])
27ca5dad
MC
681if test $gdb_cv_have_uintptr_t = yes; then
682 AC_DEFINE(HAVE_UINTPTR_T, 1, [Define if <stdint.h> provides the uintptr_t type.])
683fi
0afdd437 684
c906108c
SS
685BFD_NEED_DECLARATION(malloc)
686BFD_NEED_DECLARATION(realloc)
687BFD_NEED_DECLARATION(free)
688BFD_NEED_DECLARATION(strerror)
689BFD_NEED_DECLARATION(strdup)
b83266a0 690BFD_NEED_DECLARATION(strstr)
a4db0f07 691BFD_NEED_DECLARATION(canonicalize_file_name)
c906108c
SS
692
693# The following save_state_t checkery is only necessary for HPUX
694# versions earlier than 10.20. When those fade from memory, this
695# could be expunged. --jsm 1999-03-22
696
697AC_MSG_CHECKING(for HPUX save_state structure)
698AC_EGREP_HEADER(save_state_t, machine/save_state.h,
699 gdb_cv_hpux_savestate=yes, gdb_cv_hpux_savestate=no)
700AC_EGREP_HEADER(ss_wide, machine/save_state.h, gdb_cv_hpux_sswide=yes,
701 gdb_cv_hpux_sswide=no)
702if test $gdb_cv_hpux_savestate = yes
703then
704 AC_DEFINE(HAVE_STRUCT_SAVE_STATE_T, 1)
705fi
706if test $gdb_cv_hpux_sswide = yes
707then
708 AC_DEFINE(HAVE_STRUCT_MEMBER_SS_WIDE, 1)
709fi
710AC_MSG_RESULT($gdb_cv_hpux_sswide)
711
712
713# If we are configured native on GNU/Linux, work around problems with
714# sys/procfs.h
c3f6f71d 715# Also detect which type of /proc is in use, such as for Unixware or Solaris.
c906108c
SS
716
717if test "${target}" = "${host}"; then
718 case "${host}" in
719 i[[3456]]86-*-linux*)
720 AC_DEFINE(START_INFERIOR_TRAPS_EXPECTED,2)
721 AC_DEFINE(sys_quotactl)
722 ;;
596c9d4b
KB
723 ia64-*-aix*)
724 AC_DEFINE(NEW_PROC_API)
725 ;;
1045b512 726 *-*-unixware* | *-*-sysv4.2* | *-*-sysv5* | *-*-interix* )
c3f6f71d
JM
727 AC_DEFINE(NEW_PROC_API)
728 ;;
0bbc026e 729 *-*-solaris2.[[6789]] | *-*-solaris2.1[[0-9]])
c3f6f71d
JM
730 AC_DEFINE(NEW_PROC_API)
731 ;;
c960c18f
AC
732 mips-sgi-irix5*)
733 # Work around <sys/proc.h> needing _KMEMUSER problem on IRIX 5.
734 AC_DEFINE([_KMEMUSER], 1)
735 ;;
c906108c 736 esac
c906108c
SS
737fi
738
739if test "$ac_cv_header_sys_procfs_h" = yes; then
740 BFD_HAVE_SYS_PROCFS_TYPE(pstatus_t)
741 BFD_HAVE_SYS_PROCFS_TYPE(prrun_t)
742 BFD_HAVE_SYS_PROCFS_TYPE(gregset_t)
743 BFD_HAVE_SYS_PROCFS_TYPE(fpregset_t)
83d37ec8
MK
744 BFD_HAVE_SYS_PROCFS_TYPE(prgregset_t)
745 BFD_HAVE_SYS_PROCFS_TYPE(prfpregset_t)
23e04971
MS
746 BFD_HAVE_SYS_PROCFS_TYPE(prgregset32_t)
747 BFD_HAVE_SYS_PROCFS_TYPE(prfpregset32_t)
83d37ec8
MK
748 BFD_HAVE_SYS_PROCFS_TYPE(lwpid_t)
749 BFD_HAVE_SYS_PROCFS_TYPE(psaddr_t)
596c9d4b
KB
750 BFD_HAVE_SYS_PROCFS_TYPE(prsysent_t)
751 BFD_HAVE_SYS_PROCFS_TYPE(pr_sigset_t)
752 BFD_HAVE_SYS_PROCFS_TYPE(pr_sigaction64_t)
753 BFD_HAVE_SYS_PROCFS_TYPE(pr_siginfo64_t)
c906108c 754
23e04971 755
d84dd0c5
MK
756 dnl Check for broken prfpregset_t type
757
758 dnl For Linux/i386, glibc 2.1.3 was released with a bogus
759 dnl prfpregset_t type (it's a typedef for the pointer to a struct
760 dnl instead of the struct itself). We detect this here, and work
a3007b6f 761 dnl around it in gdb_proc_service.h.
d84dd0c5
MK
762
763 if test $bfd_cv_have_sys_procfs_type_prfpregset_t = yes; then
764 AC_MSG_CHECKING(whether prfpregset_t type is broken)
765 AC_CACHE_VAL(gdb_cv_prfpregset_t_broken,
766 [AC_TRY_RUN([#include <sys/procfs.h>
767 int main ()
768 {
769 if (sizeof (prfpregset_t) == sizeof (void *))
770 return 1;
771 return 0;
772 }],
773 gdb_cv_prfpregset_t_broken=no,
774 gdb_cv_prfpregset_t_broken=yes,
775 gdb_cv_prfpregset_t_broken=yes)])
776 AC_MSG_RESULT($gdb_cv_prfpregset_t_broken)
777 if test $gdb_cv_prfpregset_t_broken = yes; then
778 AC_DEFINE(PRFPREGSET_T_BROKEN)
779 fi
780 fi
781
c906108c
SS
782 dnl Check for PIOCSET ioctl entry
783
784 AC_MSG_CHECKING(for PIOCSET ioctl entry in sys/procfs.h)
785 AC_CACHE_VAL(gdb_cv_have_procfs_piocset,
786 [AC_TRY_COMPILE([#include <unistd.h>
787#include <sys/types.h>
788#include <sys/procfs.h>
789], [
790 int dummy;;
791 dummy = ioctl(0, PIOCSET, &dummy);
792 ],
793 gdb_cv_have_procfs_piocset=yes, gdb_cv_have_procfs_piocset=no)])
794 AC_MSG_RESULT($gdb_cv_have_procfs_piocset)
795 if test $gdb_cv_have_procfs_piocset = yes; then
796 AC_DEFINE(HAVE_PROCFS_PIOCSET)
797 fi
798fi
799
d45fe813
KB
800dnl For native ports (host == target), check to see what kind of
801dnl legacy link.h support is needed. (See solib-legacy.c.)
802if test ${host} = ${target} ; then
803 dnl Check for struct link_map with l_ members which are indicative
804 dnl of SVR4-like shared libraries
805
806 AC_MSG_CHECKING(for member l_addr in struct link_map)
807 AC_CACHE_VAL(gdb_cv_have_struct_link_map_with_l_members,
808 [AC_TRY_COMPILE([#include <link.h>],
809 [struct link_map lm; (void) lm.l_addr;],
810 gdb_cv_have_struct_link_map_with_l_members=yes,
811 gdb_cv_have_struct_link_map_with_l_members=no)])
812 AC_MSG_RESULT($gdb_cv_have_struct_link_map_with_l_members)
813 if test $gdb_cv_have_struct_link_map_with_l_members = yes; then
814 AC_DEFINE(HAVE_STRUCT_LINK_MAP_WITH_L_MEMBERS)
815 fi
816
817 dnl Check for struct link_map with lm_ members which are indicative
818 dnl of SunOS-like shared libraries
819
820 AC_MSG_CHECKING(for member lm_addr in struct link_map)
821 AC_CACHE_VAL(gdb_cv_have_struct_link_map_with_lm_members,
822 [AC_TRY_COMPILE([#include <sys/types.h>
823#include <link.h>],
824 [struct link_map lm; (void) lm.lm_addr;],
825 gdb_cv_have_struct_link_map_with_lm_members=yes,
826 gdb_cv_have_struct_link_map_with_lm_members=no)])
827 AC_MSG_RESULT($gdb_cv_have_struct_link_map_with_lm_members)
828 if test $gdb_cv_have_struct_link_map_with_lm_members = yes; then
829 AC_DEFINE(HAVE_STRUCT_LINK_MAP_WITH_LM_MEMBERS)
830 fi
831
832 dnl Check for struct so_map with som_ members which are found on
833 dnl some *BSD systems.
834
835 AC_MSG_CHECKING(for member som_addr in struct so_map)
836 AC_CACHE_VAL(gdb_cv_have_struct_so_map_with_som_members,
837 [AC_TRY_COMPILE([#include <sys/types.h>
39812ceb
C
838#ifdef HAVE_NLIST_H
839#include <nlist.h>
840#endif
d45fe813
KB
841#include <link.h>],
842 [struct so_map lm; (void) lm.som_addr;],
843 gdb_cv_have_struct_so_map_with_som_members=yes,
844 gdb_cv_have_struct_so_map_with_som_members=no)])
845 AC_MSG_RESULT($gdb_cv_have_struct_so_map_with_som_members)
846 if test $gdb_cv_have_struct_so_map_with_som_members = yes; then
847 AC_DEFINE(HAVE_STRUCT_SO_MAP_WITH_SOM_MEMBERS)
848 fi
849
850 dnl Check for struct link_map32 type, which allows a 64-bit Solaris
851 dnl debugger to debug a 32-bit Solaris app with 32-bit shared libraries.
852
853 AC_MSG_CHECKING(for struct link_map32 in sys/link.h)
854 AC_CACHE_VAL(gdb_cv_have_struct_link_map32,
855 [AC_TRY_COMPILE([#define _SYSCALL32
856#include <sys/link.h>], [struct link_map32 l;],
857 gdb_cv_have_struct_link_map32=yes,
858 gdb_cv_have_struct_link_map32=no)])
859 AC_MSG_RESULT($gdb_cv_have_struct_link_map32)
860 if test $gdb_cv_have_struct_link_map32 = yes; then
861 AC_DEFINE(HAVE_STRUCT_LINK_MAP32)
943c9c25 862 AC_DEFINE(_SYSCALL32)
d45fe813
KB
863 fi
864fi
865
c906108c
SS
866dnl See if compiler supports "long long" type.
867
868AC_MSG_CHECKING(for long long support in compiler)
869AC_CACHE_VAL(gdb_cv_c_long_long,
870[AC_TRY_COMPILE(, [
871 extern long long foo;
872 switch (foo & 2) { case 0: return 1; }
873],
874gdb_cv_c_long_long=yes, gdb_cv_c_long_long=no)])
875AC_MSG_RESULT($gdb_cv_c_long_long)
876if test $gdb_cv_c_long_long = yes; then
877 AC_DEFINE(CC_HAS_LONG_LONG)
878fi
879
880dnl See if the compiler and runtime support printing long long
881
882AC_MSG_CHECKING(for long long support in printf)
883AC_CACHE_VAL(gdb_cv_printf_has_long_long,
884[AC_TRY_RUN([
885int main () {
886 char buf[32];
887 long long l = 0;
888 l = (l << 16) + 0x0123;
889 l = (l << 16) + 0x4567;
890 l = (l << 16) + 0x89ab;
891 l = (l << 16) + 0xcdef;
892 sprintf (buf, "0x%016llx", l);
893 return (strcmp ("0x0123456789abcdef", buf));
894}],
895gdb_cv_printf_has_long_long=yes,
896gdb_cv_printf_has_long_long=no,
897gdb_cv_printf_has_long_long=no)])
898if test $gdb_cv_printf_has_long_long = yes; then
899 AC_DEFINE(PRINTF_HAS_LONG_LONG)
900fi
901AC_MSG_RESULT($gdb_cv_printf_has_long_long)
902
903dnl See if compiler supports "long double" type. Can't use AC_C_LONG_DOUBLE
904dnl because autoconf complains about cross-compilation issues. However, this
905dnl code uses the same variables as the macro for compatibility.
906
907AC_MSG_CHECKING(for long double support in compiler)
908AC_CACHE_VAL(ac_cv_c_long_double,
909[AC_TRY_COMPILE(, [long double foo;],
910ac_cv_c_long_double=yes, ac_cv_c_long_double=no)])
911AC_MSG_RESULT($ac_cv_c_long_double)
912if test $ac_cv_c_long_double = yes; then
913 AC_DEFINE(HAVE_LONG_DOUBLE)
914fi
915
916dnl See if the compiler and runtime support printing long doubles
917
918AC_MSG_CHECKING(for long double support in printf)
919AC_CACHE_VAL(gdb_cv_printf_has_long_double,
920[AC_TRY_RUN([
921int main () {
922 char buf[16];
923 long double f = 3.141592653;
924 sprintf (buf, "%Lg", f);
925 return (strncmp ("3.14159", buf, 7));
926}],
927gdb_cv_printf_has_long_double=yes,
928gdb_cv_printf_has_long_double=no,
929gdb_cv_printf_has_long_double=no)])
930if test $gdb_cv_printf_has_long_double = yes; then
931 AC_DEFINE(PRINTF_HAS_LONG_DOUBLE)
932fi
933AC_MSG_RESULT($gdb_cv_printf_has_long_double)
934
935dnl See if the compiler and runtime support scanning long doubles
936
937AC_MSG_CHECKING(for long double support in scanf)
938AC_CACHE_VAL(gdb_cv_scanf_has_long_double,
939[AC_TRY_RUN([
940int main () {
941 char *buf = "3.141592653";
942 long double f = 0;
943 sscanf (buf, "%Lg", &f);
944 return !(f > 3.14159 && f < 3.14160);
945}],
946gdb_cv_scanf_has_long_double=yes,
947gdb_cv_scanf_has_long_double=no,
948gdb_cv_scanf_has_long_double=no)])
949if test $gdb_cv_scanf_has_long_double = yes; then
950 AC_DEFINE(SCANF_HAS_LONG_DOUBLE)
951fi
952AC_MSG_RESULT($gdb_cv_scanf_has_long_double)
953
438013df
AO
954case ${host_os} in
955aix*)
956 AC_CACHE_CHECK([for -bbigtoc option], [gdb_cv_bigtoc], [
957 SAVE_LDFLAGS=$LDFLAGS
958
959 case $GCC in
960 yes) gdb_cv_bigtoc=-Wl,-bbigtoc ;;
961 *) gdb_cv_bigtoc=-bbigtoc ;;
962 esac
963
964 LDFLAGS=$LDFLAGS\ $gdb_cv_bigtoc
965 AC_TRY_LINK([], [int i;], [], [gdb_cv_bigtoc=])
ec76baa5 966 LDFLAGS="${SAVE_LDFLAGS}"
438013df
AO
967 ])
968 CONFIG_LDFLAGS="${CONFIG_LDFLAGS} ${gdb_cv_bigtoc}"
969 ;;
970esac
971
c906108c 972
d92419e5
JB
973dnl For certain native configurations, we need to check whether thread
974dnl support can be built in or not.
975dnl
976dnl Note that we only want this if we are both native (host == target),
977dnl and not doing a canadian cross build (build == host).
c906108c
SS
978
979if test ${build} = ${host} -a ${host} = ${target} ; then
980 case ${host_os} in
981 hpux*)
982 AC_MSG_CHECKING(for HPUX/OSF thread support)
983 if test -f /usr/include/dce/cma_config.h ; then
984 if test "$GCC" = "yes" ; then
985 AC_MSG_RESULT(yes)
986 AC_DEFINE(HAVE_HPUX_THREAD_SUPPORT)
3483b318 987 CONFIG_OBS="${CONFIG_OBS} hpux-thread.o"
c906108c
SS
988 CONFIG_SRCS="${CONFIG_SRCS} hpux-thread.c"
989 else
990 AC_MSG_RESULT(no (suppressed because you are not using GCC))
991 fi
992 else
993 AC_MSG_RESULT(no)
994 fi
995 ;;
996 solaris*)
d92419e5
JB
997 # See if thread_db library is around for Solaris thread debugging.
998 # Note that we must explicitly test for version 1 of the library
999 # because version 0 (present on Solaris 2.4 or earlier) doesn't have
1000 # the same API.
c906108c
SS
1001 AC_MSG_CHECKING(for Solaris thread debugging library)
1002 if test -f /usr/lib/libthread_db.so.1 ; then
1003 AC_MSG_RESULT(yes)
1004 AC_DEFINE(HAVE_THREAD_DB_LIB)
3483b318 1005 CONFIG_OBS="${CONFIG_OBS} sol-thread.o"
c906108c
SS
1006 CONFIG_SRCS="${CONFIG_SRCS} sol-thread.c"
1007 AC_CHECK_LIB(dl, dlopen)
1008 if test "$GCC" = "yes" ; then
1009 # The GNU linker requires the -export-dynamic option to make
1010 # all symbols visible in the dynamic symbol table.
1011 hold_ldflags=$LDFLAGS
1012 AC_MSG_CHECKING(for the ld -export-dynamic flag)
1013 LDFLAGS="${LDFLAGS} -Wl,-export-dynamic"
1014 AC_TRY_LINK(, [int i;], found=yes, found=no)
1015 LDFLAGS=$hold_ldflags
1016 AC_MSG_RESULT($found)
1017 if test $found = yes; then
1018 CONFIG_LDFLAGS="${CONFIG_LDFLAGS} -Wl,-export-dynamic"
1019 fi
1020 fi
1021 # Sun randomly tweaked the prototypes in <proc_service.h>
1022 # at one point.
1023 AC_MSG_CHECKING(if <proc_service.h> is old)
1024 AC_CACHE_VAL(gdb_cv_proc_service_is_old,[
1025 AC_TRY_COMPILE([
1026 #include <proc_service.h>
1027 ps_err_e ps_pdwrite
1028 (struct ps_prochandle*, psaddr_t, const void*, size_t);
1029 ],, gdb_cv_proc_service_is_old=no,
1030 gdb_cv_proc_service_is_old=yes)
1031 ])
1032 AC_MSG_RESULT($gdb_cv_proc_service_is_old)
1033 if test $gdb_cv_proc_service_is_old = yes; then
1034 AC_DEFINE(PROC_SERVICE_IS_OLD)
1035 fi
1036 else
1037 AC_MSG_RESULT(no)
1038 fi
1039 ;;
d92419e5
JB
1040 aix*)
1041 AC_MSG_CHECKING(for AiX thread debugging library)
1042 AC_CACHE_VAL(gdb_cv_have_aix_thread_debug,
1043 [AC_TRY_COMPILE([#include <sys/pthdebug.h>],
1044 [#ifndef PTHDB_VERSION_3
1045 #error
1046 #endif],
1047 gdb_cv_have_aix_thread_debug=yes,
1048 gdb_cv_have_aix_thread_debug=no)])
1049 AC_MSG_RESULT($gdb_cv_have_aix_thread_debug)
1050 if test $gdb_cv_have_aix_thread_debug = yes; then
1051 CONFIG_SRCS="${CONFIG_SRCS} aix-thread.c"
3483b318 1052 CONFIG_OBS="${CONFIG_OBS} aix-thread.o"
d92419e5
JB
1053 CONFIG_LDFLAGS="${CONFIG_LDFLAGS} -lpthdebug"
1054 fi
1055 ;;
c906108c
SS
1056 esac
1057 AC_SUBST(CONFIG_LDFLAGS)
1058fi
1059
3f47be5c
EZ
1060dnl See if we have a thread_db header file that has TD_NOTALLOC.
1061if test "x$ac_cv_header_thread_db_h" = "xyes"; then
1062 AC_CACHE_CHECK([whether <thread_db.h> has TD_NOTALLOC],
1063 gdb_cv_thread_db_h_has_td_notalloc,
1064 AC_TRY_COMPILE(
1065 [#include <thread_db.h>],
1066 [int i = TD_NOTALLOC;],
1067 gdb_cv_thread_db_h_has_td_notalloc=yes,
1068 gdb_cv_thread_db_h_has_td_notalloc=no
1069 )
1070 )
1071fi
1072if test "x$gdb_cv_thread_db_h_has_td_notalloc" = "xyes"; then
1073 AC_DEFINE(THREAD_DB_HAS_TD_NOTALLOC, 1,
1074 [Define if <thread_db.h> has the TD_NOTALLOC error code.])
1075fi
1076
b757528f
JJ
1077dnl See if we have a sys/syscall header file that has __NR_tkill.
1078if test "x$ac_cv_header_sys_syscall_h" = "xyes"; then
1079 AC_CACHE_CHECK([whether <sys/syscall.h> has __NR_tkill],
1080 gdb_cv_sys_syscall_h_has_tkill,
1081 AC_TRY_COMPILE(
1082 [#include <sys/syscall.h>],
1083 [int i = __NR_tkill;],
1084 gdb_cv_sys_syscall_h_has_tkill=yes,
1085 gdb_cv_sys_syscall_h_has_tkill=no
1086 )
1087 )
1088fi
1089dnl See if we can issue tkill syscall.
1090if test "x$gdb_cv_sys_syscall_h_has_tkill" = "xyes" && test "x$ac_cv_func_syscall" = "xyes"; then
1091 AC_DEFINE(HAVE_TKILL_SYSCALL, 1,
1092 [Define if we can use the tkill syscall.])
1093fi
1094
c906108c 1095dnl Handle optional features that can be enabled.
fb40c209 1096
030292b7
DJ
1097AC_ARG_WITH(sysroot,
1098[ --with-sysroot[=DIR] Search for usr/lib et al within DIR.],
1099[
1100 case ${with_sysroot} in
715d1656 1101 yes) TARGET_SYSTEM_ROOT='${exec_prefix}/${target_alias}/sys-root' ;;
030292b7
DJ
1102 *) TARGET_SYSTEM_ROOT=$with_sysroot ;;
1103 esac
1104
1105 TARGET_SYSTEM_ROOT_DEFINE='-DTARGET_SYSTEM_ROOT=\"$(TARGET_SYSTEM_ROOT)\"'
1106
1107 if test "x$exec_prefix" = xNONE; then
1108 if test "x$prefix" = xNONE; then
1109 test_prefix=/usr/local
1110 else
1111 test_prefix=$prefix
1112 fi
1113 else
1114 test_prefix=$exec_prefix
1115 fi
1116 case ${TARGET_SYSTEM_ROOT} in
715d1656
AO
1117 "${test_prefix}"|"${test_prefix}/"*|\
1118 '${exec_prefix}'|'${exec_prefix}/'*)
030292b7
DJ
1119 t="$TARGET_SYSTEM_ROOT_DEFINE -DTARGET_SYSTEM_ROOT_RELOCATABLE"
1120 TARGET_SYSTEM_ROOT_DEFINE="$t"
1121 ;;
1122 esac
1123], [
1124 TARGET_SYSTEM_ROOT=
1125 TARGET_SYSTEM_ROOT_DEFINE='-DTARGET_SYSTEM_ROOT=\"\"'
1126])
1127AC_SUBST(TARGET_SYSTEM_ROOT)
1128AC_SUBST(TARGET_SYSTEM_ROOT_DEFINE)
1129
3b851bce
AC
1130# NOTE: Don't add -Wall or -Wunused, they both include
1131# -Wunused-parameter which reports bogus warnings.
1132# NOTE: If you add to this list, remember to update
1133# gdb/doc/gdbint.texinfo.
1decb323 1134build_warnings="-Wimplicit -Wreturn-type -Wcomment -Wtrigraphs \
0f0cffd2 1135-Wformat -Wparentheses -Wpointer-arith -Wuninitialized -Wformat-nonliteral \
4566dfcf 1136-Wunused-label -Wunused-function"
d8038014 1137# Up for debate: -Wswitch -Wcomment -trigraphs -Wtrigraphs
0f0cffd2 1138# -Wunused-function -Wunused-variable -Wunused-value
93d56215 1139# -Wchar-subscripts -Wtraditional -Wshadow -Wcast-qual
d8038014
AC
1140# -Wcast-align -Wwrite-strings -Wconversion -Wstrict-prototypes
1141# -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls
1142# -Woverloaded-virtual -Winline -Werror"
c906108c
SS
1143AC_ARG_ENABLE(build-warnings,
1144[ --enable-build-warnings Enable build-time compiler warnings if gcc is used],
1decb323 1145[case "${enableval}" in
c906108c
SS
1146 yes) ;;
1147 no) build_warnings="-w";;
1148 ,*) t=`echo "${enableval}" | sed -e "s/,/ /g"`
1149 build_warnings="${build_warnings} ${t}";;
1150 *,) t=`echo "${enableval}" | sed -e "s/,/ /g"`
1151 build_warnings="${t} ${build_warnings}";;
1152 *) build_warnings=`echo "${enableval}" | sed -e "s/,/ /g"`;;
d4f3574e
SS
1153esac
1154if test x"$silent" != x"yes" && test x"$build_warnings" != x""; then
746a987d 1155 echo "Setting compiler warning flags = $build_warnings" 6>&1
1decb323 1156fi])dnl
3b851bce
AC
1157AC_ARG_ENABLE(gdb-build-warnings,
1158[ --enable-gdb-build-warnings Enable GDB specific build-time compiler warnings if gcc is used],
1159[case "${enableval}" in
1160 yes) ;;
1161 no) build_warnings="-w";;
1162 ,*) t=`echo "${enableval}" | sed -e "s/,/ /g"`
1163 build_warnings="${build_warnings} ${t}";;
1164 *,) t=`echo "${enableval}" | sed -e "s/,/ /g"`
1165 build_warnings="${t} ${build_warnings}";;
1166 *) build_warnings=`echo "${enableval}" | sed -e "s/,/ /g"`;;
1167esac
1168if test x"$silent" != x"yes" && test x"$build_warnings" != x""; then
1169 echo "Setting GDB specific compiler warning flags = $build_warnings" 6>&1
1170fi])dnl
104c1213
JM
1171WARN_CFLAGS=""
1172WERROR_CFLAGS=""
c906108c
SS
1173if test "x${build_warnings}" != x -a "x$GCC" = xyes
1174then
746a987d
AC
1175 AC_MSG_CHECKING(compiler warning flags)
1176 # Separate out the -Werror flag as some files just cannot be
1177 # compiled with it enabled.
1178 for w in ${build_warnings}; do
1179 case $w in
1180 -Werr*) WERROR_CFLAGS=-Werror ;;
1181 *) # Check that GCC accepts it
4536bbc6
AC
1182 saved_CFLAGS="$CFLAGS"
1183 CFLAGS="$CFLAGS $w"
1184 AC_TRY_COMPILE([],[],WARN_CFLAGS="${WARN_CFLAGS} $w",)
1185 CFLAGS="$saved_CFLAGS"
746a987d
AC
1186 esac
1187 done
1188 AC_MSG_RESULT(${WARN_CFLAGS}${WERROR_CFLAGS})
1decb323 1189fi
c906108c 1190AC_SUBST(WARN_CFLAGS)
104c1213 1191AC_SUBST(WERROR_CFLAGS)
c906108c 1192
7a292a7a
SS
1193# In the Cygwin environment, we need some additional flags.
1194AC_CACHE_CHECK([for cygwin], gdb_cv_os_cygwin,
1195[AC_EGREP_CPP(lose, [
1196#if defined (__CYGWIN__) || defined (__CYGWIN32__)
1197lose
1198#endif],[gdb_cv_os_cygwin=yes],[gdb_cv_os_cygwin=no])])
1199
aff38e61
AC
1200
1201dnl Figure out which of the many generic ser-*.c files the _host_ supports.
1202SER_HARDWIRE="ser-unix.o ser-pipe.o ser-tcp.o"
1203case ${host} in
95cbc983
AC
1204 *go32* ) SER_HARDWIRE=ser-go32.o ;;
1205 *djgpp* ) SER_HARDWIRE=ser-go32.o ;;
aff38e61
AC
1206esac
1207AC_SUBST(SER_HARDWIRE)
1208
cd0fc7c3
SS
1209# libreadline needs libuser32.a in a cygwin environment
1210WIN32LIBS=
1211if test x$gdb_cv_os_cygwin = xyes; then
c5394b80
JM
1212 WIN32LIBS="-luser32"
1213 case "${target}" in
1214 *cygwin*) WIN32LIBS="$WIN32LIBS -limagehlp"
1215 ;;
1216 esac
cd0fc7c3
SS
1217fi
1218AC_SUBST(WIN32LIBS)
7a292a7a 1219
3fc11d3e
JM
1220LIBGUI="../libgui/src/libgui.a"
1221GUI_CFLAGS_X="-I${srcdir}/../libgui/src"
1222AC_SUBST(LIBGUI)
1223AC_SUBST(GUI_CFLAGS_X)
7a292a7a 1224
3fc11d3e
JM
1225WIN32LDAPP=
1226AC_SUBST(WIN32LIBS)
1227AC_SUBST(WIN32LDAPP)
1228
d91670b9
CV
1229case "${host}" in
1230*-*-cygwin*)
1231 configdir="win"
1232 ;;
1233*)
1234 configdir="unix"
1235 ;;
1236esac
3fc11d3e
JM
1237
1238GDBTKLIBS=
1239if test "${enable_gdbtk}" = "yes"; then
1240
d1c3b63a
KS
1241 # Gdbtk must have an absolute path to srcdir in order to run
1242 # properly when not installed.
1243 here=`pwd`
1244 cd ${srcdir}
1245 GDBTK_SRC_DIR=`pwd`
1246 cd $here
1247
3fc11d3e
JM
1248 CY_AC_PATH_TCLCONFIG
1249 if test -z "${no_tcl}"; then
1250 CY_AC_LOAD_TCLCONFIG
1251 CY_AC_PATH_TKCONFIG
1252
dd2504ab
JM
1253 # now look for Tcl library stuff
1254
d91670b9 1255 tcldir="../tcl/${configdir}/"
dd2504ab
JM
1256
1257 TCL_DEPS="${tcldir}${TCL_LIB_FILE}"
1258
3fc11d3e
JM
1259 # If $no_tk is nonempty, then we can't do Tk, and there is no
1260 # point to doing Tcl.
1261 if test -z "${no_tk}"; then
1262 CY_AC_LOAD_TKCONFIG
1263 CY_AC_PATH_TCLH
1264 CY_AC_PATH_TKH
1265 CY_AC_PATH_ITCLH
1266 CY_AC_PATH_ITKH
3fc11d3e 1267
dd2504ab
JM
1268
1269 # now look for Tk library stuff
1270
d91670b9 1271 tkdir="../tk/${configdir}/"
dd2504ab
JM
1272
1273 TK_DEPS="${tkdir}${TK_LIB_FILE}"
1274
3fc11d3e
JM
1275 # now look for Itcl library stuff
1276
1277 CY_AC_PATH_ITCLCONFIG
1278 if test -z "${no_itcl}"; then
b381d62d 1279 CY_AC_LOAD_ITCLCONFIG
3fc11d3e
JM
1280
1281 ITCLLIB="${ITCL_BUILD_LIB_SPEC}"
b381d62d 1282 ITCL_DEPS="${ITCL_LIB_FULL_PATH}"
3fc11d3e
JM
1283 fi
1284
1285
1286 # now look for Itk library stuff
1287 CY_AC_PATH_ITKCONFIG
1288 if test -z "${no_itcl}"; then
1289 CY_AC_LOAD_ITKCONFIG
1290
3fc11d3e 1291 ITKLIB="${ITK_BUILD_LIB_SPEC}"
b381d62d 1292 ITK_DEPS="${ITK_LIB_FULL_PATH}"
3fc11d3e
JM
1293 fi
1294
4226a5a5 1295 ENABLE_CFLAGS="${ENABLE_CFLAGS} \$(SUBDIR_GDBTK_CFLAGS)"
3fc11d3e
JM
1296 # Tcl/Tk 8.1 require -fwritable strings. I don't
1297 # know whether 8.2 will or not, but I bet it will.
1298 # I don't have to worry about 7.x since we don't support it.
1299 GDBTK_CFLAGS=""
1300 if test "$GCC" = "yes"; then
1301 if test "$TCL_VERSION" != "8.0" ; then
1302 GDBTK_CFLAGS="-fwritable-strings"
1303 fi
1304 fi
1305
1306 # Include some libraries that Tcl and Tk want.
b2a1bd4f 1307 TCL_LIBS='$(LIBGUI) $(ITCL) $(ITK) $(TK) $(TCL) $(X11_LDFLAGS) $(X11_LIBS)'
3fc11d3e
JM
1308 # Yes, the ordering seems wrong here. But it isn't.
1309 # TK_LIBS is the list of libraries that need to be linked
1310 # after Tcl/Tk. Note that this isn't put into LIBS. If it
1311 # were in LIBS then any link tests after this point would
1312 # try to include things like `$(LIBGUI)', which wouldn't work.
1313 GDBTKLIBS="${TCL_LIBS} ${TK_LIBS}"
4226a5a5
FN
1314
1315 CONFIG_OBS="${CONFIG_OBS} \$(SUBDIR_GDBTK_OBS)"
1316 CONFIG_DEPS="${CONFIG_DEPS} \$(SUBDIR_GDBTK_DEPS)"
1317 CONFIG_SRCS="${CONFIG_SRCS} \$(SUBDIR_GDBTK_SRCS)"
33f8ca73
AC
1318 CONFIG_ALL="${CONFIG_ALL} all-gdbtk"
1319 CONFIG_CLEAN="${CONFIG_CLEAN} clean-gdbtk"
1320 CONFIG_INSTALL="${CONFIG_INSTALL} install-gdbtk"
1321 CONFIG_UNINSTALL="${CONFIG_UNINSTALL} uninstall-gdbtk"
3fc11d3e
JM
1322
1323 if test x$gdb_cv_os_cygwin = xyes; then
1324 WIN32LIBS="${WIN32LIBS} -lshell32 -lgdi32 -lcomdlg32 -ladvapi32"
1325 WIN32LDAPP="-Wl,--subsystem,console"
1326 CONFIG_OBS="${CONFIG_OBS} gdbres.o"
1327 fi
1328 fi
1329 fi
ffc6a242 1330
ffc6a242 1331 configdirs="${configdirs} gdbtk"
3fc11d3e
JM
1332fi
1333
3fc11d3e
JM
1334AC_SUBST(X_CFLAGS)
1335AC_SUBST(X_LDFLAGS)
1336AC_SUBST(X_LIBS)
dd2504ab
JM
1337AC_SUBST(TCL_DEPS)
1338AC_SUBST(TK_DEPS)
3fc11d3e
JM
1339AC_SUBST(ITCLLIB)
1340AC_SUBST(ITCL_DEPS)
1341AC_SUBST(ITKLIB)
1342AC_SUBST(ITK_DEPS)
3fc11d3e
JM
1343AC_SUBST(GDBTKLIBS)
1344AC_SUBST(GDBTK_CFLAGS)
d1c3b63a 1345AC_SUBST(GDBTK_SRC_DIR)
8b93c638 1346
c906108c
SS
1347AC_PATH_X
1348
9cc52bde
MK
1349# Check whether we should enable the TUI, but only do so if we really
1350# can.
1351if test x"$enable_tui" = xyes; then
1352 if test -d $srcdir/tui; then
1353 if test "$ac_cv_search_waddstr" != no; then
1354 CONFIG_OBS="$CONFIG_OBS \$(SUBDIR_TUI_OBS)"
1355 CONFIG_DEPS="$CONFIG_DEPS \$(SUBDIR_TUI_DEPS)"
1356 CONFIG_SRCS="$CONFIG_SRCS \$(SUBDIR_TUI_SRCS)"
1357 CONFIG_INITS="$CONFIG_INITS \$(SUBDIR_TUI_INITS)"
1358 ENABLE_CFLAGS="$ENABLE_CFLAGS \$(SUBDIR_TUI_CFLAGS)"
1359 CONFIG_ALL="${CONFIG_ALL} all-tui"
1360 CONFIG_CLEAN="${CONFIG_CLEAN} clean-tui"
1361 CONFIG_INSTALL="${CONFIG_INSTALL} install-tui"
1362 CONFIG_UNINSTALL="${CONFIG_UNINSTALL} uninstall-tui"
1363 else
1364 AC_MSG_WARN([no enhanced curses library found; disabling TUI])
1365 fi
1366 fi
1367fi
1368
7a292a7a
SS
1369# Unlike the sim directory, whether a simulator is linked is controlled by
1370# presence of a SIM= and a SIM_OBS= definition in the target '.mt' file.
1371# This code just checks for a few cases where we'd like to ignore those
1372# definitions, even when they're present in the '.mt' file. These cases
1373# are when --disable-sim is specified, or if the simulator directory is
6c5cfe5b 1374# not part of the source tree.
7a292a7a
SS
1375#
1376AC_ARG_ENABLE(sim,
1377[ --enable-sim Link gdb with simulator],
1378[echo "enable_sim = $enable_sim";
1379 echo "enableval = ${enableval}";
1380 case "${enableval}" in
1381 yes) ignore_sim=false ;;
1382 no) ignore_sim=true ;;
1383 *) ignore_sim=false ;;
1384 esac],
1385[ignore_sim=false])
1386
1387if test ! -d "${srcdir}/../sim"; then
1388 ignore_sim=true
1389fi
1390
1391if test "${ignore_sim}" = "true"; then
1392 IGNORE_SIM="SIM="
1393 IGNORE_SIM_OBS="SIM_OBS="
1394else
1395 IGNORE_SIM=""
1396 IGNORE_SIM_OBS=""
1397 AC_DEFINE(WITH_SIM)
1398fi
1399AC_SUBST(IGNORE_SIM)
1400AC_SUBST(IGNORE_SIM_OBS)
1401
c906108c 1402AC_SUBST(ENABLE_CFLAGS)
d28f9cdf 1403AC_SUBST(PROFILE_CFLAGS)
c906108c
SS
1404
1405AC_SUBST(CONFIG_OBS)
1406AC_SUBST(CONFIG_DEPS)
1407AC_SUBST(CONFIG_SRCS)
b3a90332
AC
1408AC_SUBST(CONFIG_ALL)
1409AC_SUBST(CONFIG_CLEAN)
e56ac5c3
AC
1410AC_SUBST(CONFIG_INSTALL)
1411AC_SUBST(CONFIG_UNINSTALL)
c906108c 1412
c35f4ffc
AC
1413# List of host floatformats.
1414AC_DEFINE_UNQUOTED(GDB_HOST_FLOAT_FORMAT,$gdb_host_float_format,[Host float floatformat])
1415AC_DEFINE_UNQUOTED(GDB_HOST_DOUBLE_FORMAT,$gdb_host_double_format,[Host double floatformat])
1416AC_DEFINE_UNQUOTED(GDB_HOST_LONG_DOUBLE_FORMAT,$gdb_host_long_double_format,[Host long double floatformat])
1417
c906108c
SS
1418# target_subdir is used by the testsuite to find the target libraries.
1419target_subdir=
1420if test "${host}" != "${target}"; then
1421 target_subdir="${target_alias}/"
1422fi
1423AC_SUBST(target_subdir)
1424
1425frags=
0dad8a66
MK
1426if test "${target}" = "${host}"; then
1427 host_makefile_frag=${srcdir}/config/${gdb_host_cpu}/${gdb_host}.mh
1428 if test ! -f ${host_makefile_frag}; then
1429 AC_MSG_ERROR("*** Gdb does not support native target ${host}")
1430 fi
1431 frags="$frags $host_makefile_frag"
1432else
1433 host_makefile_frag=/dev/null
c906108c 1434fi
c906108c
SS
1435
1436target_makefile_frag=${srcdir}/config/${gdb_target_cpu}/${gdb_target}.mt
1437if test ! -f ${target_makefile_frag}; then
0dad8a66 1438 AC_MSG_ERROR("*** Gdb does not support target ${target}")
c906108c
SS
1439fi
1440frags="$frags $target_makefile_frag"
1441
1442AC_SUBST_FILE(host_makefile_frag)
1443AC_SUBST_FILE(target_makefile_frag)
1444AC_SUBST(frags)
1445
1446changequote(,)dnl
1447hostfile=`sed -n '
1448s/XM_FILE[ ]*=[ ]*\([^ ]*\)/\1/p
1449' ${host_makefile_frag}`
1450
1451targetfile=`sed -n '
2c0fc042 1452s/DEPRECATED_TM_FILE[ ]*=[ ]*\([^ ]*\)/\1/p
c906108c
SS
1453' ${target_makefile_frag}`
1454
c906108c 1455if test "${target}" = "${host}"; then
a85f51e7
DJ
1456# We pick this up from the host configuration file (.mh) because we
1457# do not have a native configuration Makefile fragment.
c906108c
SS
1458nativefile=`sed -n '
1459s/NAT_FILE[ ]*=[ ]*\([^ ]*\)/\1/p
1460' ${host_makefile_frag}`
c906108c
SS
1461fi
1462changequote([,])
1463
b00a8037
DJ
1464if test x"${gdb_osabi}" != x ; then
1465 AC_DEFINE_UNQUOTED(GDB_OSABI_DEFAULT, $gdb_osabi,
1466 [Define to the default OS ABI for this configuration.])
1467fi
1468
8dcde887
MK
1469# Enable multi-ice-gdb-server.
1470AC_ARG_ENABLE(multi-ice,
1471[ --enable-multi-ice build the multi-ice-gdb-server],
1472 [case $enableval in
1473 yes | no)
1474 ;;
1475 *) AC_MSG_ERROR([bad value $enableval for --enable-multi-ice]) ;;
1476 esac])
1477if test "x$enable_multi_ice" = xyes; then
1478 configdirs="$configdirs multi-ice"
96baa820
JM
1479fi
1480
8dcde887
MK
1481# We only build gdbserver automatically if host and target are the same.
1482if test "x$target" = "x$host"; then
1483 AC_MSG_CHECKING(whether gdbserver is supported on this host)
1484 if test "x$build_gdbserver" = xyes; then
1485 configdirs="$configdirs gdbserver"
1486 AC_MSG_RESULT(yes)
1487 else
1488 AC_MSG_RESULT(no)
1489 fi
a85f51e7
DJ
1490fi
1491
8dcde887 1492AC_CONFIG_SUBDIRS($configdirs)
96baa820 1493
2c0fc042
AC
1494# If hostfile (XM_FILE) and/or targetfile (DEPRECATED_TM_FILE) and/or
1495# nativefile (NAT_FILE) is not set in config/*/*.m[ht] files, we link
1496# to an empty version.
c906108c
SS
1497
1498files=
1499links=
5a2402b8 1500
c906108c 1501rm -f xm.h
5a2402b8 1502xm_h=""
c906108c 1503if test "${hostfile}" != ""; then
5a2402b8 1504 xm_h=xm.h
0f475e27
AC
1505 case "${hostfile}" in
1506 xm-*.h ) GDB_XM_FILE="config/${gdb_host_cpu}/${hostfile}" ;;
1507 * ) GDB_XM_FILE="${hostfile}"
1508 esac
5a2402b8
AC
1509 files="${files} ${GDB_XM_FILE}"
1510 links="${links} xm.h"
b78960be 1511 AC_DEFINE_UNQUOTED(GDB_XM_FILE, "${GDB_XM_FILE}")
c906108c 1512fi
5a2402b8
AC
1513AC_SUBST(xm_h)
1514
c906108c 1515rm -f tm.h
5a2402b8 1516tm_h=""
c906108c 1517if test "${targetfile}" != ""; then
5a2402b8 1518 tm_h=tm.h
0f475e27 1519 case "${targetfile}" in
b8c4aece 1520 tm-*.h ) GDB_TM_FILE="config/${gdb_target_cpu}/${targetfile}" ;;
0f475e27
AC
1521 * ) GDB_TM_FILE="${targetfile}"
1522 esac
5a2402b8
AC
1523 files="${files} ${GDB_TM_FILE}"
1524 links="${links} tm.h"
b78960be 1525 AC_DEFINE_UNQUOTED(GDB_TM_FILE, "${GDB_TM_FILE}")
c906108c 1526fi
5a2402b8
AC
1527AC_SUBST(tm_h)
1528
c906108c 1529rm -f nm.h
5a2402b8 1530nm_h=""
c906108c 1531if test "${nativefile}" != ""; then
5a2402b8 1532 nm_h=nm.h
0f475e27
AC
1533 case "${nativefile}" in
1534 nm-*.h ) GDB_NM_FILE="config/${gdb_host_cpu}/${nativefile}" ;;
1535 * ) GDB_NM_FILE="${nativefile}"
1536 esac
5a2402b8
AC
1537 files="${files} ${GDB_NM_FILE}"
1538 links="${links} nm.h"
b78960be 1539 AC_DEFINE_UNQUOTED(GDB_NM_FILE, "${GDB_NM_FILE}")
c906108c 1540fi
5a2402b8
AC
1541AC_SUBST(nm_h)
1542
c906108c
SS
1543AC_LINK_FILES($files, $links)
1544
1545dnl Check for exe extension set on certain hosts (e.g. Win32)
1546AC_EXEEXT
1547
234b45d4
KB
1548dnl Detect the character set used by this host.
1549
1550dnl At the moment, we just assume it's ISO-8859-1 (which is a
1551dnl superset of ASCII containing the characters needed for French,
1552dnl German, Spanish, Italian, and possibly others), but if were
1553dnl *were* to support any host character sets other than ISO-8859-1,
1554dnl here's where we'd detect it.
1555AC_DEFINE(GDB_DEFAULT_HOST_CHARSET, "ISO-8859-1",
1556 [Define to be a string naming the default host character set.])
1557
1558AM_ICONV
1559
ed952ac5 1560AC_OUTPUT(Makefile .gdbinit:gdbinit.in,
c906108c
SS
1561[
1562dnl Autoconf doesn't provide a mechanism for modifying definitions
1563dnl provided by makefile fragments.
1564dnl
c906108c
SS
1565
1566changequote(,)dnl
2c0fc042 1567sed -e '/^DEPRECATED_TM_FILE[ ]*=/s,^DEPRECATED_TM_FILE[ ]*=[ ]*,&config/'"${gdb_target_cpu}"'/,
c906108c
SS
1568/^XM_FILE[ ]*=/s,^XM_FILE[ ]*=[ ]*,&config/'"${gdb_host_cpu}"'/,
1569/^NAT_FILE[ ]*=/s,^NAT_FILE[ ]*=[ ]*,&config/'"${gdb_host_cpu}"'/,' <Makefile >Makefile.tmp
1570mv -f Makefile.tmp Makefile
1571changequote([,])dnl
1572
2acceee2 1573
c906108c
SS
1574case x$CONFIG_HEADERS in
1575xconfig.h:config.in)
1576echo > stamp-h ;;
1577esac
1578],
1579[
1580gdb_host_cpu=$gdb_host_cpu
1581gdb_target_cpu=$gdb_target_cpu
1582nativefile=$nativefile
1583])
1584
1585exit 0
This page took 0.750123 seconds and 4 git commands to generate.