blob: f06df6ba519ce485b7dc95c069a1facd2a5bd46b [file] [log] [blame]
Florin Corasa3bae4e2017-09-27 23:31:07 -07001AC_INIT([vpp], [18.01], [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])
Klement Sekera8f2a4ea2017-05-04 06:15:18 +02006AC_CONFIG_FILES([Makefile plugins/Makefile vpp-api/python/Makefile vpp-api/java/Makefile vpp-api/vapi/Makefile])
Damjan Marioncb034b92016-12-28 18:38:59 +01007AC_CONFIG_MACRO_DIR([m4])
Damjan Marion7cd468a2016-12-19 23:05:39 +01008
9AC_PROG_CC
Klement Sekeradc15be22017-06-12 06:49:33 +020010AC_PROG_CXX
Damjan Marion7cd468a2016-12-19 23:05:39 +010011AM_PROG_AS
12AM_PROG_LIBTOOL
13AC_PROG_YACC
Tomofumi Hayashidc90d422017-01-25 13:53:26 +090014AM_PATH_PYTHON
Damjan Marion7cd468a2016-12-19 23:05:39 +010015
Damjan Marion0be5ec32016-12-28 17:51:56 +010016AM_CONDITIONAL([CROSSCOMPILE], [test "$cross_compiling" == "yes"])
17
Damjan Marion7cd468a2016-12-19 23:05:39 +010018###############################################################################
19# Macros
20###############################################################################
21
22AC_DEFUN([ENABLE_ARG],
23[
24 AC_ARG_ENABLE($1,
25 AC_HELP_STRING(patsubst([--enable-$1],[_],[-]), $2),
26 [enable_$1=yes n_enable_$1=1],
27 [enable_$1=no n_enable_$1=0])
28 AM_CONDITIONAL(m4_toupper(ENABLE_$1), test "$enable_$1" = "yes")
29 m4_append([list_of_enabled], [$1], [, ])
30])
31
32AC_DEFUN([DISABLE_ARG],
33[
34 AC_ARG_ENABLE($1,
35 AC_HELP_STRING(patsubst([--disable-$1],[_],[-]), $2),
36 [enable_$1=no n_enable_$1=0],
37 [enable_$1=yes n_enable_$1=1])
38 AM_CONDITIONAL(m4_toupper(ENABLE_$1), test "$enable_$1" = "yes")
39 m4_append([list_of_enabled], [$1], [, ])
40])
41
42AC_DEFUN([WITH_ARG],
43[
44 AC_ARG_WITH($1,
45 AC_HELP_STRING(patsubst([--with-$1],[_],[-]), $2),
46 [with_$1=yes n_with_$1=1],
47 [with_$1=no n_with_$1=0])
48 AM_CONDITIONAL(m4_toupper(WITH_$1), test "$with_$1" = "yes")
49 m4_append([list_of_with], [$1], [, ])
50])
51
52AC_DEFUN([WITHOUT_ARG],
53[
54 AC_ARG_WITH($1,
55 AC_HELP_STRING(patsubst([--without-$1],[_],[-]), $2),
56 [with_$1=no n_with_$1=0],
57 [with_$1=yes n_with_$1=1])
58 AM_CONDITIONAL(m4_toupper(WITH_$1), test "$with_$1" = "yes")
59 m4_append([list_of_with], [$1], [, ])
60])
61
62AC_DEFUN([PLUGIN_ENABLED],
63[
64 AC_ARG_ENABLE($1_plugin,
65 AC_HELP_STRING([--disable-$1-plugin], [Do not build $1 plugin]),
66 [enable_$1_plugin=no],
67 [enable_$1_plugin=yes ])
68 AM_CONDITIONAL(m4_toupper(ENABLE_$1_PLUGIN), test "$enable_$1_plugin" = "yes")
69 m4_append([list_of_plugins], [$1], [, ])
70])
71
72AC_DEFUN([PLUGIN_DISABLED],
73[
74 AC_ARG_ENABLE($1_plugin,
75 AC_HELP_STRING([--enable-$1-plugin], [Build $1 plugin]),
76 [enable_$1_plugin=yes ],
77 [enable_$1_plugin=no])
Pablo Camarilloa084d622017-03-03 20:47:55 +010078 AM_CONDITIONAL(m4_toupper(ENABLE_$1_PLUGIN), test "$enable_$1_plugin" = "yes")
Damjan Marion7cd468a2016-12-19 23:05:39 +010079 m4_append([list_of_plugins], [$1], [, ])
80])
81
82AC_DEFUN([PRINT_VAL], [ AC_MSG_RESULT(AC_HELP_STRING($1,$2)) ])
83
Sergio Gonzalez Monroy3b12cdc2017-06-06 15:29:16 +010084AC_DEFUN([DPDK_IS_PMD_ENABLED],
85[
86 AC_MSG_CHECKING([for $1 in rte_config.h])
87 AC_COMPILE_IFELSE(
88 [AC_LANG_PROGRAM(
89 [[#include <rte_config.h>]],
90 [[return RTE_$1;]],
91 )],
92 [with_$2=yes]
93 [AC_MSG_RESULT([yes])],
94 [with_$2=no]
95 [AC_MSG_RESULT([no])]
96 )
97 AM_CONDITIONAL(m4_toupper(WITH_$2), test "$with_$2" = "yes")
98 m4_append_uniq([list_of_with], [$2], [, ])
99])
100
Sergio Gonzalez Monroyacdc3062017-08-24 14:09:17 +0100101AC_DEFUN([DETECT_DPDK_IS_1702_OR_1705],
102[
103 AC_MSG_CHECKING([for RTE_VERSION 17.02/17.05 in rte_version.h])
104 AC_TRY_RUN(
105 [
106 #include <rte_version.h>
107 int main()
108 {
109 return ((RTE_VER_YEAR != 17) ||
110 (RTE_VER_MONTH != 2 && RTE_VER_MONTH != 5));
111 }
112 ],
113 [dpdk_is_1702_or_1705=yes]
114 [AC_MSG_RESULT([yes])],
115 [dpdk_is_1702_or_1705=no]
116 [AC_MSG_RESULT([no])]
117 )
118 AM_CONDITIONAL(DPDK_IS_1702_OR_1705, test "$dpdk_is_1702_or_1705" = "yes")
119])
120
Damjan Marion7cd468a2016-12-19 23:05:39 +0100121###############################################################################
122# configure arguments
123###############################################################################
124
125# --enable-X
126ENABLE_ARG(tests, [Enable unit tests])
127ENABLE_ARG(dpdk_shared, [Enable unit tests])
128ENABLE_ARG(perftool, [Enable perftool])
129ENABLE_ARG(g2, [Enable g2])
130
131# --disable-X
132DISABLE_ARG(vlib, [Disable vlib and dependant libs and binaries])
133DISABLE_ARG(svm, [Disable svm and dependant libs and binaries])
Damjan Marioncb034b92016-12-28 18:38:59 +0100134DISABLE_ARG(papi, [Disable Python API bindings])
135DISABLE_ARG(japi, [Disable Java API bindings])
Damjan Marion7cd468a2016-12-19 23:05:39 +0100136
137# --with-X
Damjan Marion7cd468a2016-12-19 23:05:39 +0100138
139# --without-X
Damjan Mariona9a951f2017-01-16 22:06:10 +0100140WITHOUT_ARG(libssl, [Disable libssl])
Damjan Marion7cd468a2016-12-19 23:05:39 +0100141WITHOUT_ARG(apicli, [Disable binary api CLI])
142
143AC_ARG_WITH(unix,
144 AC_HELP_STRING([--with-unix],[Compile unix version of clib]),
145 [],
146 [case $host_os in
147 darwin* | linux*) with_unix=yes;;
148 *) with_unix=no;;
149 esac])
150
151AM_CONDITIONAL(WITH_UNIX, test "$with_unix" = "yes")
152
153AC_ARG_WITH(pre-data,
154 AC_HELP_STRING([--with-pre-data],[Set buffer rewrite space]),
155 [case $with_pre_data in
156 128) ;;
157 256) ;;
158 *) with_pre_data="pre-data-not-set" ;;
159 esac], [with_pre_data=128])
160
161###############################################################################
162# Substitutions and defines
163###############################################################################
164
165AC_SUBST(PRE_DATA_SIZE, [$with_pre_data])
166AC_SUBST(APICLI, [-DVPP_API_TEST_BUILTIN=${n_with_apicli}])
167
Damjan Marion7cd468a2016-12-19 23:05:39 +0100168AC_DEFINE_UNQUOTED(DPDK_SHARED_LIB, [${n_enable_dpdk_shared}])
Damjan Mariona9a951f2017-01-16 22:06:10 +0100169AC_DEFINE_UNQUOTED(WITH_LIBSSL, [${n_with_libssl}])
Damjan Marion7cd468a2016-12-19 23:05:39 +0100170
Damjan Marioncb034b92016-12-28 18:38:59 +0100171
172# Silence following noise:
173# ar: `u' modifier ignored since `D' is the default (see `U')
174AR_FLAGS=cr
175AC_SUBST(AR_FLAGS)
176
177###############################################################################
178# Plugins
179###############################################################################
180
181# Please keep alphabetical order
182PLUGIN_ENABLED(acl)
Damjan Marion374e2c52017-03-09 20:38:15 +0100183PLUGIN_ENABLED(dpdk)
Ole Troan5c749732017-03-13 13:39:52 +0100184PLUGIN_ENABLED(flowprobe)
Hongjun Nief486b12017-04-12 19:21:16 +0800185PLUGIN_ENABLED(gtpu)
Damjan Marioncb034b92016-12-28 18:38:59 +0100186PLUGIN_ENABLED(ila)
187PLUGIN_ENABLED(ioam)
Damjan Marion374e2c52017-03-09 20:38:15 +0100188PLUGIN_ENABLED(ixge)
Damjan Marioncb034b92016-12-28 18:38:59 +0100189PLUGIN_ENABLED(lb)
Damjan Marioneaabe072017-03-22 10:18:13 +0100190PLUGIN_ENABLED(memif)
Hongjun Ni62f9cdd2017-07-04 20:11:57 +0800191PLUGIN_ENABLED(pppoe)
Damjan Marioncb034b92016-12-28 18:38:59 +0100192PLUGIN_ENABLED(sixrd)
Matus Fabian2ba92e32017-08-21 07:05:03 -0700193PLUGIN_ENABLED(nat)
Damjan Marioncb034b92016-12-28 18:38:59 +0100194
Damjan Marion7cd468a2016-12-19 23:05:39 +0100195###############################################################################
196# Dependency checks
197###############################################################################
198
199AM_COND_IF([ENABLE_DPDK_SHARED],
200[
201 AC_CHECK_HEADERS([rte_config.h],
202 [],
203 [AC_MSG_ERROR([DPDK header files not found])],)
204 AC_CHECK_LIB( [dpdk], [rte_eal_init],
205 [],
206 [AC_MSG_ERROR([DPDK shared library not found])],)
207])
208
Sergio Gonzalez Monroyacdc3062017-08-24 14:09:17 +0100209with_aesni_mb_lib=no
210with_isa_l_crypto_lib=no
211
Sergio Gonzalez Monroy3b12cdc2017-06-06 15:29:16 +0100212DPDK_IS_PMD_ENABLED(LIBRTE_PMD_AESNI_MB, dpdk_aesni_mb_pmd)
Sergio Gonzalez Monroyacdc3062017-08-24 14:09:17 +0100213DPDK_IS_PMD_ENABLED(LIBRTE_PMD_AESNI_GCM, dpdk_aesni_gcm_pmd)
214
215DETECT_DPDK_IS_1702_OR_1705()
216
Sergio Gonzalez Monroy3b12cdc2017-06-06 15:29:16 +0100217AM_COND_IF([WITH_DPDK_AESNI_MB_PMD],
218[
Sergio Gonzalez Monroyacdc3062017-08-24 14:09:17 +0100219 AC_CHECK_LIB([IPSec_MB], [submit_job_sse],
220 [with_aesni_mb_lib=yes],
Sergio Gonzalez Monroy3b12cdc2017-06-06 15:29:16 +0100221 [AC_MSG_ERROR([IPSec_MB library not found])])
222])
223
Sergio Gonzalez Monroy3b12cdc2017-06-06 15:29:16 +0100224AM_COND_IF([WITH_DPDK_AESNI_GCM_PMD],
225[
Sergio Gonzalez Monroyacdc3062017-08-24 14:09:17 +0100226 AM_COND_IF([DPDK_IS_1702_OR_1705],
227 [
228 AC_CHECK_LIB([isal_crypto], [aesni_gcm128_init],
229 [with_isa_l_crypto_lib=yes],
230 [AC_MSG_ERROR([isal_crypto library not found])])
231 ],
232 [
233 AC_CHECK_LIB([IPSec_MB], [submit_job_sse],
234 [with_aesni_mb_lib=yes],
235 [AC_MSG_ERROR([IPSec_MB library not found])])
236 ])
237])
238
239m4_append([list_of_with], [aesni_mb_lib], [, ])
240AM_CONDITIONAL(WITH_AESNI_MB_LIB, test "$with_aesni_mb_lib" = "yes")
241
242m4_append([list_of_with], [isa_l_crypto_lib], [, ])
243AM_CONDITIONAL(WITH_ISA_L_CRYPTO_LIB, test "$with_isa_l_crypto_lib" = "yes")
244
245
246with_ibverbs_lib=no
247DPDK_IS_PMD_ENABLED(LIBRTE_MLX4_PMD, dpdk_mlx4_pmd)
248AM_COND_IF([WITH_DPDK_MLX4_PMD],
249[
250 AC_CHECK_LIB([ibverbs], [ibv_fork_init],
251 [with_ibverbs_lib=yes],
252 [AC_MSG_ERROR([ibverbs library not found])])
Sergio Gonzalez Monroy3b12cdc2017-06-06 15:29:16 +0100253])
254
255DPDK_IS_PMD_ENABLED(LIBRTE_MLX5_PMD, dpdk_mlx5_pmd)
256AM_COND_IF([WITH_DPDK_MLX5_PMD],
257[
Sergio Gonzalez Monroyacdc3062017-08-24 14:09:17 +0100258 AC_CHECK_LIB([ibverbs], [ibv_fork_init],
259 [with_ibverbs_lib=yes],
Sergio Gonzalez Monroy3b12cdc2017-06-06 15:29:16 +0100260 [AC_MSG_ERROR([ibverbs library not found])])
261])
262
Sergio Gonzalez Monroyacdc3062017-08-24 14:09:17 +0100263m4_append([list_of_with], [ibverbs_lib], [, ])
264AM_CONDITIONAL(WITH_IBVERBS_LIB, test "$with_ibverbs_lib" = "yes")
265
Sergio Gonzalez Monroy3b12cdc2017-06-06 15:29:16 +0100266
Damjan Marion7cd468a2016-12-19 23:05:39 +0100267AM_COND_IF([ENABLE_G2],
268[
269 PKG_CHECK_MODULES(g2, gtk+-2.0)
270])
271
Damjan Marion0be5ec32016-12-28 17:51:56 +0100272# If cross-compiling, we need external vppapigen and we cannot continue without it
273# For native builds, we just set dependency on vpppaigen binary in top_builddir
274AM_COND_IF([CROSSCOMPILE],
275[
276 AC_PATH_PROG([VPPAPIGEN], [vppapigen], [no])
277 if test "$VPPAPIGEN" = "no"; then
278 AC_MSG_ERROR([Externaly built vppapigen is needed when cross-compiling...])
279 fi
280],[
281 VPPAPIGEN=\$\(top_builddir\)/vppapigen
282])
283AC_SUBST([VPPAPIGEN])
284
285
Damjan Marion7cd468a2016-12-19 23:05:39 +0100286###############################################################################
Damjan Marioncb034b92016-12-28 18:38:59 +0100287# JAVA
Damjan Marion7cd468a2016-12-19 23:05:39 +0100288###############################################################################
289
Damjan Marioncb034b92016-12-28 18:38:59 +0100290AM_COND_IF([ENABLE_JAPI],
291[
292 AX_VPP_FIND_JDK8
293 AC_SUBST(JAVA_HOME)
294 AC_SUBST(JAVAC)
295 AC_SUBST(JAVAH)
296 AC_SUBST(JAR)
297])
Damjan Marion7cd468a2016-12-19 23:05:39 +0100298
299###############################################################################
Ole Troan3cc49712017-03-08 12:02:24 +0100300# PYTHON
301###############################################################################
302
303AM_COND_IF([ENABLE_PAPI],
304[
305 AM_PATH_PYTHON
306])
307
308###############################################################################
Damjan Marion7cd468a2016-12-19 23:05:39 +0100309# Output
310###############################################################################
311
312AC_OUTPUT
313
314AC_MSG_RESULT([==============================================================================])
315PRINT_VAL([version], $PACKAGE $VERSION)
316PRINT_VAL([prefix], ${prefix})
317PRINT_VAL([libdir], ${libdir})
318PRINT_VAL([includedir], ${includedir})
319PRINT_VAL([CFLAGS], ${CFLAGS})
320PRINT_VAL([CPPFLAGS], ${CPPFLAGS})
321PRINT_VAL([LDFLAGS], ${LDFLAGS})
Damjan Marioncb034b92016-12-28 18:38:59 +0100322AM_COND_IF([ENABLE_JAPI],
323[
324 PRINT_VAL([JAVA_VERSION], ${JAVA_VERSION})
325 PRINT_VAL([JAVA_HOME], ${JAVA_HOME})
326])
Damjan Marion7cd468a2016-12-19 23:05:39 +0100327
328AC_MSG_RESULT([])
329AC_MSG_RESULT([with:])
330m4_foreach([x], m4_dquote(list_of_with), [
331 AC_MSG_RESULT(AC_HELP_STRING(x, m4_join([], [${with_], x, [}])))
332])
333
334AC_MSG_RESULT([])
335AC_MSG_RESULT([enabled:])
336m4_foreach([x], m4_dquote(list_of_enabled), [
337 AC_MSG_RESULT(AC_HELP_STRING(x, m4_join([], [${enable_], x, [}])))
338])
339
340AC_MSG_RESULT([])
341AC_MSG_RESULT([plugins:])
342m4_foreach([x], m4_dquote(list_of_plugins), [
343 AC_MSG_RESULT(AC_HELP_STRING(x, m4_join([], [${enable_], x, [_plugin}])))
344])
345AC_MSG_RESULT([==============================================================================])
346
347