From: Karel Zak Date: Wed, 21 May 2014 10:57:13 +0000 (+0200) Subject: build-sys: add UL_EXCLUDE_ARCH() X-Git-Tag: v2.25-rc1~113 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=62b2c024;p=thirdparty%2Futil-linux.git build-sys: add UL_EXCLUDE_ARCH() Signed-off-by: Karel Zak --- diff --git a/configure.ac b/configure.ac index 79de3c7a3d..8d537de32f 100644 --- a/configure.ac +++ b/configure.ac @@ -829,7 +829,8 @@ UL_REQUIRES_BUILD([fdisk], [libfdisk]) AM_CONDITIONAL([BUILD_FDISK], [test "x$build_fdisk" = xyes]) -UL_BUILD_INIT([sfdisk], [yes]) +UL_BUILD_INIT([sfdisk], [check]) +UL_EXCLUDE_ARCH([sfdisk], [spark*]) AM_CONDITIONAL([BUILD_SFDISK], [test "x$build_sfdisk" = xyes]) diff --git a/m4/ul.m4 b/m4/ul.m4 index d18f45914c..9d4dc5619c 100644 --- a/m4/ul.m4 +++ b/m4/ul.m4 @@ -154,6 +154,35 @@ AC_DEFUN([UL_REQUIRES_LINUX], [ fi ]) + +dnl UL_EXCLUDE_ARCH(NAME, ARCH, VARSUFFIX = $1]) +dnl +dnl Modifies $build_ variable according to $enable_ and $host. The +dnl $enable_ could be "yes", "no" and "check". If build_ is "no" then +dnl all checks are skiped. +dnl +dnl The default for $build_ and $enable_ could be overwrited by option $3. +dnl +AC_DEFUN([UL_EXCLUDE_ARCH], [ + m4_define([suffix], m4_default([$3],$1)) + if test "x$[build_]suffix" != xno; then + AC_REQUIRE([AC_CANONICAL_HOST]) + case $[enable_]suffix:"$host" in #( + no:*) + [build_]suffix=no ;; + yes:$2) + AC_MSG_ERROR([$1 selected for unsupported architecture]);; + yes:*) + [build_]suffix=yes ;; + check:$2) + AC_MSG_WARN([exclude for $host architecture; do not build $1]) + [build_]suffix=no ;; + check:*) + [build_]suffix=yes ;; + esac + fi +]) + dnl UL_REQUIRES_HAVE(NAME, HAVENAME, HAVEDESC [VARSUFFIX=$1]) dnl dnl Modifies $build_ variable according to $enable_ and