* [dpdk-dev] [PATCH] ip_pipeline: fix build errors on different linux kernels
@ 2015-12-09 11:12 Jasvinder Singh
2015-12-09 20:50 ` Thomas Monjalon
0 siblings, 1 reply; 2+ messages in thread
From: Jasvinder Singh @ 2015-12-09 11:12 UTC (permalink / raw)
To: dev
This patch fixes build errors on linux kernels such as
SuSE 11-SP2/3(64 bits), etc.
Error Log:
error: implicit declaration of function 'WIFEXITED'
error: implicit declaration of function 'WEXITSTATUS'
Fixes: ed0b2d020159 ("examples/ip_pipeline: add more ports")
Signed-off-by: Jasvinder Singh <jasvinder.singh@intel.com>
Acked-by: Cristian Dumitrescu <cristian.dumitrescu@intel.com>
---
examples/ip_pipeline/config_parse.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/examples/ip_pipeline/config_parse.c b/examples/ip_pipeline/config_parse.c
index 6e49763..6aaca11 100644
--- a/examples/ip_pipeline/config_parse.c
+++ b/examples/ip_pipeline/config_parse.c
@@ -40,6 +40,7 @@
#include <string.h>
#include <libgen.h>
#include <unistd.h>
+#include <sys/wait.h>
#include <rte_errno.h>
#include <rte_cfgfile.h>
--
2.5.0
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2015-12-09 20:51 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-12-09 11:12 [dpdk-dev] [PATCH] ip_pipeline: fix build errors on different linux kernels Jasvinder Singh
2015-12-09 20:50 ` Thomas Monjalon
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).