]> git.proxmox.com Git - mirror_ovs.git/blame - configure.ac
lib/rstp: Remove a dead store.
[mirror_ovs.git] / configure.ac
CommitLineData
7868fbc6 1# Copyright (c) 2008, 2009, 2010, 2011, 2012, 2013, 2014 Nicira, Inc.
064af421 2#
a14bc59f
BP
3# Licensed under the Apache License, Version 2.0 (the "License");
4# you may not use this file except in compliance with the License.
5# You may obtain a copy of the License at:
064af421 6#
a14bc59f
BP
7# http://www.apache.org/licenses/LICENSE-2.0
8#
9# Unless required by applicable law or agreed to in writing, software
10# distributed under the License is distributed on an "AS IS" BASIS,
11# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12# See the License for the specific language governing permissions and
13# limitations under the License.
064af421 14
0877a018 15AC_PREREQ(2.63)
2c7ea589 16AC_INIT(openvswitch, 2.3.90, bugs@openvswitch.org)
064af421
BP
17AC_CONFIG_SRCDIR([datapath/datapath.c])
18AC_CONFIG_MACRO_DIR([m4])
19AC_CONFIG_AUX_DIR([build-aux])
20AC_CONFIG_HEADERS([config.h])
1b233b95 21AC_CONFIG_TESTDIR([tests])
833d8dfe 22AM_INIT_AUTOMAKE([tar-pax])
064af421 23
0471423a 24AC_PROG_CC_C99
064af421
BP
25AM_PROG_CC_C_O
26AC_PROG_CPP
064af421 27AC_PROG_MKDIR_P
c92647a4 28AC_PROG_FGREP
4958e3ee 29AC_PROG_EGREP
064af421
BP
30
31AC_ARG_VAR([PERL], [path to Perl interpreter])
32AC_PATH_PROG([PERL], perl, no)
33if test "$PERL" = no; then
34 AC_MSG_ERROR([Perl interpreter not found in $PATH or $PERL.])
35fi
36
4210c33b 37AM_MISSING_PROG([AUTOM4TE], [autom4te])
7fd3e43d 38
064af421
BP
39AC_USE_SYSTEM_EXTENSIONS
40AC_C_BIGENDIAN
41AC_SYS_LARGEFILE
42
38b7a52b 43LT_INIT([disable-shared])
32015a3f
BP
44m4_pattern_forbid([LT_INIT]) dnl Make autoconf fail if libtool is missing.
45
7f2f24e3
SM
46# The following explanation may help to understand the use of the
47# version number fields: current, revision, and age.
48#
49# Consider that there are three possible kinds of reactions from
50# users of your library to changes in a shared library:
51#
52# 1. Programs using the previous version may use the new version as drop-in
53# replacement, and programs using the new version can also work with the
54# previous one. In other words, no recompiling nor relinking is needed.
55# In short, there are no changes to any symbols, no symbols removed,
56# and no symbols added. In this case, bump revision only, don't touch
57# current nor age.
58#
59# 2. Programs using the previous version may use the new version as drop-in
60# replacement, but programs using the new version may use APIs not
61# present in the previous one. In other words, new symbols have been
62# added and a program linking against the new version may fail with
63# “unresolved symbols.” If linking against the old version at runtime:
64# set revision to 0, bump current and age.
65#
66# 3. Programs may need to be changed, recompiled, relinked in order to use
67# the new version. This is the case when symbols have been modified or
68# deleted. Bump current, set revision and age to 0.
69
70m4_define([libopenvswitch_lt_current], [1])
71m4_define([libopenvswitch_lt_revision], [0])
72m4_define([libopenvswitch_lt_age], [0])
73
74LT_CURRENT=libopenvswitch_lt_current
75AC_SUBST([LT_CURRENT])
76LT_REVISION=libopenvswitch_lt_revision
77AC_SUBST([LT_REVISION])
78LT_AGE=libopenvswitch_lt_age
79AC_SUBST([LT_AGE])
80
f38b84ea 81AC_SEARCH_LIBS([pow], [m])
c73814a3 82AC_SEARCH_LIBS([clock_gettime], [rt])
6ca00f6f 83AC_SEARCH_LIBS([timer_create], [rt])
8e85e037 84AC_SEARCH_LIBS([pthread_sigmask], [pthread])
5fcbed74 85AC_FUNC_STRERROR_R
f38b84ea 86
361906b1 87OVS_CHECK_ESX
db6964bb 88OVS_CHECK_WIN32
bd9d7025 89OVS_CHECK_VISUAL_STUDIO_DDK
c2b07021 90OVS_CHECK_COVERAGE
064af421
BP
91OVS_CHECK_NDEBUG
92OVS_CHECK_NETLINK
93OVS_CHECK_OPENSSL
94OVS_CHECK_LOGDIR
3b135da3 95OVS_CHECK_PYTHON
9b4a5392 96OVS_CHECK_PYTHON_COMPAT
7c9b0073 97OVS_CHECK_DOT
064af421 98OVS_CHECK_IF_PACKET
9360d9b7 99OVS_CHECK_IF_DL
e50097d2 100OVS_CHECK_STRTOK_R
22c4e104 101AC_CHECK_DECLS([sys_siglist], [], [], [[#include <signal.h>]])
9cb07887
BP
102AC_CHECK_MEMBERS([struct stat.st_mtim.tv_nsec, struct stat.st_mtimensec],
103 [], [], [[#include <sys/stat.h>]])
666afb55 104AC_CHECK_MEMBERS([struct ifreq.ifr_flagshigh], [], [], [[#include <net/if.h>]])
8a8cd0ac 105AC_CHECK_FUNCS([mlockall strnlen getloadavg statvfs getmntent_r])
31a3fc6e 106AC_CHECK_HEADERS([mntent.h sys/statvfs.h linux/types.h linux/if_ether.h stdatomic.h])
db273f62
EM
107AC_CHECK_HEADERS([net/if_mib.h], [], [], [[#include <sys/types.h>
108#include <net/if.h>]])
064af421 109
31a7c9e7
BP
110OVS_CHECK_PKIDIR
111OVS_CHECK_RUNDIR
f973f2af 112OVS_CHECK_DBDIR
0e6644c3 113OVS_CHECK_BACKTRACE
31a7c9e7 114OVS_CHECK_VALGRIND
31a7c9e7 115OVS_CHECK_SOCKET_LIBS
ed2d4f6a 116OVS_CHECK_XENSERVER_VERSION
0027492d 117OVS_CHECK_GROFF
b4e1bf8b 118OVS_CHECK_GNU_MAKE
c22095a5 119OVS_CHECK_TLS
fd2e50cd 120OVS_CHECK_ATOMIC_LIBS
15248032 121OVS_CHECK_GCC4_ATOMICS
31a3fc6e
BP
122OVS_CHECK_ATOMIC_ALWAYS_LOCK_FREE(1)
123OVS_CHECK_ATOMIC_ALWAYS_LOCK_FREE(2)
124OVS_CHECK_ATOMIC_ALWAYS_LOCK_FREE(4)
125OVS_CHECK_ATOMIC_ALWAYS_LOCK_FREE(8)
97eba8fc 126OVS_CHECK_POSIX_AIO
8a8cd0ac 127OVS_CHECK_PTHREAD_SET_NAME
5020f5f0 128OVS_CHECK_LINUX_HOST
3dc62a6c 129AX_FUNC_POSIX_MEMALIGN
064af421 130
cde1c287 131OVS_CHECK_INCLUDE_NEXT([stdio.h string.h])
7f2f24e3
SM
132AC_CONFIG_FILES([
133 lib/stdio.h
134 lib/string.h
135 ovsdb/libovsdb.sym
136 ofproto/libofproto.sym
137 lib/libsflow.sym
973edd6e
DDP
138 lib/libopenvswitch.sym
139 vtep/libvtep.sym])
4e857508 140
31a7c9e7 141OVS_ENABLE_OPTION([-Wall])
9b437f0f 142OVS_ENABLE_OPTION([-Wextra])
31a7c9e7
BP
143OVS_ENABLE_OPTION([-Wno-sign-compare])
144OVS_ENABLE_OPTION([-Wpointer-arith])
31a7c9e7 145OVS_ENABLE_OPTION([-Wformat-security])
d710edc4 146OVS_ENABLE_OPTION([-Wno-format-zero-length])
31a7c9e7
BP
147OVS_ENABLE_OPTION([-Wswitch-enum])
148OVS_ENABLE_OPTION([-Wunused-parameter])
31a7c9e7
BP
149OVS_ENABLE_OPTION([-Wbad-function-cast])
150OVS_ENABLE_OPTION([-Wcast-align])
151OVS_ENABLE_OPTION([-Wstrict-prototypes])
152OVS_ENABLE_OPTION([-Wold-style-definition])
153OVS_ENABLE_OPTION([-Wmissing-prototypes])
154OVS_ENABLE_OPTION([-Wmissing-field-initializers])
97be1538 155OVS_ENABLE_OPTION([-Wthread-safety])
538919d3 156OVS_ENABLE_OPTION([-fno-strict-aliasing])
c72e245a 157OVS_CONDITIONAL_CC_OPTION([-Wno-unused], [HAVE_WNO_UNUSED])
52af5b99 158OVS_CONDITIONAL_CC_OPTION([-Wno-unused-parameter], [HAVE_WNO_UNUSED_PARAMETER])
a64e37a1 159OVS_ENABLE_WERROR
29d935d6 160OVS_ENABLE_SPARSE
064af421
BP
161
162AC_ARG_VAR(KARCH, [Kernel Architecture String])
163AC_SUBST(KARCH)
e3438006 164OVS_CHECK_LINUX
8a9562d2 165OVS_CHECK_DPDK
aa8ea223 166OVS_CHECK_PRAGMA_MESSAGE
95626395
TG
167AC_SUBST([OVS_CFLAGS])
168AC_SUBST([OVS_LDFLAGS])
064af421 169
954d706e
GS
170AC_CONFIG_FILES(Makefile)
171AC_CONFIG_FILES(datapath/Makefile)
172AC_CONFIG_FILES(datapath/linux/Kbuild)
173AC_CONFIG_FILES(datapath/linux/Makefile)
174AC_CONFIG_FILES(datapath/linux/Makefile.main)
175AC_CONFIG_FILES(tests/atlocal)
81696de0 176AC_CONFIG_FILES(lib/libopenvswitch.pc)
e72e07a9 177AC_CONFIG_FILES(lib/libsflow.pc)
b82b1573 178AC_CONFIG_FILES(ofproto/libofproto.pc)
32fe2cfb 179AC_CONFIG_FILES(ovsdb/libovsdb.pc)
3f47a0c5 180AC_CONFIG_FILES(include/openvswitch/version.h)
064af421 181
05b3c97b
BP
182dnl This makes sure that include/openflow gets created in the build directory.
183AC_CONFIG_COMMANDS([include/openflow/openflow.h.stamp])
184
b2df0225 185AC_CONFIG_COMMANDS([utilities/bugtool/dummy], [:])
436f27dd 186
743f8109
EJ
187m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES])
188
064af421 189AC_OUTPUT