Remove proc->priv->new_inferior
[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)
4b8b5e72 97AC_CHECK_FUNCS(getauxval pread pwrite pread64 setns)
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)
1041a03c 346 BFD_HAVE_SYS_PROCFS_TYPE(prfpregset_t)
0d62e5e8
DJ
347 BFD_HAVE_SYS_PROCFS_TYPE(elf_fpregset_t)
348fi
349
18f5fd81
TJB
350dnl Some systems (e.g., Android) have lwpid_t defined in libthread_db.h.
351if test "$bfd_cv_have_sys_procfs_type_lwpid_t" != yes; then
352 GDBSERVER_HAVE_THREAD_DB_TYPE(lwpid_t)
353fi
354
355dnl Some systems (e.g., Android) have psaddr_t defined in libthread_db.h.
356if test "$bfd_cv_have_sys_procfs_type_psaddr_t" != yes; then
357 GDBSERVER_HAVE_THREAD_DB_TYPE(psaddr_t)
358fi
359
193f13e6
MK
360dnl Check for libdl, but do not add it to LIBS as only gdbserver
361dnl needs it (and gdbreplay doesn't).
362old_LIBS="$LIBS"
363AC_CHECK_LIB(dl, dlopen)
364LIBS="$old_LIBS"
365
0d62e5e8
DJ
366srv_thread_depfiles=
367srv_libs=
0d62e5e8
DJ
368
369if test "$srv_linux_thread_db" = "yes"; then
193f13e6
MK
370 if test "$ac_cv_lib_dl_dlopen" = "yes"; then
371 srv_libs="-ldl"
f6528abd 372 AC_MSG_CHECKING(for the dynamic export flag)
193f13e6 373 old_LDFLAGS="$LDFLAGS"
f6528abd
JK
374 # Older GNU ld supports --export-dynamic but --dynamic-list may not be
375 # supported there.
376 RDYNAMIC="-Wl,--dynamic-list=${srcdir}/proc-service.list"
377 LDFLAGS="$LDFLAGS $RDYNAMIC"
378 AC_TRY_LINK([], [],
379 [found="-Wl,--dynamic-list"
380 RDYNAMIC='-Wl,--dynamic-list=$(srcdir)/proc-service.list'],
381 [RDYNAMIC="-rdynamic"
382 LDFLAGS="$old_LDFLAGS $RDYNAMIC"
383 AC_TRY_LINK([], [],
384 [found="-rdynamic"],
385 [found="no"
386 RDYNAMIC=""])])
193f13e6
MK
387 AC_SUBST(RDYNAMIC)
388 LDFLAGS="$old_LDFLAGS"
f6528abd 389 AC_MSG_RESULT($found)
193f13e6
MK
390 else
391 srv_libs="-lthread_db"
392 fi
0d62e5e8 393
0d62e5e8 394 srv_thread_depfiles="thread-db.o proc-service.o"
7d4e5717 395 AC_DEFINE(USE_THREAD_DB, 1, [Define if we should use libthread_db.])
3db0444b
DJ
396 AC_CACHE_CHECK([for TD_VERSION], gdbsrv_cv_have_td_version,
397 [AC_TRY_COMPILE([#include <thread_db.h>], [TD_VERSION;],
1b3f6016
PA
398 [gdbsrv_cv_have_td_version=yes],
399 [gdbsrv_cv_have_td_version=no])])
3db0444b
DJ
400 if test $gdbsrv_cv_have_td_version = yes; then
401 AC_DEFINE(HAVE_TD_VERSION, 1, [Define if TD_VERSION is available.])
402 fi
0d62e5e8
DJ
403fi
404
96f15937
PP
405AC_ARG_WITH(libthread-db,
406AS_HELP_STRING([--with-libthread-db=PATH], [use given libthread_db directly]),
407[srv_libthread_db_path="${withval}"
96f15937
PP
408 srv_libs="$srv_libthread_db_path"
409])
410
193f13e6
MK
411if test "$srv_libs" != "" -a "$srv_libs" != "-ldl"; then
412 AC_DEFINE(USE_LIBTHREAD_DB_DIRECTLY, 1, [Define if we should use libthread_db directly.])
413fi
414
9b4b61c8 415if test "$srv_xmlfiles" != ""; then
fb1e4ffc
DJ
416 srv_xmlbuiltin="xml-builtin.o"
417 AC_DEFINE(USE_XML, 1, [Define if an XML target description is available.])
418
419 tmp_xmlfiles=$srv_xmlfiles
9b4b61c8 420 srv_xmlfiles=""
fb1e4ffc
DJ
421 for f in $tmp_xmlfiles; do
422 srv_xmlfiles="$srv_xmlfiles \$(XML_DIR)/$f"
423 done
424fi
425
fb23d554 426GDBSERVER_DEPFILES="$srv_regobj $srv_tgtobj $srv_hostio_err_objs $srv_thread_depfiles $srv_host_obs"
0d62e5e8 427GDBSERVER_LIBS="$srv_libs"
c906108c 428
fa593d66
PA
429dnl Check whether the target supports __sync_*_compare_and_swap.
430AC_CACHE_CHECK([whether the target supports __sync_*_compare_and_swap],
431 gdbsrv_cv_have_sync_builtins, [
432AC_TRY_LINK([], [int foo, bar; bar = __sync_val_compare_and_swap(&foo, 0, 1);],
433 gdbsrv_cv_have_sync_builtins=yes,
434 gdbsrv_cv_have_sync_builtins=no)])
435if test $gdbsrv_cv_have_sync_builtins = yes; then
436 AC_DEFINE(HAVE_SYNC_BUILTINS, 1,
437 [Define to 1 if the target supports __sync_*_compare_and_swap])
438fi
439
440dnl Check for -fvisibility=hidden support in the compiler.
441saved_cflags="$CFLAGS"
442CFLAGS="$CFLAGS -fvisibility=hidden"
443AC_COMPILE_IFELSE(AC_LANG_PROGRAM([]),
444 [gdbsrv_cv_have_visibility_hidden=yes],
445 [gdbsrv_cv_have_visibility_hidden=no])
446CFLAGS="$saved_cflags"
447
03583c20
UW
448dnl Check if we can disable the virtual address space randomization.
449dnl The functionality of setarch -R.
450AC_CHECK_DECLS([ADDR_NO_RANDOMIZE],,, [#include <sys/personality.h>])
451define([PERSONALITY_TEST], [AC_LANG_PROGRAM([#include <sys/personality.h>], [
452# if !HAVE_DECL_ADDR_NO_RANDOMIZE
453# define ADDR_NO_RANDOMIZE 0x0040000
454# endif
455 /* Test the flag could be set and stays set. */
456 personality (personality (0xffffffff) | ADDR_NO_RANDOMIZE);
457 if (!(personality (personality (0xffffffff)) & ADDR_NO_RANDOMIZE))
458 return 1])])
459AC_RUN_IFELSE([PERSONALITY_TEST],
460 [gdbsrv_cv_have_personality=true],
461 [gdbsrv_cv_have_personality=false],
462 [AC_LINK_IFELSE([PERSONALITY_TEST],
463 [gdbsrv_cv_have_personality=true],
464 [gdbsrv_cv_have_personality=false])])
465if $gdbsrv_cv_have_personality
466then
467 AC_DEFINE([HAVE_PERSONALITY], 1,
468 [Define if you support the personality syscall.])
469fi
470
c2a66c29 471
fa593d66 472IPA_DEPFILES=""
c2a66c29 473extra_libraries=""
fa593d66 474
c2a66c29 475# check whether to enable the inprocess agent
fa593d66
PA
476if test "$ipa_obj" != "" \
477 -a "$gdbsrv_cv_have_sync_builtins" = yes \
478 -a "$gdbsrv_cv_have_visibility_hidden" = yes; then
c2a66c29
NS
479 have_ipa=true
480else
481 have_ipa=false
482fi
483
484AC_ARG_ENABLE(inprocess-agent,
485AS_HELP_STRING([--enable-inprocess-agent], [inprocess agent]),
486[case "$enableval" in
487 yes) want_ipa=true ;;
488 no) want_ipa=false ;;
489 *) AC_MSG_ERROR([bad value $enableval for inprocess-agent]) ;;
490esac],
491[want_ipa=$have_ipa])
492
493if $want_ipa ; then
494 if $have_ipa ; then
495 IPA_DEPFILES="$ipa_obj"
496 extra_libraries="$extra_libraries libinproctrace.so"
497 else
498 AC_MSG_ERROR([inprocess agent not supported for this target])
499 fi
fa593d66
PA
500fi
501
7ea81414 502AC_SUBST(GDBSERVER_DEPFILES)
0d62e5e8 503AC_SUBST(GDBSERVER_LIBS)
fb1e4ffc
DJ
504AC_SUBST(srv_xmlbuiltin)
505AC_SUBST(srv_xmlfiles)
fa593d66
PA
506AC_SUBST(IPA_DEPFILES)
507AC_SUBST(extra_libraries)
c906108c 508
c971b7fa 509GNULIB=build-gnulib-gdbserver/import
c9a1864a
YQ
510
511GNULIB_STDINT_H=
512if test x"$STDINT_H" != x; then
c971b7fa 513 GNULIB_STDINT_H=$GNULIB/$STDINT_H
c9a1864a
YQ
514fi
515AC_SUBST(GNULIB_STDINT_H)
516
c971b7fa 517AC_OUTPUT(Makefile,
c3a3ccc7
DJ
518[case x$CONFIG_HEADERS in
519xconfig.h:config.in)
520echo > stamp-h ;;
521esac
522])
This page took 1.084989 seconds and 4 git commands to generate.