diff options
author | Khem Raj <raj.khem@gmail.com> | 2022-08-23 23:34:37 -0700 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2022-08-25 11:08:06 +0100 |
commit | a9c31f062891dca5f4e16e967fe26a9bf544f00b (patch) | |
tree | a3aeac230907ad5d2a902dd834f6856495813519 | |
parent | 9694c61d44ffc39063e93069f2b8cac0bfef4146 (diff) | |
download | poky-a9c31f062891dca5f4e16e967fe26a9bf544f00b.tar.gz |
xinetd: Pass missing -D_GNU_SOURCE
We do not get proper function definitions otherwise e.g. fcvt()
(From OE-Core rev: 21dd5bae177b64e314a6423e5ffbd7b28b6b5891)
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Luca Ceresoli <luca.ceresoli@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | meta/recipes-extended/xinetd/xinetd_2.3.15.4.bb | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/meta/recipes-extended/xinetd/xinetd_2.3.15.4.bb b/meta/recipes-extended/xinetd/xinetd_2.3.15.4.bb index 62ee70d244..897417314d 100644 --- a/meta/recipes-extended/xinetd/xinetd_2.3.15.4.bb +++ b/meta/recipes-extended/xinetd/xinetd_2.3.15.4.bb | |||
@@ -30,6 +30,8 @@ INITSCRIPT_PARAMS = "defaults" | |||
30 | PACKAGECONFIG ??= "tcp-wrappers" | 30 | PACKAGECONFIG ??= "tcp-wrappers" |
31 | PACKAGECONFIG[tcp-wrappers] = "--with-libwrap,,tcp-wrappers" | 31 | PACKAGECONFIG[tcp-wrappers] = "--with-libwrap,,tcp-wrappers" |
32 | 32 | ||
33 | CFLAGS += "-D_GNU_SOURCE" | ||
34 | |||
33 | CONFFILES:${PN} = "${sysconfdir}/xinetd.conf" | 35 | CONFFILES:${PN} = "${sysconfdir}/xinetd.conf" |
34 | 36 | ||
35 | do_install:append() { | 37 | do_install:append() { |