* gdb.base/fileio.c: Include unistd.h as required for lseek(2).
[deliverable/binutils-gdb.git] / sim / m68hc11 / configure.in
CommitLineData
e0709f50
AC
1dnl Process this file with autoconf to produce a configure script.
2sinclude(../common/aclocal.m4)
3AC_PREREQ(2.12.1)dnl
4AC_INIT(Makefile.in)
5
6SIM_AC_COMMON
7
8dnl Options available in this module
9SIM_AC_OPTION_INLINE()
10SIM_AC_OPTION_ALIGNMENT(NONSTRICT_ALIGNMENT)
11SIM_AC_OPTION_HOSTENDIAN
12SIM_AC_OPTION_WARNINGS
13
14#
15# Add simulated hardware devices
16#
17hw_enabled=no
18case "${target}" in
19 m68hc11-*-*|m6811-*-*)
20 hw_enabled=yes
21 hw_extra_devices="m68hc11 m68hc11sio m68hc11eepr m68hc11tim m68hc11spi nvram"
22 m68hc11_extra_objs="dv-sockser.o"
23 SIM_SUBTARGET="$SIM_SUBTARGET -DTARGET_M68HC11=1"
24 ;;
25 *)
26 m68hc11_extra_objs=""
27 ;;
28esac
29SIM_AC_OPTION_HARDWARE($hw_enabled,$hw_devices,$hw_extra_devices)
30
31AC_CHECK_HEADERS(string.h strings.h stdlib.h stdlib.h fcntl.h)
32
33AC_SUBST(m68hc11_extra_objs)
34
35SIM_AC_OUTPUT
This page took 0.272478 seconds and 4 git commands to generate.