source: rtems/c/src/aclocal/target.m4 @ a7479f2

4.104.114.84.95
Last change on this file since a7479f2 was e4a0c4e, checked in by Ralf Corsepius <ralf.corsepius@…>, on 11/15/06 at 09:55:27

2006-11-15 Ralf Corsépius <ralf.corsepius@…>

  • aclocal/target.m4: Remove RTEMS_OUTPUT_BUILD_SUBDIRS.
  • Property mode set to 100644
File size: 3.3 KB
Line 
1dnl $Id$
2
3## HACK: Work-around to structural issue with RTEMS
4## The macros below violate most autoconf and canonicalization standards
5AC_DEFUN([RTEMS_CONFIG_BUILD_SUBDIRS],
6[AC_REQUIRE([_RTEMS_OUTPUT_BUILD_SUBDIRS])
7RTEMS_BUILD_SUBDIRS="$RTEMS_BUILD_SUBDIRS [$1]"
8])
9
10dnl Derived from automake-1.4's AC_OUTPUT_SUBDIRS
11AC_DEFUN([_RTEMS_OUTPUT_BUILD_SUBDIRS],
12[AC_CONFIG_COMMANDS([bsp-tools],
13[
14# HACK: This is a blantant hack and breaks Canadian crosses
15build_alias="$build_alias"
16host_alias="$build_alias"
17if test "$no_recursion" != yes; then
18  if test x"$build_alias" != x"$host_alias"; then
19    target_subdir="$host_alias"
20  else
21    target_subdir="."
22  fi
23  RTEMS_CONFIGURE_ARGS_QUOTE([ac_sub_configure_args],
24    [
25    -host* | --host* ) ;;
26    --host ) ac_prev=host_alias;;
27    -target* | --target* ) ;;
28    -target ) ac_prev=target_alias ;;
29    -build* | --build* ) ;;
30    -build ) ac_prev_build_alias ;;
31    *_alias=* ) ;; # HACK: Workaround to autoconf passing *_alias
32    ],
33    [rtems_configure_args])
34
35  for rtems_config_dir in $RTEMS_BUILD_SUBDIRS; do
36    # Do not complain, so a configure script can configure whichever
37    # parts of a large source tree are present.
38    if test ! -d $srcdir/$rtems_config_dir; then
39      continue
40    fi
41
42    _RTEMS_PUSH_BUILDDIR([$rtems_config_dir])
43
44    _RTEMS_SUB_SRCDIR([$rtems_config_dir])
45
46    # The recursion is here.
47    if test -n "$ac_sub_configure"; then
48#      ac_sub_cache_file=./config.cache
49      ac_sub_cache_file=/dev/null
50      _RTEMS_GIVEN_INSTALL
51
52      echo "[running ${CONFIG_SHELL-/bin/sh} $ac_sub_configure $ac_sub_configure_args --cache-file=$ac_sub_cache_file] --srcdir=$ac_sub_srcdir"
53      # The eval makes quoting arguments work.
54      if eval ${CONFIG_SHELL-/bin/sh} $ac_sub_configure \
55        $ac_sub_configure_args \
56        --srcdir=$ac_sub_srcdir \
57        --with-target-subdir=$target_subdir \
58        --cache-file=$ac_sub_cache_file
59      then :
60      else
61        AC_MSG_ERROR([$ac_sub_configure failed for $rtems_config_dir])
62      fi
63    fi
64
65    _RTEMS_POP_BUILDDIR
66  done
67fi],
68[
69RTEMS_BUILD_SUBDIRS="$RTEMS_BUILD_SUBDIRS"
70rtems_configure_args="$ac_configure_args"
71])
72])
73
74dnl
75dnl Misc utility macros for subdir handling to work around missing abilities
76dnl in autoconf, automake and structural issues with RTEMS
77dnl
78dnl Contains parts derived from autoconf-2.13 AC_OUTPUT_SUBDIRS and Cygnus'
79dnl configure.in.
80dnl
81
82dnl
83dnl _RTEMS_PUSH_BUILDDIR(SUBDIR)
84dnl
85AC_DEFUN([_RTEMS_PUSH_BUILDDIR],
86[
87# _RTEMS_PUSH_BUILDDIR
88    echo configuring in $1
89    case "$srcdir" in
90    .) ;;
91    *) AS_MKDIR_P([$1])
92      ;;
93    esac
94
95    ac_popdir=`pwd`
96    cd $1
97])
98
99dnl
100dnl _RTEMS_POP_BUILDDIR
101dnl
102AC_DEFUN([_RTEMS_POP_BUILDDIR],
103[
104  cd "$ac_popdir"
105])
106
107dnl
108dnl _RTEMS_GIVEN_INSTALL
109dnl
110AC_DEFUN([_RTEMS_GIVEN_INSTALL],
111[
112ifdef([AC_PROVIDE_AC_PROG_INSTALL],[ 
113  case "$ac_given_INSTALL" in
114  [[\\/]]* | ?:[[\\/]]*) INSTALL="$ac_given_INSTALL" ;;
115  *) INSTALL="$ac_dots$ac_given_INSTALL" ;;
116  esac
117])dnl
118])
119
120dnl
121dnl _RTEMS_SUB_SRCDIR(AC_CONFIG_DIR[,TARGET_SUBDIR])
122dnl
123AC_DEFUN([_RTEMS_SUB_SRCDIR],[
124# _RTEMS_SUB_SRCDIR
125    _RTEMS_ADJUST_SRCDIR(ac_sub_srcdir,$1,$2)
126
127    # Check for configure
128    if test -f $ac_sub_srcdir/configure; then
129      ac_sub_configure=$ac_sub_srcdir/configure
130    else
131      AC_MSG_WARN([no configuration information is in $1])
132      ac_sub_configure=
133    fi
134])
Note: See TracBrowser for help on using the repository browser.