blob: 6b6d9636400c992fa98754de947197b53baaad7d [file] [log] [blame]
Neale Ranns39f92402017-06-22 14:43:55 -07001AC_INIT([vpp], [17.10], [vpp-dev@fd.io])
Damjan Marion7cd468a2016-12-19 23:05:39 +01002LT_INIT
3AC_CONFIG_AUX_DIR([.])
4AM_INIT_AUTOMAKE([subdir-objects])
5AM_SILENT_RULES([yes])
Damjan Marioncb034b92016-12-28 18:38:59 +01006AC_CONFIG_FILES([Makefile plugins/Makefile vpp-api/python/Makefile vpp-api/java/Makefile])
7AC_CONFIG_MACRO_DIR([m4])
Damjan Marion7cd468a2016-12-19 23:05:39 +01008
9AC_PROG_CC
10AM_PROG_AS
11AM_PROG_LIBTOOL
12AC_PROG_YACC
Tomofumi Hayashidc90d422017-01-25 13:53:26 +090013AM_PATH_PYTHON
Damjan Marion7cd468a2016-12-19 23:05:39 +010014
Damjan Marion0be5ec32016-12-28 17:51:56 +010015AM_CONDITIONAL([CROSSCOMPILE], [test "$cross_compiling" == "yes"])
16
Damjan Marion7cd468a2016-12-19 23:05:39 +010017###############################################################################
18# Macros
19###############################################################################
20
21AC_DEFUN([ENABLE_ARG],
22[
23 AC_ARG_ENABLE($1,
24 AC_HELP_STRING(patsubst([--enable-$1],[_],[-]), $2),
25 [enable_$1=yes n_enable_$1=1],
26 [enable_$1=no n_enable_$1=0])
27 AM_CONDITIONAL(m4_toupper(ENABLE_$1), test "$enable_$1" = "yes")
28 m4_append([list_of_enabled], [$1], [, ])
29])
30
31AC_DEFUN([DISABLE_ARG],
32[
33 AC_ARG_ENABLE($1,
34 AC_HELP_STRING(patsubst([--disable-$1],[_],[-]), $2),
35 [enable_$1=no n_enable_$1=0],
36 [enable_$1=yes n_enable_$1=1])
37 AM_CONDITIONAL(m4_toupper(ENABLE_$1), test "$enable_$1" = "yes")
38 m4_append([list_of_enabled], [$1], [, ])
39])
40
41AC_DEFUN([WITH_ARG],
42[
43 AC_ARG_WITH($1,
44 AC_HELP_STRING(patsubst([--with-$1],[_],[-]), $2),
45 [with_$1=yes n_with_$1=1],
46 [with_$1=no n_with_$1=0])
47 AM_CONDITIONAL(m4_toupper(WITH_$1), test "$with_$1" = "yes")
48 m4_append([list_of_with], [$1], [, ])
49])
50
51AC_DEFUN([WITHOUT_ARG],
52[
53 AC_ARG_WITH($1,
54 AC_HELP_STRING(patsubst([--without-$1],[_],[-]), $2),
55 [with_$1=no n_with_$1=0],
56 [with_$1=yes n_with_$1=1])
57 AM_CONDITIONAL(m4_toupper(WITH_$1), test "$with_$1" = "yes")
58 m4_append([list_of_with], [$1], [, ])
59])
60
61AC_DEFUN([PLUGIN_ENABLED],
62[
63 AC_ARG_ENABLE($1_plugin,
64 AC_HELP_STRING([--disable-$1-plugin], [Do not build $1 plugin]),
65 [enable_$1_plugin=no],
66 [enable_$1_plugin=yes ])
67 AM_CONDITIONAL(m4_toupper(ENABLE_$1_PLUGIN), test "$enable_$1_plugin" = "yes")
68 m4_append([list_of_plugins], [$1], [, ])
69])
70
71AC_DEFUN([PLUGIN_DISABLED],
72[
73 AC_ARG_ENABLE($1_plugin,
74 AC_HELP_STRING([--enable-$1-plugin], [Build $1 plugin]),
75 [enable_$1_plugin=yes ],
76 [enable_$1_plugin=no])
Pablo Camarilloa084d622017-03-03 20:47:55 +010077 AM_CONDITIONAL(m4_toupper(ENABLE_$1_PLUGIN), test "$enable_$1_plugin" = "yes")
Damjan Marion7cd468a2016-12-19 23:05:39 +010078 m4_append([list_of_plugins], [$1], [, ])
79])
80
81AC_DEFUN([PRINT_VAL], [ AC_MSG_RESULT(AC_HELP_STRING($1,$2)) ])
82
Sergio Gonzalez Monroy3b12cdc2017-06-06 15:29:16 +010083AC_DEFUN([DPDK_IS_PMD_ENABLED],
84[
85 AC_MSG_CHECKING([for $1 in rte_config.h])
86 AC_COMPILE_IFELSE(
87 [AC_LANG_PROGRAM(
88 [[#include <rte_config.h>]],
89 [[return RTE_$1;]],
90 )],
91 [with_$2=yes]
92 [AC_MSG_RESULT([yes])],
93 [with_$2=no]
94 [AC_MSG_RESULT([no])]
95 )
96 AM_CONDITIONAL(m4_toupper(WITH_$2), test "$with_$2" = "yes")
97 m4_append_uniq([list_of_with], [$2], [, ])
98])
99
Sergio Gonzalez Monroyacdc3062017-08-24 14:09:17 +0100100AC_DEFUN([DETECT_DPDK_IS_1702_OR_1705],
101[
102 AC_MSG_CHECKING([for RTE_VERSION 17.02/17.05 in rte_version.h])
103 AC_TRY_RUN(
104 [
105 #include <rte_version.h>
106 int main()
107 {
108 return ((RTE_VER_YEAR != 17) ||
109 (RTE_VER_MONTH != 2 && RTE_VER_MONTH != 5));
110 }
111 ],
112 [dpdk_is_1702_or_1705=yes]
113 [AC_MSG_RESULT([yes])],
114 [dpdk_is_1702_or_1705=no]
115 [AC_MSG_RESULT([no])]
116 )
117 AM_CONDITIONAL(DPDK_IS_1702_OR_1705, test "$dpdk_is_1702_or_1705" = "yes")
118])
119
Damjan Marion7cd468a2016-12-19 23:05:39 +0100120###############################################################################
121# configure arguments
122###############################################################################
123
124# --enable-X
125ENABLE_ARG(tests, [Enable unit tests])
126ENABLE_ARG(dpdk_shared, [Enable unit tests])
127ENABLE_ARG(perftool, [Enable perftool])
128ENABLE_ARG(g2, [Enable g2])
129
130# --disable-X
131DISABLE_ARG(vlib, [Disable vlib and dependant libs and binaries])
132DISABLE_ARG(svm, [Disable svm and dependant libs and binaries])
Damjan Marioncb034b92016-12-28 18:38:59 +0100133DISABLE_ARG(papi, [Disable Python API bindings])
134DISABLE_ARG(japi, [Disable Java API bindings])
Damjan Marion7cd468a2016-12-19 23:05:39 +0100135
136# --with-X
Damjan Marion7cd468a2016-12-19 23:05:39 +0100137
138# --without-X
Damjan Mariona9a951f2017-01-16 22:06:10 +0100139WITHOUT_ARG(libssl, [Disable libssl])
Damjan Marion7cd468a2016-12-19 23:05:39 +0100140WITHOUT_ARG(apicli, [Disable binary api CLI])
141
142AC_ARG_WITH(unix,
143 AC_HELP_STRING([--with-unix],[Compile unix version of clib]),
144 [],
145 [case $host_os in
146 darwin* | linux*) with_unix=yes;;
147 *) with_unix=no;;
148 esac])
149
150AM_CONDITIONAL(WITH_UNIX, test "$with_unix" = "yes")
151
152AC_ARG_WITH(pre-data,
153 AC_HELP_STRING([--with-pre-data],[Set buffer rewrite space]),
154 [case $with_pre_data in
155 128) ;;
156 256) ;;
157 *) with_pre_data="pre-data-not-set" ;;
158 esac], [with_pre_data=128])
159
160###############################################################################
161# Substitutions and defines
162###############################################################################
163
164AC_SUBST(PRE_DATA_SIZE, [$with_pre_data])
165AC_SUBST(APICLI, [-DVPP_API_TEST_BUILTIN=${n_with_apicli}])
166
Damjan Marion7cd468a2016-12-19 23:05:39 +0100167AC_DEFINE_UNQUOTED(DPDK_SHARED_LIB, [${n_enable_dpdk_shared}])
Damjan Mariona9a951f2017-01-16 22:06:10 +0100168AC_DEFINE_UNQUOTED(WITH_LIBSSL, [${n_with_libssl}])
Damjan Marion7cd468a2016-12-19 23:05:39 +0100169
Damjan Marioncb034b92016-12-28 18:38:59 +0100170
171# Silence following noise:
172# ar: `u' modifier ignored since `D' is the default (see `U')
173AR_FLAGS=cr
174AC_SUBST(AR_FLAGS)
175
176###############################################################################
177# Plugins
178###############################################################################
179
180# Please keep alphabetical order
181PLUGIN_ENABLED(acl)
Damjan Marion374e2c52017-03-09 20:38:15 +0100182PLUGIN_ENABLED(dpdk)
Ole Troan5c749732017-03-13 13:39:52 +0100183PLUGIN_ENABLED(flowprobe)
Hongjun Nief486b12017-04-12 19:21:16 +0800184PLUGIN_ENABLED(gtpu)
Damjan Marioncb034b92016-12-28 18:38:59 +0100185PLUGIN_ENABLED(ila)
186PLUGIN_ENABLED(ioam)
Damjan Marion374e2c52017-03-09 20:38:15 +0100187PLUGIN_ENABLED(ixge)
Damjan Marioncb034b92016-12-28 18:38:59 +0100188PLUGIN_ENABLED(lb)
Damjan Marioneaabe072017-03-22 10:18:13 +0100189PLUGIN_ENABLED(memif)
Hongjun Ni62f9cdd2017-07-04 20:11:57 +0800190PLUGIN_ENABLED(pppoe)
Damjan Marioncb034b92016-12-28 18:38:59 +0100191PLUGIN_ENABLED(sixrd)
Matus Fabian2ba92e32017-08-21 07:05:03 -0700192PLUGIN_ENABLED(nat)
Damjan Marioncb034b92016-12-28 18:38:59 +0100193
Damjan Marion7cd468a2016-12-19 23:05:39 +0100194###############################################################################
195# Dependency checks
196###############################################################################
197
198AM_COND_IF([ENABLE_DPDK_SHARED],
199[
200 AC_CHECK_HEADERS([rte_config.h],
201 [],
202 [AC_MSG_ERROR([DPDK header files not found])],)
203 AC_CHECK_LIB( [dpdk], [rte_eal_init],
204 [],
205 [AC_MSG_ERROR([DPDK shared library not found])],)
206])
207
Sergio Gonzalez Monroyacdc3062017-08-24 14:09:17 +0100208with_aesni_mb_lib=no
209with_isa_l_crypto_lib=no
210
Sergio Gonzalez Monroy3b12cdc2017-06-06 15:29:16 +0100211DPDK_IS_PMD_ENABLED(LIBRTE_PMD_AESNI_MB, dpdk_aesni_mb_pmd)
Sergio Gonzalez Monroyacdc3062017-08-24 14:09:17 +0100212DPDK_IS_PMD_ENABLED(LIBRTE_PMD_AESNI_GCM, dpdk_aesni_gcm_pmd)
213
214DETECT_DPDK_IS_1702_OR_1705()
215
Sergio Gonzalez Monroy3b12cdc2017-06-06 15:29:16 +0100216AM_COND_IF([WITH_DPDK_AESNI_MB_PMD],
217[
Sergio Gonzalez Monroyacdc3062017-08-24 14:09:17 +0100218 AC_CHECK_LIB([IPSec_MB], [submit_job_sse],
219 [with_aesni_mb_lib=yes],
Sergio Gonzalez Monroy3b12cdc2017-06-06 15:29:16 +0100220 [AC_MSG_ERROR([IPSec_MB library not found])])
221])
222
Sergio Gonzalez Monroy3b12cdc2017-06-06 15:29:16 +0100223AM_COND_IF([WITH_DPDK_AESNI_GCM_PMD],
224[
Sergio Gonzalez Monroyacdc3062017-08-24 14:09:17 +0100225 AM_COND_IF([DPDK_IS_1702_OR_1705],
226 [
227 AC_CHECK_LIB([isal_crypto], [aesni_gcm128_init],
228 [with_isa_l_crypto_lib=yes],
229 [AC_MSG_ERROR([isal_crypto library not found])])
230 ],
231 [
232 AC_CHECK_LIB([IPSec_MB], [submit_job_sse],
233 [with_aesni_mb_lib=yes],
234 [AC_MSG_ERROR([IPSec_MB library not found])])
235 ])
236])
237
238m4_append([list_of_with], [aesni_mb_lib], [, ])
239AM_CONDITIONAL(WITH_AESNI_MB_LIB, test "$with_aesni_mb_lib" = "yes")
240
241m4_append([list_of_with], [isa_l_crypto_lib], [, ])
242AM_CONDITIONAL(WITH_ISA_L_CRYPTO_LIB, test "$with_isa_l_crypto_lib" = "yes")
243
244
245with_ibverbs_lib=no
246DPDK_IS_PMD_ENABLED(LIBRTE_MLX4_PMD, dpdk_mlx4_pmd)
247AM_COND_IF([WITH_DPDK_MLX4_PMD],
248[
249 AC_CHECK_LIB([ibverbs], [ibv_fork_init],
250 [with_ibverbs_lib=yes],
251 [AC_MSG_ERROR([ibverbs library not found])])
Sergio Gonzalez Monroy3b12cdc2017-06-06 15:29:16 +0100252])
253
254DPDK_IS_PMD_ENABLED(LIBRTE_MLX5_PMD, dpdk_mlx5_pmd)
255AM_COND_IF([WITH_DPDK_MLX5_PMD],
256[
Sergio Gonzalez Monroyacdc3062017-08-24 14:09:17 +0100257 AC_CHECK_LIB([ibverbs], [ibv_fork_init],
258 [with_ibverbs_lib=yes],
Sergio Gonzalez Monroy3b12cdc2017-06-06 15:29:16 +0100259 [AC_MSG_ERROR([ibverbs library not found])])
260])
261
Sergio Gonzalez Monroyacdc3062017-08-24 14:09:17 +0100262m4_append([list_of_with], [ibverbs_lib], [, ])
263AM_CONDITIONAL(WITH_IBVERBS_LIB, test "$with_ibverbs_lib" = "yes")
264
Sergio Gonzalez Monroy3b12cdc2017-06-06 15:29:16 +0100265
Damjan Marion7cd468a2016-12-19 23:05:39 +0100266AM_COND_IF([ENABLE_G2],
267[
268 PKG_CHECK_MODULES(g2, gtk+-2.0)
269])
270
Damjan Marion0be5ec32016-12-28 17:51:56 +0100271# If cross-compiling, we need external vppapigen and we cannot continue without it
272# For native builds, we just set dependency on vpppaigen binary in top_builddir
273AM_COND_IF([CROSSCOMPILE],
274[
275 AC_PATH_PROG([VPPAPIGEN], [vppapigen], [no])
276 if test "$VPPAPIGEN" = "no"; then
277 AC_MSG_ERROR([Externaly built vppapigen is needed when cross-compiling...])
278 fi
279],[
280 VPPAPIGEN=\$\(top_builddir\)/vppapigen
281])
282AC_SUBST([VPPAPIGEN])
283
284
Damjan Marion7cd468a2016-12-19 23:05:39 +0100285###############################################################################
Damjan Marioncb034b92016-12-28 18:38:59 +0100286# JAVA
Damjan Marion7cd468a2016-12-19 23:05:39 +0100287###############################################################################
288
Damjan Marioncb034b92016-12-28 18:38:59 +0100289AM_COND_IF([ENABLE_JAPI],
290[
291 AX_VPP_FIND_JDK8
292 AC_SUBST(JAVA_HOME)
293 AC_SUBST(JAVAC)
294 AC_SUBST(JAVAH)
295 AC_SUBST(JAR)
296])
Damjan Marion7cd468a2016-12-19 23:05:39 +0100297
298###############################################################################
Ole Troan3cc49712017-03-08 12:02:24 +0100299# PYTHON
300###############################################################################
301
302AM_COND_IF([ENABLE_PAPI],
303[
304 AM_PATH_PYTHON
305])
306
307###############################################################################
Damjan Marion7cd468a2016-12-19 23:05:39 +0100308# Output
309###############################################################################
310
311AC_OUTPUT
312
313AC_MSG_RESULT([==============================================================================])
314PRINT_VAL([version], $PACKAGE $VERSION)
315PRINT_VAL([prefix], ${prefix})
316PRINT_VAL([libdir], ${libdir})
317PRINT_VAL([includedir], ${includedir})
318PRINT_VAL([CFLAGS], ${CFLAGS})
319PRINT_VAL([CPPFLAGS], ${CPPFLAGS})
320PRINT_VAL([LDFLAGS], ${LDFLAGS})
Damjan Marioncb034b92016-12-28 18:38:59 +0100321AM_COND_IF([ENABLE_JAPI],
322[
323 PRINT_VAL([JAVA_VERSION], ${JAVA_VERSION})
324 PRINT_VAL([JAVA_HOME], ${JAVA_HOME})
325])
Damjan Marion7cd468a2016-12-19 23:05:39 +0100326
327AC_MSG_RESULT([])
328AC_MSG_RESULT([with:])
329m4_foreach([x], m4_dquote(list_of_with), [
330 AC_MSG_RESULT(AC_HELP_STRING(x, m4_join([], [${with_], x, [}])))
331])
332
333AC_MSG_RESULT([])
334AC_MSG_RESULT([enabled:])
335m4_foreach([x], m4_dquote(list_of_enabled), [
336 AC_MSG_RESULT(AC_HELP_STRING(x, m4_join([], [${enable_], x, [}])))
337])
338
339AC_MSG_RESULT([])
340AC_MSG_RESULT([plugins:])
341m4_foreach([x], m4_dquote(list_of_plugins), [
342 AC_MSG_RESULT(AC_HELP_STRING(x, m4_join([], [${enable_], x, [_plugin}])))
343])
344AC_MSG_RESULT([==============================================================================])
345
346