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