source: rtems/acinclude.m4 @ 6da99727

4.104.114.84.95
Last change on this file since 6da99727 was 6a31b7c0, checked in by Ralf Corsepius <ralf.corsepius@…>, on 11/14/02 at 01:47:12

2002-11-13 Ralf Corsepius <corsepiu@…>

  • acinclude.m4: _RTEMS_OUTPUT_SUBDIRS: Move ac_subconfigure_vars to the end of the args passed to sub-configure-scripts. (Reported by Wulf Hofbauer <wh73@…>)
  • Property mode set to 100644
File size: 10.9 KB
Line 
1## All directories belong in one of 3 categories.
2## ${HOST_CONFIGDIRS_LIST} is directories we build using the host tools.
3## ${TARGET_CONFIGDIRS_LIST} is directories we build using the target tools.
4## ${BUILD_CONFIGDIRS_LIST} is directories we build using the build tools
5
6
7dnl RTEMS_ARG_VAR(VAR,HELP-STRING)
8dnl An internal macros to have help strings pretty
9dnl printed with configure --help, without letting autoconf spoil config subdir
10dnl environments by trying to propagate them
11dnl Stripped down version of autoconf-2.52's AC_ARG_VAR.
12
13AC_DEFUN([_RTEMS_ARG_VAR],
14[
15m4_expand_once([m4_divert_once([HELP_VAR],
16[AC_HELP_STRING([$1], [$2], [              ])])],
17      [$0($1)])dnl
18])
19
20AC_DEFUN([_RTEMS_SUBST_IFNOT],
21[AS_IF([`echo " [$]$1 " | grep " $2 " > /dev/null`],
22  [],
23  [AC_SUBST([$1],["[$]$1 $2"])])
24])
25
26AC_DEFUN([_RTEMS_COMMANDS_POST_CONFIG_SUBDIRS],
27[
28AC_CONFIG_COMMANDS_PRE([
29_RTEMS_BUILD_CONFIG_PREPARE
30_RTEMS_HOST_CONFIG_PREPARE
31_RTEMS_TARGET_CONFIG_PREPARE
32
33AS_IF([test $build = $host],
34[
35  AS_IF([test $host = $target],
36  [dnl b=h, h=t, t=b
37    BUILD_SUBDIRS="${build_configdirs}"
38    build_configdirs="${build_configdirs}"
39    HOST_SUBDIRS=""
40    host_configdirs=""
41    TARGET_SUBDIRS=""
42    target_configdirs=""],
43  [dnl b=h, h!=t, t!=b
44    BUILD_SUBDIRS="${build_configdirs}"
45    build_configdirs="${build_configdirs}"
46    HOST_SUBDIRS=""
47    host_configdirs=""
48    TARGET_SUBDIRS=`echo "${target_configdirs}" | \
49      sed -e "s%\([[^ ]][[^ ]]*\)%$target_alias/\1%g"`
50    target_configdirs="${target_configdirs}"
51  ])
52],[
53  AS_IF([test $host = $target],
54  [ dnl b!=h, h=t, b!=t
55    BUILD_SUBDIRS="${build_configdirs}"
56    build_configdirs="${build_configdirs}"
57    HOST_SUBDIRS=`echo "${host_configdirs}" | \
58      sed -e "s%\([[^ ]][[^ ]]*\)%$host_alias/\1%g"`
59    host_configdirs="${host_configdirs}"
60    TARGET_SUBDIRS=""
61    target_configdirs=""],
62  [
63    AS_IF([test $build = $target],
64    [dnl b!=h, h!=t, b=t
65      BUILD_SUBDIRS="${build_configdirs}"
66      build_configdirs="${build_configdirs}"
67      HOST_SUBDIRS=`echo "${host_configdirs}" | \
68        sed -e "s%\([[^ ]][[^ ]]*\)%$host_alias/\1%g"`
69      host_configdirs="${host_configdirs}"
70      TARGET_SUBDIRS=""
71      target_configdirs=""],
72    [dnl b!=h, h!=t, b!=t
73      BUILD_SUBDIRS="${build_configdirs}"
74      build_configdirs="${build_configdirs}"
75      HOST_SUBDIRS=`echo "${host_configdirs}" | \
76        sed -e "s%\([[^ ]][[^ ]]*\)%$host_alias/\1%g"`
77      host_configdirs="${host_configdirs}"
78      TARGET_SUBDIRS=`echo "${target_configdirs}" | \
79        sed -e "s%\([[^ ]][[^ ]]*\)%$target_alias/\1%g"`
80      target_configdirs="${target_configdirs}"
81    ])
82  ])
83])
84
85AC_SUBST(HOST_SUBDIRS)
86AC_SUBST(TARGET_SUBDIRS)
87AC_SUBST(BUILD_SUBDIRS)
88])
89
90  AC_CONFIG_COMMANDS_POST([
91    _RTEMS_OUTPUT_SUBDIRS([build],[BUILD])
92    _RTEMS_OUTPUT_SUBDIRS([host],[HOST])
93    _RTEMS_OUTPUT_SUBDIRS([target],[TARGET])
94  ])
95])
96
97dnl _RTEMS_SRCPATHS(BUILD-DIR-NAME)
98dnl ----------------------------
99dnl Inputs:
100dnl   - BUILD-DIR-NAME is `top-build -> build' and `top-src -> src'
101dnl   - `$srcdir' is `top-build -> top-src'
102dnl
103dnl Outputs:
104dnl - `ac_builddir' is `.', for symmetry only.
105dnl - `ac_top_builddir' is `build -> top_build'.
106dnl      If not empty, has a trailing slash.
107dnl - `ac_srcdir' is `build -> src'.
108dnl - `ac_top_srcdir' is `build -> top-src'.
109dnl
110dnl and `ac_buildpath' etc., the absolute paths.
111m4_define([_RTEMS_SRCPATHS],
112[
113m4_if([$2],,
114[dstdir=$1],
115[case "$2" in
116"." | "" )      # No subdir was given
117  dstdir=$1;;
118* )             # A subdir was given
119  dstdir=$2/$1;;
120esac])
121ac_builddir=.
122
123AS_IF([test $dstdir != .],
124[ # Strip off leading ./
125  ac_builddir_suffix=/`echo $dstdir | sed 's,^\.[[\\/]],,'`
126  ac_srcdir_suffix=/`echo $1 | sed 's,^\.[[\\/]],,'`
127  # A "../" for each directory in $ac_dir_suffix.
128  ac_top_builddir=`echo "$ac_builddir_suffix" | sed 's,/[[^\\/]]*,../,g'`
129],[
130  ac_dir_suffix= ac_top_builddir=
131])
132
133case $srcdir in
134  .)  # No --srcdir option.  We are building in place.
135    ac_srcdir=.
136    if test -z "$ac_top_builddir"; then
137       ac_top_srcdir=.
138    else
139       ac_top_srcdir=`echo $ac_top_builddir | sed 's,/$,,'`
140    fi ;;
141  [[\\/]]* | ?:[[\\/]]* )  # Absolute path.
142    ac_srcdir=$srcdir$ac_srcdir_suffix;
143    ac_top_srcdir=$srcdir;
144    ;;
145  *) # Relative path.
146    ac_srcdir=$ac_top_builddir$srcdir$ac_srcdir_suffix;
147    ac_top_srcdir=$ac_top_builddir$srcdir;
148    ;;
149esac
150dnl Don't blindly perform a `cd $1/$ac_foo && pwd` since $ac_foo can be
151dnl absolute.
152
153ac_buildpath=`cd $dstdir && cd $ac_builddir && pwd`
154ac_top_buildpath=`cd $dstdir && cd $ac_top_builddir && pwd`
155ac_srcpath=`cd $dstdir && cd $ac_srcdir && pwd`
156ac_top_srcpath=`cd $dstdir && cd $ac_top_srcdir && pwd`
157])# _AC_SRCPATHS
158
159dnl _RTEMS_OUTPUT_SUBDIRS([host|target|build],[HOST|TARGET|BUILD])
160AC_DEFUN([_RTEMS_OUTPUT_SUBDIRS],[
161m4_ifdef([_RTEMS_$2_CONFIGDIRS_LIST],
162[
163_RTEMS_ARG_VAR([CC_FOR_$2],
164  [c-compiler to be used for $1 subdirs (default: auto-detected)])
165_RTEMS_ARG_VAR([CFLAGS_FOR_$2],
166  [c-flags to be used for $1 subdirs (default: provided by autoconf)])
167if test "$no_recursion" != yes; then
168
169 if test -n "${$2_SUBDIRS}"; then
170   RTEMS_CONFIGURE_ARGS_QUOTE([ac_sub_configure_args],[
171     -prefix | --prefix | --prefi | --pref | --pre | --pr | --p)
172       ac_prev=prefix ;;
173     -prefix=* | --prefix=* | --prefi=* | --pref=* | --pre=* | --pr=* | --p=*)
174       ;;
175   ],[$1args])
176
177  # Always prepend --prefix to ensure using the same prefix
178  # in subdir configurations.
179  ac_sub_configure_args="'--prefix=$prefix' $ac_sub_configure_args"
180
181  case "$$1_subdir" in
182  "." ) ;;
183  * )
184    ac_sub_configure_args="$ac_sub_configure_args '--with-target-subdir=$$1_subdir' '--exec-prefix=${prefix}/$$1_subdir'"
185    ;;
186  esac
187
188  # make sure that $1_subdir is not empty
189  test -n "$$1_subdir" || $1_subdir="."
190
191  ac_popdir=`pwd`
192  for ac_dir in $$1_configdirs; do
193
194    # Do not complain, so a configure script can configure whichever
195    # parts of a large source tree are present.
196    test -d $srcdir/$ac_dir || continue
197
198    AC_MSG_NOTICE([configuring in $$1_subdir/$ac_dir])
199    AS_MKDIR_P(["$$1_subdir/$ac_dir"])
200    _RTEMS_SRCPATHS(["$ac_dir"],["$$1_subdir"])
201
202    cd $$1_subdir/$ac_dir
203
204    # Check for guested configure; otherwise get Cygnus style configure.
205    if test -f $ac_srcdir/configure.gnu; then
206      ac_sub_configure="$SHELL '$ac_srcdir/configure.gnu'"
207    elif test -f $ac_srcdir/configure; then
208      ac_sub_configure="$SHELL '$ac_srcdir/configure'"
209    elif test -f $ac_srcdir/configure.in; then
210      ac_sub_configure=$ac_configure
211    else
212      AC_MSG_WARN([no configuration information is in $ac_dir])
213      ac_sub_configure=
214    fi
215
216    # The recursion is here.
217    if test -n "$ac_sub_configure"; then
218      # Make the cache file name correct relative to the subdirectory.
219      case $cache_file in
220      [[\\/]]* | ?:[[\\/]]* ) ac_sub_cache_file=$cache_file ;;
221      *) # Relative path.
222        ac_sub_cache_file=$ac_top_builddir$cache_file ;;
223      esac
224
225      ac_sub_configure_args="$ac_sub_configure_args '--cache-file=$ac_sub_cache_file'"
226      ac_sub_configure_args="$ac_sub_configure_args '--srcdir=$ac_srcdir'"
227
228      # The eval makes quoting arguments work.
229      ac_sub_configure_vars=
230      test -n "[$]CC_FOR_$2" && \
231        ac_sub_configure_vars="'CC=[$]CC_FOR_$2'"
232      test -n "[$]CFLAGS_FOR_$2" && \
233        ac_sub_configure_vars="$ac_sub_configure_vars 'CFLAGS=[$]CFLAGS_FOR_$2'"
234
235      AC_MSG_NOTICE([running $ac_sub_configure $ac_sub_configure_args $ac_sub_configure_vars])
236      eval $ac_sub_configure $ac_sub_configure_args $ac_sub_configure_vars ||
237        AC_MSG_ERROR([$ac_sub_configure failed for $ac_dir])
238    fi
239
240    cd $ac_popdir
241  done
242 fi
243fi
244])
245])
246
247## PUBLIC: RTEMS_BUILD_CONFIG_SUBDIRS(build_subdir)
248# subdirs to be built for the build environment
249AC_DEFUN([RTEMS_BUILD_CONFIG_SUBDIRS],[
250m4_append([_RTEMS_BUILD_CONFIGDIRS_LIST],[ $1])
251dnl Always append to build_configdirs
252AC_SUBST(build_configdirs,"$build_configdirs $1")
253
254m4_divert_text([DEFAULTS],
255               [ac_subdirs_all="$ac_subdirs_all m4_normalize([$1])"])
256m4_expand_once([_RTEMS_COMMANDS_POST_CONFIG_SUBDIRS])
257])
258
259AC_DEFUN([_RTEMS_CONFIGURE_ARGS_PRUNE],
260[
261  for ac_arg in m4_if([$3],,[$ac_configure_args],[[$]$3]); do
262    if test -n "$ac_prev"; then
263      ac_prev=
264      configure
265    fi
266    # the eval casts away sh quotes
267    case `eval echo $ac_arg` in
268    -host* | --host* );;
269    -host ) ac_prev=host_alias;;
270    -target* | --target* );;
271    -target | --target ) ac_prev=target_alias;;
272    -build* | --build* );;
273    -build | --build ) ac_prev=build_alias;;
274    --cache* );;
275    *_alias=* );;
276    m4_if([$2],,,[$2])
277    *) $1="$$1 '$ac_arg'" ;;
278   esac
279  done
280])
281
282AC_DEFUN(_RTEMS_BUILD_CONFIG_PREPARE,[
283# Record the configure arguments in Makefile.
284m4_ifdef([_RTEMS_BUILD_CONFIGDIRS_LIST],
285[
286_RTEMS_CONFIGURE_ARGS_PRUNE([buildargs])
287buildargs="'--host=${build}' '--build=${build}' '--target=${target_alias}' ${buildargs}"
288AC_SUBST(buildargs)
289
290build_subdir="."
291],[])
292])
293
294## PUBLIC: RTEMS_HOST_CONFIG_SUBDIRS(host_subdir)
295# subdirs to be build for the host environment
296AC_DEFUN([RTEMS_HOST_CONFIG_SUBDIRS],[
297m4_append([_RTEMS_HOST_CONFIGDIRS_LIST],[ $1])dnl
298
299if test $build = $host;
300then
301  if test $host = $target;
302  then
303    _RTEMS_SUBST_IFNOT([build_configdirs],[$1])
304  else
305    _RTEMS_SUBST_IFNOT([build_configdirs],[$1])
306  fi
307else
308  if test $host = $target;
309  then
310    _RTEMS_SUBST_IFNOT([host_configdirs],[$1])
311  else
312    if test $build = $target;
313    then
314      _RTEMS_SUBST_IFNOT([host_configdirs],[$1])
315    else
316      _RTEMS_SUBST_IFNOT([host_configdirs],[$1])
317    fi
318  fi
319fi
320
321m4_divert_text([DEFAULTS],
322               [ac_subdirs_all="$ac_subdirs_all m4_normalize([$1])"])
323m4_expand_once([_RTEMS_COMMANDS_POST_CONFIG_SUBDIRS])
324])
325
326AC_DEFUN(_RTEMS_HOST_CONFIG_PREPARE,[
327m4_ifdef([_RTEMS_HOST_CONFIGDIRS_LIST],
328[
329# Record configure arguments in Makefile.
330_RTEMS_CONFIGURE_ARGS_PRUNE([hostargs])
331hostargs="'--host=${host_alias}' '--build=${build}' '--target=${target_alias}' ${hostargs}"
332AC_SUBST(hostargs)
333
334host_subdir="${host_alias}"
335],[])
336])
337
338## PUBLIC: RTEMS_TARGET_CONFIG_SUBDIRS(target_subdir)
339# subdirs to be build for the target environment
340AC_DEFUN([RTEMS_TARGET_CONFIG_SUBDIRS],[
341m4_append([_RTEMS_TARGET_CONFIGDIRS_LIST],[ $1])
342
343if test $build = $host;
344then
345  if test $host = $target;
346  then
347    _RTEMS_SUBST_IFNOT([build_configdirs],[$1])
348  else
349    _RTEMS_SUBST_IFNOT([target_configdirs],[$1])
350  fi
351else
352  if test $host = $target;
353  then
354    _RTEMS_SUBST_IFNOT([host_configdirs],[$1])
355  else
356    if test $build = $target;
357    then
358      _RTEMS_SUBST_IFNOT([build_configdirs],[$1])
359    else
360      _RTEMS_SUBST_IFNOT([target_configdirs],[$1])
361    fi
362  fi
363fi
364
365m4_divert_text([DEFAULTS],
366               [ac_subdirs_all="$ac_subdirs_all m4_normalize([$1])"])
367m4_expand_once([_RTEMS_COMMANDS_POST_CONFIG_SUBDIRS])
368])
369
370AC_DEFUN(_RTEMS_TARGET_CONFIG_PREPARE,[
371m4_ifdef([_RTEMS_TARGET_CONFIGDIRS_LIST],
372[
373# Record the configure arguments in Makefile.
374_RTEMS_CONFIGURE_ARGS_PRUNE([targetargs])
375targetargs="'--host=${target_alias}' '--build=${build}' '--target=${target_alias}' ${targetargs}"
376AC_SUBST(targetargs)
377
378target_subdir="${target_alias}"
379],[])
380])
Note: See TracBrowser for help on using the repository browser.