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