]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blob - sim/erc32/configure.ac
Bump to autoconf 2.69 and automake 1.15.1
[thirdparty/binutils-gdb.git] / sim / erc32 / configure.ac
1 dnl Copyright (C) 1996-2018 Free Software Foundation, Inc.
2 dnl
3 dnl This program is free software; you can redistribute it and/or modify
4 dnl it under the terms of the GNU General Public License as published by
5 dnl the Free Software Foundation; either version 3 of the License, or
6 dnl (at your option) any later version.
7 dnl
8 dnl This program is distributed in the hope that it will be useful,
9 dnl but WITHOUT ANY WARRANTY; without even the implied warranty of
10 dnl MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 dnl GNU General Public License for more details.
12 dnl
13 dnl You should have received a copy of the GNU General Public License
14 dnl along with this program. If not, see <http://www.gnu.org/licenses/>.
15
16 dnl Process this file with autoconf to produce a configure script.
17 AC_INIT(Makefile.in)
18 sinclude(../common/acinclude.m4)
19
20 SIM_AC_COMMON
21
22 # In the Cygwin environment, we need some additional flags.
23 AC_CACHE_CHECK([for cygwin], sim_cv_os_cygwin,
24 [AC_EGREP_CPP(lose, [
25 #ifdef __CYGWIN__
26 lose
27 #endif],[sim_cv_os_cygwin=yes],[sim_cv_os_cygwin=no])])
28
29 if test x$sim_cv_os_cygwin = xyes; then
30 TERMCAP='`if test -r ../../libtermcap/libtermcap.a; then echo ../../libtermcap/libtermcap.a; else echo -ltermcap; fi` -luser32'
31 else
32 # Keep in sync with gdb's configure.ac list.
33 AC_SEARCH_LIBS(tgetent, [termcap tinfo curses ncurses],
34 [TERMCAP=$ac_cv_search_tgetent], [TERMCAP=""])
35 fi
36 AC_SUBST(TERMCAP)
37
38 # We prefer the in-tree readline. Top-level dependencies make sure
39 # src/readline (if it's there) is configured before src/sim.
40 if test -r ../../readline/Makefile; then
41 READLINE=../../readline/libreadline.a
42 else
43 AC_CHECK_LIB(readline, readline, READLINE=-lreadline,
44 AC_ERROR([the required "readline" library is missing]), $TERMCAP)
45 fi
46 AC_SUBST(READLINE)
47 SIM_AC_OUTPUT