From mboxrd@z Thu Jan 1 00:00:00 1970 From: "Christoph Egger" Subject: [PATCH] xen-tools dependency check fix Date: Tue, 25 Sep 2007 10:50:15 +0200 Message-ID: <200709251050.16128.Christoph.Egger@amd.com> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="Boundary-00=_IvM+GJWy8qOmO7v" Return-path: List-Unsubscribe: , List-Post: List-Help: List-Subscribe: , Sender: xen-devel-bounces@lists.xensource.com Errors-To: xen-devel-bounces@lists.xensource.com To: xen-devel@lists.xensource.com List-Id: xen-devel@lists.xenproject.org --Boundary-00=_IvM+GJWy8qOmO7v Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: quoted-printable Content-Disposition: inline Hi! zlib and crypto libs are part of the base system in *BSD. So no need to check for them on *BSD. Signed-off-by: Christoph Egger =2D-=20 AMD Saxony, Dresden, Germany Operating System Research Center Legal Information: AMD Saxony Limited Liability Company & Co. KG Sitz (Gesch=E4ftsanschrift): Wilschdorfer Landstr. 101, 01109 Dresden, Deutschland Registergericht Dresden: HRA 4896 vertretungsberechtigter Komplement=E4r: AMD Saxony LLC (Sitz Wilmington, Delaware, USA) Gesch=E4ftsf=FChrer der AMD Saxony LLC: Dr. Hans-R. Deppe, Thomas McCoy --Boundary-00=_IvM+GJWy8qOmO7v Content-Type: text/plain; charset=us-ascii; name=tools_check.diff Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename=tools_check.diff diff -r ad339d88639d tools/check/check_crypto_lib --- a/tools/check/check_crypto_lib Mon Sep 24 21:52:10 2007 +0100 +++ b/tools/check/check_crypto_lib Tue Sep 25 10:50:26 2007 +0000 @@ -2,6 +2,14 @@ # CHECK-BUILD CHECK-INSTALL RC=0 + +case $(uname -s) in +FreeBSD|NetBSD|OpenBSD) + exit 0 + ;; +*) + ;; +esac PATH=/sbin:$PATH set -e diff -r ad339d88639d tools/check/check_zlib_lib --- a/tools/check/check_zlib_lib Mon Sep 24 21:52:10 2007 +0100 +++ b/tools/check/check_zlib_lib Tue Sep 25 10:50:26 2007 +0000 @@ -2,6 +2,14 @@ # CHECK-BUILD CHECK-INSTALL RC=0 + +case $(uname -s) in +FreeBSD|NetBSD|OpenBSD) + exit 0 + ;; +*) + ;; +esac PATH=/sbin:$PATH --Boundary-00=_IvM+GJWy8qOmO7v Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Disposition: inline _______________________________________________ Xen-devel mailing list Xen-devel@lists.xensource.com http://lists.xensource.com/xen-devel --Boundary-00=_IvM+GJWy8qOmO7v--