From mboxrd@z Thu Jan 1 00:00:00 1970 From: Olaf Hering Subject: Re: [PATCH v8] build: add autoconf to replace custom checks in tools/check Date: Thu, 23 Feb 2012 17:16:11 +0100 Message-ID: <20120223161611.GA10528@aepfle.de> References: Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Return-path: Content-Disposition: inline In-Reply-To: List-Unsubscribe: , List-Post: List-Help: List-Subscribe: , Sender: xen-devel-bounces@lists.xen.org Errors-To: xen-devel-bounces@lists.xen.org To: Roger Pau Monne Cc: ian.jackson@citrix.com, ian.campbell@citrix.com, xen-devel@lists.xen.org List-Id: xen-devel@lists.xenproject.org On Tue, Feb 21, Roger Pau Monne wrote: > +AS_IF([test "x$pythontools" = "xy"], [ > + AS_IF([echo "$PYTHON" | grep -q "^/"], [ > + PYTHONPATH=$PYTHON > + PYTHON=`basename $PYTHONPATH` > + ],[test -z "$PYTHON"], [PYTHON="python"], > + [AC_MSG_ERROR([PYTHON specified, but is not an absolute path])]) > + AX_PATH_PROG_OR_FAIL([PYTHONPATH], [$PYTHON]) > + AX_CHECK_PYTHON_VERSION([2], [3]) > + AX_CHECK_PYTHON_XML() > + AX_CHECK_PYTHON_DEVEL() > +]) Is the AX_CHECK_PYTHON_XML check really required for compilation? It seems to check for xml.dom.minidom which is used in xend at runtime. Olaf