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

4.104.114.84.95
Last change on this file since d9c2e9f5 was a719382, checked in by Joel Sherrill <joel.sherrill@…>, on 08/30/99 at 18:38:26

Patch from Ralf Corsepius <corsepiu@…> to move
c/src/lib/librtems++ and c/src/lib/include/rtems++ to
their own package librtems++ at the top of the tree.

To apply:

mkdir c/src/librtems++
cp c/src/lib/librtems++/README c/src/librtems++
mkdir c/src/librtems++/src
cp c/src/lib/librtems++/*.cc c/src/librtems++/src
cp c/src/lib/librtems++/Makefile.in c/src/librtems++/src
mkdir c/src/librtems++/include
mkdir c/src/librtems++/include/rtems++
cp c/src/lib/include/rtems++/*.h c/src/librtems++/include/rtems++
patch -p1 <rtems-rc-19990802-5.diff
rm -rf c/src/lib/librtems++
rm -rf c/src/lib/include/rtems++
./autogen

Attention:

  • The procedure above copies the files first, then patches them and finally removes the old files afterwards. This has been done to enable you to copy the files in CVS to preserve their history.
  • Property mode set to 100644
File size: 513 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(librtems++)
27AC_CONFIG_SUBDIRS(tests)
28
29AC_OUTPUT(
30Makefile
31)
Note: See TracBrowser for help on using the repository browser.