diff options
author | bellard <bellard@c046a42c-6fe2-441c-8c8c-71466251a162> | 2006-06-14 18:17:46 +0000 |
---|---|---|
committer | bellard <bellard@c046a42c-6fe2-441c-8c8c-71466251a162> | 2006-06-14 18:17:46 +0000 |
commit | ce05c32384e1698053b862dbf1932cee69d99276 (patch) | |
tree | 48d6f13d7a28bb142875de898ee5a6498ecbbad8 /configure | |
parent | 1ce549abf9192681a482e3c05a9587693219e9be (diff) |
allow ACPI table build
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@1982 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 7 |
1 files changed, 7 insertions, 0 deletions
@@ -95,6 +95,7 @@ check_gcc="yes" softmmu="yes" user="no" build_docs="no" +build_acpi_tables="no" uname_release="" # OS specific @@ -240,6 +241,8 @@ for opt do ;; --enable-uname-release=*) uname_release="$optarg" ;; + --enable-iasl) build_acpi_tables="yes" + ;; esac done @@ -288,6 +291,7 @@ echo " --disable-user disable all linux usermode emulation targets" echo " --fmod-lib path to FMOD library" echo " --fmod-inc path to FMOD includes" echo " --enable-uname-release=R Return R for uname -r in usermode emulation" +echo " --enable-iasl compilation of ACPI tables with the IASL compiler" echo "" echo "NOTE: The object files are build at the place where configure is launched" exit 1 @@ -708,6 +712,9 @@ echo "TARGET_DIRS=$target_list" >> $config_mak if [ "$build_docs" = "yes" ] ; then echo "BUILD_DOCS=yes" >> $config_mak fi +if [ "$build_acpi_tables" = "yes" ] ; then + echo "BUILD_ACPI_TABLES=yes" >> $config_mak +fi # XXX: suppress that if [ "$bsd" = "yes" ] ; then |