From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from [140.186.70.92] (port=41055 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1P5eUU-0007Zq-76 for qemu-devel@nongnu.org; Tue, 12 Oct 2010 09:02:08 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1P5eUN-0004rl-VT for qemu-devel@nongnu.org; Tue, 12 Oct 2010 09:02:01 -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 1P5eUN-0004Mc-TE for qemu-devel@nongnu.org; Tue, 12 Oct 2010 09:01:55 -0400 Received: by mail-qw0-f45.google.com with SMTP id 5so1841033qwh.4 for ; Tue, 12 Oct 2010 06:01:55 -0700 (PDT) Sender: Paolo Bonzini From: Paolo Bonzini Date: Tue, 12 Oct 2010 15:00:44 +0200 Message-Id: <1286888457-5033-27-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 26/39] add libtooly alias --enable-static for --static 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 | 5 +++-- 1 files changed, 3 insertions(+), 2 deletions(-) diff --git a/configure b/configure index 86b1835..d677b53 100755 --- a/configure +++ b/configure @@ -546,7 +546,7 @@ for opt do ;; --enable-gprof) gprof="yes" ;; - --static) + --enable-static|--static) static="yes" LDFLAGS="-static $LDFLAGS" ;; @@ -838,7 +838,7 @@ 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]" -echo " --static enable static build [$static]" +echo " --enable-static enable static build [$static]" echo " --mandir=PATH install man pages in PATH" echo " --datadir=PATH install firmware in PATH" echo " --docdir=PATH install documentation in PATH" @@ -937,6 +937,7 @@ echo " --audio-drv-list=LIST set audio drivers list" echo " --block-drv-whitelist=L set block driver list for QEMU (not qemu-img)" echo " --make=MAKE use specified make [$make]" echo " --install=INSTALL use specified install [$install]" +echo " --static enable static build [$static]" echo "" echo "Some influential environment variables can be passed on the command line:" echo " CC C compiler command" -- 1.7.2.3