From: William Tu <u9012063@gmail.com>
To: dev@dpdk.org
Cc: dmitry.kozliuk@gmail.com, sergey.madaminov@gmail.com
Subject: [dpdk-dev] [PATCH] eal/windows: add sys/queue.h.
Date: Thu, 5 Aug 2021 17:33:45 +0000 [thread overview]
Message-ID: <20210805173345.1085-1-u9012063@gmail.com> (raw)
When compiling OVS, lib/dpdk.c, found the missing header.
In file included from ../lib/dpdk.c:27:
C:\temp\dpdk\include\rte_log.h:24:10: fatal error: 'sys/queue.h' file
not found
^~~~~~~~~~~~~
1 warning and 1 error generated.
Signed-off-by: William Tu <u9012063@gmail.com>
---
lib/eal/windows/include/meson.build | 4 ++++
lib/eal/windows/include/sys/meson.build | 6 ++++++
2 files changed, 10 insertions(+)
create mode 100644 lib/eal/windows/include/sys/meson.build
diff --git a/lib/eal/windows/include/meson.build b/lib/eal/windows/include/meson.build
index b3534b025f..875cc1cf0d 100644
--- a/lib/eal/windows/include/meson.build
+++ b/lib/eal/windows/include/meson.build
@@ -8,3 +8,7 @@ headers += files(
'rte_virt2phys.h',
'rte_windows.h',
)
+
+sys_headers = []
+subdir('sys')
+install_headers(sys_headers, subdir: 'sys')
diff --git a/lib/eal/windows/include/sys/meson.build b/lib/eal/windows/include/sys/meson.build
new file mode 100644
index 0000000000..6896cbf678
--- /dev/null
+++ b/lib/eal/windows/include/sys/meson.build
@@ -0,0 +1,6 @@
+# SPDX-License-Identifier: BSD-3-Clause
+# Copyright 2021 VMware, Inc
+
+sys_headers += files(
+ 'queue.h',
+)
--
2.32.0.windows.2
next reply other threads:[~2021-08-05 14:20 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2021-08-05 17:33 William Tu [this message]
2021-08-10 21:05 ` Nick Connolly
2021-08-10 22:33 ` Dmitry Kozlyuk
2021-08-11 8:34 ` Nick Connolly
2021-08-11 15:18 ` William Tu
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=20210805173345.1085-1-u9012063@gmail.com \
--to=u9012063@gmail.com \
--cc=dev@dpdk.org \
--cc=dmitry.kozliuk@gmail.com \
--cc=sergey.madaminov@gmail.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 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).