From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from [140.186.70.92] (port=41042 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1P5eUL-0007Zn-JO for qemu-devel@nongnu.org; Tue, 12 Oct 2010 09:02:00 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1P5eUG-0004n7-3d for qemu-devel@nongnu.org; Tue, 12 Oct 2010 09:01:53 -0400 Received: from mail-qw0-f45.google.com ([209.85.216.45]:52643) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1P5eUF-0004Mc-Vw for qemu-devel@nongnu.org; Tue, 12 Oct 2010 09:01:48 -0400 Received: by mail-qw0-f45.google.com with SMTP id 5so1841033qwh.4 for ; Tue, 12 Oct 2010 06:01:47 -0700 (PDT) Sender: Paolo Bonzini From: Paolo Bonzini Date: Tue, 12 Oct 2010 15:00:39 +0200 Message-Id: <1286888457-5033-22-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 21/39] add autoconfy aliases --with-* for audio library options List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Signed-off-by: Paolo Bonzini --- configure | 17 +++++++++++------ 1 files changed, 11 insertions(+), 6 deletions(-) diff --git a/configure b/configure index 547f8e9..76626a4 100755 --- a/configure +++ b/configure @@ -564,11 +564,11 @@ for opt do ;; --enable-sdl) sdl="yes" ;; - --fmod-lib=*) fmod_lib="$optarg" + --with-fmod-lib=*|--fmod-lib=*) fmod_lib="$optarg" ;; - --fmod-inc=*) fmod_inc="$optarg" + --with-fmod-inc=*|--fmod-inc=*) fmod_inc="$optarg" ;; - --oss-lib=*) oss_lib="$optarg" + --with-oss-lib=*) oss_lib="$optarg" ;; --audio-card-list=*) audio_card_list=`echo "$optarg" | sed -e 's/,/ /g'` ;; @@ -830,6 +830,11 @@ echo " --interp-prefix=PREFIX where to find shared libraries, etc." echo " use %M for cpu name [$interp_prefix]" echo " --target-list=LIST set target list [$target_list]" echo "" +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 "" echo "Advanced options (experts only):" echo " --source-path=PATH path of source code [$source_path]" echo " --cross-prefix=PREFIX use PREFIX for compile tools [$cross_prefix]" @@ -899,9 +904,6 @@ echo " emulation targets" echo " --disable-guest-base disable GUEST_BASE support" echo " --enable-user-pie build usermode emulation targets as PIE" echo " --disable-user-pie do not build usermode emulation targets as PIE" -echo " --fmod-lib path to FMOD library" -echo " --fmod-inc path to FMOD includes" -echo " --oss-lib path to OSS library" echo " --enable-uname-release=R Return R for uname -r in usermode emulation" echo " --sparc_cpu=V Build qemu for Sparc architecture v7, v8, v8plus, v8plusa, v9" echo " --disable-uuid disable uuid support" @@ -929,6 +931,9 @@ echo "Deprecated options:" echo " --cc=CC use C compiler CC [$cc]" 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 " --oss-lib path to OSS library" echo " --make=MAKE use specified make [$make]" echo " --install=INSTALL use specified install [$install]" echo "" -- 1.7.2.3