6d4e5da9c27ebc665af3296793f975c843685272
[cascardo/ovs.git] / m4 / openvswitch.m4
1 # -*- autoconf -*-
2
3 # Copyright (c) 2008, 2009, 2010, 2011, 2012, 2013, 2014, 2015 Nicira, Inc.
4 #
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:
8 #
9 #     http://www.apache.org/licenses/LICENSE-2.0
10 #
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.
16 #
17 m4_include([m4/compat.at])
18
19 dnl Checks for --enable-coverage and updates CFLAGS and LDFLAGS appropriately.
20 AC_DEFUN([OVS_CHECK_COVERAGE],
21   [AC_REQUIRE([AC_PROG_CC])
22    AC_ARG_ENABLE(
23      [coverage],
24      [AC_HELP_STRING([--enable-coverage],
25                      [Enable gcov coverage tool.])],
26      [case "${enableval}" in
27         (yes) coverage=true ;;
28         (no)  coverage=false ;;
29         (*) AC_MSG_ERROR([bad value ${enableval} for --enable-coverage]) ;;
30       esac],
31      [coverage=false])
32    if $coverage; then
33      # Autoconf by default puts "-g -O2" in CFLAGS.  We need to remove the -O2
34      # option for coverage to be useful.  This does it without otherwise
35      # interfering with anything that the user might have put there.
36      old_CFLAGS=$CFLAGS
37      CFLAGS=
38      for option in $old_CFLAGS; do
39         case $option in
40             (-O2) ;;
41             (*) CFLAGS="$CFLAGS $option" ;;
42         esac
43      done
44
45      OVS_CFLAGS="$OVS_CFLAGS --coverage"
46      OVS_LDFLAGS="$OVS_LDFLAGS --coverage"
47    fi])
48
49 dnl Checks for --enable-ndebug and defines NDEBUG if it is specified.
50 AC_DEFUN([OVS_CHECK_NDEBUG],
51   [AC_ARG_ENABLE(
52      [ndebug],
53      [AC_HELP_STRING([--enable-ndebug],
54                      [Disable debugging features for max performance])],
55      [case "${enableval}" in
56         (yes) ndebug=true ;;
57         (no)  ndebug=false ;;
58         (*) AC_MSG_ERROR([bad value ${enableval} for --enable-ndebug]) ;;
59       esac],
60      [ndebug=false])
61    AM_CONDITIONAL([NDEBUG], [test x$ndebug = xtrue])])
62
63 dnl Checks for ESX.
64 AC_DEFUN([OVS_CHECK_ESX],
65   [AC_CHECK_HEADER([vmware.h],
66                    [ESX=yes],
67                    [ESX=no])
68    AM_CONDITIONAL([ESX], [test "$ESX" = yes])
69    if test "$ESX" = yes; then
70       AC_DEFINE([ESX], [1], [Define to 1 if building on ESX.])
71    fi])
72
73 dnl Checks for MSVC x64 compiler.
74 AC_DEFUN([OVS_CHECK_WIN64],
75   [AC_CACHE_CHECK(
76     [for MSVC x64 compiler],
77     [cl_cv_x64],
78     [dnl "cl" writes x64 output to stdin:
79      if (cl) 2>&1 | grep 'x64' >/dev/null 2>&1; then
80        cl_cv_x64=yes
81        MSVC64_LDFLAGS=" /MACHINE:X64 "
82      else
83        cl_cv_x64=no
84        MSVC64_LDFLAGS=""
85      fi])
86      AC_SUBST([MSVC64_LDFLAGS])
87 ])
88
89 dnl Checks for WINDOWS.
90 AC_DEFUN([OVS_CHECK_WIN32],
91   [AC_CHECK_HEADER([windows.h],
92                    [WIN32=yes],
93                    [WIN32=no])
94    AM_CONDITIONAL([WIN32], [test "$WIN32" = yes])
95    if test "$WIN32" = yes; then
96       AC_ARG_WITH([pthread],
97          [AS_HELP_STRING([--with-pthread=DIR],
98             [root of the pthread-win32 directory])],
99          [
100             case "$withval" in
101             "" | y | ye | yes | n | no)
102             AC_MSG_ERROR([Invalid --with-pthread value])
103               ;;
104             *)
105             if (cl) 2>&1 | grep 'x64' >/dev/null 2>&1; then
106               cl_cv_x64=yes
107             else
108               cl_cv_x64=no
109             fi
110             if test "$cl_cv_x64" = yes; then
111                 PTHREAD_WIN32_DIR=$withval/lib/x64
112                 PTHREAD_WIN32_DIR_DLL=/$(echo ${withval} | ${SED} -e 's/://')/dll/x64
113                 PTHREAD_WIN32_DIR_DLL_WIN_FORM=$withval/dll/x64
114             else
115                 PTHREAD_WIN32_DIR=$withval/lib/x86
116                 PTHREAD_WIN32_DIR_DLL=/$(echo ${withval} | ${SED} -e 's/://')/dll/x86
117                 PTHREAD_WIN32_DIR_DLL_WIN_FORM=$withval/dll/x86
118             fi
119             PTHREAD_INCLUDES=-I$withval/include
120             PTHREAD_LDFLAGS=-L$PTHREAD_WIN32_DIR
121             PTHREAD_LIBS="-lpthreadVC2"
122             AC_SUBST([PTHREAD_WIN32_DIR_DLL_WIN_FORM])
123             AC_SUBST([PTHREAD_WIN32_DIR_DLL])
124             AC_SUBST([PTHREAD_INCLUDES])
125             AC_SUBST([PTHREAD_LDFLAGS])
126             AC_SUBST([PTHREAD_LIBS])
127               ;;
128             esac
129          ], [
130             AC_MSG_ERROR([pthread directory not specified])
131          ]
132       )
133       AC_ARG_WITH([debug],
134          [AS_HELP_STRING([--with-debug],
135             [Build without compiler optimizations])],
136          [
137             MSVC_CFLAGS="-O0"
138             AC_SUBST([MSVC_CFLAGS])
139          ], [
140             MSVC_CFLAGS="-O2"
141             AC_SUBST([MSVC_CFLAGS])
142          ]
143       )
144
145       AC_DEFINE([WIN32], [1], [Define to 1 if building on WIN32.])
146       AH_BOTTOM([#ifdef WIN32
147 #include "include/windows/windefs.h"
148 #endif])
149    fi])
150
151 dnl OVS_CHECK_WINDOWS
152 dnl
153 dnl Configure Visual Studio solution build
154 AC_DEFUN([OVS_CHECK_VISUAL_STUDIO_DDK], [
155 AC_ARG_WITH([vstudiotarget],
156          [AS_HELP_STRING([--with-vstudiotarget=target_type],
157             [Target type: Debug/Release])],
158          [
159             case "$withval" in
160             "Release") ;;
161             "Debug") ;;
162             *) AC_MSG_ERROR([No valid Visual Studio configuration found]) ;;
163             esac
164
165             VSTUDIO_CONFIG=$withval
166          ], [
167             VSTUDIO_CONFIG=
168          ]
169       )
170
171   AC_SUBST([VSTUDIO_CONFIG])
172   AC_DEFINE([VSTUDIO_DDK], [1], [System uses the Visual Studio build target.])
173   AM_CONDITIONAL([VSTUDIO_DDK], [test -n "$VSTUDIO_CONFIG"])
174 ])
175
176 dnl Checks for Netlink support.
177 AC_DEFUN([OVS_CHECK_NETLINK],
178   [AC_CHECK_HEADER([linux/netlink.h],
179                    [HAVE_NETLINK=yes],
180                    [HAVE_NETLINK=no],
181                    [#include <sys/socket.h>
182    ])
183    AM_CONDITIONAL([HAVE_NETLINK], [test "$HAVE_NETLINK" = yes])
184    if test "$HAVE_NETLINK" = yes; then
185       AC_DEFINE([HAVE_NETLINK], [1],
186                 [Define to 1 if Netlink protocol is available.])
187    fi])
188
189 dnl Checks for libcap-ng.
190 AC_DEFUN([OVS_CHECK_LIBCAPNG],
191   [AC_ARG_ENABLE(
192      [libcapng],
193      [AC_HELP_STRING([--disable-libcapng], [Disable Linux capability support])],
194      [case "${enableval}" in
195         (yes) libcapng=true ;;
196         (no)  libcapng=false ;;
197         (*) AC_MSG_ERROR([bad value ${enableval} for --enable-libcapng]) ;;
198       esac],
199      [libcapng=check])
200
201    if test "$libcapng" != false; then
202        AC_CHECK_LIB([cap-ng], [capng_clear], [HAVE_LIBCAPNG=yes])
203
204        if test "$HAVE_LIBCAPNG" != yes; then
205            if test "$libcapng" = true ; then
206                 AC_MSG_ERROR([libcap-ng support requested, but not found])
207            fi
208            if test "$libcapng" = check ; then
209                  AC_MSG_WARN([cannot find libcap-ng.
210 --user option will not be supported on Linux.
211 (you may use --disable-libcapng to suppress this warning). ])
212            fi
213        fi
214    fi
215
216    AC_SUBST([HAVE_LIBCAPNG])
217    AM_CONDITIONAL([HAVE_LIBCAPNG], [test "$HAVE_LIBCAPNG" = yes])
218    if test "$HAVE_LIBCAPNG" = yes; then
219       AC_DEFINE([HAVE_LIBCAPNG], [1],
220                 [Define to 1 if libcap-ng is available.])
221       CAPNG_LDADD="-lcap-ng"
222       AC_SUBST([CAPNG_LDADD])
223    fi])
224
225 dnl Checks for OpenSSL.
226 AC_DEFUN([OVS_CHECK_OPENSSL],
227   [AC_ARG_ENABLE(
228      [ssl],
229      [AC_HELP_STRING([--disable-ssl], [Disable OpenSSL support])],
230      [case "${enableval}" in
231         (yes) ssl=true ;;
232         (no)  ssl=false ;;
233         (*) AC_MSG_ERROR([bad value ${enableval} for --enable-ssl]) ;;
234       esac],
235      [ssl=check])
236
237    if test "$ssl" != false; then
238        AX_CHECK_OPENSSL(
239          [HAVE_OPENSSL=yes],
240          [HAVE_OPENSSL=no
241           if test "$ssl" = check; then
242             AC_MSG_WARN([Cannot find openssl:
243
244 $SSL_PKG_ERRORS
245
246 OpenFlow connections over SSL will not be supported.
247 (You may use --disable-ssl to suppress this warning.)])
248           else
249             AC_MSG_ERROR([Cannot find openssl (use --disable-ssl to configure without SSL support)])
250           fi])
251    else
252        HAVE_OPENSSL=no
253    fi
254    AC_SUBST([HAVE_OPENSSL])
255    AM_CONDITIONAL([HAVE_OPENSSL], [test "$HAVE_OPENSSL" = yes])
256    if test "$HAVE_OPENSSL" = yes; then
257       AC_DEFINE([HAVE_OPENSSL], [1], [Define to 1 if OpenSSL is installed.])
258    fi])
259
260 dnl Checks for libraries needed by lib/socket-util.c.
261 AC_DEFUN([OVS_CHECK_SOCKET_LIBS],
262   [AC_CHECK_LIB([socket], [connect])
263    AC_SEARCH_LIBS([gethostbyname], [resolv])])
264
265 dnl Checks for the directory in which to store the PKI.
266 AC_DEFUN([OVS_CHECK_PKIDIR],
267   [AC_ARG_WITH(
268      [pkidir],
269      AC_HELP_STRING([--with-pkidir=DIR],
270                     [PKI hierarchy directory [[LOCALSTATEDIR/lib/openvswitch/pki]]]),
271      [PKIDIR=$withval],
272      [PKIDIR='${localstatedir}/lib/openvswitch/pki'])
273    AC_SUBST([PKIDIR])])
274
275 dnl Checks for the directory in which to store pidfiles.
276 AC_DEFUN([OVS_CHECK_RUNDIR],
277   [AC_ARG_WITH(
278      [rundir],
279      AC_HELP_STRING([--with-rundir=DIR],
280                     [directory used for pidfiles
281                     [[LOCALSTATEDIR/run/openvswitch]]]),
282      [RUNDIR=$withval],
283      [RUNDIR='${localstatedir}/run/openvswitch'])
284    AC_SUBST([RUNDIR])])
285
286 dnl Checks for the directory in which to store logs.
287 AC_DEFUN([OVS_CHECK_LOGDIR],
288   [AC_ARG_WITH(
289      [logdir],
290      AC_HELP_STRING([--with-logdir=DIR],
291                     [directory used for logs [[LOCALSTATEDIR/log/PACKAGE]]]),
292      [LOGDIR=$withval],
293      [LOGDIR='${localstatedir}/log/${PACKAGE}'])
294    AC_SUBST([LOGDIR])])
295
296 dnl Checks for the directory in which to store the Open vSwitch database.
297 AC_DEFUN([OVS_CHECK_DBDIR],
298   [AC_ARG_WITH(
299      [dbdir],
300      AC_HELP_STRING([--with-dbdir=DIR],
301                     [directory used for conf.db [[SYSCONFDIR/PACKAGE]]]),
302      [DBDIR=$withval],
303      [DBDIR='${sysconfdir}/${PACKAGE}'])
304    AC_SUBST([DBDIR])])
305
306 dnl Defines HAVE_BACKTRACE if backtrace() is found.
307 AC_DEFUN([OVS_CHECK_BACKTRACE],
308   [AC_SEARCH_LIBS([backtrace], [execinfo ubacktrace],
309                   [AC_DEFINE([HAVE_BACKTRACE], [1],
310                              [Define to 1 if you have backtrace(3).])])])
311
312 dnl Defines HAVE_PERF_EVENT if linux/perf_event.h is found.
313 AC_DEFUN([OVS_CHECK_PERF_EVENT],
314   [AC_CHECK_HEADERS([linux/perf_event.h])])
315
316 dnl Checks for valgrind/valgrind.h.
317 AC_DEFUN([OVS_CHECK_VALGRIND],
318   [AC_CHECK_HEADERS([valgrind/valgrind.h])])
319
320 dnl Checks for Python 2.x, x >= 7.
321 AC_DEFUN([OVS_CHECK_PYTHON],
322   [AC_CACHE_CHECK(
323      [for Python 2.x for x >= 7],
324      [ovs_cv_python],
325      [if test -n "$PYTHON"; then
326         ovs_cv_python=$PYTHON
327       else
328         ovs_cv_python=no
329         for binary in python python2.7; do
330           ovs_save_IFS=$IFS; IFS=$PATH_SEPARATOR
331           for dir in $PATH; do
332             IFS=$ovs_save_IFS
333             test -z "$dir" && dir=.
334             if test -x "$dir"/"$binary" && "$dir"/"$binary" -c 'import sys
335 if sys.hexversion >= 0x02070000 and sys.hexversion < 0x03000000:
336     sys.exit(0)
337 else:
338     sys.exit(1)'; then
339               ovs_cv_python=$dir/$binary
340               break 2
341             fi
342           done
343         done
344       fi])
345    AC_SUBST([HAVE_PYTHON])
346    AM_MISSING_PROG([PYTHON], [python])
347    if test $ovs_cv_python != no; then
348      PYTHON=$ovs_cv_python
349      HAVE_PYTHON=yes
350    else
351      HAVE_PYTHON=no
352    fi
353    AM_CONDITIONAL([HAVE_PYTHON], [test "$HAVE_PYTHON" = yes])])
354
355 dnl Checks for dot.
356 AC_DEFUN([OVS_CHECK_FLAKE8],
357   [AC_CACHE_CHECK(
358     [for flake8],
359     [ovs_cv_flake8],
360     [if flake8 --version >/dev/null 2>&1; then
361        ovs_cv_flake8=yes
362      else
363        ovs_cv_flake8=no
364      fi])
365    AM_CONDITIONAL([HAVE_FLAKE8], [test "$ovs_cv_flake8" = yes])])
366
367 dnl Checks for dot.
368 AC_DEFUN([OVS_CHECK_DOT],
369   [AC_CACHE_CHECK(
370     [for dot],
371     [ovs_cv_dot],
372     [dnl "dot" writes -V output to stderr:
373      if (dot -V) 2>&1 | grep '^dot - [[gG]]raphviz version' >/dev/null 2>&1; then
374        ovs_cv_dot=yes
375      else
376        ovs_cv_dot=no
377      fi])
378    AM_CONDITIONAL([HAVE_DOT], [test "$ovs_cv_dot" = yes])])
379
380 dnl Checks for groff.
381 AC_DEFUN([OVS_CHECK_GROFF],
382   [AC_CACHE_CHECK(
383     [for groff],
384     [ovs_cv_groff],
385     [if (groff -v) >/dev/null 2>&1; then
386        ovs_cv_groff=yes
387      else
388        ovs_cv_groff=no
389      fi])
390    AM_CONDITIONAL([HAVE_GROFF], [test "$ovs_cv_groff" = yes])])
391
392 dnl Checks for thread-local storage support.
393 dnl
394 dnl Checks whether the compiler and linker support the C11
395 dnl thread_local macro from <threads.h>, and if so defines
396 dnl HAVE_THREAD_LOCAL.  If not, checks whether the compiler and linker
397 dnl support the GCC __thread extension, and if so defines
398 dnl HAVE___THREAD.
399 AC_DEFUN([OVS_CHECK_TLS],
400   [AC_CACHE_CHECK(
401      [whether $CC has <threads.h> that supports thread_local],
402      [ovs_cv_thread_local],
403      [AC_LINK_IFELSE(
404         [AC_LANG_PROGRAM([#include <threads.h>
405 static thread_local int var;], [return var;])],
406         [ovs_cv_thread_local=yes],
407         [ovs_cv_thread_local=no])])
408    if test $ovs_cv_thread_local = yes; then
409      AC_DEFINE([HAVE_THREAD_LOCAL], [1],
410                [Define to 1 if the C compiler and linker supports the C11
411                 thread_local matcro defined in <threads.h>.])
412    else
413      AC_CACHE_CHECK(
414        [whether $CC supports __thread],
415        [ovs_cv___thread],
416        [AC_LINK_IFELSE(
417           [AC_LANG_PROGRAM([static __thread int var;], [return var;])],
418           [ovs_cv___thread=yes],
419           [ovs_cv___thread=no])])
420      if test $ovs_cv___thread = yes; then
421        AC_DEFINE([HAVE___THREAD], [1],
422                  [Define to 1 if the C compiler and linker supports the
423                   GCC __thread extenions.])
424      fi
425    fi])
426
427 dnl OVS_CHECK_ATOMIC_LIBS
428 dnl
429 dnl Check to see if -latomic is need for GCC atomic built-ins.
430 AC_DEFUN([OVS_CHECK_ATOMIC_LIBS],
431    [AC_SEARCH_LIBS([__atomic_load_8], [atomic])])
432
433 dnl OVS_CHECK_GCC4_ATOMICS
434 dnl
435 dnl Checks whether the compiler and linker support GCC 4.0+ atomic built-ins.
436 dnl A compile-time only check is not enough because the compiler defers
437 dnl unimplemented built-ins to libgcc, which sometimes also lacks
438 dnl implementations.
439 AC_DEFUN([OVS_CHECK_GCC4_ATOMICS],
440   [AC_CACHE_CHECK(
441      [whether $CC supports GCC 4.0+ atomic built-ins],
442      [ovs_cv_gcc4_atomics],
443      [AC_LINK_IFELSE(
444         [AC_LANG_PROGRAM([[#include <stdlib.h>
445
446 #define ovs_assert(expr) if (!(expr)) abort();
447 #define TEST_ATOMIC_TYPE(TYPE)                  \
448     {                                           \
449         TYPE x = 1;                             \
450         TYPE orig;                              \
451                                                 \
452         __sync_synchronize();                   \
453         ovs_assert(x == 1);                     \
454                                                 \
455         __sync_synchronize();                   \
456         x = 3;                                  \
457         __sync_synchronize();                   \
458         ovs_assert(x == 3);                     \
459                                                 \
460         orig = __sync_fetch_and_add(&x, 1);     \
461         ovs_assert(orig == 3);                  \
462         __sync_synchronize();                   \
463         ovs_assert(x == 4);                     \
464                                                 \
465         orig = __sync_fetch_and_sub(&x, 2);     \
466         ovs_assert(orig == 4);                  \
467         __sync_synchronize();                   \
468         ovs_assert(x == 2);                     \
469                                                 \
470         orig = __sync_fetch_and_or(&x, 6);      \
471         ovs_assert(orig == 2);                  \
472         __sync_synchronize();                   \
473         ovs_assert(x == 6);                     \
474                                                 \
475         orig = __sync_fetch_and_and(&x, 10);    \
476         ovs_assert(orig == 6);                  \
477         __sync_synchronize();                   \
478         ovs_assert(x == 2);                     \
479                                                 \
480         orig = __sync_fetch_and_xor(&x, 10);    \
481         ovs_assert(orig == 2);                  \
482         __sync_synchronize();                   \
483         ovs_assert(x == 8);                     \
484     }]], [dnl
485 TEST_ATOMIC_TYPE(char);
486 TEST_ATOMIC_TYPE(unsigned char);
487 TEST_ATOMIC_TYPE(signed char);
488 TEST_ATOMIC_TYPE(short);
489 TEST_ATOMIC_TYPE(unsigned short);
490 TEST_ATOMIC_TYPE(int);
491 TEST_ATOMIC_TYPE(unsigned int);
492 TEST_ATOMIC_TYPE(long int);
493 TEST_ATOMIC_TYPE(unsigned long int);
494 TEST_ATOMIC_TYPE(long long int);
495 TEST_ATOMIC_TYPE(unsigned long long int);
496 ])],
497         [ovs_cv_gcc4_atomics=yes],
498         [ovs_cv_gcc4_atomics=no])])
499    if test $ovs_cv_gcc4_atomics = yes; then
500      AC_DEFINE([HAVE_GCC4_ATOMICS], [1],
501                [Define to 1 if the C compiler and linker supports the GCC 4.0+
502                 atomic built-ins.])
503    fi])
504
505 dnl OVS_CHECK_ATOMIC_ALWAYS_LOCK_FREE(SIZE)
506 dnl
507 dnl Checks __atomic_always_lock_free(SIZE, 0)
508 AC_DEFUN([OVS_CHECK_ATOMIC_ALWAYS_LOCK_FREE], 
509   [AC_CACHE_CHECK(
510     [value of __atomic_always_lock_free($1)],
511     [ovs_cv_atomic_always_lock_free_$1],
512     [AC_COMPUTE_INT(
513         [ovs_cv_atomic_always_lock_free_$1],
514         [__atomic_always_lock_free($1, 0)],
515         [],
516         [ovs_cv_atomic_always_lock_free_$1=unsupported])])
517    if test ovs_cv_atomic_always_lock_free_$1 != unsupported; then
518      AC_DEFINE_UNQUOTED(
519        [ATOMIC_ALWAYS_LOCK_FREE_$1B],
520        [$ovs_cv_atomic_always_lock_free_$1],
521        [If the C compiler is GCC 4.7 or later, define to the return value of
522         __atomic_always_lock_free($1, 0).  If the C compiler is not GCC or is
523         an older version of GCC, the value does not matter.])
524    fi])
525
526 dnl OVS_CHECK_POSIX_AIO
527 AC_DEFUN([OVS_CHECK_POSIX_AIO],
528   [AC_SEARCH_LIBS([aio_write], [rt])
529    AM_CONDITIONAL([HAVE_POSIX_AIO], [test "$ac_cv_search_aio_write" != no])])
530
531 dnl OVS_CHECK_INCLUDE_NEXT
532 AC_DEFUN([OVS_CHECK_INCLUDE_NEXT],
533   [AC_REQUIRE([gl_CHECK_NEXT_HEADERS])
534    gl_CHECK_NEXT_HEADERS([$1])])
535
536 dnl OVS_CHECK_PRAGMA_MESSAGE
537 AC_DEFUN([OVS_CHECK_PRAGMA_MESSAGE],
538   [AC_COMPILE_IFELSE([AC_LANG_PROGRAM(
539    [[_Pragma("message(\"Checking for pragma message\")")
540    ]])],
541      [AC_DEFINE(HAVE_PRAGMA_MESSAGE,1,[Define if compiler supports #pragma
542      message directive])])
543   ])