source: rtems/c/src/configure.in @ f724a870

4.104.114.84.95
Last change on this file since f724a870 was f724a870, checked in by Joel Sherrill <joel.sherrill@…>, on 08/30/99 at 16:25:54

Patch from Ralf Corsepius <corsepiu@…>:

This patch addresses a few configuration issues and removes some
duplicate configuration files.

Background:

  • some files used in AC_INIT were not unique enough and can lead to problems if a user plays with configure scripts.
  • the Makefile templates are independent of the target/cpu and bsp, so the bsp dependent versions (c/src/make/Templates) are removed.

To apply:

patch -p1 < rtems-rc-19990820-3.diff
rm -f c/src/make/Templates
./autogen

ATTENTION: This patch removes several files and one directory :)

  • Property mode set to 100644
File size: 483 bytes
Line 
1dnl Process this file with autoconf to produce a configure script.
2dnl
3dnl  $Id$
4
5AC_PREREQ(2.13)
6AC_INIT(exec)
7RTEMS_TOP(../..)
8AC_CONFIG_AUX_DIR(../..)
9
10RTEMS_CANONICAL_TARGET_CPU
11
12AM_INIT_AUTOMAKE(rtems-c-src,$RTEMS_VERSION,no)
13AM_MAINTAINER_MODE
14
15RTEMS_ENV_RTEMSBSP
16RTEMS_CHECK_CPU
17RTEMS_CANONICAL_HOST
18
19RTEMS_PROJECT_ROOT
20
21RTEMS_CHECK_CUSTOM_BSP(RTEMS_BSP)
22
23AC_CONFIG_SUBDIRS(make)
24AC_CONFIG_SUBDIRS(exec)
25AC_CONFIG_SUBDIRS(lib)
26AC_CONFIG_SUBDIRS(tests)
27
28AC_OUTPUT(
29Makefile
30)
Note: See TracBrowser for help on using the repository browser.