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