diff options
author | David Zeuthen <davidz@redhat.com> | 2006-09-23 19:19:08 -0400 |
---|---|---|
committer | David Zeuthen <davidz@redhat.com> | 2006-09-23 19:19:08 -0400 |
commit | f7906c5168fa5631c26cd1ca7a44bfb702f14ac5 (patch) | |
tree | 144bba879100eb604c2f27f42e0a6449f990e9b8 /configure.in | |
parent | 499e981a3055ef8bf09ef7b2737721a275698d09 (diff) | |
download | hal-f7906c5168fa5631c26cd1ca7a44bfb702f14ac5.tar.gz |
make Macbook Pro utils x86 only again
I seem to have removed this by mistake.
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/configure.in b/configure.in index fa54e62e..61841f09 100644 --- a/configure.in +++ b/configure.in @@ -483,7 +483,13 @@ elif test "x$with_macbookpro" = "x" ; then if test "$HAVE_LIBPCI" != "false" ; then case "${HALD_BACKEND}" in linux) - BUILD_MACBOOKPRO=yes + case "${host}" in + i[[3456]]86-*-*) + BUILD_MACBOOKPRO=yes + ;; + *) + ;; + esac ;; *) ;; @@ -594,7 +600,7 @@ echo " use libparted: ${USE_PARTED} use PolicyKit: ${msg_polkit} - Macbook Pro utils: ${BUILD_MACBOOKPRO} (Linux only, requires libpci) + Macbook Pro utils: ${BUILD_MACBOOKPRO} (Linux only, x86 only, requires libpci) CPU frequency scaling: ${BUILD_CPUFREQ} (Linux only) Maintainer mode: ${USE_MAINTAINER_MODE} |