From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from [140.186.70.92] (port=41710 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1P5eUh-0007me-VM for qemu-devel@nongnu.org; Tue, 12 Oct 2010 09:02:25 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1P5eUV-0004wI-0X for qemu-devel@nongnu.org; Tue, 12 Oct 2010 09:02:09 -0400 Received: from mail-qy0-f173.google.com ([209.85.216.173]:48077) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1P5eUU-0004Lx-T2 for qemu-devel@nongnu.org; Tue, 12 Oct 2010 09:02:02 -0400 Received: by mail-qy0-f173.google.com with SMTP id 36so629119qyk.4 for ; Tue, 12 Oct 2010 06:02:02 -0700 (PDT) Sender: Paolo Bonzini From: Paolo Bonzini Date: Tue, 12 Oct 2010 15:00:48 +0200 Message-Id: <1286888457-5033-31-git-send-email-pbonzini@redhat.com> In-Reply-To: <1286888457-5033-1-git-send-email-pbonzini@redhat.com> References: <1286888457-5033-1-git-send-email-pbonzini@redhat.com> Subject: [Qemu-devel] [PATCH 30/39] add autoconfy alias --with-headers for --kerneldir List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org This name is already used by glibc. Signed-off-by: Paolo Bonzini --- configure | 5 +++-- 1 files changed, 3 insertions(+), 2 deletions(-) diff --git a/configure b/configure index e1eeda2..39a7119 100755 --- a/configure +++ b/configure @@ -726,7 +726,7 @@ for opt do ;; --disable-blobs) blobs="no" ;; - --kerneldir=*) kerneldir="$optarg" + --with-headers=*|--kerneldir=*) kerneldir="$optarg" ;; --with-pkgversion=*) pkgversion=" ($optarg)" ;; @@ -831,6 +831,7 @@ echo "Libraries:" echo " --with-fmod-lib path to FMOD library" echo " --with-fmod-inc path to FMOD includes" echo " --with-oss-lib path to OSS library" +echo " --with-headers=PATH look for kernel includes in PATH" echo "" echo "Advanced options (experts only):" echo " --source-path=PATH path of source code [$source_path]" @@ -913,7 +914,6 @@ echo " --disable-attr disables attr and xattr support" echo " --enable-attr enable attr and xattr support" echo " --enable-io-thread enable IO thread" echo " --disable-blobs disable installing provided firmware blobs" -echo " --kerneldir=PATH look for kernel includes in PATH" echo " --enable-docs enable documentation build" echo " --disable-docs disable documentation build" echo " --disable-vhost-net disable vhost-net acceleration support" @@ -932,6 +932,7 @@ echo " --extra-cflags=CFLAGS append extra C compiler flags QEMU_CFLAGS" echo " --extra-ldflags=LDFLAGS append extra linker flags LDFLAGS" echo " --fmod-lib path to FMOD library" echo " --fmod-inc path to FMOD includes" +echo " --kerneldir=PATH look for kernel includes in PATH" echo " --oss-lib path to OSS library" echo " --audio-card-list=LIST set list of emulated audio cards [$audio_card_list]" echo " Available cards: $audio_possible_cards" -- 1.7.2.3