merge from gcc
[deliverable/binutils-gdb.git] / gdb / configure.ac
CommitLineData
c906108c 1dnl Autoconf configure script for GDB, the GNU debugger.
0ea3f30e 2dnl Copyright (C) 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004,
6c7a06a3 3dnl 2005, 2006, 2007, 2008, 2009
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
e28b3332 32gl_EARLY
c906108c
SS
33AM_PROG_CC_STDC
34
e28b3332 35AC_CONFIG_AUX_DIR(..)
c906108c
SS
36AC_CANONICAL_SYSTEM
37
a417dc56
RW
38# Dependency checking.
39ZW_CREATE_DEPDIR
40ZW_PROG_COMPILER_DEPENDENCIES([CC])
41
42# Check for the 'make' the user wants to use.
43AC_CHECK_PROGS(MAKE, make)
44MAKE_IS_GNU=
45case "`$MAKE --version 2>&1 | sed 1q`" in
46 *GNU*)
47 MAKE_IS_GNU=yes
48 ;;
49esac
50AM_CONDITIONAL(GMAKE, test "$MAKE_IS_GNU" = yes)
51AC_PROG_MAKE_SET
52
ddc9cd0f
AC
53dnl List of object files and targets accumulated by configure.
54
55CONFIG_OBS=
56CONFIG_DEPS=
57CONFIG_SRCS=
58ENABLE_CFLAGS=
59
60CONFIG_ALL=
61CONFIG_CLEAN=
62CONFIG_INSTALL=
63CONFIG_UNINSTALL=
64
20e95c23
DJ
65dnl Set up for gettext.
66ZW_GNU_GETTEXT_SISTER_DIR
ddc9cd0f
AC
67
68localedir='${datadir}/locale'
69AC_SUBST(localedir)
70
20e95c23 71if test x"$USE_NLS" = xyes; then
ddc9cd0f
AC
72 CONFIG_ALL="$CONFIG_ALL all-po"
73 CONFIG_CLEAN="$CONFIG_CLEAN clean-po"
74 CONFIG_INSTALL="$CONFIG_INSTALL install-po"
75 CONFIG_UNINSTALL="$CONFIG_UNINSTALL uninstall-po"
76fi
77
e28b3332
DJ
78gl_INIT
79
d5af19ba
DJ
80# For Makefile dependencies.
81GNULIB_STDINT_H=
82if test x"$STDINT_H" != x; then
83 GNULIB_STDINT_H=gnulib/$STDINT_H
84fi
85AC_SUBST(GNULIB_STDINT_H)
86
ddc9cd0f
AC
87PACKAGE=gdb
88AC_DEFINE_UNQUOTED(PACKAGE, "$PACKAGE", [Name of this package. ])
89AC_SUBST(PACKAGE)
0fbb3da7 90
e28b3332
DJ
91# GDB does not use automake, but gnulib does. This line lets us
92# generate its Makefile.in.
93AM_INIT_AUTOMAKE(gdb, UNUSED-VERSION, [no-define])
94
b14b1491
TT
95GDB_AC_WITH_DIR(DEBUGDIR, separate-debug-dir,
96 [look for global separate debug info in this path @<:@LIBDIR/debug@:>@],
97 [${libdir}/debug])
98
99# GDB's datadir relocation
100
101GDB_AC_WITH_DIR(GDB_DATADIR, gdb-datadir,
102 [look for global separate data files in this path @<:@DATADIR/gdb@:>@],
103 [${datadir}/gdb])
aa28a74e 104
29b0e8a2 105AC_ARG_WITH(relocated-sources,
d2596e2e 106AS_HELP_STRING([--with-relocated-sources=PATH], [automatically relocate this path for source files]),
29b0e8a2
JM
107[reloc_srcdir="${withval}"
108 AC_DEFINE_DIR(RELOC_SRCDIR, reloc_srcdir,
109 [Relocated directory for source files. ])
110])
111
8dcde887 112AC_CONFIG_SUBDIRS(doc testsuite)
96baa820 113
d0c678e6
UW
114# Check whether to support alternative target configurations
115AC_ARG_ENABLE(targets,
d2596e2e 116AS_HELP_STRING([--enable-targets=TARGETS], [alternative target configurations]),
d0c678e6
UW
117[case "${enableval}" in
118 yes | "") AC_ERROR(enable-targets option must specify target names or 'all')
119 ;;
120 no) enable_targets= ;;
121 *) enable_targets=$enableval ;;
122esac])
123
c0993dbe
UW
124# Check whether to enable 64-bit support on 32-bit hosts
125AC_ARG_ENABLE(64-bit-bfd,
d2596e2e 126AS_HELP_STRING([--enable-64-bit-bfd], [64-bit support (on hosts with narrower word sizes)]),
c0993dbe
UW
127[case "${enableval}" in
128 yes) want64=true ;;
129 no) want64=false ;;
130 *) AC_MSG_ERROR(bad value ${enableval} for 64-bit-bfd option) ;;
131esac],[want64=false])dnl
132
121ce6e5
DJ
133# Provide defaults for some variables set by the per-host and per-target
134# configuration.
135gdb_host_obs=posix-hdep.o
136
771b4502
UW
137if test "${target}" = "${host}"; then
138 gdb_native=yes
139else
140 gdb_native=no
141fi
142
27e9bf90 143. $srcdir/configure.host
c906108c 144
d0c678e6
UW
145# Accumulate some settings from configure.tgt over all enabled targets
146
147TARGET_OBS=
148all_targets=
149
150for targ_alias in `echo $target_alias $enable_targets | sed 's/,/ /g'`
151do
152 if test "$targ_alias" = "all"; then
153 all_targets=true
154 else
155 # Canonicalize the secondary target names.
156 result=`$ac_config_sub $targ_alias 2>/dev/null`
157 if test -n "$result"; then
158 targ=$result
159 else
160 targ=$targ_alias
161 fi
162
163 . ${srcdir}/configure.tgt
164
165 # Target-specific object files
166 for i in ${gdb_target_obs}; do
167 case " $TARGET_OBS " in
168 *" ${i} "*) ;;
169 *)
170 TARGET_OBS="$TARGET_OBS ${i}"
171 ;;
172 esac
173 done
c0993dbe
UW
174
175 # Check whether this target needs 64-bit CORE_ADDR
176 if test x${want64} = xfalse; then
177 . ${srcdir}/../bfd/config.bfd
178 fi
d0c678e6
UW
179 fi
180done
181
182if test x${all_targets} = xtrue; then
c0993dbe
UW
183
184 # We want all 64-bit targets if we either:
185 # - run on a 64-bit host or
186 # - already require 64-bit support for some other target or
187 # - the --enable-64-bit-bfd option was supplied
188 # Otherwise we only support all 32-bit targets.
189 #
190 # NOTE: This test must be in sync with the corresponding
191 # tests in BFD!
192
193 if test x${want64} = xfalse; then
194 AC_CHECK_SIZEOF(long)
195 if test "x${ac_cv_sizeof_long}" = "x8"; then
196 want64=true
197 fi
198 fi
199 if test x${want64} = xtrue; then
200 TARGET_OBS='$(ALL_TARGET_OBS) $(ALL_64_TARGET_OBS)'
201 else
202 TARGET_OBS='$(ALL_TARGET_OBS)'
203 fi
d0c678e6
UW
204fi
205
206AC_SUBST(TARGET_OBS)
207
208# For other settings, only the main target counts.
209gdb_sim=
210gdb_osabi=
211build_gdbserver=
212targ=$target; . ${srcdir}/configure.tgt
c906108c 213
27e9bf90
MK
214# Fetch the default architecture and default target vector from BFD.
215targ=$target; . $srcdir/../bfd/config.bfd
5c8cc331 216
27e9bf90
MK
217# We only want the first architecture, so strip off the others if
218# there is more than one.
219targ_archs=`echo $targ_archs | sed 's/ .*//'`
5c8cc331 220
27e9bf90
MK
221if test "x$targ_archs" != x; then
222 AC_DEFINE_UNQUOTED(DEFAULT_BFD_ARCH, $targ_archs,
223 [Define to BFD's default architecture. ])
1ba607ad 224fi
27e9bf90
MK
225if test "x$targ_defvec" != x; then
226 AC_DEFINE_UNQUOTED(DEFAULT_BFD_VEC, $targ_defvec,
227 [Define to BFD's default target vector. ])
1ba607ad
AC
228fi
229
627af7ea
MK
230# The CLI cannot be disabled yet, but may be in the future.
231
232# Enable CLI.
233AC_ARG_ENABLE(gdbcli,
d2596e2e 234AS_HELP_STRING([--disable-gdbcli], [disable command-line interface (CLI)]),
627af7ea
MK
235 [case $enableval in
236 yes)
237 ;;
238 no)
239 AC_MSG_ERROR([the command-line interface cannot be disabled yet]) ;;
240 *)
241 AC_MSG_ERROR([bad value $enableval for --enable-gdbcli]) ;;
242 esac],
243 [enable_gdbcli=yes])
244if test x"$enable_gdbcli" = xyes; then
245 if test -d $srcdir/cli; then
246 CONFIG_OBS="$CONFIG_OBS \$(SUBDIR_CLI_OBS)"
247 CONFIG_DEPS="$CONFIG_DEPS \$(SUBDIR_CLI_DEPS)"
248 CONFIG_SRCS="$CONFIG_SRCS \$(SUBDIR_CLI_SRCS)"
627af7ea 249 ENABLE_CFLAGS="$ENABLE_CFLAGS \$(SUBDIR_CLI_CFLAGS)"
627af7ea
MK
250 fi
251fi
252
253# Enable MI.
254AC_ARG_ENABLE(gdbmi,
d2596e2e 255AS_HELP_STRING([--disable-gdbmi], [disable machine-interface (MI)]),
627af7ea
MK
256 [case $enableval in
257 yes | no)
258 ;;
259 *)
260 AC_MSG_ERROR([bad value $enableval for --enable-gdbmi]) ;;
261 esac],
262 [enable_gdbmi=yes])
263if test x"$enable_gdbmi" = xyes; then
264 if test -d $srcdir/mi; then
265 CONFIG_OBS="$CONFIG_OBS \$(SUBDIR_MI_OBS)"
266 CONFIG_DEPS="$CONFIG_DEPS \$(SUBDIR_MI_DEPS)"
267 CONFIG_SRCS="$CONFIG_SRCS \$(SUBDIR_MI_SRCS)"
627af7ea 268 ENABLE_CFLAGS="$ENABLE_CFLAGS \$(SUBDIR_MI_CFLAGS)"
627af7ea
MK
269 fi
270fi
271
287c1a40
MK
272# Enable TUI.
273AC_ARG_ENABLE(tui,
d2596e2e 274AS_HELP_STRING([--enable-tui], [enable full-screen terminal user interface (TUI)]),
287c1a40 275 [case $enableval in
3ca64bd3 276 yes | no | auto)
287c1a40
MK
277 ;;
278 *)
279 AC_MSG_ERROR([bad value $enableval for --enable-tui]) ;;
3ca64bd3 280 esac],enable_tui=auto)
287c1a40 281
8ee53726
MK
282# Enable gdbtk.
283AC_ARG_ENABLE(gdbtk,
d2596e2e 284AS_HELP_STRING([--enable-gdbtk], [enable gdbtk graphical user interface (GUI)]),
8ee53726
MK
285 [case $enableval in
286 yes | no)
287 ;;
288 *)
289 AC_MSG_ERROR([bad value $enableval for --enable-gdbtk]) ;;
290 esac],
5062cc19 291 [if test -d $srcdir/gdbtk; then
8ee53726
MK
292 enable_gdbtk=yes
293 else
294 enable_gdbtk=no
295 fi])
296# We unconditionally disable gdbtk tests on selected platforms.
297case $host_os in
298 go32* | windows*)
299 AC_MSG_WARN([gdbtk isn't supported on $host; disabling])
300 enable_gdbtk=no ;;
301esac
302
0e5d83e3
JJ
303# Libunwind support.
304AC_ARG_WITH(libunwind,
d2596e2e 305AS_HELP_STRING([--with-libunwind], [use libunwind frame unwinding support]),
0e5d83e3
JJ
306[case "${withval}" in
307 yes) enable_libunwind=yes ;;
308 no) enable_libunwind=no ;;
309 *) AC_MSG_ERROR(bad value ${withval} for GDB with-libunwind option) ;;
310esac],[
a9322a30 311 AC_CHECK_HEADERS(libunwind.h libunwind-ia64.h)
0e5d83e3
JJ
312 if test x"$ac_cv_header_libunwind_h" = xyes -a x"$ac_cv_header_libunwind_ia64_h" = xyes; then
313 enable_libunwind=yes;
314 fi
315])
316
317if test x"$enable_libunwind" = xyes; then
a9322a30 318 AC_CHECK_HEADERS(libunwind.h libunwind-ia64.h)
60ca704f 319 AC_DEFINE(HAVE_LIBUNWIND, 1, [Define if libunwind library is being used.])
0e5d83e3
JJ
320 CONFIG_OBS="$CONFIG_OBS libunwind-frame.o"
321 CONFIG_DEPS="$CONFIG_DEPS libunwind-frame.o"
322 CONFIG_SRCS="$CONFIG_SRCS libunwind-frame.c"
323fi
324
cb01cfba 325opt_curses=no
d2596e2e 326AC_ARG_WITH(curses, AS_HELP_STRING([--with-curses], [use the curses library instead of the termcap library]), opt_curses=$withval)
cb01cfba 327
76a39ba7 328prefer_curses=no
cb01cfba 329if test "$opt_curses" = "yes"; then
76a39ba7 330 prefer_curses=yes
cb01cfba
JB
331fi
332
d28f9cdf
DJ
333# Profiling support.
334AC_ARG_ENABLE(profiling,
d2596e2e 335AS_HELP_STRING([--enable-profiling], [enable profiling of GDB]),
d28f9cdf
DJ
336 [case $enableval in
337 yes | no)
338 ;;
339 *)
340 AC_MSG_ERROR([bad value $enableval for --enable-profile]) ;;
341 esac],
342 [enable_profiling=no])
343
d9feb4e7 344AC_CHECK_FUNCS(monstartup _mcleanup)
b0b1c2c0
MK
345AC_CACHE_CHECK([for _etext], ac_cv_var__etext,
346[AC_TRY_LINK(
347[#include <stdlib.h>
348extern char _etext;
349],
350[free (&_etext);], ac_cv_var__etext=yes, ac_cv_var__etext=no)])
351if test $ac_cv_var__etext = yes; then
352 AC_DEFINE(HAVE__ETEXT, 1,
353 [Define to 1 if your system has the _etext variable. ])
354fi
01fe12f6
JB
355AC_CACHE_CHECK([for etext], ac_cv_var_etext,
356[AC_TRY_LINK(
357[#include <stdlib.h>
358extern char etext;
359],
360[free (&etext);], ac_cv_var_etext=yes, ac_cv_var_etext=no)])
361if test $ac_cv_var_etext = yes; then
362 AC_DEFINE(HAVE_ETEXT, 1,
363 [Define to 1 if your system has the etext variable. ])
364fi
d28f9cdf 365if test "$enable_profiling" = yes ; then
d9feb4e7
DJ
366 if test $ac_cv_func_monstartup = no || test $ac_cv_func__mcleanup = no; then
367 AC_MSG_ERROR(--enable-profiling requires monstartup and _mcleanup)
368 fi
d28f9cdf
DJ
369 PROFILE_CFLAGS=-pg
370 OLD_CFLAGS="$CFLAGS"
371 CFLAGS="$CFLAGS $PROFILE_CFLAGS"
372
d9feb4e7
DJ
373 AC_CACHE_CHECK([whether $CC supports -pg], ac_cv_cc_supports_pg,
374 [AC_TRY_COMPILE([], [int x;], ac_cv_cc_supports_pg=yes,
375 ac_cv_cc_supports_pg=no)])
d28f9cdf 376
d9feb4e7
DJ
377 if test $ac_cv_cc_supports_pg = no; then
378 AC_MSG_ERROR(--enable-profiling requires a compiler which supports -pg)
379 fi
d28f9cdf
DJ
380
381 CFLAGS="$OLD_CFLAGS"
382fi
383
c16158bc
JM
384ACX_PKGVERSION([GDB])
385ACX_BUGURL([http://www.gnu.org/software/gdb/bugs/])
386AC_DEFINE_UNQUOTED([PKGVERSION], ["$PKGVERSION"], [Additional package description])
387AC_DEFINE_UNQUOTED([REPORT_BUGS_TO], ["$REPORT_BUGS_TO"], [Bug reporting address])
388
8bb2c122
MK
389# --------------------- #
390# Checks for programs. #
391# --------------------- #
392
7a292a7a 393AC_PROG_AWK
c906108c 394AC_PROG_INSTALL
8bb2c122
MK
395AC_PROG_LN_S
396AC_PROG_RANLIB
397AC_PROG_YACC
398
c906108c 399AC_CHECK_TOOL(AR, ar)
95ca63c4
CF
400AC_CHECK_TOOL(DLLTOOL, dlltool)
401AC_CHECK_TOOL(WINDRES, windres)
c906108c 402
8bb2c122 403# Needed for GNU/Hurd.
75c6e08a
MK
404AC_CHECK_TOOL(MIG, mig)
405
9a156167
MK
406# ---------------------- #
407# Checks for libraries. #
408# ---------------------- #
409
410# We might need to link with -lm; most simulators need it.
411AC_CHECK_LIB(m, main)
412
413# We need to link with -lw to get `wctype' on Solaris before Solaris
414# 2.6. Solaris 2.6 and beyond have this function in libc, and have a
415# libw that some versions of the GNU linker cannot hanle (GNU ld 2.9.1
416# is known to have this problem). Therefore we avoid libw if we can.
417AC_CHECK_FUNC(wctype, [],
418 [AC_CHECK_LIB(w, wctype)])
419
c890192f
MK
420# Some systems (e.g. Solaris) have `gethostbyname' in libnsl.
421AC_SEARCH_LIBS(gethostbyname, nsl)
422
9a156167
MK
423# Some systems (e.g. Solaris) have `socketpair' in libsocket.
424AC_SEARCH_LIBS(socketpair, socket)
425
233a11ab
CS
426# Link in zlib if we can. This allows us to read compressed debug sections.
427AC_SEARCH_LIBS(zlibVersion, z, [AC_CHECK_HEADERS(zlib.h)])
428
d542061a
UW
429# On HP/UX we may need libxpdl for dlgetmodinfo (used by solib-pa64.c).
430AC_SEARCH_LIBS(dlgetmodinfo, [dl xpdl])
431
6c7a06a3
TT
432AM_ICONV
433
77f120bf
JB
434# On alpha-osf, it appears that libtermcap and libcurses are not compatible.
435# There is a very specific comment in /usr/include/curses.h explaining that
436# termcap routines built into libcurses must not be used.
437#
438# The symptoms we observed so far is GDB unexpectedly changing
439# the terminal settings when tgetent is called - this is particularly
440# visible as the output is missing carriage returns, and so rapidly
441# becomes very hard to read.
442#
443# The readline configure script has already decided that libtermcap
444# was enough for its purposes, and so decided to build readline using
445# libtermcap. Since the TUI mode requires curses, building GDB with
446# TUI enabled results in both libraries to be used at the same time,
447# which is not allowed. This basically means that GDB with TUI is
448# broken on alpha-osf.
449
450case $host_os in
451 alpha*-*-osf* )
452 if "$enable_tui" = "yes"; then
453 AC_MSG_ERROR([Building GDB with TUI mode is not supported on this host])
454 fi
455 if "$enable_tui" = "auto"; then
456 enable_tui=no
457 fi
458 ;;
459esac
460
cb01cfba 461# For the TUI, we need enhanced curses functionality.
bd8a8e1b 462if test x"$enable_tui" != xno; then
cb01cfba
JB
463 prefer_curses=yes
464fi
465
466curses_found=no
467if test x"$prefer_curses" = xyes; then
468 # FIXME: kettenis/20040905: We prefer ncurses over the vendor-supplied
469 # curses library because the latter might not provide all the
470 # functionality we need. However, this leads to problems on systems
471 # where the linker searches /usr/local/lib, but the compiler doesn't
472 # search /usr/local/include, if ncurses is installed in /usr/local. A
473 # default installation of ncurses on alpha*-dec-osf* will lead to such
474 # a situation.
475 AC_SEARCH_LIBS(waddstr, [ncurses cursesX curses])
476
477 if test "$ac_cv_search_waddstr" != no; then
478 curses_found=yes
479 fi
480fi
481
77f120bf
JB
482# Check whether we should enable the TUI, but only do so if we really
483# can.
484if test x"$enable_tui" != xno; then
485 if test -d $srcdir/tui; then
cb01cfba 486 if test "$curses_found" != no; then
77f120bf
JB
487 CONFIG_OBS="$CONFIG_OBS \$(SUBDIR_TUI_OBS)"
488 CONFIG_DEPS="$CONFIG_DEPS \$(SUBDIR_TUI_DEPS)"
489 CONFIG_SRCS="$CONFIG_SRCS \$(SUBDIR_TUI_SRCS)"
490 ENABLE_CFLAGS="$ENABLE_CFLAGS \$(SUBDIR_TUI_CFLAGS)"
491 CONFIG_ALL="${CONFIG_ALL} all-tui"
492 CONFIG_CLEAN="${CONFIG_CLEAN} clean-tui"
493 CONFIG_INSTALL="${CONFIG_INSTALL} install-tui"
494 CONFIG_UNINSTALL="${CONFIG_UNINSTALL} uninstall-tui"
495 else
496 if test x"$enable_tui" = xyes; then
497 AC_MSG_ERROR([no enhanced curses library found; disable TUI])
498 else
499 AC_MSG_WARN([no enhanced curses library found; disabling TUI])
500 fi
501 fi
502 fi
503fi
504
4f0be353
MK
505# Since GDB uses Readline, we need termcap functionality. In many
506# cases this will be provided by the curses library, but some systems
507# have a seperate termcap library, or no curses library at all.
287c1a40
MK
508
509case $host_os in
510 cygwin*)
511 if test -d $srcdir/libtermcap; then
512 LIBS="../libtermcap/libtermcap.a $LIBS"
513 ac_cv_search_tgetent="../libtermcap/libtermcap.a"
514 fi ;;
228a417c 515 go32* | *djgpp*)
287c1a40
MK
516 ac_cv_search_tgetent="none required"
517 ;;
7ef34f2c
MM
518 *mingw32*)
519 ac_cv_search_tgetent="none required"
31b060a2 520 CONFIG_OBS="$CONFIG_OBS windows-termcap.o"
7ef34f2c 521 ;;
287c1a40
MK
522esac
523
4f0be353
MK
524# These are the libraries checked by Readline.
525AC_SEARCH_LIBS(tgetent, [termcap tinfo curses ncurses])
287c1a40
MK
526
527if test "$ac_cv_search_tgetent" = no; then
528 AC_MSG_ERROR([no termcap library found])
529fi
530
6a30b0a5
AS
531AC_ARG_WITH([system-readline],
532 [AS_HELP_STRING([--with-system-readline],
533 [use installed readline library])])
534
535if test "$with_system_readline" = yes; then
536 READLINE=-lreadline
537 READLINE_DEPS=
538 READLINE_CFLAGS=
539else
540 READLINE='$(READLINE_DIR)/libreadline.a'
541 READLINE_DEPS='$(READLINE)'
542 READLINE_CFLAGS='-I$(READLINE_SRC)/..'
543fi
544AC_SUBST(READLINE)
545AC_SUBST(READLINE_DEPS)
546AC_SUBST(READLINE_CFLAGS)
547
5c39566f
DJ
548AC_ARG_WITH(expat,
549 AS_HELP_STRING([--with-expat], [include expat support (auto/yes/no)]),
550 [], [with_expat=auto])
551AC_MSG_CHECKING([whether to use expat])
552AC_MSG_RESULT([$with_expat])
553
554if test "${with_expat}" = no; then
555 AC_MSG_WARN([expat support disabled; some features may be unavailable.])
556 HAVE_LIBEXPAT=no
ca4ca11e 557else
5c39566f
DJ
558 AC_LIB_HAVE_LINKFLAGS([expat], [], [#include "expat.h"],
559 [XML_Parser p = XML_ParserCreate (0);])
560 if test "$HAVE_LIBEXPAT" != yes; then
561 if test "$with_expat" = yes; then
562 AC_MSG_ERROR([expat is missing or unusable])
563 else
564 AC_MSG_WARN([expat is missing or unusable; some features may be unavailable.])
565 fi
566 else
567 save_LIBS=$LIBS
568 LIBS="$LIBS $LIBEXPAT"
569 AC_CHECK_FUNCS(XML_StopParser)
570 LIBS=$save_LIBS
571 fi
7fa2210b
DJ
572fi
573
d57a3c85
TJB
574dnl Utility to simplify finding libpython.
575AC_DEFUN([AC_TRY_LIBPYTHON],
576[
577 version=$1
578 define([have_libpython_var],$2)
579 define([VERSION],[translit([$1],[abcdefghijklmnopqrstuvwxyz./-],
580 [ABCDEFGHIJKLMNOPQRSTUVWXYZ___])])
581 [HAVE_LIB]VERSION=no
582 AC_MSG_CHECKING([for ${version}])
583 save_LIBS=$LIBS
584 LIBS="$LIBS -l${version}"
585 AC_LINK_IFELSE(AC_LANG_PROGRAM([[#include "${version}/Python.h"]],
586 [[Py_Initialize ();]]),
587 [[HAVE_LIB]VERSION=yes
588 have_libpython_var=yes],
589 [LIBS=$save_LIBS])
590 AC_MSG_RESULT([$[HAVE_LIB]VERSION])
591])
592
593AC_ARG_WITH(python,
594 AS_HELP_STRING([--with-python], [include python support (auto/yes/no/<path>)]),
595 [], [with_python=auto])
596AC_MSG_CHECKING([whether to use python])
597AC_MSG_RESULT([$with_python])
598
599if test "${with_python}" = no; then
600 AC_MSG_WARN([python support disabled; some features may be unavailable.])
601 have_libpython=no
602else
603 case "${with_python}" in
604 yes | auto)
605 # Leave as empty, use defaults.
606 python_includes=
607 python_libs=
608 ;;
609 /*)
610 python_includes="-I${with_python}/include"
611 python_libs="-L${with_python}/lib"
612 ;;
613 *)
614 AC_ERROR(invalid value for --with-python)
615 ;;
616 esac
617
618 save_CPPFLAGS=$CPPFLAGS
619 CPPFLAGS="$CPPFLAGS ${python_includes}"
620 save_LIBS=$LIBS
621 LIBS="$LIBS ${python_libs}"
622 have_libpython=no
623 if test "${have_libpython}" = no; then
624 AC_TRY_LIBPYTHON(python2.6, have_libpython)
625 if test "${HAVE_LIBPYTHON2_6}" = yes; then
626 AC_DEFINE(HAVE_LIBPYTHON2_6, 1, [Define if Python 2.6 is being used.])
627 fi
628 fi
629 if test ${have_libpython} = no; then
630 AC_TRY_LIBPYTHON(python2.5, have_libpython)
631 if test "${HAVE_LIBPYTHON2_5}" = yes; then
632 AC_DEFINE(HAVE_LIBPYTHON2_5, 1, [Define if Python 2.5 is being used.])
633 fi
634 fi
635 if test ${have_libpython} = no; then
636 AC_TRY_LIBPYTHON(python2.4, have_libpython)
637 if test "${HAVE_LIBPYTHON2_4}" = yes; then
638 AC_DEFINE(HAVE_LIBPYTHON2_4, 1, [Define if Python 2.4 is being used.])
639 fi
640 fi
641 if test ${have_libpython} = no; then
642 case "${with_python}" in
643 yes)
644 AC_MSG_ERROR([python is missing or unusable])
645 ;;
646 auto)
647 AC_MSG_WARN([python is missing or unusable; some features may be unavailable.])
648 ;;
649 *)
650 AC_MSG_ERROR([no usable python found at ${with_python}])
651 ;;
652 esac
653 CPPFLAGS=$save_CPPFLAGS
654 LIBS=$save_LIBS
655 fi
656fi
657
658if test "${have_libpython}" = yes; then
659 AC_DEFINE(HAVE_PYTHON, 1, [Define if Python interpreter is being linked in.])
660 CONFIG_OBS="$CONFIG_OBS \$(SUBDIR_PYTHON_OBS)"
661 CONFIG_DEPS="$CONFIG_DEPS \$(SUBDIR_PYTHON_DEPS)"
662 CONFIG_SRCS="$CONFIG_SRCS \$(SUBDIR_PYTHON_SRCS)"
663 ENABLE_CFLAGS="$ENABLE_CFLAGS \$(SUBDIR_PYTHON_CFLAGS)"
664
665 # Flags needed to compile Python code (taken from python-config --cflags).
666 # We cannot call python-config directly because it will output whatever was
667 # used when compiling the Python interpreter itself, including flags which
668 # would make the python-related objects be compiled differently from the
669 # rest of GDB (e.g., -O2 and -fPIC).
670 if test "${GCC}" = yes; then
671 tentative_python_cflags="-fno-strict-aliasing -DNDEBUG -fwrapv"
672 fi
673
674 if test "x${tentative_python_cflags}" != x; then
675 AC_MSG_CHECKING(compiler flags for python code)
676 for flag in ${tentative_python_cflags}; do
677 # Check that the compiler accepts it
678 saved_CFLAGS="$CFLAGS"
679 CFLAGS="$CFLAGS $flag"
680 AC_TRY_COMPILE([],[],PYTHON_CFLAGS="${PYTHON_CFLAGS} $flag",)
681 CFLAGS="$saved_CFLAGS"
682 done
683 AC_MSG_RESULT(${PYTHON_CFLAGS})
684 fi
685else
a08702d6 686 # Even if Python support is not compiled in, we need to have these files
d57a3c85 687 # included in order to recognize the GDB command "python".
6bf0ce2b
PP
688 CONFIG_OBS="$CONFIG_OBS python.o python-value.o python-prettyprint.o"
689 CONFIG_SRCS="$CONFIG_SRCS python/python.c python/python-value.c python/python-prettyprint.c"
d57a3c85
TJB
690fi
691AC_SUBST(PYTHON_CFLAGS)
692
5ee754fc
MK
693# ------------------------- #
694# Checks for header files. #
695# ------------------------- #
c906108c 696
9608ab8b 697AC_HEADER_DIRENT
5ee754fc 698AC_HEADER_STAT
c906108c 699AC_HEADER_STDC
a9322a30
TT
700# elf_hp.h is for HP/UX 64-bit shared library support.
701# FIXME: kettenis/20030102: In most cases we include these (ctype.h, time.h)
702# unconditionally, so what's the point in checking these?
703AC_CHECK_HEADERS([nlist.h machine/reg.h poll.h sys/poll.h proc_service.h \
704 thread_db.h gnu/libc-version.h signal.h stddef.h \
705 stdlib.h string.h memory.h strings.h sys/fault.h \
706 sys/file.h sys/filio.h sys/ioctl.h sys/param.h \
707 sys/resource.h sys/procfs.h sys/ptrace.h ptrace.h \
708 sys/reg.h sys/debugreg.h sys/select.h sys/syscall.h \
709 sys/types.h sys/wait.h wait.h termios.h termio.h \
a8111142 710 sgtty.h unistd.h elf_hp.h ctype.h time.h locale.h])
7cb9022a
MK
711AC_CHECK_HEADERS(link.h, [], [],
712[#if HAVE_SYS_TYPES_H
713# include <sys/types.h>
714#endif
715#if HAVE_NLIST_H
716# include <nlist.h>
717#endif
718])
7cb9022a
MK
719AC_CHECK_HEADERS(sys/proc.h, [], [],
720[#if HAVE_SYS_PARAM_H
721# include <sys/param.h>
722#endif
723])
7cb9022a
MK
724AC_CHECK_HEADERS(sys/user.h, [], [],
725[#if HAVE_SYS_PARAM_H
726# include <sys/param.h>
727#endif
728])
5ee754fc 729
b1d19a62 730# On Solaris 2.[789], we need to define _MSE_INT_H to avoid a clash
5ee754fc
MK
731# between <widec.h> and <wchar.h> that would cause AC_CHECK_HEADERS to
732# think that we don't have <curses.h> if we're using GCC.
733case $host_os in
b1d19a62 734 solaris2.[[789]])
5ee754fc
MK
735 if test "$GCC" = yes; then
736 AC_DEFINE(_MSE_INT_H, 1,
ba1e897e
EZ
737 [Define to 1 to avoid a clash between <widec.h> and <wchar.h> on
738 Solaris 2.[789] when using GCC. ])
5ee754fc
MK
739 fi ;;
740esac
a9322a30 741AC_CHECK_HEADERS(curses.h cursesX.h ncurses.h ncurses/ncurses.h ncurses/term.h)
c401b55a
MK
742AC_CHECK_HEADERS(term.h, [], [],
743[#if HAVE_CURSES_H
744# include <curses.h>
745#endif
746])
5ee754fc 747
b9362cc7
AC
748# ------------------------- #
749# Checks for declarations. #
750# ------------------------- #
751
a9322a30
TT
752AC_CHECK_DECLS([free, malloc, realloc, strerror, strstr, getopt,
753 snprintf, vsnprintf])
a8111142 754AM_LC_MESSAGES
b9362cc7 755
666ec76f
MK
756# ----------------------- #
757# Checks for structures. #
758# ----------------------- #
759
a9322a30 760AC_CHECK_MEMBERS([struct stat.st_blocks, struct stat.st_blksize])
666ec76f 761
5ee754fc
MK
762# ------------------ #
763# Checks for types. #
764# ------------------ #
c906108c 765
5ee754fc 766AC_TYPE_SIGNAL
f9f87d2c
MK
767AC_CHECK_TYPES(socklen_t, [], [],
768[#include <sys/types.h>
769#include <sys/socket.h>
770])
5ee754fc
MK
771
772# ------------------------------------- #
773# Checks for compiler characteristics. #
774# ------------------------------------- #
c906108c
SS
775
776AC_C_CONST
bce58c09 777AC_C_INLINE
9b913628 778AC_C_BIGENDIAN
c906108c 779
5ee754fc
MK
780# ------------------------------ #
781# Checks for library functions. #
782# ------------------------------ #
783
c906108c 784AC_FUNC_ALLOCA
97bf5e38 785AC_FUNC_MMAP
46711df8 786AC_FUNC_VFORK
a9322a30 787AC_CHECK_FUNCS([canonicalize_file_name realpath getrusage getuid \
a156a290 788 getgid pipe poll pread64 sbrk setpgid setpgrp setsid \
a9322a30 789 sigaction sigprocmask sigsetmask socketpair syscall \
732f6a93 790 ttrace wborder setlocale iconvlist libiconvlist btowc])
6c7a06a3 791AM_LANGINFO_CODESET
97bf5e38 792
086ec9eb
MK
793# Check the return and argument types of ptrace. No canned test for
794# this, so roll our own.
795gdb_ptrace_headers='
796#if HAVE_SYS_TYPES_H
797# include <sys/types.h>
798#endif
799#if HAVE_SYS_PTRACE_H
800# include <sys/ptrace.h>
801#endif
802#if HAVE_UNISTD_H
803# include <unistd.h>
804#endif
805'
806# There is no point in checking if we don't have a prototype.
a3828db0 807AC_CHECK_DECLS(ptrace, [], [
086ec9eb
MK
808 : ${gdb_cv_func_ptrace_ret='int'}
809 : ${gdb_cv_func_ptrace_args='int,int,long,long'}
810], $gdb_ptrace_headers)
064ef605
DJ
811# Check return type. Varargs (used on GNU/Linux) conflict with the
812# empty argument list, so check for that explicitly.
086ec9eb
MK
813AC_CACHE_CHECK([return type of ptrace], gdb_cv_func_ptrace_ret,
814 AC_TRY_COMPILE($gdb_ptrace_headers,
064ef605
DJ
815 [extern long ptrace (enum __ptrace_request, ...);],
816 gdb_cv_func_ptrace_ret='long',
817 AC_TRY_COMPILE($gdb_ptrace_headers,
818 [extern int ptrace ();],
819 gdb_cv_func_ptrace_ret='int',
820 gdb_cv_func_ptrace_ret='long')))
086ec9eb
MK
821AC_DEFINE_UNQUOTED(PTRACE_TYPE_RET, $gdb_cv_func_ptrace_ret,
822 [Define as the return type of ptrace.])
823# Check argument types.
824AC_CACHE_CHECK([types of arguments for ptrace], gdb_cv_func_ptrace_args, [
064ef605
DJ
825 AC_TRY_COMPILE($gdb_ptrace_headers,
826 [extern long ptrace (enum __ptrace_request, ...);],
827 [gdb_cv_func_ptrace_args='int,int,long,long'],[
086ec9eb
MK
828for gdb_arg1 in 'int' 'long'; do
829 for gdb_arg2 in 'pid_t' 'int' 'long'; do
5ed10e6e 830 for gdb_arg3 in 'int *' 'caddr_t' 'int' 'long' 'void *'; do
086ec9eb
MK
831 for gdb_arg4 in 'int' 'long'; do
832 AC_TRY_COMPILE($gdb_ptrace_headers, [
833extern $gdb_cv_func_ptrace_ret
834 ptrace ($gdb_arg1, $gdb_arg2, $gdb_arg3, $gdb_arg4);
835], [gdb_cv_func_ptrace_args="$gdb_arg1,$gdb_arg2,$gdb_arg3,$gdb_arg4";
836 break 4;])
837 for gdb_arg5 in 'int *' 'int' 'long'; do
838 AC_TRY_COMPILE($gdb_ptrace_headers, [
839extern $gdb_cv_func_ptrace_ret
840 ptrace ($gdb_arg1, $gdb_arg2, $gdb_arg3, $gdb_arg4, $gdb_arg5);
841], [
842gdb_cv_func_ptrace_args="$gdb_arg1,$gdb_arg2,$gdb_arg3,$gdb_arg4,$gdb_arg5";
843 break 5;])
844 done
845 done
846 done
847 done
848done
849# Provide a safe default value.
850: ${gdb_cv_func_ptrace_args='int,int,long,long'}
064ef605 851])])
086ec9eb
MK
852ac_save_IFS=$IFS; IFS=','
853set dummy `echo "$gdb_cv_func_ptrace_args" | sed 's/\*/\*/g'`
854IFS=$ac_save_IFS
855shift
64218d3e 856AC_DEFINE_UNQUOTED(PTRACE_TYPE_ARG3, $[3],
086ec9eb
MK
857 [Define to the type of arg 3 for ptrace.])
858if test -n "$[5]"; then
64218d3e 859 AC_DEFINE_UNQUOTED(PTRACE_TYPE_ARG5, $[5],
086ec9eb
MK
860 [Define to the type of arg 5 for ptrace.])
861fi
862
72473524
DJ
863dnl AC_FUNC_SETPGRP does not work when cross compiling
864dnl Instead, assume we will have a prototype for setpgrp if cross compiling.
865if test "$cross_compiling" = no; then
866 AC_FUNC_SETPGRP
867else
868 AC_CACHE_CHECK([whether setpgrp takes no argument], ac_cv_func_setpgrp_void,
869 [AC_TRY_COMPILE([
870#include <unistd.h>
871], [
872 if (setpgrp(1,1) == -1)
873 exit (0);
874 else
875 exit (1);
876], ac_cv_func_setpgrp_void=no, ac_cv_func_setpgrp_void=yes)])
877if test $ac_cv_func_setpgrp_void = yes; then
878 AC_DEFINE(SETPGRP_VOID, 1)
879fi
880fi
c906108c 881
2b2d558c
MK
882# Check if sigsetjmp is available. Using AC_CHECK_FUNCS won't do
883# since sigsetjmp might only be defined as a macro.
884AC_CACHE_CHECK([for sigsetjmp], gdb_cv_func_sigsetjmp,
885[AC_TRY_COMPILE([
886#include <setjmp.h>
887], [sigjmp_buf env; while (! sigsetjmp (env, 1)) siglongjmp (env, 1);],
888gdb_cv_func_sigsetjmp=yes, gdb_cv_func_sigsetjmp=no)])
889if test $gdb_cv_func_sigsetjmp = yes; then
890 AC_DEFINE(HAVE_SIGSETJMP, 1, [Define if sigsetjmp is available. ])
891fi
892
06825bd1
MK
893# Assume we'll default to using the included libiberty regex.
894gdb_use_included_regex=yes
895
896# However, if the system regex is GNU regex, then default to *not*
897# using the included regex.
898AC_CACHE_CHECK(
899 [for GNU regex],
900 [gdb_cv_have_gnu_regex],
901 [AC_TRY_COMPILE(
902 [#include <gnu-versions.h>],
903 [#define REGEX_INTERFACE_VERSION 1
904#if _GNU_REGEX_INTERFACE_VERSION != REGEX_INTERFACE_VERSION
905# error "Version mismatch"
906#endif],
907 gdb_cv_have_gnu_regex=yes,
908 gdb_cv_have_gnu_regex=no)])
909if test $gdb_cv_have_gnu_regex = yes; then
910 gdb_use_included_regex=no
911fi
912
913AC_ARG_WITH(included-regex,
d2596e2e 914 AS_HELP_STRING([--without-included-regex], [don't use included regex; this is the default on systems with version 2 of the GNU C library (use with caution on other system)]),
06825bd1
MK
915 gdb_with_regex=$withval,
916 gdb_with_regex=$gdb_use_included_regex)
917if test "$gdb_with_regex" = yes; then
918 AC_DEFINE(USE_INCLUDED_REGEX, 1,
919 [Define to 1 if the regex included in libiberty should be used.])
920fi
921
5c45e068
MK
922# Check if <sys/proc.h> defines `struct thread' with a td_pcb member.
923AC_CHECK_MEMBERS([struct thread.td_pcb], [], [],
924[#include <sys/param.h>
925#include <sys/proc.h>
926])
70f9f479 927
da7d81e3
NW
928# See if <sys/lwp.h> defines `struct lwp`.
929AC_CACHE_CHECK([for struct lwp], gdb_cv_struct_lwp,
930[AC_TRY_COMPILE([#include <sys/param.h>
931#include <sys/lwp.h>], [struct lwp l;],
932gdb_cv_struct_lwp=yes, gdb_cv_struct_lwp=no)])
933if test $gdb_cv_struct_lwp = yes; then
934 AC_DEFINE(HAVE_STRUCT_LWP, 1,
935 [Define to 1 if your system has struct lwp.])
936fi
937
78434e59
MK
938# See if <machine/reg.h> degines `struct reg'.
939AC_CACHE_CHECK([for struct reg in machine/reg.h], gdb_cv_struct_reg,
940[AC_TRY_COMPILE([#include <sys/types.h>
941#include <machine/reg.h>], [struct reg r;],
942gdb_cv_struct_reg=yes, gdb_cv_struct_reg=no)])
943if test $gdb_cv_struct_reg = yes; then
944 AC_DEFINE(HAVE_STRUCT_REG, 1,
945 [Define to 1 if your system has struct reg in <machine/reg.h>.])
946fi
947
0afdd437 948# See if <machine/reg.h> supports the %fs and %gs i386 segment registers.
7dfa765c 949# Older i386 BSD's don't have the r_fs and r_gs members of `struct reg'.
5c45e068
MK
950AC_CHECK_MEMBERS([struct reg.r_fs, struct reg.r_gs], [], [],
951 [#include <machine/reg.h>])
7dfa765c 952
0afdd437 953# See if <sys/ptrace.h> provides the PTRACE_GETREGS request.
f60300e7
MK
954AC_MSG_CHECKING(for PTRACE_GETREGS)
955AC_CACHE_VAL(gdb_cv_have_ptrace_getregs,
956[AC_TRY_COMPILE([#include <sys/ptrace.h>],
957 [PTRACE_GETREGS;],
958 [gdb_cv_have_ptrace_getregs=yes],
959 [gdb_cv_have_ptrace_getregs=no])])
960AC_MSG_RESULT($gdb_cv_have_ptrace_getregs)
961if test $gdb_cv_have_ptrace_getregs = yes; then
60ca704f
SE
962 AC_DEFINE(HAVE_PTRACE_GETREGS, 1,
963 [Define if sys/ptrace.h defines the PTRACE_GETREGS request.])
f60300e7
MK
964fi
965
0afdd437 966# See if <sys/ptrace.h> provides the PTRACE_GETFPXREGS request.
6ce2ac0b
MK
967AC_MSG_CHECKING(for PTRACE_GETFPXREGS)
968AC_CACHE_VAL(gdb_cv_have_ptrace_getfpxregs,
5c44784c 969[AC_TRY_COMPILE([#include <sys/ptrace.h>],
6ce2ac0b
MK
970 [PTRACE_GETFPXREGS;],
971 [gdb_cv_have_ptrace_getfpxregs=yes],
972 [gdb_cv_have_ptrace_getfpxregs=no])])
973AC_MSG_RESULT($gdb_cv_have_ptrace_getfpxregs)
974if test $gdb_cv_have_ptrace_getfpxregs = yes; then
60ca704f
SE
975 AC_DEFINE(HAVE_PTRACE_GETFPXREGS, 1,
976 [Define if sys/ptrace.h defines the PTRACE_GETFPXREGS request.])
5c44784c
JM
977fi
978
0afdd437
MK
979# See if <sys/ptrace.h> provides the PT_GETDBREGS request.
980AC_MSG_CHECKING(for PT_GETDBREGS)
981AC_CACHE_VAL(gdb_cv_have_pt_getdbregs,
982[AC_TRY_COMPILE([#include <sys/types.h>
983#include <sys/ptrace.h>],
984 [PT_GETDBREGS;],
985 [gdb_cv_have_pt_getdbregs=yes],
986 [gdb_cv_have_pt_getdbregs=no])])
987AC_MSG_RESULT($gdb_cv_have_pt_getdbregs)
988if test $gdb_cv_have_pt_getdbregs = yes; then
60ca704f
SE
989 AC_DEFINE(HAVE_PT_GETDBREGS, 1,
990 [Define if sys/ptrace.h defines the PT_GETDBREGS request.])
0afdd437
MK
991fi
992
7e89e357
JT
993# See if <sys/ptrace.h> provides the PT_GETXMMREGS request.
994AC_MSG_CHECKING(for PT_GETXMMREGS)
995AC_CACHE_VAL(gdb_cv_have_pt_getxmmregs,
996[AC_TRY_COMPILE([#include <sys/types.h>
997#include <sys/ptrace.h>],
998 [PT_GETXMMREGS;],
999 [gdb_cv_have_pt_getxmmregs=yes],
1000 [gdb_cv_have_pt_getxmmregs=no])])
1001AC_MSG_RESULT($gdb_cv_have_pt_getxmmregs)
1002if test $gdb_cv_have_pt_getxmmregs = yes; then
60ca704f
SE
1003 AC_DEFINE(HAVE_PT_GETXMMREGS, 1,
1004 [Define if sys/ptrace.h defines the PT_GETXMMREGS request.])
7e89e357
JT
1005fi
1006
eb368090 1007# Detect which type of /proc is in use, such as for Unixware or Solaris.
c906108c
SS
1008
1009if test "${target}" = "${host}"; then
1010 case "${host}" in
1045b512 1011 *-*-unixware* | *-*-sysv4.2* | *-*-sysv5* | *-*-interix* )
60ca704f
SE
1012 AC_DEFINE(NEW_PROC_API, 1,
1013 [Define if you want to use new multi-fd /proc interface
1014 (replaces HAVE_MULTIPLE_PROC_FDS as well as other macros).])
c3f6f71d 1015 ;;
c162e8c9 1016 *-*-solaris2.[[6789]] | *-*-solaris2.1[[0-9]]*)
60ca704f
SE
1017 AC_DEFINE(NEW_PROC_API, 1,
1018 [Define if you want to use new multi-fd /proc interface
1019 (replaces HAVE_MULTIPLE_PROC_FDS as well as other macros).])
c3f6f71d 1020 ;;
c960c18f
AC
1021 mips-sgi-irix5*)
1022 # Work around <sys/proc.h> needing _KMEMUSER problem on IRIX 5.
60ca704f
SE
1023 AC_DEFINE([_KMEMUSER], 1,
1024 [Define to 1 so <sys/proc.h> gets a definition of anon_hdl. Works
1025 around a <sys/proc.h> problem on IRIX 5.])
c960c18f 1026 ;;
c906108c 1027 esac
c906108c
SS
1028fi
1029
1030if test "$ac_cv_header_sys_procfs_h" = yes; then
1031 BFD_HAVE_SYS_PROCFS_TYPE(pstatus_t)
1032 BFD_HAVE_SYS_PROCFS_TYPE(prrun_t)
1033 BFD_HAVE_SYS_PROCFS_TYPE(gregset_t)
1034 BFD_HAVE_SYS_PROCFS_TYPE(fpregset_t)
83d37ec8
MK
1035 BFD_HAVE_SYS_PROCFS_TYPE(prgregset_t)
1036 BFD_HAVE_SYS_PROCFS_TYPE(prfpregset_t)
23e04971
MS
1037 BFD_HAVE_SYS_PROCFS_TYPE(prgregset32_t)
1038 BFD_HAVE_SYS_PROCFS_TYPE(prfpregset32_t)
83d37ec8
MK
1039 BFD_HAVE_SYS_PROCFS_TYPE(lwpid_t)
1040 BFD_HAVE_SYS_PROCFS_TYPE(psaddr_t)
596c9d4b
KB
1041 BFD_HAVE_SYS_PROCFS_TYPE(prsysent_t)
1042 BFD_HAVE_SYS_PROCFS_TYPE(pr_sigset_t)
1043 BFD_HAVE_SYS_PROCFS_TYPE(pr_sigaction64_t)
1044 BFD_HAVE_SYS_PROCFS_TYPE(pr_siginfo64_t)
c906108c 1045
23e04971 1046
d84dd0c5
MK
1047 dnl Check for broken prfpregset_t type
1048
1049 dnl For Linux/i386, glibc 2.1.3 was released with a bogus
1050 dnl prfpregset_t type (it's a typedef for the pointer to a struct
1051 dnl instead of the struct itself). We detect this here, and work
a3007b6f 1052 dnl around it in gdb_proc_service.h.
d84dd0c5
MK
1053
1054 if test $bfd_cv_have_sys_procfs_type_prfpregset_t = yes; then
1055 AC_MSG_CHECKING(whether prfpregset_t type is broken)
1056 AC_CACHE_VAL(gdb_cv_prfpregset_t_broken,
1057 [AC_TRY_RUN([#include <sys/procfs.h>
1058 int main ()
1059 {
1060 if (sizeof (prfpregset_t) == sizeof (void *))
1061 return 1;
1062 return 0;
1063 }],
1064 gdb_cv_prfpregset_t_broken=no,
1065 gdb_cv_prfpregset_t_broken=yes,
1066 gdb_cv_prfpregset_t_broken=yes)])
1067 AC_MSG_RESULT($gdb_cv_prfpregset_t_broken)
1068 if test $gdb_cv_prfpregset_t_broken = yes; then
60ca704f
SE
1069 AC_DEFINE(PRFPREGSET_T_BROKEN, 1,
1070 [Define if the prfpregset_t type is broken.])
d84dd0c5
MK
1071 fi
1072 fi
1073
c906108c
SS
1074 dnl Check for PIOCSET ioctl entry
1075
1076 AC_MSG_CHECKING(for PIOCSET ioctl entry in sys/procfs.h)
1077 AC_CACHE_VAL(gdb_cv_have_procfs_piocset,
1078 [AC_TRY_COMPILE([#include <unistd.h>
1079#include <sys/types.h>
1080#include <sys/procfs.h>
1081], [
1082 int dummy;;
1083 dummy = ioctl(0, PIOCSET, &dummy);
1084 ],
1085 gdb_cv_have_procfs_piocset=yes, gdb_cv_have_procfs_piocset=no)])
1086 AC_MSG_RESULT($gdb_cv_have_procfs_piocset)
1087 if test $gdb_cv_have_procfs_piocset = yes; then
60ca704f
SE
1088 AC_DEFINE(HAVE_PROCFS_PIOCSET, 1,
1089 [Define if ioctl argument PIOCSET is available.])
c906108c
SS
1090 fi
1091fi
1092
d45fe813
KB
1093dnl For native ports (host == target), check to see what kind of
1094dnl legacy link.h support is needed. (See solib-legacy.c.)
1095if test ${host} = ${target} ; then
1096 dnl Check for struct link_map with l_ members which are indicative
1097 dnl of SVR4-like shared libraries
1098
1099 AC_MSG_CHECKING(for member l_addr in struct link_map)
1100 AC_CACHE_VAL(gdb_cv_have_struct_link_map_with_l_members,
1101 [AC_TRY_COMPILE([#include <link.h>],
1102 [struct link_map lm; (void) lm.l_addr;],
1103 gdb_cv_have_struct_link_map_with_l_members=yes,
1104 gdb_cv_have_struct_link_map_with_l_members=no)])
1105 AC_MSG_RESULT($gdb_cv_have_struct_link_map_with_l_members)
1106 if test $gdb_cv_have_struct_link_map_with_l_members = yes; then
60ca704f
SE
1107 AC_DEFINE(HAVE_STRUCT_LINK_MAP_WITH_L_MEMBERS,1,
1108 [Define if <link.h> exists and defines struct link_map which has
1109 members with an ``l_'' prefix. (For Solaris, SVR4, and
1110 SVR4-like systems.)])
d45fe813
KB
1111 fi
1112
1113 dnl Check for struct link_map with lm_ members which are indicative
1114 dnl of SunOS-like shared libraries
1115
1116 AC_MSG_CHECKING(for member lm_addr in struct link_map)
1117 AC_CACHE_VAL(gdb_cv_have_struct_link_map_with_lm_members,
1118 [AC_TRY_COMPILE([#include <sys/types.h>
1119#include <link.h>],
1120 [struct link_map lm; (void) lm.lm_addr;],
1121 gdb_cv_have_struct_link_map_with_lm_members=yes,
1122 gdb_cv_have_struct_link_map_with_lm_members=no)])
1123 AC_MSG_RESULT($gdb_cv_have_struct_link_map_with_lm_members)
1124 if test $gdb_cv_have_struct_link_map_with_lm_members = yes; then
60ca704f
SE
1125 AC_DEFINE(HAVE_STRUCT_LINK_MAP_WITH_LM_MEMBERS, 1,
1126 [Define if <link.h> exists and defines struct link_map which has
1127 members with an ``lm_'' prefix. (For SunOS.)])
d45fe813
KB
1128 fi
1129
1130 dnl Check for struct so_map with som_ members which are found on
1131 dnl some *BSD systems.
1132
1133 AC_MSG_CHECKING(for member som_addr in struct so_map)
1134 AC_CACHE_VAL(gdb_cv_have_struct_so_map_with_som_members,
1135 [AC_TRY_COMPILE([#include <sys/types.h>
39812ceb
C
1136#ifdef HAVE_NLIST_H
1137#include <nlist.h>
1138#endif
d45fe813
KB
1139#include <link.h>],
1140 [struct so_map lm; (void) lm.som_addr;],
1141 gdb_cv_have_struct_so_map_with_som_members=yes,
1142 gdb_cv_have_struct_so_map_with_som_members=no)])
1143 AC_MSG_RESULT($gdb_cv_have_struct_so_map_with_som_members)
1144 if test $gdb_cv_have_struct_so_map_with_som_members = yes; then
60ca704f
SE
1145 AC_DEFINE(HAVE_STRUCT_SO_MAP_WITH_SOM_MEMBERS, 1,
1146 [Define if <link.h> exists and defines a struct so_map which has
1147 members with an ``som_'' prefix. (Found on older *BSD systems.)])
d45fe813
KB
1148 fi
1149
1150 dnl Check for struct link_map32 type, which allows a 64-bit Solaris
1151 dnl debugger to debug a 32-bit Solaris app with 32-bit shared libraries.
1152
1153 AC_MSG_CHECKING(for struct link_map32 in sys/link.h)
1154 AC_CACHE_VAL(gdb_cv_have_struct_link_map32,
1155 [AC_TRY_COMPILE([#define _SYSCALL32
1156#include <sys/link.h>], [struct link_map32 l;],
1157 gdb_cv_have_struct_link_map32=yes,
1158 gdb_cv_have_struct_link_map32=no)])
1159 AC_MSG_RESULT($gdb_cv_have_struct_link_map32)
1160 if test $gdb_cv_have_struct_link_map32 = yes; then
60ca704f
SE
1161 AC_DEFINE(HAVE_STRUCT_LINK_MAP32, 1,
1162 [Define if <sys/link.h> has struct link_map32])
1163 AC_DEFINE(_SYSCALL32, 1,
1164 [Define if <sys/link.h> has link_map32 (solaris sparc-64 target)])
d45fe813
KB
1165 fi
1166fi
1167
bc8bcb4b
MK
1168# Check if the compiler supports the `long long' type.
1169
1170AC_CACHE_CHECK([for long long support in compiler], gdb_cv_c_long_long,
1171 [AC_COMPILE_IFELSE([AC_LANG_PROGRAM(
1172[[extern long long foo;]],
1173[[switch (foo & 2) { case 0: return 1; }]])],
1174 gdb_cv_c_long_long=yes,
1175 gdb_cv_c_long_long=no)])
c906108c 1176if test $gdb_cv_c_long_long = yes; then
bc8bcb4b
MK
1177 AC_DEFINE(CC_HAS_LONG_LONG, 1,
1178 [Define to 1 if the compiler supports long long.])
c906108c
SS
1179fi
1180
bc8bcb4b 1181# Check if the compiler and runtime support printing long longs.
c906108c 1182
bc8bcb4b
MK
1183AC_CACHE_CHECK([for long long support in printf],
1184 gdb_cv_printf_has_long_long,
1185 [AC_RUN_IFELSE([AC_LANG_PROGRAM([AC_INCLUDES_DEFAULT],
1186[[char buf[32];
c906108c
SS
1187 long long l = 0;
1188 l = (l << 16) + 0x0123;
1189 l = (l << 16) + 0x4567;
1190 l = (l << 16) + 0x89ab;
1191 l = (l << 16) + 0xcdef;
1192 sprintf (buf, "0x%016llx", l);
bc8bcb4b
MK
1193 return (strcmp ("0x0123456789abcdef", buf));]])],
1194 gdb_cv_printf_has_long_long=yes,
1195 gdb_cv_printf_has_long_long=no,
1196 gdb_cv_printf_has_long_long=no)])
c906108c 1197if test $gdb_cv_printf_has_long_long = yes; then
bc8bcb4b
MK
1198 AC_DEFINE(PRINTF_HAS_LONG_LONG, 1,
1199 [Define to 1 if the "%ll" format works to print long longs.])
c906108c 1200fi
c906108c 1201
1a619819
LM
1202# Check if the compiler and runtime support printing decfloats.
1203
1204AC_CACHE_CHECK([for decfloat support in printf],
1205 gdb_cv_printf_has_decfloat,
1206 [AC_RUN_IFELSE([AC_LANG_PROGRAM([AC_INCLUDES_DEFAULT],
1207[[char buf[64];
1208 _Decimal32 d32 = 1.2345df;
1209 _Decimal64 d64 = 1.2345dd;
1210 _Decimal128 d128 = 1.2345dl;
1211 sprintf (buf, "Decimal32: %H\nDecimal64: %D\nDecimal128: %DD", d32, d64, d128);
1212 return (strcmp ("Decimal32: 1.2345\nDecimal64: 1.2345\nDecimal128: 1.2345", buf));]])],
1213 gdb_cv_printf_has_decfloat=yes,
1214 gdb_cv_printf_has_decfloat=no,
1215 gdb_cv_printf_has_decfloat=no)])
1216if test $gdb_cv_printf_has_decfloat = yes; then
1217 AC_DEFINE(PRINTF_HAS_DECFLOAT, 1,
1218 [Define to 1 if the "%H, %D and %DD" formats work to print decfloats.])
1219fi
1220
bc8bcb4b
MK
1221# Check if the compiler supports the `long double' type. We can't use
1222# AC_C_LONG_DOUBLE because that one does additional checks on the
1223# constants defined in <float.h> that fail on some systems,
1224# e.g. FreeBSD/i386 4.7 and OpenBSD/i386 3.6.
c906108c 1225
bc8bcb4b
MK
1226AC_CACHE_CHECK([for long double support in compiler], gdb_cv_c_long_double,
1227 [AC_COMPILE_IFELSE([AC_LANG_SOURCE([[long double foo;]])],
1228 gdb_cv_c_long_double=yes,
1229 gdb_cv_c_long_double=no)])
1230if test $gdb_cv_c_long_double = yes; then
1231 AC_DEFINE(HAVE_LONG_DOUBLE, 1,
1232 [Define to 1 if the compiler supports long double.])
c906108c
SS
1233fi
1234
bc8bcb4b 1235# Check if the compiler and runtime support printing long doubles.
c906108c 1236
bc8bcb4b
MK
1237AC_CACHE_CHECK([for long double support in printf],
1238 gdb_cv_printf_has_long_double,
1239 [AC_RUN_IFELSE([AC_LANG_PROGRAM([AC_INCLUDES_DEFAULT],
1240[[char buf[16];
c906108c
SS
1241 long double f = 3.141592653;
1242 sprintf (buf, "%Lg", f);
bc8bcb4b
MK
1243 return (strncmp ("3.14159", buf, 7));]])],
1244 gdb_cv_printf_has_long_double=yes,
1245 gdb_cv_printf_has_long_double=no,
1246 gdb_cv_printf_has_long_double=no)])
c906108c 1247if test $gdb_cv_printf_has_long_double = yes; then
bc8bcb4b
MK
1248 AC_DEFINE(PRINTF_HAS_LONG_DOUBLE, 1,
1249 [Define to 1 if the "%Lg" format works to print long doubles.])
c906108c 1250fi
c906108c 1251
bc8bcb4b 1252# Check if the compiler and runtime support scanning long doubles.
c906108c 1253
bc8bcb4b
MK
1254AC_CACHE_CHECK([for long double support in scanf],
1255 gdb_cv_scanf_has_long_double,
1256 [AC_RUN_IFELSE([AC_LANG_PROGRAM(
1257[[#include <stdio.h>]],
1258[[char *buf = "3.141592653";
c906108c
SS
1259 long double f = 0;
1260 sscanf (buf, "%Lg", &f);
bc8bcb4b
MK
1261 return !(f > 3.14159 && f < 3.14160);]])],
1262 gdb_cv_scanf_has_long_double=yes,
1263 gdb_cv_scanf_has_long_double=no,
1264 gdb_cv_scanf_has_long_double=no)])
c906108c 1265if test $gdb_cv_scanf_has_long_double = yes; then
bc8bcb4b
MK
1266 AC_DEFINE(SCANF_HAS_LONG_DOUBLE, 1,
1267 [Define to 1 if the "%Lg" format works to scan long doubles.])
c906108c 1268fi
c906108c 1269
438013df
AO
1270case ${host_os} in
1271aix*)
1272 AC_CACHE_CHECK([for -bbigtoc option], [gdb_cv_bigtoc], [
1273 SAVE_LDFLAGS=$LDFLAGS
1274
1275 case $GCC in
1276 yes) gdb_cv_bigtoc=-Wl,-bbigtoc ;;
1277 *) gdb_cv_bigtoc=-bbigtoc ;;
1278 esac
1279
1280 LDFLAGS=$LDFLAGS\ $gdb_cv_bigtoc
1281 AC_TRY_LINK([], [int i;], [], [gdb_cv_bigtoc=])
ec76baa5 1282 LDFLAGS="${SAVE_LDFLAGS}"
438013df
AO
1283 ])
1284 CONFIG_LDFLAGS="${CONFIG_LDFLAGS} ${gdb_cv_bigtoc}"
1285 ;;
1286esac
1287
c906108c 1288
d92419e5
JB
1289dnl For certain native configurations, we need to check whether thread
1290dnl support can be built in or not.
1291dnl
1292dnl Note that we only want this if we are both native (host == target),
1293dnl and not doing a canadian cross build (build == host).
c906108c
SS
1294
1295if test ${build} = ${host} -a ${host} = ${target} ; then
1296 case ${host_os} in
1297 hpux*)
1298 AC_MSG_CHECKING(for HPUX/OSF thread support)
1299 if test -f /usr/include/dce/cma_config.h ; then
1300 if test "$GCC" = "yes" ; then
1301 AC_MSG_RESULT(yes)
60ca704f
SE
1302 AC_DEFINE(HAVE_HPUX_THREAD_SUPPORT, 1,
1303 [Define if you have HPUX threads])
3483b318 1304 CONFIG_OBS="${CONFIG_OBS} hpux-thread.o"
c906108c
SS
1305 CONFIG_SRCS="${CONFIG_SRCS} hpux-thread.c"
1306 else
1307 AC_MSG_RESULT(no (suppressed because you are not using GCC))
1308 fi
1309 else
1310 AC_MSG_RESULT(no)
1311 fi
1312 ;;
1313 solaris*)
d92419e5
JB
1314 # See if thread_db library is around for Solaris thread debugging.
1315 # Note that we must explicitly test for version 1 of the library
1316 # because version 0 (present on Solaris 2.4 or earlier) doesn't have
1317 # the same API.
c906108c
SS
1318 AC_MSG_CHECKING(for Solaris thread debugging library)
1319 if test -f /usr/lib/libthread_db.so.1 ; then
1320 AC_MSG_RESULT(yes)
60ca704f
SE
1321 AC_DEFINE(HAVE_THREAD_DB_LIB, 1,
1322 [Define if using Solaris thread debugging.])
3483b318 1323 CONFIG_OBS="${CONFIG_OBS} sol-thread.o"
c906108c
SS
1324 CONFIG_SRCS="${CONFIG_SRCS} sol-thread.c"
1325 AC_CHECK_LIB(dl, dlopen)
1326 if test "$GCC" = "yes" ; then
1327 # The GNU linker requires the -export-dynamic option to make
1328 # all symbols visible in the dynamic symbol table.
1329 hold_ldflags=$LDFLAGS
1330 AC_MSG_CHECKING(for the ld -export-dynamic flag)
1331 LDFLAGS="${LDFLAGS} -Wl,-export-dynamic"
1332 AC_TRY_LINK(, [int i;], found=yes, found=no)
1333 LDFLAGS=$hold_ldflags
1334 AC_MSG_RESULT($found)
1335 if test $found = yes; then
1336 CONFIG_LDFLAGS="${CONFIG_LDFLAGS} -Wl,-export-dynamic"
1337 fi
1338 fi
1339 # Sun randomly tweaked the prototypes in <proc_service.h>
1340 # at one point.
1341 AC_MSG_CHECKING(if <proc_service.h> is old)
1342 AC_CACHE_VAL(gdb_cv_proc_service_is_old,[
1343 AC_TRY_COMPILE([
1344 #include <proc_service.h>
1345 ps_err_e ps_pdwrite
1346 (struct ps_prochandle*, psaddr_t, const void*, size_t);
1347 ],, gdb_cv_proc_service_is_old=no,
1348 gdb_cv_proc_service_is_old=yes)
1349 ])
1350 AC_MSG_RESULT($gdb_cv_proc_service_is_old)
1351 if test $gdb_cv_proc_service_is_old = yes; then
60ca704f
SE
1352 AC_DEFINE(PROC_SERVICE_IS_OLD, 1,
1353 [Define if <proc_service.h> on solaris uses int instead of
1354 size_t, and assorted other type changes.])
c906108c
SS
1355 fi
1356 else
1357 AC_MSG_RESULT(no)
1358 fi
1359 ;;
d92419e5
JB
1360 aix*)
1361 AC_MSG_CHECKING(for AiX thread debugging library)
1362 AC_CACHE_VAL(gdb_cv_have_aix_thread_debug,
1363 [AC_TRY_COMPILE([#include <sys/pthdebug.h>],
1364 [#ifndef PTHDB_VERSION_3
1365 #error
1366 #endif],
1367 gdb_cv_have_aix_thread_debug=yes,
1368 gdb_cv_have_aix_thread_debug=no)])
1369 AC_MSG_RESULT($gdb_cv_have_aix_thread_debug)
1370 if test $gdb_cv_have_aix_thread_debug = yes; then
1371 CONFIG_SRCS="${CONFIG_SRCS} aix-thread.c"
3483b318 1372 CONFIG_OBS="${CONFIG_OBS} aix-thread.o"
d92419e5
JB
1373 CONFIG_LDFLAGS="${CONFIG_LDFLAGS} -lpthdebug"
1374 fi
1375 ;;
c906108c
SS
1376 esac
1377 AC_SUBST(CONFIG_LDFLAGS)
1378fi
1379
59f80f10
DJ
1380dnl See if we have a thread_db header file that has TD_NOTALLOC and
1381dnl other error codes.
3f47be5c
EZ
1382if test "x$ac_cv_header_thread_db_h" = "xyes"; then
1383 AC_CACHE_CHECK([whether <thread_db.h> has TD_NOTALLOC],
1384 gdb_cv_thread_db_h_has_td_notalloc,
1385 AC_TRY_COMPILE(
1386 [#include <thread_db.h>],
1387 [int i = TD_NOTALLOC;],
1388 gdb_cv_thread_db_h_has_td_notalloc=yes,
1389 gdb_cv_thread_db_h_has_td_notalloc=no
1390 )
1391 )
59f80f10
DJ
1392 AC_CACHE_CHECK([whether <thread_db.h> has TD_VERSION],
1393 gdb_cv_thread_db_h_has_td_version,
1394 AC_TRY_COMPILE(
1395 [#include <thread_db.h>],
1396 [int i = TD_VERSION;],
1397 gdb_cv_thread_db_h_has_td_version=yes,
1398 gdb_cv_thread_db_h_has_td_version=no
1399 )
1400 )
1401 AC_CACHE_CHECK([whether <thread_db.h> has TD_NOTLS],
1402 gdb_cv_thread_db_h_has_td_notls,
1403 AC_TRY_COMPILE(
1404 [#include <thread_db.h>],
1405 [int i = TD_NOTLS;],
1406 gdb_cv_thread_db_h_has_td_notls=yes,
1407 gdb_cv_thread_db_h_has_td_notls=no
1408 )
1409 )
3f47be5c
EZ
1410fi
1411if test "x$gdb_cv_thread_db_h_has_td_notalloc" = "xyes"; then
1412 AC_DEFINE(THREAD_DB_HAS_TD_NOTALLOC, 1,
1413 [Define if <thread_db.h> has the TD_NOTALLOC error code.])
1414fi
59f80f10
DJ
1415if test "x$gdb_cv_thread_db_h_has_td_version" = "xyes"; then
1416 AC_DEFINE(THREAD_DB_HAS_TD_VERSION, 1,
1417 [Define if <thread_db.h> has the TD_VERSION error code.])
1418fi
1419if test "x$gdb_cv_thread_db_h_has_td_notls" = "xyes"; then
1420 AC_DEFINE(THREAD_DB_HAS_TD_NOTLS, 1,
1421 [Define if <thread_db.h> has the TD_NOTLS error code.])
1422fi
3f47be5c 1423
b757528f
JJ
1424dnl See if we have a sys/syscall header file that has __NR_tkill.
1425if test "x$ac_cv_header_sys_syscall_h" = "xyes"; then
1426 AC_CACHE_CHECK([whether <sys/syscall.h> has __NR_tkill],
1427 gdb_cv_sys_syscall_h_has_tkill,
1428 AC_TRY_COMPILE(
1429 [#include <sys/syscall.h>],
1430 [int i = __NR_tkill;],
1431 gdb_cv_sys_syscall_h_has_tkill=yes,
1432 gdb_cv_sys_syscall_h_has_tkill=no
1433 )
1434 )
1435fi
1436dnl See if we can issue tkill syscall.
1437if test "x$gdb_cv_sys_syscall_h_has_tkill" = "xyes" && test "x$ac_cv_func_syscall" = "xyes"; then
60ca704f 1438 AC_DEFINE(HAVE_TKILL_SYSCALL, 1, [Define if you support the tkill syscall.])
b757528f
JJ
1439fi
1440
10568435
JK
1441dnl Check if we can disable the virtual address space randomization.
1442dnl The functionality of setarch -R.
1443AC_CHECK_DECLS([ADDR_NO_RANDOMIZE],,, [#include <sys/personality.h>])
1444define([PERSONALITY_TEST], [AC_LANG_PROGRAM([#include <sys/personality.h>], [
1445# if !HAVE_DECL_ADDR_NO_RANDOMIZE
1446# define ADDR_NO_RANDOMIZE 0x0040000
1447# endif
1448 /* Test the flag could be set and stays set. */
1449 personality (personality (0xffffffff) | ADDR_NO_RANDOMIZE);
1450 if (!(personality (personality (0xffffffff)) & ADDR_NO_RANDOMIZE))
1451 return 1])])
1452AC_RUN_IFELSE([PERSONALITY_TEST],
1453 [have_personality=true],
1454 [have_personality=false],
1455 [AC_LINK_IFELSE([PERSONALITY_TEST],
1456 [have_personality=true],
1457 [have_personality=false])])
1458if $have_personality
1459then
1460 AC_DEFINE([HAVE_PERSONALITY], 1,
1461 [Define if you support the personality syscall.])
1462fi
1463
c906108c 1464dnl Handle optional features that can be enabled.
fb40c209 1465
b14b1491 1466target_sysroot_reloc=0
030292b7 1467AC_ARG_WITH(sysroot,
d2596e2e 1468AS_HELP_STRING([--with-sysroot@<:@=DIR@:>@], [search for usr/lib et al within DIR]),
030292b7
DJ
1469[
1470 case ${with_sysroot} in
715d1656 1471 yes) TARGET_SYSTEM_ROOT='${exec_prefix}/${target_alias}/sys-root' ;;
030292b7
DJ
1472 *) TARGET_SYSTEM_ROOT=$with_sysroot ;;
1473 esac
1474
1475 TARGET_SYSTEM_ROOT_DEFINE='-DTARGET_SYSTEM_ROOT=\"$(TARGET_SYSTEM_ROOT)\"'
1476
07abfebf
RS
1477 if test "x$prefix" = xNONE; then
1478 test_prefix=/usr/local
1479 else
1480 test_prefix=$prefix
1481 fi
aa28a74e 1482 if test "x$exec_prefix" = xNONE || test "x$exec_prefix" = 'x${prefix}'; then
07abfebf 1483 test_exec_prefix=$test_prefix
030292b7 1484 else
07abfebf 1485 test_exec_prefix=$exec_prefix
030292b7
DJ
1486 fi
1487 case ${TARGET_SYSTEM_ROOT} in
715d1656 1488 "${test_prefix}"|"${test_prefix}/"*|\
07abfebf
RS
1489 "${test_exec_prefix}"|"${test_exec_prefix}/"*|\
1490 '${prefix}'|'${prefix}/'*|\
715d1656 1491 '${exec_prefix}'|'${exec_prefix}/'*)
b14b1491 1492 target_sysroot_reloc=1
030292b7
DJ
1493 ;;
1494 esac
1495], [
1496 TARGET_SYSTEM_ROOT=
1497 TARGET_SYSTEM_ROOT_DEFINE='-DTARGET_SYSTEM_ROOT=\"\"'
1498])
b14b1491 1499TARGET_SYSTEM_ROOT_DEFINE="$TARGET_SYSTEM_ROOT_DEFINE -DTARGET_SYSTEM_ROOT_RELOCATABLE=$target_sysroot_reloc"
030292b7
DJ
1500AC_SUBST(TARGET_SYSTEM_ROOT)
1501AC_SUBST(TARGET_SYSTEM_ROOT_DEFINE)
1502
b14b1491
TT
1503GDB_AC_WITH_DIR(SYSTEM_GDBINIT, system-gdbinit,
1504 [automatically load a system-wide gdbinit file],
1505 [])
16e7150e 1506
094a342e 1507AC_ARG_ENABLE(werror,
d2596e2e 1508 AS_HELP_STRING([--enable-werror], [treat compile warnings as errors]),
094a342e
MK
1509 [case "${enableval}" in
1510 yes | y) ERROR_ON_WARNING="yes" ;;
1511 no | n) ERROR_ON_WARNING="no" ;;
1512 *) AC_MSG_ERROR(bad value ${enableval} for --enable-werror) ;;
1513 esac])
1514
1515# Enable -Werror by default when using gcc
1516if test "${GCC}" = yes -a -z "${ERROR_ON_WARNING}" ; then
1517 ERROR_ON_WARNING=yes
1518fi
1519
1520WERROR_CFLAGS=""
1521if test "${ERROR_ON_WARNING}" = yes ; then
1522 WERROR_CFLAGS="-Werror"
1523fi
1524
aa79a185
DJ
1525# The entries after -Wno-pointer-sign are disabled warnings which may
1526# be enabled in the future, which can not currently be used to build
1527# GDB.
1528# NOTE: If you change this list, remember to update
3b851bce 1529# gdb/doc/gdbint.texinfo.
aa79a185
DJ
1530build_warnings="-Wall -Wdeclaration-after-statement -Wpointer-arith \
1531-Wformat-nonliteral -Wno-pointer-sign \
58b38ee2 1532-Wno-unused -Wno-switch -Wno-char-subscripts"
a3b362c4 1533
3526781e
DJ
1534# Enable -Wno-format by default when using gcc on mingw since many
1535# GCC versions complain about %I64.
1536case "${host}" in
1537 *-*-mingw32*) build_warnings="$build_warnings -Wno-format" ;;
1538esac
1539
c906108c 1540AC_ARG_ENABLE(build-warnings,
d2596e2e 1541AS_HELP_STRING([--enable-build-warnings], [enable build-time compiler warnings if gcc is used]),
1decb323 1542[case "${enableval}" in
c906108c
SS
1543 yes) ;;
1544 no) build_warnings="-w";;
1545 ,*) t=`echo "${enableval}" | sed -e "s/,/ /g"`
1546 build_warnings="${build_warnings} ${t}";;
1547 *,) t=`echo "${enableval}" | sed -e "s/,/ /g"`
1548 build_warnings="${t} ${build_warnings}";;
1549 *) build_warnings=`echo "${enableval}" | sed -e "s/,/ /g"`;;
d4f3574e
SS
1550esac
1551if test x"$silent" != x"yes" && test x"$build_warnings" != x""; then
746a987d 1552 echo "Setting compiler warning flags = $build_warnings" 6>&1
1decb323 1553fi])dnl
3b851bce 1554AC_ARG_ENABLE(gdb-build-warnings,
d2596e2e 1555AS_HELP_STRING([--enable-gdb-build-warnings], [enable GDB specific build-time compiler warnings if gcc is used]),
3b851bce
AC
1556[case "${enableval}" in
1557 yes) ;;
1558 no) build_warnings="-w";;
1559 ,*) t=`echo "${enableval}" | sed -e "s/,/ /g"`
1560 build_warnings="${build_warnings} ${t}";;
1561 *,) t=`echo "${enableval}" | sed -e "s/,/ /g"`
1562 build_warnings="${t} ${build_warnings}";;
1563 *) build_warnings=`echo "${enableval}" | sed -e "s/,/ /g"`;;
1564esac
1565if test x"$silent" != x"yes" && test x"$build_warnings" != x""; then
1566 echo "Setting GDB specific compiler warning flags = $build_warnings" 6>&1
1567fi])dnl
104c1213 1568WARN_CFLAGS=""
c906108c
SS
1569if test "x${build_warnings}" != x -a "x$GCC" = xyes
1570then
746a987d
AC
1571 AC_MSG_CHECKING(compiler warning flags)
1572 # Separate out the -Werror flag as some files just cannot be
1573 # compiled with it enabled.
1574 for w in ${build_warnings}; do
1575 case $w in
1576 -Werr*) WERROR_CFLAGS=-Werror ;;
1577 *) # Check that GCC accepts it
4536bbc6
AC
1578 saved_CFLAGS="$CFLAGS"
1579 CFLAGS="$CFLAGS $w"
1580 AC_TRY_COMPILE([],[],WARN_CFLAGS="${WARN_CFLAGS} $w",)
1581 CFLAGS="$saved_CFLAGS"
746a987d
AC
1582 esac
1583 done
aa79a185 1584 AC_MSG_RESULT(${WARN_CFLAGS} ${WERROR_CFLAGS})
1decb323 1585fi
c906108c 1586AC_SUBST(WARN_CFLAGS)
104c1213 1587AC_SUBST(WERROR_CFLAGS)
c906108c 1588
7a292a7a
SS
1589# In the Cygwin environment, we need some additional flags.
1590AC_CACHE_CHECK([for cygwin], gdb_cv_os_cygwin,
1591[AC_EGREP_CPP(lose, [
1592#if defined (__CYGWIN__) || defined (__CYGWIN32__)
1593lose
1594#endif],[gdb_cv_os_cygwin=yes],[gdb_cv_os_cygwin=no])])
1595
aff38e61
AC
1596
1597dnl Figure out which of the many generic ser-*.c files the _host_ supports.
3eb25fda 1598SER_HARDWIRE="ser-base.o ser-unix.o ser-pipe.o ser-tcp.o"
aff38e61 1599case ${host} in
95cbc983
AC
1600 *go32* ) SER_HARDWIRE=ser-go32.o ;;
1601 *djgpp* ) SER_HARDWIRE=ser-go32.o ;;
0ea3f30e 1602 *mingw32*) SER_HARDWIRE="ser-base.o ser-tcp.o ser-mingw.o" ;;
aff38e61
AC
1603esac
1604AC_SUBST(SER_HARDWIRE)
1605
cd0fc7c3
SS
1606# libreadline needs libuser32.a in a cygwin environment
1607WIN32LIBS=
1608if test x$gdb_cv_os_cygwin = xyes; then
c5394b80
JM
1609 WIN32LIBS="-luser32"
1610 case "${target}" in
1611 *cygwin*) WIN32LIBS="$WIN32LIBS -limagehlp"
1612 ;;
1613 esac
cd0fc7c3 1614fi
b4505029
MM
1615
1616# The ser-tcp.c module requires sockets.
1617case ${host} in
1618 *mingw32*)
1619 AC_DEFINE(USE_WIN32API, 1,
1620 [Define if we should use the Windows API, instead of the
1621 POSIX API. On Windows, we use the Windows API when
1622 building for MinGW, but the POSIX API when building
1623 for Cygwin.])
1624 WIN32LIBS="$WIN32LIBS -lws2_32"
1625 ;;
1626esac
cd0fc7c3 1627AC_SUBST(WIN32LIBS)
7a292a7a 1628
31d99776
DJ
1629# Add ELF support to GDB, but only if BFD includes ELF support.
1630OLD_CFLAGS=$CFLAGS
1631OLD_LDFLAGS=$LDFLAGS
1632OLD_LIBS=$LIBS
cab58a69 1633CFLAGS="$CFLAGS -I${srcdir}/../include -I../bfd -I${srcdir}/../bfd"
31d99776 1634LDFLAGS="$LDFLAGS -L../bfd -L../libiberty"
7b3200f9 1635intl=`echo $LIBINTL | sed 's,${top_builddir}/,,g'`
0f72fb1c 1636LIBS="-lbfd -liberty $intl $LIBS"
31d99776
DJ
1637AC_CACHE_CHECK([for ELF support in BFD], gdb_cv_var_elf,
1638[AC_TRY_LINK(
1639[#include <stdlib.h>
1640#include "bfd.h"
1641#include "elf-bfd.h"
1642],
1643[bfd *abfd = NULL; bfd_get_elf_phdr_upper_bound (abfd); ],
1644gdb_cv_var_elf=yes, gdb_cv_var_elf=no)])
1645if test $gdb_cv_var_elf = yes; then
1646 CONFIG_OBS="$CONFIG_OBS elfread.o"
1647 AC_DEFINE(HAVE_ELF, 1,
1648 [Define if ELF support should be included.])
1649fi
1650CFLAGS=$OLD_CFLAGS
1651LDFLAGS=$OLD_LDFLAGS
1652LIBS=$OLD_LIBS
1653
121ce6e5
DJ
1654# Add any host-specific objects to GDB.
1655CONFIG_OBS="${CONFIG_OBS} ${gdb_host_obs}"
1656
3fc11d3e
JM
1657LIBGUI="../libgui/src/libgui.a"
1658GUI_CFLAGS_X="-I${srcdir}/../libgui/src"
1659AC_SUBST(LIBGUI)
1660AC_SUBST(GUI_CFLAGS_X)
7a292a7a 1661
3fc11d3e
JM
1662WIN32LDAPP=
1663AC_SUBST(WIN32LIBS)
1664AC_SUBST(WIN32LDAPP)
1665
d91670b9 1666case "${host}" in
686a5eed 1667*-*-cygwin* | *-*-mingw* )
d91670b9
CV
1668 configdir="win"
1669 ;;
1670*)
1671 configdir="unix"
1672 ;;
1673esac
3fc11d3e
JM
1674
1675GDBTKLIBS=
1676if test "${enable_gdbtk}" = "yes"; then
1677
d1c3b63a
KS
1678 # Gdbtk must have an absolute path to srcdir in order to run
1679 # properly when not installed.
1680 here=`pwd`
1681 cd ${srcdir}
1682 GDBTK_SRC_DIR=`pwd`
1683 cd $here
1684
5062cc19 1685 SC_PATH_TCLCONFIG
85541719
DE
1686
1687 # If $no_tk is nonempty, then we can't do Tk, and there is no
1688 # point to doing Tcl.
1689 SC_PATH_TKCONFIG
1690
1691 if test -z "${no_tcl}" -a -z "${no_tk}"; then
5062cc19
KS
1692 SC_LOAD_TCLCONFIG
1693
1694 # Check for in-tree tcl
1695 here=`pwd`
1696 cd ${srcdir}/..
1697 topdir=`pwd`
1698 cd ${here}
1699
1700 intree="no"
1701 if test "${TCL_SRC_DIR}" = "${topdir}/tcl"; then
1702 intree="yes"
1703 fi
1704
1705 # Find Tcl private headers
1706 if test x"${intree}" = xno; then
1707 CY_AC_TCL_PRIVATE_HEADERS
1708 TCL_INCLUDE="${TCL_INCLUDE_SPEC} ${TCL_PRIVATE_INCLUDE}"
1709 TCL_LIBRARY="${TCL_LIB_SPEC}"
1710 TCL_DEPS=""
1711 else
1712 # If building tcl in the same src tree, private headers
1713 # are not needed, but we need to be sure to use the right
1714 # headers library
1715 TCL_INCLUDE="-I${TCL_SRC_DIR}/generic"
1716 TCL_LIBRARY="${TCL_BUILD_LIB_SPEC}"
1717 TCL_DEPS="../tcl/${configdir}${TCL_LIB_FILE}"
1718 fi
1719 AC_SUBST(TCL_INCLUDE)
1720 AC_SUBST(TCL_LIBRARY)
1721 AC_SUBST(TCL_DEPS)
dd2504ab 1722
85541719
DE
1723 SC_LOAD_TKCONFIG
1724
1725 # Check for in-tree Tk
1726 intree="no"
1727 if test "${TK_SRC_DIR}" = "${topdir}/tk"; then
1728 intree="yes"
1729 fi
1730
1731 # Find Tk private headers
1732 if test x"${intree}" = xno; then
1733 CY_AC_TK_PRIVATE_HEADERS
1734 TK_INCLUDE="${TK_INCLUDE_SPEC} ${TK_PRIVATE_INCLUDE}"
1735 TK_LIBRARY=${TK_LIB_SPEC}
1736 TK_DEPS=""
1737 else
1738 TK_INCLUDE="-I${TK_SRC_DIR}/generic"
1739 TK_LIBRARY="${TK_BUILD_LIB_SPEC}"
1740 TK_DEPS="../tk/${configdir}/${TK_LIB_FILE}"
1741 fi
1742 AC_SUBST(TK_INCLUDE)
1743 AC_SUBST(TK_LIBRARY)
1744 AC_SUBST(TK_DEPS)
1745 AC_SUBST(TK_XINCLUDES)
1746
1747 ENABLE_CFLAGS="${ENABLE_CFLAGS} \$(SUBDIR_GDBTK_CFLAGS)"
1748
1749 # Include some libraries that Tcl and Tk want.
1750 TCL_LIBS='$(LIBGUI) $(TK) $(TCL) $(X11_LDFLAGS) $(X11_LIBS)'
1751 # Yes, the ordering seems wrong here. But it isn't.
1752 # TK_LIBS is the list of libraries that need to be linked
1753 # after Tcl/Tk. Note that this isn't put into LIBS. If it
1754 # were in LIBS then any link tests after this point would
1755 # try to include things like `$(LIBGUI)', which wouldn't work.
1756 GDBTKLIBS="${TCL_LIBS} ${TK_LIBS}"
1757
1758 CONFIG_OBS="${CONFIG_OBS} \$(SUBDIR_GDBTK_OBS)"
1759 CONFIG_DEPS="${CONFIG_DEPS} \$(SUBDIR_GDBTK_DEPS)"
1760 CONFIG_SRCS="${CONFIG_SRCS} \$(SUBDIR_GDBTK_SRCS)"
1761 CONFIG_ALL="${CONFIG_ALL} all-gdbtk"
1762 CONFIG_CLEAN="${CONFIG_CLEAN} clean-gdbtk"
1763 CONFIG_INSTALL="${CONFIG_INSTALL} install-gdbtk"
1764 CONFIG_UNINSTALL="${CONFIG_UNINSTALL} uninstall-gdbtk"
1765
1766 if test x$gdb_cv_os_cygwin = xyes; then
1767 WIN32LIBS="${WIN32LIBS} -lshell32 -lgdi32 -lcomdlg32 -ladvapi32"
1768 WIN32LDAPP="-Wl,--subsystem,console"
1769 CONFIG_OBS="${CONFIG_OBS} gdbres.o"
3fc11d3e 1770 fi
ffc6a242 1771
85541719
DE
1772 AC_CONFIG_SUBDIRS(gdbtk)
1773 fi
3fc11d3e
JM
1774fi
1775
3fc11d3e
JM
1776AC_SUBST(X_CFLAGS)
1777AC_SUBST(X_LDFLAGS)
1778AC_SUBST(X_LIBS)
3fc11d3e
JM
1779AC_SUBST(GDBTKLIBS)
1780AC_SUBST(GDBTK_CFLAGS)
d1c3b63a 1781AC_SUBST(GDBTK_SRC_DIR)
8b93c638 1782
c906108c
SS
1783AC_PATH_X
1784
7a292a7a 1785# Unlike the sim directory, whether a simulator is linked is controlled by
9b624dbe 1786# presence of a gdb_sim definition in the target configure.tgt entry.
7a292a7a
SS
1787# This code just checks for a few cases where we'd like to ignore those
1788# definitions, even when they're present in the '.mt' file. These cases
1789# are when --disable-sim is specified, or if the simulator directory is
6c5cfe5b 1790# not part of the source tree.
7a292a7a
SS
1791#
1792AC_ARG_ENABLE(sim,
d2596e2e 1793AS_HELP_STRING([--enable-sim], [link gdb with simulator]),
7a292a7a
SS
1794[echo "enable_sim = $enable_sim";
1795 echo "enableval = ${enableval}";
1796 case "${enableval}" in
1797 yes) ignore_sim=false ;;
1798 no) ignore_sim=true ;;
1799 *) ignore_sim=false ;;
1800 esac],
1801[ignore_sim=false])
1802
1803if test ! -d "${srcdir}/../sim"; then
1804 ignore_sim=true
1805fi
1806
9b624dbe
UW
1807SIM=
1808SIM_OBS=
1809if test "${ignore_sim}" = "false"; then
1810 if test x"${gdb_sim}" != x ; then
1811 SIM="${gdb_sim}"
1812 SIM_OBS="remote-sim.o"
60ca704f 1813 AC_DEFINE(WITH_SIM, 1, [Define if the simulator is being linked in.])
9b624dbe 1814 fi
7a292a7a 1815fi
9b624dbe
UW
1816AC_SUBST(SIM)
1817AC_SUBST(SIM_OBS)
7a292a7a 1818
c906108c 1819AC_SUBST(ENABLE_CFLAGS)
d28f9cdf 1820AC_SUBST(PROFILE_CFLAGS)
c906108c
SS
1821
1822AC_SUBST(CONFIG_OBS)
1823AC_SUBST(CONFIG_DEPS)
1824AC_SUBST(CONFIG_SRCS)
b3a90332
AC
1825AC_SUBST(CONFIG_ALL)
1826AC_SUBST(CONFIG_CLEAN)
e56ac5c3
AC
1827AC_SUBST(CONFIG_INSTALL)
1828AC_SUBST(CONFIG_UNINSTALL)
c906108c 1829
c35f4ffc
AC
1830# List of host floatformats.
1831AC_DEFINE_UNQUOTED(GDB_HOST_FLOAT_FORMAT,$gdb_host_float_format,[Host float floatformat])
1832AC_DEFINE_UNQUOTED(GDB_HOST_DOUBLE_FORMAT,$gdb_host_double_format,[Host double floatformat])
1833AC_DEFINE_UNQUOTED(GDB_HOST_LONG_DOUBLE_FORMAT,$gdb_host_long_double_format,[Host long double floatformat])
1834
c906108c
SS
1835# target_subdir is used by the testsuite to find the target libraries.
1836target_subdir=
1837if test "${host}" != "${target}"; then
1838 target_subdir="${target_alias}/"
1839fi
1840AC_SUBST(target_subdir)
1841
1842frags=
771b4502 1843if test "${gdb_native}" = "yes"; then
0dad8a66
MK
1844 host_makefile_frag=${srcdir}/config/${gdb_host_cpu}/${gdb_host}.mh
1845 if test ! -f ${host_makefile_frag}; then
1846 AC_MSG_ERROR("*** Gdb does not support native target ${host}")
1847 fi
1848 frags="$frags $host_makefile_frag"
1849else
1850 host_makefile_frag=/dev/null
c906108c 1851fi
c906108c 1852
c906108c 1853AC_SUBST_FILE(host_makefile_frag)
c906108c
SS
1854AC_SUBST(frags)
1855
1856changequote(,)dnl
771b4502 1857if test "${gdb_native}" = "yes"; then
a85f51e7
DJ
1858# We pick this up from the host configuration file (.mh) because we
1859# do not have a native configuration Makefile fragment.
c906108c
SS
1860nativefile=`sed -n '
1861s/NAT_FILE[ ]*=[ ]*\([^ ]*\)/\1/p
1862' ${host_makefile_frag}`
c906108c
SS
1863fi
1864changequote([,])
1865
b00a8037
DJ
1866if test x"${gdb_osabi}" != x ; then
1867 AC_DEFINE_UNQUOTED(GDB_OSABI_DEFAULT, $gdb_osabi,
1868 [Define to the default OS ABI for this configuration.])
1869fi
1870
8dcde887
MK
1871# Enable multi-ice-gdb-server.
1872AC_ARG_ENABLE(multi-ice,
d2596e2e 1873AS_HELP_STRING([--enable-multi-ice], [build the multi-ice-gdb-server]),
8dcde887
MK
1874 [case $enableval in
1875 yes | no)
1876 ;;
1877 *) AC_MSG_ERROR([bad value $enableval for --enable-multi-ice]) ;;
1878 esac])
1879if test "x$enable_multi_ice" = xyes; then
3ace7edb 1880 AC_CONFIG_SUBDIRS(multi-ice)
96baa820
JM
1881fi
1882
a13e2c95
UW
1883# We only build gdbserver automatically in a native configuration.
1884if test "$gdb_native" = "yes"; then
8dcde887
MK
1885 AC_MSG_CHECKING(whether gdbserver is supported on this host)
1886 if test "x$build_gdbserver" = xyes; then
8dcde887 1887 AC_MSG_RESULT(yes)
3ace7edb 1888 AC_CONFIG_SUBDIRS(gdbserver)
8dcde887
MK
1889 else
1890 AC_MSG_RESULT(no)
1891 fi
a85f51e7
DJ
1892fi
1893
db985757 1894# If nativefile (NAT_FILE) is not set in config/*/*.m[ht] files, we link
2c0fc042 1895# to an empty version.
c906108c
SS
1896
1897files=
1898links=
5a2402b8 1899
c906108c
SS
1900rm -f nm.h
1901if test "${nativefile}" != ""; then
0f475e27
AC
1902 case "${nativefile}" in
1903 nm-*.h ) GDB_NM_FILE="config/${gdb_host_cpu}/${nativefile}" ;;
1904 * ) GDB_NM_FILE="${nativefile}"
1905 esac
5a2402b8
AC
1906 files="${files} ${GDB_NM_FILE}"
1907 links="${links} nm.h"
60ca704f 1908 AC_DEFINE_UNQUOTED(GDB_NM_FILE, "${GDB_NM_FILE}", [nativefile])
c906108c 1909fi
cfd53605 1910AC_SUBST(GDB_NM_FILE)
5a2402b8 1911
c906108c
SS
1912AC_LINK_FILES($files, $links)
1913
1914dnl Check for exe extension set on certain hosts (e.g. Win32)
1915AC_EXEEXT
1916
234b45d4 1917dnl Detect the character set used by this host.
6c7a06a3
TT
1918dnl At the moment, we just assume it's UTF-8.
1919AC_DEFINE(GDB_DEFAULT_HOST_CHARSET, "UTF-8",
234b45d4
KB
1920 [Define to be a string naming the default host character set.])
1921
26e251b6
JM
1922# Flags needed to enable html installing and building
1923AC_ARG_WITH(datarootdir,
1924AC_HELP_STRING([--with-datarootdir], [use datarootdir as the data root directory.]),
1925[datarootdir="\${prefix}/${withval}"],
1926[datarootdir="\${prefix}/share"])
1927
1928AC_ARG_WITH(docdir,
1929AC_HELP_STRING([--with-docdir], [install documentation in this directory.]),
1930[docdir="\${prefix}/${withval}"],
1931[docdir="\${datarootdir}/doc"])
1932
1933AC_ARG_WITH(pdfdir,
1934AC_HELP_STRING([--with-pdfdir], [install pdf in this directory.]),
1935[pdfdir="\${prefix}/${withval}"],
1936[pdfdir="\${docdir}"])
1937
1938AC_ARG_WITH(htmldir,
1939AC_HELP_STRING([--with-htmldir], [install html in this directory.]),
1940[htmldir="\${prefix}/${withval}"],
1941[htmldir="\${docdir}"])
1942
89a34d1b
JM
1943AC_SUBST(datarootdir)
1944AC_SUBST(docdir)
1945AC_SUBST(htmldir)
1946AC_SUBST(pdfdir)
1947
e28b3332 1948AC_OUTPUT(Makefile .gdbinit:gdbinit.in gnulib/Makefile,
c906108c 1949[
c906108c
SS
1950case x$CONFIG_HEADERS in
1951xconfig.h:config.in)
1952echo > stamp-h ;;
1953esac
c906108c
SS
1954])
1955
1956exit 0
This page took 0.816085 seconds and 4 git commands to generate.