3 # Copyright (c) 2008, 2009, 2010, 2011, 2012, 2013, 2014 Nicira, Inc.
5 # Licensed under the Apache License, Version 2.0 (the "License");
6 # you may not use this file except in compliance with the License.
7 # You may obtain a copy of the License at:
9 # http://www.apache.org/licenses/LICENSE-2.0
11 # Unless required by applicable law or agreed to in writing, software
12 # distributed under the License is distributed on an "AS IS" BASIS,
13 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 # See the License for the specific language governing permissions and
15 # limitations under the License.
17 dnl Checks for --enable-coverage and updates CFLAGS and LDFLAGS appropriately.
18 AC_DEFUN([OVS_CHECK_COVERAGE],
19 [AC_REQUIRE([AC_PROG_CC])
22 [AC_HELP_STRING([--enable-coverage],
23 [Enable gcov coverage tool.])],
24 [case "${enableval}" in
25 (yes) coverage=true ;;
26 (no) coverage=false ;;
27 (*) AC_MSG_ERROR([bad value ${enableval} for --enable-coverage]) ;;
31 CFLAGS="$CFLAGS -O0 --coverage"
32 LDFLAGS="$LDFLAGS --coverage"
35 dnl Checks for --enable-ndebug and defines NDEBUG if it is specified.
36 AC_DEFUN([OVS_CHECK_NDEBUG],
39 [AC_HELP_STRING([--enable-ndebug],
40 [Disable debugging features for max performance])],
41 [case "${enableval}" in
44 (*) AC_MSG_ERROR([bad value ${enableval} for --enable-ndebug]) ;;
47 AM_CONDITIONAL([NDEBUG], [test x$ndebug = xtrue])])
50 AC_DEFUN([OVS_CHECK_ESX],
51 [AC_CHECK_HEADER([vmware.h],
54 AM_CONDITIONAL([ESX], [test "$ESX" = yes])
55 if test "$ESX" = yes; then
56 AC_DEFINE([ESX], [1], [Define to 1 if building on ESX.])
59 dnl Checks for WINDOWS.
60 AC_DEFUN([OVS_CHECK_WIN32],
61 [AC_CHECK_HEADER([windows.h],
64 AM_CONDITIONAL([WIN32], [test "$WIN32" = yes])
65 if test "$WIN32" = yes; then
66 AC_DEFINE([WIN32], [1], [Define to 1 if building on WIN32.])
67 AH_BOTTOM([#ifdef WIN32
68 #include "include/windows/windefs.h"
72 dnl Checks for Netlink support.
73 AC_DEFUN([OVS_CHECK_NETLINK],
74 [AC_CHECK_HEADER([linux/netlink.h],
77 [#include <sys/socket.h>
79 AM_CONDITIONAL([HAVE_NETLINK], [test "$HAVE_NETLINK" = yes])
80 if test "$HAVE_NETLINK" = yes; then
81 AC_DEFINE([HAVE_NETLINK], [1],
82 [Define to 1 if Netlink protocol is available.])
85 dnl Checks for OpenSSL.
86 AC_DEFUN([OVS_CHECK_OPENSSL],
89 [AC_HELP_STRING([--disable-ssl], [Disable OpenSSL support])],
90 [case "${enableval}" in
93 (*) AC_MSG_ERROR([bad value ${enableval} for --enable-ssl]) ;;
97 if test "$ssl" != false; then
101 if test "$ssl" = check; then
102 AC_MSG_WARN([Cannot find openssl:
106 OpenFlow connections over SSL will not be supported.
107 (You may use --disable-ssl to suppress this warning.)])
109 AC_MSG_ERROR([Cannot find openssl (use --disable-ssl to configure without SSL support)])
114 AC_SUBST([HAVE_OPENSSL])
115 AM_CONDITIONAL([HAVE_OPENSSL], [test "$HAVE_OPENSSL" = yes])
116 if test "$HAVE_OPENSSL" = yes; then
117 AC_DEFINE([HAVE_OPENSSL], [1], [Define to 1 if OpenSSL is installed.])
120 dnl Checks for libraries needed by lib/socket-util.c.
121 AC_DEFUN([OVS_CHECK_SOCKET_LIBS],
122 [AC_CHECK_LIB([socket], [connect])
123 AC_SEARCH_LIBS([gethostbyname], [resolv])])
125 dnl Checks for the directory in which to store the PKI.
126 AC_DEFUN([OVS_CHECK_PKIDIR],
129 AC_HELP_STRING([--with-pkidir=DIR],
130 [PKI hierarchy directory [[LOCALSTATEDIR/lib/openvswitch/pki]]]),
132 [PKIDIR='${localstatedir}/lib/openvswitch/pki'])
135 dnl Checks for the directory in which to store pidfiles.
136 AC_DEFUN([OVS_CHECK_RUNDIR],
139 AC_HELP_STRING([--with-rundir=DIR],
140 [directory used for pidfiles
141 [[LOCALSTATEDIR/run/openvswitch]]]),
143 [RUNDIR='${localstatedir}/run/openvswitch'])
146 dnl Checks for the directory in which to store logs.
147 AC_DEFUN([OVS_CHECK_LOGDIR],
150 AC_HELP_STRING([--with-logdir=DIR],
151 [directory used for logs [[LOCALSTATEDIR/log/PACKAGE]]]),
153 [LOGDIR='${localstatedir}/log/${PACKAGE}'])
156 dnl Checks for the directory in which to store the Open vSwitch database.
157 AC_DEFUN([OVS_CHECK_DBDIR],
160 AC_HELP_STRING([--with-dbdir=DIR],
161 [directory used for conf.db [[SYSCONFDIR/PACKAGE]]]),
163 [DBDIR='${sysconfdir}/${PACKAGE}'])
166 dnl Defines HAVE_BACKTRACE if backtrace() is found.
167 AC_DEFUN([OVS_CHECK_BACKTRACE],
168 [AC_SEARCH_LIBS([backtrace], [execinfo ubacktrace],
169 [AC_DEFINE([HAVE_BACKTRACE], [1],
170 [Define to 1 if you have backtrace(3).])])])
172 dnl Checks for __malloc_hook, etc., supported by glibc.
173 AC_DEFUN([OVS_CHECK_MALLOC_HOOKS],
175 [whether libc supports hooks for malloc and related functions],
176 [ovs_cv_malloc_hooks],
181 [(void) __malloc_hook;
182 (void) __realloc_hook;
183 (void) __free_hook;])],
184 [ovs_cv_malloc_hooks=yes],
185 [ovs_cv_malloc_hooks=no])])
186 if test $ovs_cv_malloc_hooks = yes; then
187 AC_DEFINE([HAVE_MALLOC_HOOKS], [1],
188 [Define to 1 if you have __malloc_hook, __realloc_hook, and
189 __free_hook in <malloc.h>.])
192 dnl Checks for valgrind/valgrind.h.
193 AC_DEFUN([OVS_CHECK_VALGRIND],
194 [AC_CHECK_HEADERS([valgrind/valgrind.h])])
196 dnl Checks for Python 2.x, x >= 4.
197 AC_DEFUN([OVS_CHECK_PYTHON],
199 [for Python 2.x for x >= 4],
201 [if test -n "$PYTHON"; then
202 ovs_cv_python=$PYTHON
205 for binary in python python2.4 python2.5; do
206 ovs_save_IFS=$IFS; IFS=$PATH_SEPARATOR
209 test -z "$dir" && dir=.
210 if test -x "$dir"/"$binary" && "$dir"/"$binary" -c 'import sys
211 if sys.hexversion >= 0x02040000 and sys.hexversion < 0x03000000:
215 ovs_cv_python=$dir/$binary
221 AC_SUBST([HAVE_PYTHON])
222 AM_MISSING_PROG([PYTHON], [python])
223 if test $ovs_cv_python != no; then
224 PYTHON=$ovs_cv_python
229 AM_CONDITIONAL([HAVE_PYTHON], [test "$HAVE_PYTHON" = yes])])
232 AC_DEFUN([OVS_CHECK_DOT],
236 [dnl "dot" writes -V output to stderr:
237 if (dot -V) 2>&1 | grep '^dot - [[gG]]raphviz version' >/dev/null 2>&1; then
242 AM_CONDITIONAL([HAVE_DOT], [test "$ovs_cv_dot" = yes])])
244 dnl Checks whether $PYTHON supports the module given as $1
245 AC_DEFUN([OVS_CHECK_PYTHON_MODULE],
246 [AC_REQUIRE([OVS_CHECK_PYTHON])
248 [for $1 Python module],
249 [ovs_cv_py_[]AS_TR_SH([$1])],
250 [ovs_cv_py_[]AS_TR_SH([$1])=no
251 if test $HAVE_PYTHON = yes; then
252 AS_ECHO(["running $PYTHON -c 'import $1
254 sys.exit(0)'..."]) >&AS_MESSAGE_LOG_FD 2>&1
255 if $PYTHON -c 'import $1
257 sys.exit(0)' >&AS_MESSAGE_LOG_FD 2>&1; then
258 ovs_cv_py_[]AS_TR_SH([$1])=yes
262 dnl Checks for missing python modules at build time
263 AC_DEFUN([OVS_CHECK_PYTHON_COMPAT],
264 [OVS_CHECK_PYTHON_MODULE([uuid])
265 if test $ovs_cv_py_uuid = yes; then
266 INCLUDE_PYTHON_COMPAT=no
268 INCLUDE_PYTHON_COMPAT=yes
270 AC_MSG_CHECKING([whether to add python/compat to PYTHONPATH])
271 AC_MSG_RESULT([$INCLUDE_PYTHON_COMPAT])
272 AM_CONDITIONAL([INCLUDE_PYTHON_COMPAT], [test $INCLUDE_PYTHON_COMPAT = yes])])
274 dnl Checks for groff.
275 AC_DEFUN([OVS_CHECK_GROFF],
279 [if (groff -v) >/dev/null 2>&1; then
284 AM_CONDITIONAL([HAVE_GROFF], [test "$ovs_cv_groff" = yes])])
286 dnl Checks for thread-local storage support.
288 dnl Checks whether the compiler and linker support the C11
289 dnl thread_local macro from <threads.h>, and if so defines
290 dnl HAVE_THREAD_LOCAL. If not, checks whether the compiler and linker
291 dnl support the GCC __thread extension, and if so defines
293 AC_DEFUN([OVS_CHECK_TLS],
295 [whether $CC has <threads.h> that supports thread_local],
296 [ovs_cv_thread_local],
298 [AC_LANG_PROGRAM([#include <threads.h>
299 static thread_local int var;], [return var;])],
300 [ovs_cv_thread_local=yes],
301 [ovs_cv_thread_local=no])])
302 if test $ovs_cv_thread_local = yes; then
303 AC_DEFINE([HAVE_THREAD_LOCAL], [1],
304 [Define to 1 if the C compiler and linker supports the C11
305 thread_local matcro defined in <threads.h>.])
308 [whether $CC supports __thread],
311 [AC_LANG_PROGRAM([static __thread int var;], [return var;])],
312 [ovs_cv___thread=yes],
313 [ovs_cv___thread=no])])
314 if test $ovs_cv___thread = yes; then
315 AC_DEFINE([HAVE___THREAD], [1],
316 [Define to 1 if the C compiler and linker supports the
317 GCC __thread extenions.])
321 dnl OVS_CHECK_ATOMIC_LIBS
323 dnl Check to see if -latomic is need for GCC atomic built-ins.
324 AC_DEFUN([OVS_CHECK_ATOMIC_LIBS],
325 [AC_SEARCH_LIBS([__atomic_load_8], [atomic])])
327 dnl OVS_CHECK_GCC4_ATOMICS
329 dnl Checks whether the compiler and linker support GCC 4.0+ atomic built-ins.
330 dnl A compile-time only check is not enough because the compiler defers
331 dnl unimplemented built-ins to libgcc, which sometimes also lacks
333 AC_DEFUN([OVS_CHECK_GCC4_ATOMICS],
335 [whether $CC supports GCC 4.0+ atomic built-ins],
336 [ovs_cv_gcc4_atomics],
338 [AC_LANG_PROGRAM([[#include <stdlib.h>
340 #define ovs_assert(expr) if (!(expr)) abort();
341 #define TEST_ATOMIC_TYPE(TYPE) \
346 __sync_synchronize(); \
347 ovs_assert(x == 1); \
349 __sync_synchronize(); \
351 __sync_synchronize(); \
352 ovs_assert(x == 3); \
354 orig = __sync_fetch_and_add(&x, 1); \
355 ovs_assert(orig == 3); \
356 __sync_synchronize(); \
357 ovs_assert(x == 4); \
359 orig = __sync_fetch_and_sub(&x, 2); \
360 ovs_assert(orig == 4); \
361 __sync_synchronize(); \
362 ovs_assert(x == 2); \
364 orig = __sync_fetch_and_or(&x, 6); \
365 ovs_assert(orig == 2); \
366 __sync_synchronize(); \
367 ovs_assert(x == 6); \
369 orig = __sync_fetch_and_and(&x, 10); \
370 ovs_assert(orig == 6); \
371 __sync_synchronize(); \
372 ovs_assert(x == 2); \
374 orig = __sync_fetch_and_xor(&x, 10); \
375 ovs_assert(orig == 2); \
376 __sync_synchronize(); \
377 ovs_assert(x == 8); \
379 TEST_ATOMIC_TYPE(char);
380 TEST_ATOMIC_TYPE(unsigned char);
381 TEST_ATOMIC_TYPE(signed char);
382 TEST_ATOMIC_TYPE(short);
383 TEST_ATOMIC_TYPE(unsigned short);
384 TEST_ATOMIC_TYPE(int);
385 TEST_ATOMIC_TYPE(unsigned int);
386 TEST_ATOMIC_TYPE(long int);
387 TEST_ATOMIC_TYPE(unsigned long int);
388 TEST_ATOMIC_TYPE(long long int);
389 TEST_ATOMIC_TYPE(unsigned long long int);
391 [ovs_cv_gcc4_atomics=yes],
392 [ovs_cv_gcc4_atomics=no])])
393 if test $ovs_cv_gcc4_atomics = yes; then
394 AC_DEFINE([HAVE_GCC4_ATOMICS], [1],
395 [Define to 1 if the C compiler and linker supports the GCC 4.0+
399 dnl OVS_CHECK_ATOMIC_ALWAYS_LOCK_FREE(SIZE)
401 dnl Checks __atomic_always_lock_free(SIZE, 0)
402 AC_DEFUN([OVS_CHECK_ATOMIC_ALWAYS_LOCK_FREE],
404 [value of __atomic_always_lock_free($1)],
405 [ovs_cv_atomic_always_lock_free_$1],
407 [ovs_cv_atomic_always_lock_free_$1],
408 [__atomic_always_lock_free($1, 0)],
410 [ovs_cv_atomic_always_lock_free_$1=unsupported])])
411 if test ovs_cv_atomic_always_lock_free_$1 != unsupported; then
413 [ATOMIC_ALWAYS_LOCK_FREE_$1B],
414 [$ovs_cv_atomic_always_lock_free_$1],
415 [If the C compiler is GCC 4.7 or later, define to the return value of
416 __atomic_always_lock_free($1, 0). If the C compiler is not GCC or is
417 an older version of GCC, the value does not matter.])
420 dnl OVS_CHECK_POSIX_AIO
421 AC_DEFUN([OVS_CHECK_POSIX_AIO],
422 [AC_SEARCH_LIBS([aio_write], [rt])
423 AM_CONDITIONAL([HAVE_POSIX_AIO], [test "$ac_cv_search_aio_write" != no])])
425 dnl OVS_CHECK_INCLUDE_NEXT
426 AC_DEFUN([OVS_CHECK_INCLUDE_NEXT],
427 [AC_REQUIRE([gl_CHECK_NEXT_HEADERS])
428 gl_CHECK_NEXT_HEADERS([$1])])