*** 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
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
1a619819
LM
931# Check if the compiler and runtime support printing decfloats.
932
933AC_CACHE_CHECK([for decfloat support in printf],
934 gdb_cv_printf_has_decfloat,
935 [AC_RUN_IFELSE([AC_LANG_PROGRAM([AC_INCLUDES_DEFAULT],
936[[char buf[64];
937 _Decimal32 d32 = 1.2345df;
938 _Decimal64 d64 = 1.2345dd;
939 _Decimal128 d128 = 1.2345dl;
940 sprintf (buf, "Decimal32: %H\nDecimal64: %D\nDecimal128: %DD", d32, d64, d128);
941 return (strcmp ("Decimal32: 1.2345\nDecimal64: 1.2345\nDecimal128: 1.2345", buf));]])],
942 gdb_cv_printf_has_decfloat=yes,
943 gdb_cv_printf_has_decfloat=no,
944 gdb_cv_printf_has_decfloat=no)])
945if test $gdb_cv_printf_has_decfloat = yes; then
946 AC_DEFINE(PRINTF_HAS_DECFLOAT, 1,
947 [Define to 1 if the "%H, %D and %DD" formats work to print decfloats.])
948fi
949
bc8bcb4b
MK
950# Check if the compiler supports the `long double' type. We can't use
951# AC_C_LONG_DOUBLE because that one does additional checks on the
952# constants defined in <float.h> that fail on some systems,
953# e.g. FreeBSD/i386 4.7 and OpenBSD/i386 3.6.
c906108c 954
bc8bcb4b
MK
955AC_CACHE_CHECK([for long double support in compiler], gdb_cv_c_long_double,
956 [AC_COMPILE_IFELSE([AC_LANG_SOURCE([[long double foo;]])],
957 gdb_cv_c_long_double=yes,
958 gdb_cv_c_long_double=no)])
959if test $gdb_cv_c_long_double = yes; then
960 AC_DEFINE(HAVE_LONG_DOUBLE, 1,
961 [Define to 1 if the compiler supports long double.])
c906108c
SS
962fi
963
bc8bcb4b 964# Check if the compiler and runtime support printing long doubles.
c906108c 965
bc8bcb4b
MK
966AC_CACHE_CHECK([for long double support in printf],
967 gdb_cv_printf_has_long_double,
968 [AC_RUN_IFELSE([AC_LANG_PROGRAM([AC_INCLUDES_DEFAULT],
969[[char buf[16];
c906108c
SS
970 long double f = 3.141592653;
971 sprintf (buf, "%Lg", f);
bc8bcb4b
MK
972 return (strncmp ("3.14159", buf, 7));]])],
973 gdb_cv_printf_has_long_double=yes,
974 gdb_cv_printf_has_long_double=no,
975 gdb_cv_printf_has_long_double=no)])
c906108c 976if test $gdb_cv_printf_has_long_double = yes; then
bc8bcb4b
MK
977 AC_DEFINE(PRINTF_HAS_LONG_DOUBLE, 1,
978 [Define to 1 if the "%Lg" format works to print long doubles.])
c906108c 979fi
c906108c 980
bc8bcb4b 981# Check if the compiler and runtime support scanning long doubles.
c906108c 982
bc8bcb4b
MK
983AC_CACHE_CHECK([for long double support in scanf],
984 gdb_cv_scanf_has_long_double,
985 [AC_RUN_IFELSE([AC_LANG_PROGRAM(
986[[#include <stdio.h>]],
987[[char *buf = "3.141592653";
c906108c
SS
988 long double f = 0;
989 sscanf (buf, "%Lg", &f);
bc8bcb4b
MK
990 return !(f > 3.14159 && f < 3.14160);]])],
991 gdb_cv_scanf_has_long_double=yes,
992 gdb_cv_scanf_has_long_double=no,
993 gdb_cv_scanf_has_long_double=no)])
c906108c 994if test $gdb_cv_scanf_has_long_double = yes; then
bc8bcb4b
MK
995 AC_DEFINE(SCANF_HAS_LONG_DOUBLE, 1,
996 [Define to 1 if the "%Lg" format works to scan long doubles.])
c906108c 997fi
c906108c 998
438013df
AO
999case ${host_os} in
1000aix*)
1001 AC_CACHE_CHECK([for -bbigtoc option], [gdb_cv_bigtoc], [
1002 SAVE_LDFLAGS=$LDFLAGS
1003
1004 case $GCC in
1005 yes) gdb_cv_bigtoc=-Wl,-bbigtoc ;;
1006 *) gdb_cv_bigtoc=-bbigtoc ;;
1007 esac
1008
1009 LDFLAGS=$LDFLAGS\ $gdb_cv_bigtoc
1010 AC_TRY_LINK([], [int i;], [], [gdb_cv_bigtoc=])
ec76baa5 1011 LDFLAGS="${SAVE_LDFLAGS}"
438013df
AO
1012 ])
1013 CONFIG_LDFLAGS="${CONFIG_LDFLAGS} ${gdb_cv_bigtoc}"
1014 ;;
1015esac
1016
c906108c 1017
d92419e5
JB
1018dnl For certain native configurations, we need to check whether thread
1019dnl support can be built in or not.
1020dnl
1021dnl Note that we only want this if we are both native (host == target),
1022dnl and not doing a canadian cross build (build == host).
c906108c
SS
1023
1024if test ${build} = ${host} -a ${host} = ${target} ; then
1025 case ${host_os} in
1026 hpux*)
1027 AC_MSG_CHECKING(for HPUX/OSF thread support)
1028 if test -f /usr/include/dce/cma_config.h ; then
1029 if test "$GCC" = "yes" ; then
1030 AC_MSG_RESULT(yes)
60ca704f
SE
1031 AC_DEFINE(HAVE_HPUX_THREAD_SUPPORT, 1,
1032 [Define if you have HPUX threads])
3483b318 1033 CONFIG_OBS="${CONFIG_OBS} hpux-thread.o"
c906108c
SS
1034 CONFIG_SRCS="${CONFIG_SRCS} hpux-thread.c"
1035 else
1036 AC_MSG_RESULT(no (suppressed because you are not using GCC))
1037 fi
1038 else
1039 AC_MSG_RESULT(no)
1040 fi
1041 ;;
1042 solaris*)
d92419e5
JB
1043 # See if thread_db library is around for Solaris thread debugging.
1044 # Note that we must explicitly test for version 1 of the library
1045 # because version 0 (present on Solaris 2.4 or earlier) doesn't have
1046 # the same API.
c906108c
SS
1047 AC_MSG_CHECKING(for Solaris thread debugging library)
1048 if test -f /usr/lib/libthread_db.so.1 ; then
1049 AC_MSG_RESULT(yes)
60ca704f
SE
1050 AC_DEFINE(HAVE_THREAD_DB_LIB, 1,
1051 [Define if using Solaris thread debugging.])
3483b318 1052 CONFIG_OBS="${CONFIG_OBS} sol-thread.o"
c906108c
SS
1053 CONFIG_SRCS="${CONFIG_SRCS} sol-thread.c"
1054 AC_CHECK_LIB(dl, dlopen)
1055 if test "$GCC" = "yes" ; then
1056 # The GNU linker requires the -export-dynamic option to make
1057 # all symbols visible in the dynamic symbol table.
1058 hold_ldflags=$LDFLAGS
1059 AC_MSG_CHECKING(for the ld -export-dynamic flag)
1060 LDFLAGS="${LDFLAGS} -Wl,-export-dynamic"
1061 AC_TRY_LINK(, [int i;], found=yes, found=no)
1062 LDFLAGS=$hold_ldflags
1063 AC_MSG_RESULT($found)
1064 if test $found = yes; then
1065 CONFIG_LDFLAGS="${CONFIG_LDFLAGS} -Wl,-export-dynamic"
1066 fi
1067 fi
1068 # Sun randomly tweaked the prototypes in <proc_service.h>
1069 # at one point.
1070 AC_MSG_CHECKING(if <proc_service.h> is old)
1071 AC_CACHE_VAL(gdb_cv_proc_service_is_old,[
1072 AC_TRY_COMPILE([
1073 #include <proc_service.h>
1074 ps_err_e ps_pdwrite
1075 (struct ps_prochandle*, psaddr_t, const void*, size_t);
1076 ],, gdb_cv_proc_service_is_old=no,
1077 gdb_cv_proc_service_is_old=yes)
1078 ])
1079 AC_MSG_RESULT($gdb_cv_proc_service_is_old)
1080 if test $gdb_cv_proc_service_is_old = yes; then
60ca704f
SE
1081 AC_DEFINE(PROC_SERVICE_IS_OLD, 1,
1082 [Define if <proc_service.h> on solaris uses int instead of
1083 size_t, and assorted other type changes.])
c906108c
SS
1084 fi
1085 else
1086 AC_MSG_RESULT(no)
1087 fi
1088 ;;
d92419e5
JB
1089 aix*)
1090 AC_MSG_CHECKING(for AiX thread debugging library)
1091 AC_CACHE_VAL(gdb_cv_have_aix_thread_debug,
1092 [AC_TRY_COMPILE([#include <sys/pthdebug.h>],
1093 [#ifndef PTHDB_VERSION_3
1094 #error
1095 #endif],
1096 gdb_cv_have_aix_thread_debug=yes,
1097 gdb_cv_have_aix_thread_debug=no)])
1098 AC_MSG_RESULT($gdb_cv_have_aix_thread_debug)
1099 if test $gdb_cv_have_aix_thread_debug = yes; then
1100 CONFIG_SRCS="${CONFIG_SRCS} aix-thread.c"
3483b318 1101 CONFIG_OBS="${CONFIG_OBS} aix-thread.o"
d92419e5
JB
1102 CONFIG_LDFLAGS="${CONFIG_LDFLAGS} -lpthdebug"
1103 fi
1104 ;;
c906108c
SS
1105 esac
1106 AC_SUBST(CONFIG_LDFLAGS)
1107fi
1108
59f80f10
DJ
1109dnl See if we have a thread_db header file that has TD_NOTALLOC and
1110dnl other error codes.
3f47be5c
EZ
1111if test "x$ac_cv_header_thread_db_h" = "xyes"; then
1112 AC_CACHE_CHECK([whether <thread_db.h> has TD_NOTALLOC],
1113 gdb_cv_thread_db_h_has_td_notalloc,
1114 AC_TRY_COMPILE(
1115 [#include <thread_db.h>],
1116 [int i = TD_NOTALLOC;],
1117 gdb_cv_thread_db_h_has_td_notalloc=yes,
1118 gdb_cv_thread_db_h_has_td_notalloc=no
1119 )
1120 )
59f80f10
DJ
1121 AC_CACHE_CHECK([whether <thread_db.h> has TD_VERSION],
1122 gdb_cv_thread_db_h_has_td_version,
1123 AC_TRY_COMPILE(
1124 [#include <thread_db.h>],
1125 [int i = TD_VERSION;],
1126 gdb_cv_thread_db_h_has_td_version=yes,
1127 gdb_cv_thread_db_h_has_td_version=no
1128 )
1129 )
1130 AC_CACHE_CHECK([whether <thread_db.h> has TD_NOTLS],
1131 gdb_cv_thread_db_h_has_td_notls,
1132 AC_TRY_COMPILE(
1133 [#include <thread_db.h>],
1134 [int i = TD_NOTLS;],
1135 gdb_cv_thread_db_h_has_td_notls=yes,
1136 gdb_cv_thread_db_h_has_td_notls=no
1137 )
1138 )
3f47be5c
EZ
1139fi
1140if test "x$gdb_cv_thread_db_h_has_td_notalloc" = "xyes"; then
1141 AC_DEFINE(THREAD_DB_HAS_TD_NOTALLOC, 1,
1142 [Define if <thread_db.h> has the TD_NOTALLOC error code.])
1143fi
59f80f10
DJ
1144if test "x$gdb_cv_thread_db_h_has_td_version" = "xyes"; then
1145 AC_DEFINE(THREAD_DB_HAS_TD_VERSION, 1,
1146 [Define if <thread_db.h> has the TD_VERSION error code.])
1147fi
1148if test "x$gdb_cv_thread_db_h_has_td_notls" = "xyes"; then
1149 AC_DEFINE(THREAD_DB_HAS_TD_NOTLS, 1,
1150 [Define if <thread_db.h> has the TD_NOTLS error code.])
1151fi
3f47be5c 1152
b757528f
JJ
1153dnl See if we have a sys/syscall header file that has __NR_tkill.
1154if test "x$ac_cv_header_sys_syscall_h" = "xyes"; then
1155 AC_CACHE_CHECK([whether <sys/syscall.h> has __NR_tkill],
1156 gdb_cv_sys_syscall_h_has_tkill,
1157 AC_TRY_COMPILE(
1158 [#include <sys/syscall.h>],
1159 [int i = __NR_tkill;],
1160 gdb_cv_sys_syscall_h_has_tkill=yes,
1161 gdb_cv_sys_syscall_h_has_tkill=no
1162 )
1163 )
1164fi
1165dnl See if we can issue tkill syscall.
1166if test "x$gdb_cv_sys_syscall_h_has_tkill" = "xyes" && test "x$ac_cv_func_syscall" = "xyes"; then
60ca704f 1167 AC_DEFINE(HAVE_TKILL_SYSCALL, 1, [Define if you support the tkill syscall.])
b757528f
JJ
1168fi
1169
c906108c 1170dnl Handle optional features that can be enabled.
fb40c209 1171
030292b7
DJ
1172AC_ARG_WITH(sysroot,
1173[ --with-sysroot[=DIR] Search for usr/lib et al within DIR.],
1174[
1175 case ${with_sysroot} in
715d1656 1176 yes) TARGET_SYSTEM_ROOT='${exec_prefix}/${target_alias}/sys-root' ;;
030292b7
DJ
1177 *) TARGET_SYSTEM_ROOT=$with_sysroot ;;
1178 esac
1179
1180 TARGET_SYSTEM_ROOT_DEFINE='-DTARGET_SYSTEM_ROOT=\"$(TARGET_SYSTEM_ROOT)\"'
1181
07abfebf
RS
1182 if test "x$prefix" = xNONE; then
1183 test_prefix=/usr/local
1184 else
1185 test_prefix=$prefix
1186 fi
aa28a74e 1187 if test "x$exec_prefix" = xNONE || test "x$exec_prefix" = 'x${prefix}'; then
07abfebf 1188 test_exec_prefix=$test_prefix
030292b7 1189 else
07abfebf 1190 test_exec_prefix=$exec_prefix
030292b7
DJ
1191 fi
1192 case ${TARGET_SYSTEM_ROOT} in
715d1656 1193 "${test_prefix}"|"${test_prefix}/"*|\
07abfebf
RS
1194 "${test_exec_prefix}"|"${test_exec_prefix}/"*|\
1195 '${prefix}'|'${prefix}/'*|\
715d1656 1196 '${exec_prefix}'|'${exec_prefix}/'*)
030292b7
DJ
1197 t="$TARGET_SYSTEM_ROOT_DEFINE -DTARGET_SYSTEM_ROOT_RELOCATABLE"
1198 TARGET_SYSTEM_ROOT_DEFINE="$t"
1199 ;;
1200 esac
1201], [
1202 TARGET_SYSTEM_ROOT=
1203 TARGET_SYSTEM_ROOT_DEFINE='-DTARGET_SYSTEM_ROOT=\"\"'
1204])
1205AC_SUBST(TARGET_SYSTEM_ROOT)
1206AC_SUBST(TARGET_SYSTEM_ROOT_DEFINE)
1207
094a342e
MK
1208AC_ARG_ENABLE(werror,
1209 [ --enable-werror treat compile warnings as errors],
1210 [case "${enableval}" in
1211 yes | y) ERROR_ON_WARNING="yes" ;;
1212 no | n) ERROR_ON_WARNING="no" ;;
1213 *) AC_MSG_ERROR(bad value ${enableval} for --enable-werror) ;;
1214 esac])
1215
1216# Enable -Werror by default when using gcc
1217if test "${GCC}" = yes -a -z "${ERROR_ON_WARNING}" ; then
1218 ERROR_ON_WARNING=yes
1219fi
1220
1221WERROR_CFLAGS=""
1222if test "${ERROR_ON_WARNING}" = yes ; then
1223 WERROR_CFLAGS="-Werror"
1224fi
1225
aa79a185
DJ
1226# The entries after -Wno-pointer-sign are disabled warnings which may
1227# be enabled in the future, which can not currently be used to build
1228# GDB.
1229# NOTE: If you change this list, remember to update
3b851bce 1230# gdb/doc/gdbint.texinfo.
aa79a185
DJ
1231build_warnings="-Wall -Wdeclaration-after-statement -Wpointer-arith \
1232-Wformat-nonliteral -Wno-pointer-sign \
58b38ee2 1233-Wno-unused -Wno-switch -Wno-char-subscripts"
a3b362c4 1234
c906108c
SS
1235AC_ARG_ENABLE(build-warnings,
1236[ --enable-build-warnings Enable build-time compiler warnings if gcc is used],
1decb323 1237[case "${enableval}" in
c906108c
SS
1238 yes) ;;
1239 no) build_warnings="-w";;
1240 ,*) t=`echo "${enableval}" | sed -e "s/,/ /g"`
1241 build_warnings="${build_warnings} ${t}";;
1242 *,) t=`echo "${enableval}" | sed -e "s/,/ /g"`
1243 build_warnings="${t} ${build_warnings}";;
1244 *) build_warnings=`echo "${enableval}" | sed -e "s/,/ /g"`;;
d4f3574e
SS
1245esac
1246if test x"$silent" != x"yes" && test x"$build_warnings" != x""; then
746a987d 1247 echo "Setting compiler warning flags = $build_warnings" 6>&1
1decb323 1248fi])dnl
3b851bce
AC
1249AC_ARG_ENABLE(gdb-build-warnings,
1250[ --enable-gdb-build-warnings Enable GDB specific build-time compiler warnings if gcc is used],
1251[case "${enableval}" in
1252 yes) ;;
1253 no) build_warnings="-w";;
1254 ,*) t=`echo "${enableval}" | sed -e "s/,/ /g"`
1255 build_warnings="${build_warnings} ${t}";;
1256 *,) t=`echo "${enableval}" | sed -e "s/,/ /g"`
1257 build_warnings="${t} ${build_warnings}";;
1258 *) build_warnings=`echo "${enableval}" | sed -e "s/,/ /g"`;;
1259esac
1260if test x"$silent" != x"yes" && test x"$build_warnings" != x""; then
1261 echo "Setting GDB specific compiler warning flags = $build_warnings" 6>&1
1262fi])dnl
104c1213 1263WARN_CFLAGS=""
c906108c
SS
1264if test "x${build_warnings}" != x -a "x$GCC" = xyes
1265then
746a987d
AC
1266 AC_MSG_CHECKING(compiler warning flags)
1267 # Separate out the -Werror flag as some files just cannot be
1268 # compiled with it enabled.
1269 for w in ${build_warnings}; do
1270 case $w in
1271 -Werr*) WERROR_CFLAGS=-Werror ;;
1272 *) # Check that GCC accepts it
4536bbc6
AC
1273 saved_CFLAGS="$CFLAGS"
1274 CFLAGS="$CFLAGS $w"
1275 AC_TRY_COMPILE([],[],WARN_CFLAGS="${WARN_CFLAGS} $w",)
1276 CFLAGS="$saved_CFLAGS"
746a987d
AC
1277 esac
1278 done
aa79a185 1279 AC_MSG_RESULT(${WARN_CFLAGS} ${WERROR_CFLAGS})
1decb323 1280fi
c906108c 1281AC_SUBST(WARN_CFLAGS)
104c1213 1282AC_SUBST(WERROR_CFLAGS)
c906108c 1283
7a292a7a
SS
1284# In the Cygwin environment, we need some additional flags.
1285AC_CACHE_CHECK([for cygwin], gdb_cv_os_cygwin,
1286[AC_EGREP_CPP(lose, [
1287#if defined (__CYGWIN__) || defined (__CYGWIN32__)
1288lose
1289#endif],[gdb_cv_os_cygwin=yes],[gdb_cv_os_cygwin=no])])
1290
aff38e61
AC
1291
1292dnl Figure out which of the many generic ser-*.c files the _host_ supports.
3eb25fda 1293SER_HARDWIRE="ser-base.o ser-unix.o ser-pipe.o ser-tcp.o"
aff38e61 1294case ${host} in
95cbc983
AC
1295 *go32* ) SER_HARDWIRE=ser-go32.o ;;
1296 *djgpp* ) SER_HARDWIRE=ser-go32.o ;;
0ea3f30e 1297 *mingw32*) SER_HARDWIRE="ser-base.o ser-tcp.o ser-mingw.o" ;;
aff38e61
AC
1298esac
1299AC_SUBST(SER_HARDWIRE)
1300
cd0fc7c3
SS
1301# libreadline needs libuser32.a in a cygwin environment
1302WIN32LIBS=
1303if test x$gdb_cv_os_cygwin = xyes; then
c5394b80
JM
1304 WIN32LIBS="-luser32"
1305 case "${target}" in
1306 *cygwin*) WIN32LIBS="$WIN32LIBS -limagehlp"
1307 ;;
1308 esac
cd0fc7c3 1309fi
b4505029
MM
1310
1311# The ser-tcp.c module requires sockets.
1312case ${host} in
1313 *mingw32*)
1314 AC_DEFINE(USE_WIN32API, 1,
1315 [Define if we should use the Windows API, instead of the
1316 POSIX API. On Windows, we use the Windows API when
1317 building for MinGW, but the POSIX API when building
1318 for Cygwin.])
1319 WIN32LIBS="$WIN32LIBS -lws2_32"
1320 ;;
1321esac
cd0fc7c3 1322AC_SUBST(WIN32LIBS)
7a292a7a 1323
31d99776
DJ
1324# Add ELF support to GDB, but only if BFD includes ELF support.
1325OLD_CFLAGS=$CFLAGS
1326OLD_LDFLAGS=$LDFLAGS
1327OLD_LIBS=$LIBS
cab58a69 1328CFLAGS="$CFLAGS -I${srcdir}/../include -I../bfd -I${srcdir}/../bfd"
31d99776 1329LDFLAGS="$LDFLAGS -L../bfd -L../libiberty"
7b3200f9
DJ
1330intl=`echo $LIBINTL | sed 's,${top_builddir}/,,g'`
1331LIBS="$LIBS -lbfd -liberty $intl"
31d99776
DJ
1332AC_CACHE_CHECK([for ELF support in BFD], gdb_cv_var_elf,
1333[AC_TRY_LINK(
1334[#include <stdlib.h>
1335#include "bfd.h"
1336#include "elf-bfd.h"
1337],
1338[bfd *abfd = NULL; bfd_get_elf_phdr_upper_bound (abfd); ],
1339gdb_cv_var_elf=yes, gdb_cv_var_elf=no)])
1340if test $gdb_cv_var_elf = yes; then
1341 CONFIG_OBS="$CONFIG_OBS elfread.o"
1342 AC_DEFINE(HAVE_ELF, 1,
1343 [Define if ELF support should be included.])
1344fi
1345CFLAGS=$OLD_CFLAGS
1346LDFLAGS=$OLD_LDFLAGS
1347LIBS=$OLD_LIBS
1348
121ce6e5
DJ
1349# Add any host-specific objects to GDB.
1350CONFIG_OBS="${CONFIG_OBS} ${gdb_host_obs}"
1351
3fc11d3e
JM
1352LIBGUI="../libgui/src/libgui.a"
1353GUI_CFLAGS_X="-I${srcdir}/../libgui/src"
1354AC_SUBST(LIBGUI)
1355AC_SUBST(GUI_CFLAGS_X)
7a292a7a 1356
3fc11d3e
JM
1357WIN32LDAPP=
1358AC_SUBST(WIN32LIBS)
1359AC_SUBST(WIN32LDAPP)
1360
d91670b9
CV
1361case "${host}" in
1362*-*-cygwin*)
1363 configdir="win"
1364 ;;
1365*)
1366 configdir="unix"
1367 ;;
1368esac
3fc11d3e
JM
1369
1370GDBTKLIBS=
1371if test "${enable_gdbtk}" = "yes"; then
1372
d1c3b63a
KS
1373 # Gdbtk must have an absolute path to srcdir in order to run
1374 # properly when not installed.
1375 here=`pwd`
1376 cd ${srcdir}
1377 GDBTK_SRC_DIR=`pwd`
1378 cd $here
1379
3fc11d3e
JM
1380 CY_AC_PATH_TCLCONFIG
1381 if test -z "${no_tcl}"; then
1382 CY_AC_LOAD_TCLCONFIG
1383 CY_AC_PATH_TKCONFIG
1384
dd2504ab
JM
1385 # now look for Tcl library stuff
1386
d91670b9 1387 tcldir="../tcl/${configdir}/"
dd2504ab
JM
1388
1389 TCL_DEPS="${tcldir}${TCL_LIB_FILE}"
1390
3fc11d3e
JM
1391 # If $no_tk is nonempty, then we can't do Tk, and there is no
1392 # point to doing Tcl.
1393 if test -z "${no_tk}"; then
1394 CY_AC_LOAD_TKCONFIG
1395 CY_AC_PATH_TCLH
1396 CY_AC_PATH_TKH
1397 CY_AC_PATH_ITCLH
1398 CY_AC_PATH_ITKH
3fc11d3e 1399
dd2504ab
JM
1400
1401 # now look for Tk library stuff
1402
d91670b9 1403 tkdir="../tk/${configdir}/"
dd2504ab
JM
1404
1405 TK_DEPS="${tkdir}${TK_LIB_FILE}"
1406
3fc11d3e
JM
1407 # now look for Itcl library stuff
1408
1409 CY_AC_PATH_ITCLCONFIG
1410 if test -z "${no_itcl}"; then
b381d62d 1411 CY_AC_LOAD_ITCLCONFIG
3fc11d3e
JM
1412
1413 ITCLLIB="${ITCL_BUILD_LIB_SPEC}"
b381d62d 1414 ITCL_DEPS="${ITCL_LIB_FULL_PATH}"
3fc11d3e
JM
1415 fi
1416
1417
1418 # now look for Itk library stuff
1419 CY_AC_PATH_ITKCONFIG
1420 if test -z "${no_itcl}"; then
1421 CY_AC_LOAD_ITKCONFIG
1422
3fc11d3e 1423 ITKLIB="${ITK_BUILD_LIB_SPEC}"
b381d62d 1424 ITK_DEPS="${ITK_LIB_FULL_PATH}"
3fc11d3e
JM
1425 fi
1426
4226a5a5 1427 ENABLE_CFLAGS="${ENABLE_CFLAGS} \$(SUBDIR_GDBTK_CFLAGS)"
3fc11d3e
JM
1428
1429 # Include some libraries that Tcl and Tk want.
b2a1bd4f 1430 TCL_LIBS='$(LIBGUI) $(ITCL) $(ITK) $(TK) $(TCL) $(X11_LDFLAGS) $(X11_LIBS)'
3fc11d3e
JM
1431 # Yes, the ordering seems wrong here. But it isn't.
1432 # TK_LIBS is the list of libraries that need to be linked
1433 # after Tcl/Tk. Note that this isn't put into LIBS. If it
1434 # were in LIBS then any link tests after this point would
1435 # try to include things like `$(LIBGUI)', which wouldn't work.
1436 GDBTKLIBS="${TCL_LIBS} ${TK_LIBS}"
4226a5a5
FN
1437
1438 CONFIG_OBS="${CONFIG_OBS} \$(SUBDIR_GDBTK_OBS)"
1439 CONFIG_DEPS="${CONFIG_DEPS} \$(SUBDIR_GDBTK_DEPS)"
1440 CONFIG_SRCS="${CONFIG_SRCS} \$(SUBDIR_GDBTK_SRCS)"
33f8ca73
AC
1441 CONFIG_ALL="${CONFIG_ALL} all-gdbtk"
1442 CONFIG_CLEAN="${CONFIG_CLEAN} clean-gdbtk"
1443 CONFIG_INSTALL="${CONFIG_INSTALL} install-gdbtk"
1444 CONFIG_UNINSTALL="${CONFIG_UNINSTALL} uninstall-gdbtk"
3fc11d3e
JM
1445
1446 if test x$gdb_cv_os_cygwin = xyes; then
1447 WIN32LIBS="${WIN32LIBS} -lshell32 -lgdi32 -lcomdlg32 -ladvapi32"
1448 WIN32LDAPP="-Wl,--subsystem,console"
1449 CONFIG_OBS="${CONFIG_OBS} gdbres.o"
1450 fi
1451 fi
1452 fi
ffc6a242 1453
3ace7edb 1454 AC_CONFIG_SUBDIRS(gdbtk)
3fc11d3e
JM
1455fi
1456
3fc11d3e
JM
1457AC_SUBST(X_CFLAGS)
1458AC_SUBST(X_LDFLAGS)
1459AC_SUBST(X_LIBS)
dd2504ab
JM
1460AC_SUBST(TCL_DEPS)
1461AC_SUBST(TK_DEPS)
3fc11d3e
JM
1462AC_SUBST(ITCLLIB)
1463AC_SUBST(ITCL_DEPS)
1464AC_SUBST(ITKLIB)
1465AC_SUBST(ITK_DEPS)
3fc11d3e
JM
1466AC_SUBST(GDBTKLIBS)
1467AC_SUBST(GDBTK_CFLAGS)
d1c3b63a 1468AC_SUBST(GDBTK_SRC_DIR)
8b93c638 1469
c906108c
SS
1470AC_PATH_X
1471
9cc52bde
MK
1472# Check whether we should enable the TUI, but only do so if we really
1473# can.
1474if test x"$enable_tui" = xyes; then
1475 if test -d $srcdir/tui; then
1476 if test "$ac_cv_search_waddstr" != no; then
1477 CONFIG_OBS="$CONFIG_OBS \$(SUBDIR_TUI_OBS)"
1478 CONFIG_DEPS="$CONFIG_DEPS \$(SUBDIR_TUI_DEPS)"
1479 CONFIG_SRCS="$CONFIG_SRCS \$(SUBDIR_TUI_SRCS)"
1480 CONFIG_INITS="$CONFIG_INITS \$(SUBDIR_TUI_INITS)"
1481 ENABLE_CFLAGS="$ENABLE_CFLAGS \$(SUBDIR_TUI_CFLAGS)"
1482 CONFIG_ALL="${CONFIG_ALL} all-tui"
1483 CONFIG_CLEAN="${CONFIG_CLEAN} clean-tui"
1484 CONFIG_INSTALL="${CONFIG_INSTALL} install-tui"
1485 CONFIG_UNINSTALL="${CONFIG_UNINSTALL} uninstall-tui"
1486 else
1487 AC_MSG_WARN([no enhanced curses library found; disabling TUI])
1488 fi
1489 fi
1490fi
1491
7a292a7a
SS
1492# Unlike the sim directory, whether a simulator is linked is controlled by
1493# presence of a SIM= and a SIM_OBS= definition in the target '.mt' file.
1494# This code just checks for a few cases where we'd like to ignore those
1495# definitions, even when they're present in the '.mt' file. These cases
1496# are when --disable-sim is specified, or if the simulator directory is
6c5cfe5b 1497# not part of the source tree.
7a292a7a
SS
1498#
1499AC_ARG_ENABLE(sim,
1500[ --enable-sim Link gdb with simulator],
1501[echo "enable_sim = $enable_sim";
1502 echo "enableval = ${enableval}";
1503 case "${enableval}" in
1504 yes) ignore_sim=false ;;
1505 no) ignore_sim=true ;;
1506 *) ignore_sim=false ;;
1507 esac],
1508[ignore_sim=false])
1509
1510if test ! -d "${srcdir}/../sim"; then
1511 ignore_sim=true
1512fi
1513
1514if test "${ignore_sim}" = "true"; then
1515 IGNORE_SIM="SIM="
1516 IGNORE_SIM_OBS="SIM_OBS="
1517else
1518 IGNORE_SIM=""
1519 IGNORE_SIM_OBS=""
60ca704f 1520 AC_DEFINE(WITH_SIM, 1, [Define if the simulator is being linked in.])
7a292a7a
SS
1521fi
1522AC_SUBST(IGNORE_SIM)
1523AC_SUBST(IGNORE_SIM_OBS)
1524
c906108c 1525AC_SUBST(ENABLE_CFLAGS)
d28f9cdf 1526AC_SUBST(PROFILE_CFLAGS)
c906108c
SS
1527
1528AC_SUBST(CONFIG_OBS)
1529AC_SUBST(CONFIG_DEPS)
1530AC_SUBST(CONFIG_SRCS)
b3a90332
AC
1531AC_SUBST(CONFIG_ALL)
1532AC_SUBST(CONFIG_CLEAN)
e56ac5c3
AC
1533AC_SUBST(CONFIG_INSTALL)
1534AC_SUBST(CONFIG_UNINSTALL)
c906108c 1535
c35f4ffc
AC
1536# List of host floatformats.
1537AC_DEFINE_UNQUOTED(GDB_HOST_FLOAT_FORMAT,$gdb_host_float_format,[Host float floatformat])
1538AC_DEFINE_UNQUOTED(GDB_HOST_DOUBLE_FORMAT,$gdb_host_double_format,[Host double floatformat])
1539AC_DEFINE_UNQUOTED(GDB_HOST_LONG_DOUBLE_FORMAT,$gdb_host_long_double_format,[Host long double floatformat])
1540
c906108c
SS
1541# target_subdir is used by the testsuite to find the target libraries.
1542target_subdir=
1543if test "${host}" != "${target}"; then
1544 target_subdir="${target_alias}/"
1545fi
1546AC_SUBST(target_subdir)
1547
1548frags=
771b4502 1549if test "${gdb_native}" = "yes"; then
0dad8a66
MK
1550 host_makefile_frag=${srcdir}/config/${gdb_host_cpu}/${gdb_host}.mh
1551 if test ! -f ${host_makefile_frag}; then
1552 AC_MSG_ERROR("*** Gdb does not support native target ${host}")
1553 fi
1554 frags="$frags $host_makefile_frag"
1555else
1556 host_makefile_frag=/dev/null
c906108c 1557fi
c906108c
SS
1558
1559target_makefile_frag=${srcdir}/config/${gdb_target_cpu}/${gdb_target}.mt
1560if test ! -f ${target_makefile_frag}; then
0dad8a66 1561 AC_MSG_ERROR("*** Gdb does not support target ${target}")
c906108c
SS
1562fi
1563frags="$frags $target_makefile_frag"
1564
1565AC_SUBST_FILE(host_makefile_frag)
1566AC_SUBST_FILE(target_makefile_frag)
1567AC_SUBST(frags)
1568
1569changequote(,)dnl
1570hostfile=`sed -n '
1571s/XM_FILE[ ]*=[ ]*\([^ ]*\)/\1/p
1572' ${host_makefile_frag}`
1573
1574targetfile=`sed -n '
b523a1fd 1575s/^[ ]*DEPRECATED_TM_FILE[ ]*=[ ]*\([^ ]*\)/\1/p
c906108c
SS
1576' ${target_makefile_frag}`
1577
771b4502 1578if test "${gdb_native}" = "yes"; then
a85f51e7
DJ
1579# We pick this up from the host configuration file (.mh) because we
1580# do not have a native configuration Makefile fragment.
c906108c
SS
1581nativefile=`sed -n '
1582s/NAT_FILE[ ]*=[ ]*\([^ ]*\)/\1/p
1583' ${host_makefile_frag}`
c906108c
SS
1584fi
1585changequote([,])
1586
b00a8037
DJ
1587if test x"${gdb_osabi}" != x ; then
1588 AC_DEFINE_UNQUOTED(GDB_OSABI_DEFAULT, $gdb_osabi,
1589 [Define to the default OS ABI for this configuration.])
1590fi
1591
8dcde887
MK
1592# Enable multi-ice-gdb-server.
1593AC_ARG_ENABLE(multi-ice,
1594[ --enable-multi-ice build the multi-ice-gdb-server],
1595 [case $enableval in
1596 yes | no)
1597 ;;
1598 *) AC_MSG_ERROR([bad value $enableval for --enable-multi-ice]) ;;
1599 esac])
1600if test "x$enable_multi_ice" = xyes; then
3ace7edb 1601 AC_CONFIG_SUBDIRS(multi-ice)
96baa820
JM
1602fi
1603
a13e2c95
UW
1604# We only build gdbserver automatically in a native configuration.
1605if test "$gdb_native" = "yes"; then
8dcde887
MK
1606 AC_MSG_CHECKING(whether gdbserver is supported on this host)
1607 if test "x$build_gdbserver" = xyes; then
8dcde887 1608 AC_MSG_RESULT(yes)
3ace7edb 1609 AC_CONFIG_SUBDIRS(gdbserver)
8dcde887
MK
1610 else
1611 AC_MSG_RESULT(no)
1612 fi
a85f51e7
DJ
1613fi
1614
2c0fc042
AC
1615# If hostfile (XM_FILE) and/or targetfile (DEPRECATED_TM_FILE) and/or
1616# nativefile (NAT_FILE) is not set in config/*/*.m[ht] files, we link
1617# to an empty version.
c906108c
SS
1618
1619files=
1620links=
5a2402b8 1621
c906108c 1622rm -f xm.h
5a2402b8 1623xm_h=""
c906108c 1624if test "${hostfile}" != ""; then
5a2402b8 1625 xm_h=xm.h
0f475e27
AC
1626 case "${hostfile}" in
1627 xm-*.h ) GDB_XM_FILE="config/${gdb_host_cpu}/${hostfile}" ;;
1628 * ) GDB_XM_FILE="${hostfile}"
1629 esac
5a2402b8
AC
1630 files="${files} ${GDB_XM_FILE}"
1631 links="${links} xm.h"
60ca704f 1632 AC_DEFINE_UNQUOTED(GDB_XM_FILE, "${GDB_XM_FILE}", [hostfile])
c906108c 1633fi
5a2402b8
AC
1634AC_SUBST(xm_h)
1635
c906108c 1636rm -f tm.h
5a2402b8 1637tm_h=""
c906108c 1638if test "${targetfile}" != ""; then
5a2402b8 1639 tm_h=tm.h
0f475e27 1640 case "${targetfile}" in
b8c4aece 1641 tm-*.h ) GDB_TM_FILE="config/${gdb_target_cpu}/${targetfile}" ;;
0f475e27
AC
1642 * ) GDB_TM_FILE="${targetfile}"
1643 esac
5a2402b8
AC
1644 files="${files} ${GDB_TM_FILE}"
1645 links="${links} tm.h"
60ca704f 1646 AC_DEFINE_UNQUOTED(GDB_TM_FILE, "${GDB_TM_FILE}", [targetfile])
c906108c 1647fi
5a2402b8
AC
1648AC_SUBST(tm_h)
1649
c906108c 1650rm -f nm.h
5a2402b8 1651nm_h=""
c906108c 1652if test "${nativefile}" != ""; then
5a2402b8 1653 nm_h=nm.h
0f475e27
AC
1654 case "${nativefile}" in
1655 nm-*.h ) GDB_NM_FILE="config/${gdb_host_cpu}/${nativefile}" ;;
1656 * ) GDB_NM_FILE="${nativefile}"
1657 esac
5a2402b8
AC
1658 files="${files} ${GDB_NM_FILE}"
1659 links="${links} nm.h"
60ca704f 1660 AC_DEFINE_UNQUOTED(GDB_NM_FILE, "${GDB_NM_FILE}", [nativefile])
c906108c 1661fi
5a2402b8
AC
1662AC_SUBST(nm_h)
1663
c906108c
SS
1664AC_LINK_FILES($files, $links)
1665
1666dnl Check for exe extension set on certain hosts (e.g. Win32)
1667AC_EXEEXT
1668
234b45d4
KB
1669dnl Detect the character set used by this host.
1670
1671dnl At the moment, we just assume it's ISO-8859-1 (which is a
1672dnl superset of ASCII containing the characters needed for French,
1673dnl German, Spanish, Italian, and possibly others), but if were
1674dnl *were* to support any host character sets other than ISO-8859-1,
1675dnl here's where we'd detect it.
1676AC_DEFINE(GDB_DEFAULT_HOST_CHARSET, "ISO-8859-1",
1677 [Define to be a string naming the default host character set.])
1678
1679AM_ICONV
1680
ed952ac5 1681AC_OUTPUT(Makefile .gdbinit:gdbinit.in,
c906108c
SS
1682[
1683dnl Autoconf doesn't provide a mechanism for modifying definitions
1684dnl provided by makefile fragments.
1685dnl
c906108c
SS
1686
1687changequote(,)dnl
2c0fc042 1688sed -e '/^DEPRECATED_TM_FILE[ ]*=/s,^DEPRECATED_TM_FILE[ ]*=[ ]*,&config/'"${gdb_target_cpu}"'/,
c906108c
SS
1689/^XM_FILE[ ]*=/s,^XM_FILE[ ]*=[ ]*,&config/'"${gdb_host_cpu}"'/,
1690/^NAT_FILE[ ]*=/s,^NAT_FILE[ ]*=[ ]*,&config/'"${gdb_host_cpu}"'/,' <Makefile >Makefile.tmp
1691mv -f Makefile.tmp Makefile
1692changequote([,])dnl
1693
2acceee2 1694
c906108c
SS
1695case x$CONFIG_HEADERS in
1696xconfig.h:config.in)
1697echo > stamp-h ;;
1698esac
1699],
1700[
1701gdb_host_cpu=$gdb_host_cpu
1702gdb_target_cpu=$gdb_target_cpu
1703nativefile=$nativefile
1704])
1705
1706exit 0
This page took 0.567455 seconds and 4 git commands to generate.