From: Stephen Checkoway <stephen.checkoway@oberlin.edu>
To: qemu-devel@nongnu.org
Cc: Stephen Checkoway <stephen.checkoway@oberlin.edu>
Subject: [Qemu-devel] [PATCH] capstone: Support capstone/capstone.h
Date: Mon, 1 Apr 2019 18:07:52 -0400 [thread overview]
Message-ID: <20190401220752.22577-1-stephen.checkoway@oberlin.edu> (raw)
Starting with version 4 of capstone, the header files live in the
`$prefix/include/capstone` directory.
This modifies the configure script to check for <capstone/capstone.h> if
<capstone.h> cannot be found.
Signed-off-by: Stephen Checkoway <stephen.checkoway@oberlin.edu>
---
configure | 9 +++++++++
include/disas/capstone.h | 4 ++++
2 files changed, 13 insertions(+)
diff --git a/configure b/configure
index 1c563a7027..da87c18f14 100755
--- a/configure
+++ b/configure
@@ -5039,6 +5039,12 @@ case "$capstone" in
;;
esac
+if test "$capstone" != no; then
+ if ! check_include "capstone.h" && check_include "capstone/capstone.h"; then
+ have_capstone_capstone_h=yes
+ fi
+fi
+
##########################################
# check if we have fdatasync
@@ -7199,6 +7205,9 @@ if test "$ivshmem" = "yes" ; then
fi
if test "$capstone" != "no" ; then
echo "CONFIG_CAPSTONE=y" >> $config_host_mak
+ if test "$have_capstone_capstone_h" = "yes" ; then
+ echo "HAVE_CAPSTONE_CAPSTONE_H=y" >> $config_host_mak
+ fi
fi
if test "$debug_mutex" = "yes" ; then
echo "CONFIG_DEBUG_MUTEX=y" >> $config_host_mak
diff --git a/include/disas/capstone.h b/include/disas/capstone.h
index 84e214956d..e1477bf6a2 100644
--- a/include/disas/capstone.h
+++ b/include/disas/capstone.h
@@ -3,7 +3,11 @@
#ifdef CONFIG_CAPSTONE
+#ifdef HAVE_CAPSTONE_CAPSTONE_H
+#include <capstone/capstone.h>
+#else
#include <capstone.h>
+#endif
#else
--
2.20.1 (Apple Git-117)
next reply other threads:[~2019-04-01 22:08 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2019-04-01 22:07 Stephen Checkoway [this message]
2019-04-02 1:28 ` [Qemu-devel] [PATCH] capstone: Support capstone/capstone.h Richard Henderson
2019-04-02 4:52 ` Stephen Checkoway
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=20190401220752.22577-1-stephen.checkoway@oberlin.edu \
--to=stephen.checkoway@oberlin.edu \
--cc=qemu-devel@nongnu.org \
/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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).