Fix PR gdb/287. From wiz at danbala. Then->than and typos.
[deliverable/binutils-gdb.git] / gdb / gdbserver / configure.in
CommitLineData
d6e9fb05 1dnl Autoconf configure script for GDB server.
84563040 2dnl Copyright 2000, 2002 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
8dnl the Free Software Foundation; either version 2 of the License, or
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
17dnl along with this program; if not, write to the Free Software
18dnl Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
19
20dnl Process this file with autoconf to produce a configure script.
21
22AC_INIT(server.c)
84563040
DJ
23AC_CONFIG_HEADER(config.h:config.in)
24
25AC_PROG_CC
d6e9fb05
JK
26
27AC_CANONICAL_SYSTEM
84563040 28
d6e9fb05 29AC_PROG_INSTALL
c906108c 30
ee6e2b82 31AC_HEADER_STDC
84563040
DJ
32
33AC_CHECK_HEADERS(sgtty.h termio.h termios.h sys/reg.h)
34
c906108c
SS
35. ${srcdir}/../configure.host
36
c906108c
SS
37. ${srcdir}/../configure.tgt
38
d6e9fb05
JK
39frags=
40host_makefile_frag=${srcdir}/../config/${gdb_host_cpu}/${gdb_host}.mh
41if test ! -f ${host_makefile_frag}; then
42 AC_MSG_ERROR("*** GDB remote does not support host ${host}")
c906108c 43fi
d6e9fb05 44frags="$frags $host_makefile_frag"
c906108c 45
d6e9fb05
JK
46target_makefile_frag=${srcdir}/../config/${gdb_target_cpu}/${gdb_target}.mt
47if test ! -f ${target_makefile_frag}; then
48 AC_MSG_ERROR("*** GDB remote does not support target ${target}")
c906108c 49fi
d6e9fb05 50frags="$frags $target_makefile_frag"
c906108c 51
d6e9fb05
JK
52AC_SUBST_FILE(host_makefile_frag)
53AC_SUBST_FILE(target_makefile_frag)
54AC_SUBST(frags)
c906108c 55
d6e9fb05
JK
56changequote(,)dnl
57hostfile=`sed -n '
58s/XM_FILE[ ]*=[ ]*\([^ ]*\)/\1/p
59' ${host_makefile_frag}`
c906108c 60
d6e9fb05
JK
61targetfile=`sed -n '
62s/TM_FILE[ ]*=[ ]*\([^ ]*\)/\1/p
63' ${target_makefile_frag}`
64
65if test "${target}" = "${host}"; then
66nativefile=`sed -n '
67s/NAT_FILE[ ]*=[ ]*\([^ ]*\)/\1/p
68' ${host_makefile_frag}`
69fi
70changequote([,])dnl
c906108c 71
d6e9fb05 72AC_OUTPUT(Makefile)
This page took 0.170477 seconds and 4 git commands to generate.