summaryrefslogtreecommitdiff
path: root/net-libs/libtrace/files/libtrace-4.0.0-with-numa.patch
diff options
context:
space:
mode:
authorV3n3RiX <venerix@koprulu.sector>2022-07-15 07:41:50 +0100
committerV3n3RiX <venerix@koprulu.sector>2022-07-15 07:41:50 +0100
commitb3f2504c1d05b5999b74b2135860fc721e3adf68 (patch)
treee11656067365c7d474553833d6202ed04d3324a5 /net-libs/libtrace/files/libtrace-4.0.0-with-numa.patch
parente0fdb8199de0e7a9b7c72d7f38d2e3ddaecdacd0 (diff)
gentoo auto-resync : 15:07:2022 - 07:41:50
Diffstat (limited to 'net-libs/libtrace/files/libtrace-4.0.0-with-numa.patch')
-rw-r--r--net-libs/libtrace/files/libtrace-4.0.0-with-numa.patch27
1 files changed, 0 insertions, 27 deletions
diff --git a/net-libs/libtrace/files/libtrace-4.0.0-with-numa.patch b/net-libs/libtrace/files/libtrace-4.0.0-with-numa.patch
deleted file mode 100644
index 54e9f54f8dc1..000000000000
--- a/net-libs/libtrace/files/libtrace-4.0.0-with-numa.patch
+++ /dev/null
@@ -1,27 +0,0 @@
---- a/configure.in
-+++ b/configure.in
-@@ -431,7 +431,23 @@
- [[#include <linux/if_packet.h>]])
-
- # If we use DPDK we might be able to use libnuma
--AC_CHECK_LIB(numa, numa_node_to_cpus, have_numa=1, have_numa=0)
-+AC_ARG_WITH(numa,
-+ AS_HELP_STRING(--with-numa,include NUMA support),
-+[
-+ if test "$withval" = no
-+ then
-+ want_numa=no
-+ else
-+ want_numa=yes
-+ fi
-+],[
-+ # Default to building without NUMA
-+ want_numa=yes
-+])
-+
-+if test "$want_numa" != no; then
-+ AC_CHECK_LIB(numa, numa_node_to_cpus, have_numa=1, have_numa=0)
-+fi
-
- # Checks for various "optional" libraries
- AC_CHECK_LIB(pthread, pthread_create, have_pthread=1, have_pthread=0)