]> git.droids-corp.org - dpdk.git/commitdiff
build: remove redundant _GNU_SOURCE definitions
authorThomas Monjalon <thomas@monjalon.net>
Thu, 25 Feb 2021 08:45:06 +0000 (09:45 +0100)
committerThomas Monjalon <thomas@monjalon.net>
Tue, 23 Mar 2021 07:41:05 +0000 (08:41 +0100)
The feature macro _GNU_SOURCE is defined globally,
but there was some remaining useless settings.

The internal definition in config/meson.build is kept,
all other internal definitions of _GNU_SOURCE are removed,
except in examples, which can be built as external applications.
Note: external applications do not inherit of _GNU_SOURCE.

Fixes: 5d7b673d5fd6 ("mk: build with _GNU_SOURCE defined by default")
Fixes: 28188cee2aa0 ("build: enable BSD features visibility for FreeBSD")
Fixes: e6cdc54cc0ef ("net/mlx5: add socket server for external tools")
Cc: stable@dpdk.org
Signed-off-by: Thomas Monjalon <thomas@monjalon.net>
Acked-by: Andrew Rybchenko <andrew.rybchenko@oktetlabs.ru>
Acked-by: David Marchand <david.marchand@redhat.com>
app/test/meson.build
drivers/bus/fslmc/qbman/include/compat.h
drivers/common/dpaax/compat.h
drivers/common/dpaax/meson.build
drivers/net/memif/rte_eth_memif.h
drivers/net/mlx5/linux/mlx5_socket.c

index 099895fc8753549ed5ed1a874ade6ddd052bbf39..76eaaea45746434f7eaa627cb7f5abe7cbd4b0a1 100644 (file)
@@ -398,8 +398,6 @@ if cc.has_argument('-Wno-format-truncation')
     cflags += '-Wno-format-truncation'
 endif
 
-# specify -D_GNU_SOURCE unconditionally
-cflags += '-D_GNU_SOURCE'
 # Strict-aliasing rules are violated by uint8_t[] to context size casts.
 cflags += '-fno-strict-aliasing'
 
index 1ddd69e127a2386e9b72ca8ad65d8dd41e8f9d97..a4471a80af6180de3f325d739e098cb877b2139a 100644 (file)
@@ -8,9 +8,6 @@
 #ifndef HEADER_COMPAT_H
 #define HEADER_COMPAT_H
 
-#ifndef _GNU_SOURCE
-#define _GNU_SOURCE
-#endif
 #include <stdio.h>
 #include <stdint.h>
 #include <stdlib.h>
index 1a5f36e99ecb989d03f180e407ff3e83838079c3..c69e76ab9646ca280ca3798caa9db35f530e6f43 100644 (file)
 #define __COMPAT_H
 
 #include <sched.h>
-
-#ifndef _GNU_SOURCE
-#define _GNU_SOURCE
-#endif
 #include <stdint.h>
 #include <stdlib.h>
 #include <stddef.h>
index 453548270139d641ba204f04b8db233bfc4ebb23..b7f177a62e1b8bd61c8ad42a818d077a1c88c456 100644 (file)
@@ -10,7 +10,6 @@ sources = files('dpaax_iova_table.c', 'dpaa_of.c', 'caamflib.c')
 
 includes += include_directories('caamflib')
 
-cflags += ['-D_GNU_SOURCE']
 if cc.has_argument('-Wno-cast-qual')
        cflags += '-Wno-cast-qual'
 endif
index 24321d3a39db8fead7c6ff9b2aaba212d0b9c604..2038bda742b4c051283f4d805ae439f6daa89161 100644 (file)
@@ -5,10 +5,6 @@
 #ifndef _RTE_ETH_MEMIF_H_
 #define _RTE_ETH_MEMIF_H_
 
-#ifndef _GNU_SOURCE
-#define _GNU_SOURCE
-#endif                         /* GNU_SOURCE */
-
 #include <sys/queue.h>
 
 #include <ethdev_driver.h>
index 193845398002e1b356b216109d8ac1e5d39a7e5c..b1f41bc1029d5aee54a062198d1a3014ec767b11 100644 (file)
@@ -2,10 +2,6 @@
  * Copyright 2019 Mellanox Technologies, Ltd
  */
 
-#ifndef _GNU_SOURCE
-#define _GNU_SOURCE
-#endif
-
 #include <sys/types.h>
 #include <sys/socket.h>
 #include <sys/un.h>