source: rtems/c/src/lib/libbsp/m68k/mvme162/tools/configure.ac @ 3a3ee55a

4.115
Last change on this file since 3a3ee55a was 3a3ee55a, checked in by Ralf Corsépius <ralf.corsepius@…>, on 05/04/12 at 06:51:44

Remove CVS-Ids.

  • Property mode set to 100644
File size: 894 bytes
Line 
1## Process this file with autoconf to produce a configure script.
2
3AC_PREREQ([2.68])
4AC_INIT([rtems-c-src-lib-libbsp-m68k-mvme162-tools],[_RTEMS_VERSION],[http://www.rtems.org/bugzilla])
5AC_CONFIG_SRCDIR([sload.c])
6RTEMS_TOP(../../../../../../..)
7
8RTEMS_CANONICAL_TARGET_CPU
9
10AM_INIT_AUTOMAKE([no-define foreign 1.11.1])
11AM_MAINTAINER_MODE
12
13AC_PROG_CC
14
15## FIXME: The checks below are probably incorrect and will not work for
16## those actually having sys/vme.h
17## Please report any errors related to it, otherwise we will not be able
18## to fix building/configuring sload
19AC_HEADER_STDC
20AC_CHECK_HEADERS(unistd.h sys/vme.h)
21AC_FUNC_MMAP
22
23AM_CONDITIONAL(SLOAD_BUILDABLE,
24test "$ac_cv_header_sys_vme_h" = "yes" \
25-a  "$ac_cv_header_unistd_h" = "yes" \
26-a "$ac_cv_header_stdc" = "yes" )
27
28RTEMS_PROJECT_ROOT
29RTEMS_TOOLPATHS
30
31# Explicitly list all Makefiles here
32AC_CONFIG_FILES([Makefile])
33AC_OUTPUT
Note: See TracBrowser for help on using the repository browser.