From: "Christoph Egger" <Christoph.Egger@amd.com>
To: xen-devel@lists.xensource.com
Subject: [PATCH] xen-tools dependency check fix
Date: Tue, 25 Sep 2007 10:50:15 +0200 [thread overview]
Message-ID: <200709251050.16128.Christoph.Egger@amd.com> (raw)
[-- Attachment #1: Type: text/plain, Size: 594 bytes --]
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 <Christoph.Egger@amd.com>
--
AMD Saxony, Dresden, Germany
Operating System Research Center
Legal Information:
AMD Saxony Limited Liability Company & Co. KG
Sitz (Geschäftsanschrift):
Wilschdorfer Landstr. 101, 01109 Dresden, Deutschland
Registergericht Dresden: HRA 4896
vertretungsberechtigter Komplementär:
AMD Saxony LLC (Sitz Wilmington, Delaware, USA)
Geschäftsführer der AMD Saxony LLC:
Dr. Hans-R. Deppe, Thomas McCoy
[-- Attachment #2: tools_check.diff --]
[-- Type: text/plain, Size: 670 bytes --]
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
[-- Attachment #3: Type: text/plain, Size: 138 bytes --]
_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xensource.com
http://lists.xensource.com/xen-devel
next reply other threads:[~2007-09-25 8:50 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2007-09-25 8:50 Christoph Egger [this message]
2007-09-25 8:57 ` [PATCH] xen-tools dependency check fix Keir Fraser
2007-09-25 9:17 ` Christoph Egger
2007-09-25 9:18 ` Keir Fraser
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=200709251050.16128.Christoph.Egger@amd.com \
--to=christoph.egger@amd.com \
--cc=xen-devel@lists.xensource.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.