tests: Allow environment specified autom4te.
[sliver-openvswitch.git] / configure.ac
1 # Copyright (c) 2008, 2009, 2010, 2011, 2012 Nicira, Inc.
2 #
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:
6 #
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.
14
15 AC_PREREQ(2.64)
16 AC_INIT(openvswitch, 1.8.90, ovs-bugs@openvswitch.org)
17 AC_CONFIG_SRCDIR([datapath/datapath.c])
18 AC_CONFIG_MACRO_DIR([m4])
19 AC_CONFIG_AUX_DIR([build-aux])
20 AC_CONFIG_HEADERS([config.h])
21 AC_CONFIG_TESTDIR([tests])
22 AM_INIT_AUTOMAKE
23
24 AC_PROG_CC
25 AM_PROG_CC_C_O
26 AC_PROG_CPP
27 AC_PROG_RANLIB
28 AC_PROG_MKDIR_P
29 AC_PROG_FGREP
30
31 AC_ARG_VAR([PERL], [path to Perl interpreter])
32 AC_PATH_PROG([PERL], perl, no)
33 if test "$PERL" = no; then
34    AC_MSG_ERROR([Perl interpreter not found in $PATH or $PERL.])
35 fi
36
37 AC_PATH_PROG([AUTOM4TE], autom4te, no)
38 if test "$AUTOM4TE" = no; then
39    AC_MSG_ERROR([autom4te not found in $PATH or $AUTOM4TE.])
40 fi
41
42 AC_USE_SYSTEM_EXTENSIONS
43 AC_C_BIGENDIAN
44 AC_SYS_LARGEFILE
45
46 AC_SEARCH_LIBS([pow], [m])
47 AC_SEARCH_LIBS([clock_gettime], [rt])
48 AC_SEARCH_LIBS([timer_create], [rt])
49 AC_SEARCH_LIBS([pcap_open_live], [pcap])
50
51 OVS_CHECK_COVERAGE
52 OVS_CHECK_NDEBUG
53 OVS_CHECK_NETLINK
54 OVS_CHECK_OPENSSL
55 OVS_CHECK_LOGDIR
56 OVS_CHECK_PYTHON
57 OVS_CHECK_PYUIC4
58 OVS_CHECK_OVSDBMONITOR
59 OVS_CHECK_DOT
60 OVS_CHECK_IF_PACKET
61 OVS_CHECK_IF_DL
62 OVS_CHECK_STRTOK_R
63 AC_CHECK_MEMBERS([struct stat.st_mtim.tv_nsec, struct stat.st_mtimensec],
64   [], [], [[#include <sys/stat.h>]])
65 AC_CHECK_FUNCS([mlockall strnlen strsignal getloadavg statvfs setmntent])
66 AC_CHECK_HEADERS([mntent.h sys/statvfs.h linux/types.h])
67
68 OVS_CHECK_PKIDIR
69 OVS_CHECK_RUNDIR
70 OVS_CHECK_DBDIR
71 OVS_CHECK_BACKTRACE
72 OVS_CHECK_MALLOC_HOOKS
73 OVS_CHECK_VALGRIND
74 OVS_CHECK_SOCKET_LIBS
75 OVS_CHECK_LINKER_SECTIONS
76 OVS_CHECK_XENSERVER_VERSION
77 OVS_CHECK_GROFF
78 OVS_CHECK_BRCOMPAT
79 OVS_CHECK_GNU_MAKE
80
81 OVS_ENABLE_OPTION([-Wall])
82 OVS_ENABLE_OPTION([-Wno-sign-compare])
83 OVS_ENABLE_OPTION([-Wpointer-arith])
84 OVS_ENABLE_OPTION([-Wdeclaration-after-statement])
85 OVS_ENABLE_OPTION([-Wformat-security])
86 OVS_ENABLE_OPTION([-Wswitch-enum])
87 OVS_ENABLE_OPTION([-Wunused-parameter])
88 OVS_ENABLE_OPTION([-Wstrict-aliasing])
89 OVS_ENABLE_OPTION([-Wbad-function-cast])
90 OVS_ENABLE_OPTION([-Wcast-align])
91 OVS_ENABLE_OPTION([-Wstrict-prototypes])
92 OVS_ENABLE_OPTION([-Wold-style-definition])
93 OVS_ENABLE_OPTION([-Wmissing-prototypes])
94 OVS_ENABLE_OPTION([-Wmissing-field-initializers])
95 OVS_ENABLE_OPTION([-Wno-override-init])
96 OVS_CONDITIONAL_CC_OPTION([-Wno-unused], [HAVE_WNO_UNUSED])
97 OVS_CONDITIONAL_CC_OPTION([-Wno-unused-parameter], [HAVE_WNO_UNUSED_PARAMETER])
98 OVS_ENABLE_WERROR
99 OVS_ENABLE_SPARSE
100
101 AC_ARG_VAR(KARCH, [Kernel Architecture String])
102 AC_SUBST(KARCH)
103 OVS_CHECK_LINUX
104
105 AC_CONFIG_FILES([Makefile 
106 datapath/Makefile 
107 datapath/linux/Kbuild
108 datapath/linux/Makefile
109 datapath/linux/Makefile.main
110 tests/atlocal])
111
112 dnl This makes sure that include/openflow gets created in the build directory.
113 AC_CONFIG_COMMANDS([include/openflow/openflow.h.stamp])
114
115 AC_CONFIG_COMMANDS([ovsdb/ovsdbmonitor/dummy], [:])
116 AC_CONFIG_COMMANDS([utilities/bugtool/dummy], [:])
117
118 AC_OUTPUT