From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 10077 invoked by alias); 14 Dec 2009 01:11:38 -0000 Mailing-List: contact zsh-workers-help@zsh.org; run by ezmlm Precedence: bulk X-No-Archive: yes List-Id: Zsh Workers List List-Post: List-Help: X-Seq: 27510 Received: (qmail 20359 invoked from network); 14 Dec 2009 01:11:36 -0000 X-Spam-Checker-Version: SpamAssassin 3.2.5 (2008-06-10) on f.primenet.com.au X-Spam-Level: X-Spam-Status: No, score=-2.6 required=5.0 tests=BAYES_00 autolearn=ham version=3.2.5 Received-SPF: pass (ns1.primenet.com.au: SPF record at _spf.google.com designates 209.85.160.41 as permitted sender) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:from:date:message-id :subject:to:content-type; bh=jOuir0hrGzQIk5oy4aMs777XY/JwMbvudSGMZrzMneM=; b=VpRxOxDxt2LwbWgS0vzzDd4HU7pbeWL0X5Yv0e16IuFP4vtLwezYcKB39ezL60/QsM kFrbRNNCJRSJItNm3rP7O7tCt51rY5LpMDax9cB+LqMV7sYdNsog+yS6PVgkLhwSlue3 eStXJbZDgyrxbaDHXmwxcvlsUkNsxUMMPt52k= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:from:date:message-id:subject:to:content-type; b=lKahwPxnDAFZXDjLJ3OyyOxcaioYTko1tUGNf1Yq7XcfeU5wCHA42gjOTlVjErNbgU 9qBVo0+s2ScsS2BPUYSPPmNXveLSB83+QAakJ7usg0F5uLaMy3m/B0Z7r8H9IQ4au5tD MHUDZCWmGi8nyhGECRwdTbgM25XAQPbQSBDTw= MIME-Version: 1.0 From: Andrew Ryan Date: Sun, 13 Dec 2009 20:04:54 -0500 Message-ID: <14d6ea0c0912131704h74b9936en9f1746397a5c5359@mail.gmail.com> Subject: Problem with _configure argument autocomplete To: zsh-workers@zsh.org Content-Type: text/plain; charset=ISO-8859-1 The mod_wsgi configure script has the following options (taken from ./configure -h): Optional Packages: --with-PACKAGE[=ARG] use PACKAGE [ARG=yes] --without-PACKAGE do not use PACKAGE (same as --with-PACKAGE=no) --with-apxs=NAME name of the apxs executable [apxs] --with-python=NAME name of the python executable [python] The "--with-python=NAME" option does not autocomplete the path following the equal sign. Adding the following to the end of _configure makes it autocomplete correctly: '*=NAME*:directory:_files -/' I don't know if this conflicts with anything else. I also don't know how common "=NAME" is in configure script options. Andrew