Re: [PATCH] examples/l2fwd-cat: fix build

2022-10-06 Thread Thomas Monjalon
05/10/2022 17:28, David Marchand: > On Wed, Oct 5, 2022 at 5:24 PM Kevin Traynor wrote: > > > > and need to be included for the build > > since they were removed from . > > > > ../examples/l2fwd-cat/cat.c: In function ‘parse_set’: > > ../examples/l2fwd-cat/cat.c:66:16: > > warning: implicit decl

Re: [PATCH] examples/l2fwd-cat: fix build

2022-10-05 Thread David Marchand
On Wed, Oct 5, 2022 at 5:24 PM Kevin Traynor wrote: > > and need to be included for the build > since they were removed from . > > ../examples/l2fwd-cat/cat.c: In function ‘parse_set’: > ../examples/l2fwd-cat/cat.c:66:16: > warning: implicit declaration of function ‘isblank’ > [-Wimplicit-functi

Re: [PATCH] examples/l2fwd-cat: fix build

2022-10-05 Thread David Marchand
On Wed, Oct 5, 2022 at 5:24 PM Kevin Traynor wrote: > > and need to be included for the build > since they were removed from . > > ../examples/l2fwd-cat/cat.c: In function ‘parse_set’: > ../examples/l2fwd-cat/cat.c:66:16: > warning: implicit declaration of function ‘isblank’ > [-Wimplicit-functi

[PATCH] examples/l2fwd-cat: fix build

2022-10-05 Thread Kevin Traynor
and need to be included for the build since they were removed from . ../examples/l2fwd-cat/cat.c: In function ‘parse_set’: ../examples/l2fwd-cat/cat.c:66:16: warning: implicit declaration of function ‘isblank’ [-Wimplicit-function-declaration] 66 | while (isblank(*str)) |

[dpdk-dev] [PATCH] examples/l2fwd-cat: fix build according to API changes

2017-08-29 Thread Vladimir Kuramshin
Current version is compatible with PQOS version 1.3 but not compatible with higher versions. This change makes l2fwd-cat example compatible with versions since 1.4 Signed-off-by: Vladimir Kuramshin --- examples/l2fwd-cat/Makefile | 5 +--- examples/l2fwd-cat/cat.c| 60 ++