1 # Copyright (c) 2008, 2009, 2010, 2011 Nicira Networks
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:
7 # http://www.apache.org/licenses/LICENSE-2.0
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.
16 AC_INIT(openvswitch, 1.6.90, ovs-bugs@openvswitch.org)
18 AC_CONFIG_SRCDIR([datapath/datapath.c])
19 AC_CONFIG_MACRO_DIR([m4])
20 AC_CONFIG_AUX_DIR([build-aux])
21 AC_CONFIG_HEADERS([config.h])
22 AC_CONFIG_TESTDIR([tests])
32 AC_ARG_VAR([PERL], [path to Perl interpreter])
33 AC_PATH_PROG([PERL], perl, no)
34 if test "$PERL" = no; then
35 AC_MSG_ERROR([Perl interpreter not found in $PATH or $PERL.])
38 AC_USE_SYSTEM_EXTENSIONS
42 AC_SEARCH_LIBS([pow], [m])
43 AC_SEARCH_LIBS([clock_gettime], [rt])
44 AC_SEARCH_LIBS([timer_create], [rt])
53 OVS_CHECK_OVSDBMONITOR
57 AC_CHECK_MEMBERS([struct stat.st_mtim.tv_nsec, struct stat.st_mtimensec],
58 [], [], [[#include <sys/stat.h>]])
59 AC_CHECK_FUNCS([mlockall strnlen strsignal getloadavg statvfs setmntent])
60 AC_CHECK_HEADERS([mntent.h sys/statvfs.h linux/types.h])
65 OVS_CHECK_MALLOC_HOOKS
68 OVS_CHECK_LINKER_SECTIONS
69 OVS_CHECK_XENSERVER_VERSION
72 OVS_ENABLE_OPTION([-Wall])
73 OVS_ENABLE_OPTION([-Wno-sign-compare])
74 OVS_ENABLE_OPTION([-Wpointer-arith])
75 OVS_ENABLE_OPTION([-Wdeclaration-after-statement])
76 OVS_ENABLE_OPTION([-Wformat-security])
77 OVS_ENABLE_OPTION([-Wswitch-enum])
78 OVS_ENABLE_OPTION([-Wunused-parameter])
79 OVS_ENABLE_OPTION([-Wstrict-aliasing])
80 OVS_ENABLE_OPTION([-Wbad-function-cast])
81 OVS_ENABLE_OPTION([-Wcast-align])
82 OVS_ENABLE_OPTION([-Wstrict-prototypes])
83 OVS_ENABLE_OPTION([-Wold-style-definition])
84 OVS_ENABLE_OPTION([-Wmissing-prototypes])
85 OVS_ENABLE_OPTION([-Wmissing-field-initializers])
86 OVS_ENABLE_OPTION([-Wno-override-init])
87 OVS_CONDITIONAL_CC_OPTION([-Wno-unused], [HAVE_WNO_UNUSED])
88 OVS_CONDITIONAL_CC_OPTION([-Wno-unused-parameter], [HAVE_WNO_UNUSED_PARAMETER])
92 AC_ARG_VAR(KARCH, [Kernel Architecture String])
96 AC_CONFIG_FILES([Makefile
99 datapath/linux/Makefile
100 datapath/linux/Makefile.main
103 dnl This makes sure that include/openflow gets created in the build directory.
104 AC_CONFIG_COMMANDS([include/openflow/openflow.h.stamp])
106 AC_CONFIG_COMMANDS([ovsdb/ovsdbmonitor/dummy], [:])
107 AC_CONFIG_COMMANDS([utilities/bugtool/dummy], [:])