Remove buggy xterm workaround in tui_dispatch_ctrl_char()
[deliverable/binutils-gdb.git] / gdb / gdbserver / configure.ac
CommitLineData
d6e9fb05 1dnl Autoconf configure script for GDB server.
32d0add0 2dnl Copyright (C) 2000-2015 Free Software Foundation, Inc.
d6e9fb05
JK
3dnl
4dnl This file is part of GDB.
5dnl
6dnl This program is free software; you can redistribute it and/or modify
7dnl it under the terms of the GNU General Public License as published by
5a0e3bd0 8dnl the Free Software Foundation; either version 3 of the License, or
d6e9fb05
JK
9dnl (at your option) any later version.
10dnl
11dnl This program is distributed in the hope that it will be useful,
12dnl but WITHOUT ANY WARRANTY; without even the implied warranty of
13dnl MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14dnl GNU General Public License for more details.
15dnl
16dnl You should have received a copy of the GNU General Public License
5a0e3bd0 17dnl along with this program. If not, see <http://www.gnu.org/licenses/>.
d6e9fb05
JK
18
19dnl Process this file with autoconf to produce a configure script.
20
bec39cab
AC
21AC_PREREQ(2.59)dnl
22
d6e9fb05 23AC_INIT(server.c)
84563040 24AC_CONFIG_HEADER(config.h:config.in)
c9a1864a
YQ
25
26AM_MAINTAINER_MODE
84563040
DJ
27
28AC_PROG_CC
3bc3d82a 29AC_PROG_CXX
fd462a61 30AC_GNU_SOURCE
589bc927 31AC_SYS_LARGEFILE
d6e9fb05
JK
32
33AC_CANONICAL_SYSTEM
84563040 34
d6e9fb05 35AC_PROG_INSTALL
e1d2394b 36AC_CHECK_TOOL(AR, ar)
c971b7fa 37AC_PROG_RANLIB
c906108c 38
dcdb98d2
DJ
39AC_ARG_PROGRAM
40
ee6e2b82 41AC_HEADER_STDC
84563040 42
3bc3d82a
PA
43# See if we are building with C++, and substitute COMPILER.
44GDB_AC_BUILD_WITH_CXX
45
17ef446e 46# Set the 'development' global.
270c9937 47. $srcdir/../../bfd/development.sh
17ef446e
PA
48
49# Enable -lmcheck by default (it provides cheap-enough memory
50# mangling), but turn it off for releases.
51if $development; then
52 libmcheck_default=yes
53else
54 libmcheck_default=no
55fi
56GDB_AC_LIBMCHECK(${libmcheck_default})
57
bd885420
YQ
58ACX_NONCANONICAL_TARGET
59ACX_NONCANONICAL_HOST
60
61c125b9
TT
61# Dependency checking.
62ZW_CREATE_DEPDIR
63ZW_PROG_COMPILER_DEPENDENCIES([CC])
64
c9a1864a
YQ
65# Check for the 'make' the user wants to use.
66AC_CHECK_PROGS(MAKE, make)
61c125b9
TT
67MAKE_IS_GNU=
68case "`$MAKE --version 2>&1 | sed 1q`" in
69 *GNU*)
70 MAKE_IS_GNU=yes
71 ;;
72esac
73AM_CONDITIONAL(GMAKE, test "$MAKE_IS_GNU" = yes)
74AC_PROG_MAKE_SET
c9a1864a 75
648d586d
JB
76gnulib_extra_configure_args=
77# If large-file support is disabled, make sure gnulib does the same.
78if test "$enable_largefile" = no; then
79gnulib_extra_configure_args="$gnulib_extra_configure_args --disable-largefile"
80fi
81
c971b7fa
PA
82# Configure gnulib. We can't use AC_CONFIG_SUBDIRS as that'd expect
83# to find the the source subdir to be configured directly under
84# gdbserver/. We need to build gnulib under some other directory not
85# "gnulib", to avoid the problem of both GDB and GDBserver wanting to
86# build it in the same directory, when building in the source dir.
648d586d
JB
87ACX_CONFIGURE_DIR(["../gnulib"], ["build-gnulib-gdbserver"],
88 ["$gnulib_extra_configure_args"])
c971b7fa 89
0b04e523
TT
90ACX_CONFIGURE_DIR(["../../libiberty"], ["build-libiberty-gdbserver"])
91
0d62e5e8 92AC_CHECK_HEADERS(sgtty.h termio.h termios.h sys/reg.h string.h dnl
1bd2f0ba 93 proc_service.h sys/procfs.h linux/elf.h dnl
9c232dda 94 fcntl.h signal.h sys/file.h dnl
61ff6e04 95 sys/ioctl.h netinet/in.h sys/socket.h netdb.h dnl
1bd2f0ba 96 netinet/tcp.h arpa/inet.h)
cdf43629 97AC_CHECK_FUNCS(getauxval pread pwrite pread64)
84563040 98
3266f10b
TT
99GDB_AC_COMMON
100
0fb4aa4b
PA
101# Check for UST
102ustlibs=""
103ustinc=""
104
105AC_ARG_WITH(ust, [ --with-ust=PATH Specify prefix directory for the installed UST package
106 Equivalent to --with-ust-include=PATH/include
107 plus --with-ust-lib=PATH/lib])
108AC_ARG_WITH(ust_include, [ --with-ust-include=PATH Specify directory for installed UST include files])
109AC_ARG_WITH(ust_lib, [ --with-ust-lib=PATH Specify the directory for the installed UST library])
110
111case $with_ust in
112 no)
113 ustlibs=
114 ustinc=
115 ;;
116 "" | yes)
117 ustlibs=" -lust "
118 ustinc=""
119 ;;
120 *)
121 ustlibs="-L$with_ust/lib -lust"
122 ustinc="-I$with_ust/include "
123 ;;
124esac
125if test "x$with_ust_include" != x; then
126 ustinc="-I$with_ust_include "
127fi
128if test "x$with_ust_lib" != x; then
129 ustlibs="-L$with_ust_lib -lust"
130fi
131
132if test "x$with_ust" != "xno"; then
133 saved_CFLAGS="$CFLAGS"
134 CFLAGS="$CFLAGS $ustinc"
135 AC_MSG_CHECKING([for ust])
136 AC_TRY_COMPILE([
137#define CONFIG_UST_GDB_INTEGRATION
138#include <ust/ust.h>
139 ],[],
140 [AC_MSG_RESULT([yes]); AC_DEFINE(HAVE_UST, 1, [Define if UST is available])],
141 [AC_MSG_RESULT([no]); ustlibs= ; ustinc= ])
142 CFLAGS="$saved_CFLAGS"
143fi
144
145# Flags needed for UST
146AC_SUBST(ustlibs)
147AC_SUBST(ustinc)
148
d4596a3d
PA
149AC_ARG_ENABLE(werror,
150 AS_HELP_STRING([--enable-werror], [treat compile warnings as errors]),
151 [case "${enableval}" in
152 yes | y) ERROR_ON_WARNING="yes" ;;
153 no | n) ERROR_ON_WARNING="no" ;;
154 *) AC_MSG_ERROR(bad value ${enableval} for --enable-werror) ;;
155 esac])
156
3bc3d82a
PA
157# Enable -Werror by default when using gcc in C mode. Leave it off
158# for C++ until we're warning clean. Turn it off for releases.
159if test "${GCC}" = yes -a -z "${ERROR_ON_WARNING}" \
160 && test x"$enable_build_with_cxx" != x"yes" \
161 && $development; then
d4596a3d
PA
162 ERROR_ON_WARNING=yes
163fi
164
165WERROR_CFLAGS=""
166if test "${ERROR_ON_WARNING}" = yes ; then
167 WERROR_CFLAGS="-Werror"
168fi
169
aac331e4 170build_warnings="-Wall -Wpointer-arith \
8c29b58e 171-Wformat-nonliteral -Wno-char-subscripts -Wempty-body"
d4596a3d 172
3bc3d82a
PA
173# Now add in C and C++ specific options, depending on mode.
174if test "$enable_build_with_cxx" = "yes"; then
175 build_warnings="$build_warnings -Wno-sign-compare -Wno-write-strings \
176-Wno-narrowing"
aac331e4
PA
177else
178 build_warnings="$build_warnings -Wdeclaration-after-statement"
3bc3d82a
PA
179fi
180
181# The set of warnings supported by a C++ compiler is not the same as
182# of the C compiler.
183if test "$enable_build_with_cxx" = "yes"; then
184 AC_LANG_PUSH([C++])
185fi
186
d4596a3d
PA
187WARN_CFLAGS=""
188if test "x$GCC" = xyes
189then
190 AC_MSG_CHECKING(compiler warning flags)
191 # Separate out the -Werror flag as some files just cannot be
192 # compiled with it enabled.
193 for w in ${build_warnings}; do
194 case $w in
195 -Werr*) WERROR_CFLAGS=-Werror ;;
3bc3d82a
PA
196 *)
197 # Check whether GCC accepts it.
d4596a3d
PA
198 saved_CFLAGS="$CFLAGS"
199 CFLAGS="$CFLAGS $w"
3bc3d82a
PA
200 saved_CXXFLAGS="$CXXFLAGS"
201 CXXFLAGS="$CXXFLAGS $w"
d4596a3d
PA
202 AC_TRY_COMPILE([],[],WARN_CFLAGS="${WARN_CFLAGS} $w",)
203 CFLAGS="$saved_CFLAGS"
3bc3d82a 204 CXXFLAGS="$saved_CXXFLAGS"
d4596a3d
PA
205 esac
206 done
207 AC_MSG_RESULT(${WARN_CFLAGS} ${WERROR_CFLAGS})
208fi
209AC_SUBST(WARN_CFLAGS)
210AC_SUBST(WERROR_CFLAGS)
211
3bc3d82a
PA
212if test "$enable_build_with_cxx" = "yes"; then
213 AC_LANG_POP([C++])
214fi
215
10e86dd7
DE
216dnl dladdr is glibc-specific. It is used by thread-db.c but only for
217dnl debugging messages. It lives in -ldl which is handled below so we don't
218dnl use AC_CHECK_LIB (or AC_SEARCH_LIBS) here. Instead we just temporarily
219dnl augment LIBS.
220old_LIBS="$LIBS"
221LIBS="$LIBS -ldl"
222AC_CHECK_FUNCS(dladdr)
223LIBS="$old_LIBS"
224
07697489
PA
225libiberty_INIT
226
1bd2f0ba 227AC_CHECK_DECLS([strerror, perror, vasprintf, vsnprintf])
43d5792c 228
791c0056
GB
229AC_CHECK_MEMBERS([struct stat.st_blocks, struct stat.st_blksize])
230
ccbd4912
MK
231AC_CHECK_TYPES(socklen_t, [], [],
232[#include <sys/types.h>
233#include <sys/socket.h>
234])
fb1e4ffc 235
8365dcf5
TJB
236AC_CHECK_TYPES([Elf32_auxv_t, Elf64_auxv_t], [], [],
237#include <elf.h>
238)
239
c16158bc
JM
240ACX_PKGVERSION([GDB])
241ACX_BUGURL([http://www.gnu.org/software/gdb/bugs/])
242AC_DEFINE_UNQUOTED([PKGVERSION], ["$PKGVERSION"], [Additional package description])
243AC_DEFINE_UNQUOTED([REPORT_BUGS_TO], ["$REPORT_BUGS_TO"], [Bug reporting address])
244
8838b45e
NS
245# Check for various supplementary target information (beyond the
246# triplet) which might affect the choices in configure.srv.
247case "${target}" in
248changequote(,)dnl
249 i[34567]86-*-linux*)
250changequote([,])dnl
251 AC_CACHE_CHECK([if building for x86-64], [gdb_cv_i386_is_x86_64],
252 [save_CPPFLAGS="$CPPFLAGS"
253 CPPFLAGS="$CPPFLAGS $CFLAGS"
254 AC_EGREP_CPP([got it], [
255#if __x86_64__
256got it
257#endif
258 ], [gdb_cv_i386_is_x86_64=yes],
259 [gdb_cv_i386_is_x86_64=no])
260 CPPFLAGS="$save_CPPFLAGS"])
261 ;;
9ac544ce
MK
262 m68k-*-*)
263 AC_CACHE_CHECK([if building for Coldfire], [gdb_cv_m68k_is_coldfire],
264 [save_CPPFLAGS="$CPPFLAGS"
265 CPPFLAGS="$CPPFLAGS $CFLAGS"
266 AC_EGREP_CPP([got it], [
267#ifdef __mcoldfire__
268got it
269#endif
270 ], [gdb_cv_m68k_is_coldfire=yes],
271 [gdb_cv_m68k_is_coldfire=no])
272 CPPFLAGS="$save_CPPFLAGS"])
273 ;;
8838b45e
NS
274esac
275
7ea81414 276. ${srcdir}/configure.srv
c906108c 277
fb23d554
SDJ
278# Add in the common host objects.
279. ${srcdir}/../common/common.host
280srv_host_obs="$common_host_obs"
281
68070c10
PA
282if test "${srv_mingwce}" = "yes"; then
283 LIBS="$LIBS -lws2"
284elif test "${srv_mingw}" = "yes"; then
12ea4b69 285 LIBS="$LIBS -lws2_32"
ac8c974e
AR
286elif test "${srv_qnx}" = "yes"; then
287 LIBS="$LIBS -lsocket"
8ed54b31
JB
288elif test "${srv_lynxos}" = "yes"; then
289 LIBS="$LIBS -lnetinet"
68070c10
PA
290fi
291
292if test "${srv_mingw}" = "yes"; then
b80864fb
DJ
293 AC_DEFINE(USE_WIN32API, 1,
294 [Define if we should use the Windows API, instead of the
295 POSIX API. On Windows, we use the Windows API when
296 building for MinGW, but the POSIX API when building
297 for Cygwin.])
298fi
299
58caa3dc 300if test "${srv_linux_usrregs}" = "yes"; then
f450004a
DJ
301 AC_DEFINE(HAVE_LINUX_USRREGS, 1,
302 [Define if the target supports PTRACE_PEEKUSR for register ]
303 [access.])
58caa3dc
DJ
304fi
305
306if test "${srv_linux_regsets}" = "yes"; then
e9d25b98
DJ
307 AC_DEFINE(HAVE_LINUX_REGSETS, 1,
308 [Define if the target supports register sets.])
309
58caa3dc
DJ
310 AC_MSG_CHECKING(for PTRACE_GETREGS)
311 AC_CACHE_VAL(gdbsrv_cv_have_ptrace_getregs,
312 [AC_TRY_COMPILE([#include <sys/ptrace.h>],
313 [PTRACE_GETREGS;],
314 [gdbsrv_cv_have_ptrace_getregs=yes],
315 [gdbsrv_cv_have_ptrace_getregs=no])])
316 AC_MSG_RESULT($gdbsrv_cv_have_ptrace_getregs)
317 if test "${gdbsrv_cv_have_ptrace_getregs}" = "yes"; then
e9d25b98 318 AC_DEFINE(HAVE_PTRACE_GETREGS, 1,
f450004a
DJ
319 [Define if the target supports PTRACE_GETREGS for register ]
320 [access.])
58caa3dc
DJ
321 fi
322
323 AC_MSG_CHECKING(for PTRACE_GETFPXREGS)
324 AC_CACHE_VAL(gdbsrv_cv_have_ptrace_getfpxregs,
325 [AC_TRY_COMPILE([#include <sys/ptrace.h>],
326 [PTRACE_GETFPXREGS;],
327 [gdbsrv_cv_have_ptrace_getfpxregs=yes],
328 [gdbsrv_cv_have_ptrace_getfpxregs=no])])
329 AC_MSG_RESULT($gdbsrv_cv_have_ptrace_getfpxregs)
330 if test "${gdbsrv_cv_have_ptrace_getfpxregs}" = "yes"; then
f450004a
DJ
331 AC_DEFINE(HAVE_PTRACE_GETFPXREGS, 1,
332 [Define if the target supports PTRACE_GETFPXREGS for extended ]
333 [register access.])
58caa3dc
DJ
334 fi
335fi
336
9accd112
MM
337if test "${srv_linux_btrace}" = "yes"; then
338 AC_DEFINE(HAVE_LINUX_BTRACE, 1,
339 [Define if the target supports branch tracing.])
340fi
341
0d62e5e8
DJ
342if test "$ac_cv_header_sys_procfs_h" = yes; then
343 BFD_HAVE_SYS_PROCFS_TYPE(lwpid_t)
344 BFD_HAVE_SYS_PROCFS_TYPE(psaddr_t)
345 BFD_HAVE_SYS_PROCFS_TYPE(prgregset_t)
0d62e5e8
DJ
346 BFD_HAVE_SYS_PROCFS_TYPE(elf_fpregset_t)
347fi
348
18f5fd81
TJB
349dnl Some systems (e.g., Android) have lwpid_t defined in libthread_db.h.
350if test "$bfd_cv_have_sys_procfs_type_lwpid_t" != yes; then
351 GDBSERVER_HAVE_THREAD_DB_TYPE(lwpid_t)
352fi
353
354dnl Some systems (e.g., Android) have psaddr_t defined in libthread_db.h.
355if test "$bfd_cv_have_sys_procfs_type_psaddr_t" != yes; then
356 GDBSERVER_HAVE_THREAD_DB_TYPE(psaddr_t)
357fi
358
193f13e6
MK
359dnl Check for libdl, but do not add it to LIBS as only gdbserver
360dnl needs it (and gdbreplay doesn't).
361old_LIBS="$LIBS"
362AC_CHECK_LIB(dl, dlopen)
363LIBS="$old_LIBS"
364
0d62e5e8
DJ
365srv_thread_depfiles=
366srv_libs=
0d62e5e8
DJ
367
368if test "$srv_linux_thread_db" = "yes"; then
193f13e6
MK
369 if test "$ac_cv_lib_dl_dlopen" = "yes"; then
370 srv_libs="-ldl"
f6528abd 371 AC_MSG_CHECKING(for the dynamic export flag)
193f13e6 372 old_LDFLAGS="$LDFLAGS"
f6528abd
JK
373 # Older GNU ld supports --export-dynamic but --dynamic-list may not be
374 # supported there.
375 RDYNAMIC="-Wl,--dynamic-list=${srcdir}/proc-service.list"
376 LDFLAGS="$LDFLAGS $RDYNAMIC"
377 AC_TRY_LINK([], [],
378 [found="-Wl,--dynamic-list"
379 RDYNAMIC='-Wl,--dynamic-list=$(srcdir)/proc-service.list'],
380 [RDYNAMIC="-rdynamic"
381 LDFLAGS="$old_LDFLAGS $RDYNAMIC"
382 AC_TRY_LINK([], [],
383 [found="-rdynamic"],
384 [found="no"
385 RDYNAMIC=""])])
193f13e6
MK
386 AC_SUBST(RDYNAMIC)
387 LDFLAGS="$old_LDFLAGS"
f6528abd 388 AC_MSG_RESULT($found)
193f13e6
MK
389 else
390 srv_libs="-lthread_db"
391 fi
0d62e5e8 392
0d62e5e8 393 srv_thread_depfiles="thread-db.o proc-service.o"
7d4e5717 394 AC_DEFINE(USE_THREAD_DB, 1, [Define if we should use libthread_db.])
3db0444b
DJ
395 AC_CACHE_CHECK([for TD_VERSION], gdbsrv_cv_have_td_version,
396 [AC_TRY_COMPILE([#include <thread_db.h>], [TD_VERSION;],
1b3f6016
PA
397 [gdbsrv_cv_have_td_version=yes],
398 [gdbsrv_cv_have_td_version=no])])
3db0444b
DJ
399 if test $gdbsrv_cv_have_td_version = yes; then
400 AC_DEFINE(HAVE_TD_VERSION, 1, [Define if TD_VERSION is available.])
401 fi
0d62e5e8
DJ
402fi
403
96f15937
PP
404AC_ARG_WITH(libthread-db,
405AS_HELP_STRING([--with-libthread-db=PATH], [use given libthread_db directly]),
406[srv_libthread_db_path="${withval}"
96f15937
PP
407 srv_libs="$srv_libthread_db_path"
408])
409
193f13e6
MK
410if test "$srv_libs" != "" -a "$srv_libs" != "-ldl"; then
411 AC_DEFINE(USE_LIBTHREAD_DB_DIRECTLY, 1, [Define if we should use libthread_db directly.])
412fi
413
9b4b61c8 414if test "$srv_xmlfiles" != ""; then
fb1e4ffc
DJ
415 srv_xmlbuiltin="xml-builtin.o"
416 AC_DEFINE(USE_XML, 1, [Define if an XML target description is available.])
417
418 tmp_xmlfiles=$srv_xmlfiles
9b4b61c8 419 srv_xmlfiles=""
fb1e4ffc
DJ
420 for f in $tmp_xmlfiles; do
421 srv_xmlfiles="$srv_xmlfiles \$(XML_DIR)/$f"
422 done
423fi
424
fb23d554 425GDBSERVER_DEPFILES="$srv_regobj $srv_tgtobj $srv_hostio_err_objs $srv_thread_depfiles $srv_host_obs"
0d62e5e8 426GDBSERVER_LIBS="$srv_libs"
c906108c 427
fa593d66
PA
428dnl Check whether the target supports __sync_*_compare_and_swap.
429AC_CACHE_CHECK([whether the target supports __sync_*_compare_and_swap],
430 gdbsrv_cv_have_sync_builtins, [
431AC_TRY_LINK([], [int foo, bar; bar = __sync_val_compare_and_swap(&foo, 0, 1);],
432 gdbsrv_cv_have_sync_builtins=yes,
433 gdbsrv_cv_have_sync_builtins=no)])
434if test $gdbsrv_cv_have_sync_builtins = yes; then
435 AC_DEFINE(HAVE_SYNC_BUILTINS, 1,
436 [Define to 1 if the target supports __sync_*_compare_and_swap])
437fi
438
439dnl Check for -fvisibility=hidden support in the compiler.
440saved_cflags="$CFLAGS"
441CFLAGS="$CFLAGS -fvisibility=hidden"
442AC_COMPILE_IFELSE(AC_LANG_PROGRAM([]),
443 [gdbsrv_cv_have_visibility_hidden=yes],
444 [gdbsrv_cv_have_visibility_hidden=no])
445CFLAGS="$saved_cflags"
446
03583c20
UW
447dnl Check if we can disable the virtual address space randomization.
448dnl The functionality of setarch -R.
449AC_CHECK_DECLS([ADDR_NO_RANDOMIZE],,, [#include <sys/personality.h>])
450define([PERSONALITY_TEST], [AC_LANG_PROGRAM([#include <sys/personality.h>], [
451# if !HAVE_DECL_ADDR_NO_RANDOMIZE
452# define ADDR_NO_RANDOMIZE 0x0040000
453# endif
454 /* Test the flag could be set and stays set. */
455 personality (personality (0xffffffff) | ADDR_NO_RANDOMIZE);
456 if (!(personality (personality (0xffffffff)) & ADDR_NO_RANDOMIZE))
457 return 1])])
458AC_RUN_IFELSE([PERSONALITY_TEST],
459 [gdbsrv_cv_have_personality=true],
460 [gdbsrv_cv_have_personality=false],
461 [AC_LINK_IFELSE([PERSONALITY_TEST],
462 [gdbsrv_cv_have_personality=true],
463 [gdbsrv_cv_have_personality=false])])
464if $gdbsrv_cv_have_personality
465then
466 AC_DEFINE([HAVE_PERSONALITY], 1,
467 [Define if you support the personality syscall.])
468fi
469
c2a66c29 470
fa593d66 471IPA_DEPFILES=""
c2a66c29 472extra_libraries=""
fa593d66 473
c2a66c29 474# check whether to enable the inprocess agent
fa593d66
PA
475if test "$ipa_obj" != "" \
476 -a "$gdbsrv_cv_have_sync_builtins" = yes \
477 -a "$gdbsrv_cv_have_visibility_hidden" = yes; then
c2a66c29
NS
478 have_ipa=true
479else
480 have_ipa=false
481fi
482
483AC_ARG_ENABLE(inprocess-agent,
484AS_HELP_STRING([--enable-inprocess-agent], [inprocess agent]),
485[case "$enableval" in
486 yes) want_ipa=true ;;
487 no) want_ipa=false ;;
488 *) AC_MSG_ERROR([bad value $enableval for inprocess-agent]) ;;
489esac],
490[want_ipa=$have_ipa])
491
492if $want_ipa ; then
493 if $have_ipa ; then
494 IPA_DEPFILES="$ipa_obj"
495 extra_libraries="$extra_libraries libinproctrace.so"
496 else
497 AC_MSG_ERROR([inprocess agent not supported for this target])
498 fi
fa593d66
PA
499fi
500
7ea81414 501AC_SUBST(GDBSERVER_DEPFILES)
0d62e5e8 502AC_SUBST(GDBSERVER_LIBS)
fb1e4ffc
DJ
503AC_SUBST(srv_xmlbuiltin)
504AC_SUBST(srv_xmlfiles)
fa593d66
PA
505AC_SUBST(IPA_DEPFILES)
506AC_SUBST(extra_libraries)
c906108c 507
c971b7fa 508GNULIB=build-gnulib-gdbserver/import
c9a1864a
YQ
509
510GNULIB_STDINT_H=
511if test x"$STDINT_H" != x; then
c971b7fa 512 GNULIB_STDINT_H=$GNULIB/$STDINT_H
c9a1864a
YQ
513fi
514AC_SUBST(GNULIB_STDINT_H)
515
c971b7fa 516AC_OUTPUT(Makefile,
c3a3ccc7
DJ
517[case x$CONFIG_HEADERS in
518xconfig.h:config.in)
519echo > stamp-h ;;
520esac
521])
This page took 1.198624 seconds and 4 git commands to generate.