From mboxrd@z Thu Jan 1 00:00:00 1970 From: =?ISO-8859-1?Q?Roger_Pau_Monn=E9?= Subject: Re: [VTPM v5 7/7] Add a real top level configure script that calls the others Date: Tue, 4 Dec 2012 17:01:57 +0100 Message-ID: <50BE1E75.2050303@citrix.com> References: <1354210534-31052-1-git-send-email-matthew.fioravante@jhuapl.edu> <1354210534-31052-8-git-send-email-matthew.fioravante@jhuapl.edu> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Return-path: In-Reply-To: <1354210534-31052-8-git-send-email-matthew.fioravante@jhuapl.edu> List-Unsubscribe: , List-Post: List-Help: List-Subscribe: , Sender: xen-devel-bounces@lists.xen.org Errors-To: xen-devel-bounces@lists.xen.org To: Matthew Fioravante Cc: Ian Jackson , Ian Campbell , "xen-devel@lists.xen.org" List-Id: xen-devel@lists.xenproject.org On 29/11/12 18:35, Matthew Fioravante wrote: > --- /dev/null > +++ b/configure.ac > @@ -0,0 +1,14 @@ > +# -*- Autoconf -*- > +# Process this file with autoconf to produce a configure script. > + > +AC_PREREQ([2.67]) > +AC_INIT([Xen Hypervisor], m4_esyscmd([./version.sh ./xen/Makefile]), > + [xen-devel@lists.xen.org], [xen], [http://www.xen.org/]) > +AC_CONFIG_SRCDIR([./tools/libxl/libxl.c]) > +AC_CONFIG_FILES([./config/Tools.mk]) Why is config/Tools.mk included here, but not config/Stubdom.mk? > +AC_PREFIX_DEFAULT([/usr]) > +AC_CONFIG_AUX_DIR([.]) > + > +AC_CONFIG_SUBDIRS([tools stubdom]) NetBSD is not able to build stubdoms, I guess running ./tools/configure will still produce all the necessary configure foo to compile the tools correctly? > + > +AC_OUTPUT()