aboutsummaryrefslogtreecommitdiff
path: root/platform/linux-generic/m4/configure.m4
blob: 924346c1fcd95a4287d3087c5ddac70d089b1810 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
ODP_IMPLEMENTATION_NAME="odp-linux"
ODP_LIB_NAME="odp-linux"

ODP_VISIBILITY
ODP_ATOMIC

ODP_PTHREAD
ODP_TIMER
m4_include([platform/linux-generic/m4/odp_pcap.m4])
m4_include([platform/linux-generic/m4/odp_scheduler.m4])

AC_ARG_WITH([pcap],
	    [AS_HELP_STRING([--without-pcap],
			    [compile without PCAP [default=with] (linux-generic)])],
	    [],
	    [with_pcap=yes])
have_pcap=no
AS_IF([test "x$with_pcap" != xno],
      [ODP_PCAP([with_pcap=yes]‚[with_pcap=no])])
AM_CONDITIONAL([ODP_PKTIO_PCAP], [test x$have_pcap = xyes])

m4_include([platform/linux-generic/m4/odp_libconfig.m4])
m4_include([platform/linux-generic/m4/odp_pcapng.m4])
m4_include([platform/linux-generic/m4/odp_netmap.m4])
m4_include([platform/linux-generic/m4/odp_dpdk.m4])
ODP_SCHEDULER

AS_VAR_APPEND([PLAT_DEP_LIBS], ["${LIBCONFIG_LIBS} ${OPENSSL_LIBS} ${DPDK_LIBS_LT} ${LIBCLI_LIBS}"])

# Add text to the end of configure with platform specific settings.
# Make sure it's aligned same as other lines in configure.ac.
AS_VAR_APPEND([PLAT_CFG_TEXT], ["
	pcap:			${have_pcap}
	pcapng:			${have_pcapng}
	default_config_path:	${default_config_path}"])

AC_CONFIG_COMMANDS_PRE([dnl
AM_CONDITIONAL([PLATFORM_IS_LINUX_GENERIC],
	       [test "${with_platform}" = "linux-generic"])
AC_CONFIG_FILES([platform/linux-generic/Makefile
		 platform/linux-generic/libodp-linux.pc
		 platform/linux-generic/dumpconfig/Makefile
		 platform/linux-generic/test/Makefile
		 platform/linux-generic/test/example/Makefile
		 platform/linux-generic/test/example/classifier/Makefile
		 platform/linux-generic/test/example/generator/Makefile
		 platform/linux-generic/test/example/l2fwd_simple/Makefile
		 platform/linux-generic/test/example/l3fwd/Makefile
		 platform/linux-generic/test/example/packet/Makefile
		 platform/linux-generic/test/example/ping/Makefile
		 platform/linux-generic/test/example/simple_pipeline/Makefile
		 platform/linux-generic/test/example/switch/Makefile
		 platform/linux-generic/test/validation/api/shmem/Makefile
		 platform/linux-generic/test/validation/api/pktio/Makefile
		 platform/linux-generic/test/pktio_ipc/Makefile])
])