## ------------------------------ ## ## openvswitch 2.5.90 test suite. ## ## ------------------------------ ## testsuite: command line was: $ ./tests/testsuite -C tests AUTOTEST_PATH=utilities:vswitchd:ovsdb:vtep:tests::ovn/controller-vtep:ovn/northd:ovn/utilities:ovn/controller 2214 ## --------- ## ## Platform. ## ## --------- ## hostname = yakkety-i386-openvswitch-build uname -m = i686 uname -r = 4.4.0-31-generic uname -s = Linux uname -v = #50-Ubuntu SMP Wed Jul 13 00:07:12 UTC 2016 /usr/bin/uname -p = unknown /bin/uname -X = unknown /bin/arch = unknown /usr/bin/arch -k = unknown /usr/convex/getsysinfo = unknown /usr/bin/hostinfo = unknown /bin/machine = unknown /usr/bin/oslevel = unknown /bin/universe = unknown PATH: /root/openvswitch-2.6.0~git20160804.0a0f39d/utilities PATH: /root/openvswitch-2.6.0~git20160804.0a0f39d/vswitchd PATH: /root/openvswitch-2.6.0~git20160804.0a0f39d/ovsdb PATH: /root/openvswitch-2.6.0~git20160804.0a0f39d/vtep PATH: /root/openvswitch-2.6.0~git20160804.0a0f39d/tests PATH: /root/openvswitch-2.6.0~git20160804.0a0f39d PATH: /root/openvswitch-2.6.0~git20160804.0a0f39d/ovn/controller-vtep PATH: /root/openvswitch-2.6.0~git20160804.0a0f39d/ovn/northd PATH: /root/openvswitch-2.6.0~git20160804.0a0f39d/ovn/utilities PATH: /root/openvswitch-2.6.0~git20160804.0a0f39d/ovn/controller PATH: /usr/local/sbin PATH: /usr/local/bin PATH: /usr/sbin PATH: /usr/bin PATH: /sbin PATH: /bin testsuite: atconfig: | # Configurable variable values for building test suites. | # Generated by ./config.status. | # Copyright (C) 2012 Free Software Foundation, Inc. | | # The test suite will define top_srcdir=/../.. etc. | at_testdir='tests' | abs_builddir='/root/openvswitch-2.6.0~git20160804.0a0f39d/tests' | at_srcdir='.' | abs_srcdir='/root/openvswitch-2.6.0~git20160804.0a0f39d/tests' | at_top_srcdir='..' | abs_top_srcdir='/root/openvswitch-2.6.0~git20160804.0a0f39d' | at_top_build_prefix='../' | abs_top_builddir='/root/openvswitch-2.6.0~git20160804.0a0f39d' | | # Backward compatibility with Autotest <= 2.59b: | at_top_builddir=$at_top_build_prefix | | AUTOTEST_PATH='tests' | | SHELL=${CONFIG_SHELL-'/bin/bash'} testsuite: atlocal: | # -*- shell-script -*- | HAVE_OPENSSL='yes' | HAVE_PYTHON='yes' | HAVE_PYTHON3='yes' | EGREP='/bin/grep -E' | PERL='/usr/bin/perl' | | if test x"$PYTHON" = x; then | PYTHON='/usr/bin/python' | fi | | if test x"$PYTHON3" = x; then | PYTHON3='/usr/bin/python3' | fi | | PYTHONPATH=$abs_top_srcdir/python:$abs_top_builddir/tests:$PYTHONPATH | export PYTHONPATH | | PYTHONIOENCODING=utf_8 | export PYTHONIOENCODING | | # PYTHONDONTWRITEBYTECODE=yes keeps Python from creating .pyc and .pyo | # files. Creating .py[co] works OK for any given version of Open | # vSwitch, but it causes trouble if you switch from a version with | # foo/__init__.py into an (older) version with plain foo.py, since | # foo/__init__.pyc will cause Python to ignore foo.py. | PYTHONDONTWRITEBYTECODE=yes | export PYTHONDONTWRITEBYTECODE | | # Test whether the current working directory name is all ASCII | # characters. Some Python code doesn't tolerate non-ASCII characters | # in filenames very well, so if the current working directory is | # non-ASCII then we skip the tests that run those programs. | # | # This would be just papering over a real problem, except that the | # tests that we skip are launched from initscripts and thus normally | # run in system directories with ASCII names. (This problem only came | # up at all because the Debian autobuilders do build in a top-level | # directory named /«BUILDDIR».) | case `pwd | tr -d ' -~'` in | '') non_ascii_cwd=false ;; | *) non_ascii_cwd=true | esac | | # Enable malloc debugging features. | case `uname` in | Linux) | MALLOC_PERTURB_=165; export MALLOC_PERTURB_ | | # Before glibc 2.11, the feature enabled by MALLOC_CHECK_ was not | # thread-safe. See https://bugzilla.redhat.com/show_bug.cgi?id=585674 and | # in particular the patch attached there, which was applied to glibc CVS as | # "Restore locking in free_check." between 1.11 and 1.11.1. | vswitchd=$abs_top_builddir/vswitchd/ovs-vswitchd | glibc=`ldd $vswitchd | sed -n 's/^ libc\.[^ ]* => \([^ ]*\) .*/\1/p'` | glibc_version=`$glibc | sed -n '1s/.*version \([0-9]\{1,\}\.[0-9]\{1,\}\).*/\1/p'` | case $glibc_version in | 2.[0-9] | 2.1[01]) mcheck=disabled ;; | *) mcheck=enabled ;; | esac | if test $mcheck = enabled; then | MALLOC_CHECK_=2; export MALLOC_CHECK_ | else | echo >&2 "glibc $glibc_version detected, disabling memory checking" | fi | ;; | FreeBSD) | case `uname -r` in | [789].*) | MALLOC_CONF=AJ | ;; | *) | MALLOC_CONF=abort:true,junk:true,redzone:true | ;; | esac | export MALLOC_CONF | esac | | # The name of loopback interface | case `uname` in | Linux) | LOOPBACK_INTERFACE=lo | ;; | FreeBSD|NetBSD) | LOOPBACK_INTERFACE=lo0 | ;; | esac | | # Check for platform. | case `uname` in | MINGW*) | IS_WIN32="yes" | IS_BSD="no" | ;; | FreeBSD|NetBSD) | IS_WIN32="no" | IS_BSD="yes" | ;; | *) | IS_WIN32="no" | IS_BSD="no" | ;; | esac | | # Check whether to run IPv6 tests. | if perl -e 'use Socket; socket(FH, PF_INET6, SOCK_STREAM, 0) || exit 1;'; then | HAVE_IPV6=yes | else | HAVE_IPV6=no | fi | | # XXX: Disable Python related tests on Windows because Open vSwitch code | # written in Python has not been ported to the Windows platform. We will | # need to remove the next block after porting is complete. | if test "$IS_WIN32" = "yes"; then | HAVE_PYTHON="no" | fi | | if test "$HAVE_PYTHON" = "yes" \ | && test "x`$PYTHON $abs_top_srcdir/tests/test-l7.py --help | grep 'ftp'`" != x; then | HAVE_PYFTPDLIB="yes" | else | HAVE_PYFTPDLIB="no" | fi | | # Determine correct netcat option to quit on stdin EOF | if nc --version 2>&1 | grep -q nmap.org; then | NC_EOF_OPT="--send-only" | else | NC_EOF_OPT="-q 1" | fi | | # Turn off proxies. | unset http_proxy | unset https_proxy | unset ftp_proxy | unset no_proxy | unset HTTP_PROXY | unset HTTPS_PROXY | unset FTP_PROXY | unset NO_PROXY ## ---------------- ## ## Tested programs. ## ## ---------------- ## ./testsuite.at:1: /root/openvswitch-2.6.0~git20160804.0a0f39d/vswitchd/ovs-vswitchd --version ovs-vswitchd (Open vSwitch) 2.5.90 ./testsuite.at:1: /root/openvswitch-2.6.0~git20160804.0a0f39d/utilities/ovs-vsctl --version ovs-vsctl (Open vSwitch) 2.5.90 DB Schema 7.13.0 ./testsuite.at:1: /usr/bin/perl --version This is perl 5, version 22, subversion 2 (v5.22.2) built for i686-linux-gnu-thread-multi-64int (with 67 registered patches, see perl -V for more detail) Copyright 1987-2015, Larry Wall Perl may be copied only under the terms of either the Artistic License or the GNU General Public License, which may be found in the Perl 5 source kit. Complete documentation for Perl, including FAQ lists, should be found on this system using "man perl" or "perldoc perl". If you have access to the Internet, point your browser at http://www.perl.org/, the Perl Home Page. ## ------------------ ## ## Running the tests. ## ## ------------------ ## testsuite: starting at: Fri Aug 5 13:12:32 UTC 2016 testsuite: ending at: Fri Aug 5 13:12:58 UTC 2016 testsuite: test suite duration: 0h 0m 26s ## ------------- ## ## Test results. ## ## ------------- ## ERROR: 1 test was run, 1 failed unexpectedly. ## ------------------------ ## ## Summary of the failures. ## ## ------------------------ ## Failed tests: openvswitch 2.5.90 test suite test groups: NUM: FILE-NAME:LINE TEST-GROUP-NAME KEYWORDS 2214: ovn.at:1164 ovn -- vtep: 3 HVs, 1 VIFs/HV, 1 GW, 1 LS vtep ## ---------------------- ## ## Detailed failed tests. ## ## ---------------------- ## # -*- compilation -*- 2214. ovn.at:1164: testing ovn -- vtep: 3 HVs, 1 VIFs/HV, 1 GW, 1 LS ... creating ovn-sb database creating ovn-nb database starting ovn-northd adding simulator 'main' adding simulator 'hv1' adding simulator 'hv2' adding simulator 'vtep' vtep-ctl: no port named br-vtep_n2 adding simulator 'hv3' OK OK OK OK OK OK ------ OVN dump ------ switch 2fa7b176-0ec7-4b92-8aea-89528e4ed100 (lsw0) port lp-vtep addresses: ["unknown"] port lp1 addresses: ["f0:00:00:00:00:01"] port lp2 addresses: ["f0:00:00:00:00:02"] Chassis "hv1" hostname: "yakkety-i386-openvswitch-build" Encap geneve ip: "192.168.0.1" Encap vxlan ip: "192.168.0.1" Port_Binding "lp1" Chassis "hv2" hostname: "yakkety-i386-openvswitch-build" Encap geneve ip: "192.168.0.2" Encap vxlan ip: "192.168.0.2" Port_Binding "lp2" Chassis br-vtep Encap vxlan ip: "192.168.0.3" ------ hv1 dump ------ f259f7d3-0995-437a-80f9-cb75bf53bc5c Bridge br-phys Port "br-phys_n1" Interface "br-phys_n1" options: {rxq_pcap="/root/openvswitch-2.6.0~git20160804.0a0f39d/tests/testsuite.dir/2214/hv1/br-phys_n1-rx.pcap", stream="unix:/root/openvswitch-2.6.0~git20160804.0a0f39d/tests/testsuite.dir/2214/main/hv1_br-phys.sock", tx_pcap="/root/openvswitch-2.6.0~git20160804.0a0f39d/tests/testsuite.dir/2214/hv1/br-phys_n1-tx.pcap"} Port br-phys Interface br-phys type: internal options: {rxq_pcap="/root/openvswitch-2.6.0~git20160804.0a0f39d/tests/testsuite.dir/2214/hv1/br-phys-rx.pcap", tx_pcap="/root/openvswitch-2.6.0~git20160804.0a0f39d/tests/testsuite.dir/2214/hv1/br-phys-tx.pcap"} Bridge br-int fail_mode: secure Port "ovn-br-vte-0" Interface "ovn-br-vte-0" type: vxlan options: {key=flow, remote_ip="192.168.0.3"} Port br-int Interface br-int type: internal Port "vif1" Interface "vif1" options: {rxq_pcap="hv1/vif1-rx.pcap", tx_pcap="hv1/vif1-tx.pcap"} Port "ovn-hv2-0" Interface "ovn-hv2-0" type: geneve options: {key=flow, remote_ip="192.168.0.2"} OFPT_FEATURES_REPLY (OF1.3) (xid=0x2): dpid:0000cedc24329e4c n_tables:254, n_buffers:256 capabilities: FLOW_STATS TABLE_STATS PORT_STATS GROUP_STATS QUEUE_STATS OFPST_PORT_DESC reply (OF1.3) (xid=0x3): 1(vif1): addr:aa:55:aa:55:00:10 config: PORT_DOWN state: LINK_DOWN speed: 0 Mbps now, 0 Mbps max 2(ovn-hv2-0): addr:9e:f5:dd:ff:09:b0 config: 0 state: 0 speed: 0 Mbps now, 0 Mbps max 3(ovn-br-vte-0): addr:a2:32:09:ab:ad:95 config: 0 state: 0 speed: 0 Mbps now, 0 Mbps max LOCAL(br-int): addr:ce:dc:24:32:9e:4c config: PORT_DOWN state: LINK_DOWN speed: 0 Mbps now, 0 Mbps max OFPT_GET_CONFIG_REPLY (OF1.3) (xid=0x5): frags=normal miss_send_len=0 OFPST_FLOW reply (OF1.3) (xid=0x2): cookie=0x0, duration=11.547s, table=0, n_packets=6, n_bytes=84, priority=100,in_port=1 actions=set_field:0x1->reg13,set_field:0x1->metadata,set_field:0x1->reg14,resubmit(,16) cookie=0x0, duration=10.331s, table=0, n_packets=3, n_bytes=42, priority=100,in_port=2 actions=move:NXM_NX_TUN_ID[0..23]->OXM_OF_METADATA[0..23],move:NXM_NX_TUN_METADATA0[16..30]->NXM_NX_REG14[0..14],move:NXM_NX_TUN_METADATA0[0..15]->NXM_NX_REG15[0..15],resubmit(,33) cookie=0x0, duration=11.560s, table=16, n_packets=0, n_bytes=0, priority=100,metadata=0x1,dl_src=01:00:00:00:00:00/01:00:00:00:00:00 actions=drop cookie=0x0, duration=11.549s, table=16, n_packets=0, n_bytes=0, priority=100,metadata=0x1,vlan_tci=0x1000/0x1000 actions=drop cookie=0x0, duration=11.570s, table=16, n_packets=6, n_bytes=84, priority=50,reg14=0x1,metadata=0x1 actions=resubmit(,17) cookie=0x0, duration=11.561s, table=16, n_packets=0, n_bytes=0, priority=50,reg14=0x2,metadata=0x1 actions=resubmit(,17) cookie=0x0, duration=11.550s, table=16, n_packets=0, n_bytes=0, priority=50,reg14=0x3,metadata=0x1 actions=resubmit(,17) cookie=0x0, duration=11.551s, table=17, n_packets=6, n_bytes=84, priority=0,metadata=0x1 actions=resubmit(,18) cookie=0x0, duration=11.549s, table=18, n_packets=6, n_bytes=84, priority=0,metadata=0x1 actions=resubmit(,19) cookie=0x0, duration=11.561s, table=19, n_packets=6, n_bytes=84, priority=0,metadata=0x1 actions=resubmit(,20) cookie=0x0, duration=11.563s, table=20, n_packets=6, n_bytes=84, priority=0,metadata=0x1 actions=resubmit(,21) cookie=0x0, duration=11.560s, table=21, n_packets=0, n_bytes=0, priority=100,ipv6,reg0=0x1/0x1,metadata=0x1 actions=ct(table=22,zone=NXM_NX_REG13[0..15]) cookie=0x0, duration=11.549s, table=21, n_packets=0, n_bytes=0, priority=100,ip,reg0=0x1/0x1,metadata=0x1 actions=ct(table=22,zone=NXM_NX_REG13[0..15]) cookie=0x0, duration=11.549s, table=21, n_packets=6, n_bytes=84, priority=0,metadata=0x1 actions=resubmit(,22) cookie=0x0, duration=11.560s, table=22, n_packets=6, n_bytes=84, priority=0,metadata=0x1 actions=resubmit(,23) cookie=0x0, duration=11.554s, table=23, n_packets=6, n_bytes=84, priority=0,metadata=0x1 actions=resubmit(,24) cookie=0x0, duration=11.559s, table=24, n_packets=0, n_bytes=0, priority=100,ip,reg0=0x2/0x2,metadata=0x1 actions=ct(commit,zone=NXM_NX_REG13[0..15],exec(load:0->NXM_NX_CT_LABEL[0])),resubmit(,25) cookie=0x0, duration=11.549s, table=24, n_packets=0, n_bytes=0, priority=100,ipv6,reg0=0x2/0x2,metadata=0x1 actions=ct(commit,zone=NXM_NX_REG13[0..15],exec(load:0->NXM_NX_CT_LABEL[0])),resubmit(,25) cookie=0x0, duration=11.570s, table=24, n_packets=6, n_bytes=84, priority=0,metadata=0x1 actions=resubmit(,25) cookie=0x0, duration=11.570s, table=25, n_packets=6, n_bytes=84, priority=0,metadata=0x1 actions=resubmit(,26) cookie=0x0, duration=11.550s, table=26, n_packets=6, n_bytes=84, priority=0,metadata=0x1 actions=resubmit(,27) cookie=0x0, duration=11.554s, table=27, n_packets=6, n_bytes=84, priority=0,metadata=0x1 actions=resubmit(,28) cookie=0x0, duration=11.560s, table=28, n_packets=2, n_bytes=28, priority=100,metadata=0x1,dl_dst=01:00:00:00:00:00/01:00:00:00:00:00 actions=set_field:0xffff->reg15,resubmit(,32) cookie=0x0, duration=11.570s, table=28, n_packets=1, n_bytes=14, priority=50,metadata=0x1,dl_dst=f0:00:00:00:00:01 actions=set_field:0x1->reg15,resubmit(,32) cookie=0x0, duration=11.557s, table=28, n_packets=1, n_bytes=14, priority=50,metadata=0x1,dl_dst=f0:00:00:00:00:02 actions=set_field:0x2->reg15,resubmit(,32) cookie=0x0, duration=11.570s, table=28, n_packets=2, n_bytes=28, priority=0,metadata=0x1 actions=set_field:0xfffe->reg15,resubmit(,32) cookie=0x0, duration=10.217s, table=32, n_packets=2, n_bytes=28, priority=100,reg15=0xffff,metadata=0x1 actions=load:0x1->NXM_NX_TUN_ID[0..23],set_field:0xffff/0xffffffff->tun_metadata0,move:NXM_NX_REG14[0..14]->NXM_NX_TUN_METADATA0[16..30],output:2,resubmit(,33) cookie=0x0, duration=10.216s, table=32, n_packets=1, n_bytes=14, priority=100,reg15=0x2,metadata=0x1 actions=load:0x1->NXM_NX_TUN_ID[0..23],set_field:0x2/0xffffffff->tun_metadata0,move:NXM_NX_REG14[0..14]->NXM_NX_TUN_METADATA0[16..30],output:2 cookie=0x0, duration=11.657s, table=32, n_packets=3, n_bytes=42, priority=0 actions=resubmit(,33) cookie=0x0, duration=11.570s, table=33, n_packets=4, n_bytes=56, priority=100,reg15=0xffff,metadata=0x1 actions=set_field:0x1->reg13,set_field:0x1->reg15,resubmit(,34),set_field:0xffff->reg15 cookie=0x0, duration=11.547s, table=33, n_packets=2, n_bytes=28, priority=100,reg15=0x1,metadata=0x1 actions=set_field:0x1->reg13,resubmit(,34) cookie=0x0, duration=11.548s, table=34, n_packets=3, n_bytes=42, priority=100,reg10=0/0x1,reg14=0x1,reg15=0x1,metadata=0x1 actions=drop cookie=0x0, duration=11.657s, table=34, n_packets=3, n_bytes=42, priority=0 actions=set_field:0->reg0,set_field:0->reg1,set_field:0->reg2,set_field:0->reg3,set_field:0->reg4,set_field:0->reg5,set_field:0->reg6,set_field:0->reg7,set_field:0->reg8,set_field:0->reg9,resubmit(,48) cookie=0x0, duration=11.570s, table=48, n_packets=3, n_bytes=42, priority=0,metadata=0x1 actions=resubmit(,49) cookie=0x0, duration=11.570s, table=49, n_packets=3, n_bytes=42, priority=0,metadata=0x1 actions=resubmit(,50) cookie=0x0, duration=11.550s, table=50, n_packets=0, n_bytes=0, priority=100,ip,reg0=0x1/0x1,metadata=0x1 actions=ct(table=51,zone=NXM_NX_REG13[0..15]) cookie=0x0, duration=11.549s, table=50, n_packets=0, n_bytes=0, priority=100,ipv6,reg0=0x1/0x1,metadata=0x1 actions=ct(table=51,zone=NXM_NX_REG13[0..15]) cookie=0x0, duration=11.559s, table=50, n_packets=3, n_bytes=42, priority=0,metadata=0x1 actions=resubmit(,51) cookie=0x0, duration=11.570s, table=51, n_packets=3, n_bytes=42, priority=0,metadata=0x1 actions=resubmit(,52) cookie=0x0, duration=11.550s, table=52, n_packets=3, n_bytes=42, priority=0,metadata=0x1 actions=resubmit(,53) cookie=0x0, duration=11.560s, table=53, n_packets=0, n_bytes=0, priority=100,ipv6,reg0=0x2/0x2,metadata=0x1 actions=ct(commit,zone=NXM_NX_REG13[0..15],exec(load:0->NXM_NX_CT_LABEL[0])),resubmit(,54) cookie=0x0, duration=11.550s, table=53, n_packets=0, n_bytes=0, priority=100,ip,reg0=0x2/0x2,metadata=0x1 actions=ct(commit,zone=NXM_NX_REG13[0..15],exec(load:0->NXM_NX_CT_LABEL[0])),resubmit(,54) cookie=0x0, duration=11.570s, table=53, n_packets=3, n_bytes=42, priority=0,metadata=0x1 actions=resubmit(,54) cookie=0x0, duration=11.549s, table=54, n_packets=3, n_bytes=42, priority=0,metadata=0x1 actions=resubmit(,55) cookie=0x0, duration=11.570s, table=55, n_packets=2, n_bytes=28, priority=100,metadata=0x1,dl_dst=01:00:00:00:00:00/01:00:00:00:00:00 actions=resubmit(,64) cookie=0x0, duration=11.570s, table=55, n_packets=1, n_bytes=14, priority=50,reg15=0x1,metadata=0x1 actions=resubmit(,64) cookie=0x0, duration=11.562s, table=55, n_packets=0, n_bytes=0, priority=50,reg15=0x3,metadata=0x1 actions=resubmit(,64) cookie=0x0, duration=11.550s, table=55, n_packets=0, n_bytes=0, priority=50,reg15=0x2,metadata=0x1 actions=resubmit(,64) cookie=0x0, duration=11.547s, table=64, n_packets=0, n_bytes=0, priority=100,reg10=0x1/0x1,reg15=0x1,metadata=0x1 actions=push:NXM_OF_IN_PORT[],set_field:0->in_port,resubmit(,65),pop:NXM_OF_IN_PORT[] cookie=0x0, duration=11.657s, table=64, n_packets=3, n_bytes=42, priority=0 actions=resubmit(,65) cookie=0x0, duration=11.548s, table=65, n_packets=3, n_bytes=42, priority=100,reg15=0x1,metadata=0x1 actions=output:1 ------ hv2 dump ------ d50706d1-cd4a-4c3a-b38e-5d49e453fe3f Bridge br-int fail_mode: secure Port "ovn-br-vte-0" Interface "ovn-br-vte-0" type: vxlan options: {key=flow, remote_ip="192.168.0.3"} Port "ovn-hv1-0" Interface "ovn-hv1-0" type: geneve options: {key=flow, remote_ip="192.168.0.1"} Port "vif2" Interface "vif2" options: {rxq_pcap="hv2/vif2-rx.pcap", tx_pcap="hv2/vif2-tx.pcap"} Port br-int Interface br-int type: internal Bridge br-phys Port br-phys Interface br-phys type: internal options: {rxq_pcap="/root/openvswitch-2.6.0~git20160804.0a0f39d/tests/testsuite.dir/2214/hv2/br-phys-rx.pcap", tx_pcap="/root/openvswitch-2.6.0~git20160804.0a0f39d/tests/testsuite.dir/2214/hv2/br-phys-tx.pcap"} Port "br-phys_n1" Interface "br-phys_n1" options: {rxq_pcap="/root/openvswitch-2.6.0~git20160804.0a0f39d/tests/testsuite.dir/2214/hv2/br-phys_n1-rx.pcap", stream="unix:/root/openvswitch-2.6.0~git20160804.0a0f39d/tests/testsuite.dir/2214/main/hv2_br-phys.sock", tx_pcap="/root/openvswitch-2.6.0~git20160804.0a0f39d/tests/testsuite.dir/2214/hv2/br-phys_n1-tx.pcap"} OFPT_FEATURES_REPLY (OF1.3) (xid=0x2): dpid:0000ca013119dd4b n_tables:254, n_buffers:256 capabilities: FLOW_STATS TABLE_STATS PORT_STATS GROUP_STATS QUEUE_STATS OFPST_PORT_DESC reply (OF1.3) (xid=0x3): 1(vif2): addr:aa:55:aa:55:00:11 config: PORT_DOWN state: LINK_DOWN speed: 0 Mbps now, 0 Mbps max 3(ovn-br-vte-0): addr:8e:cc:d2:cd:4f:93 config: 0 state: 0 speed: 0 Mbps now, 0 Mbps max 4(ovn-hv1-0): addr:a2:45:d9:f1:d6:0b config: 0 state: 0 speed: 0 Mbps now, 0 Mbps max LOCAL(br-int): addr:ca:01:31:19:dd:4b config: PORT_DOWN state: LINK_DOWN speed: 0 Mbps now, 0 Mbps max OFPT_GET_CONFIG_REPLY (OF1.3) (xid=0x5): frags=normal miss_send_len=0 OFPST_FLOW reply (OF1.3) (xid=0x2): cookie=0x0, duration=10.629s, table=0, n_packets=6, n_bytes=84, priority=100,in_port=1 actions=set_field:0x1->reg13,set_field:0x1->metadata,set_field:0x2->reg14,resubmit(,16) cookie=0x0, duration=7.594s, table=0, n_packets=3, n_bytes=42, priority=100,in_port=4 actions=move:NXM_NX_TUN_ID[0..23]->OXM_OF_METADATA[0..23],move:NXM_NX_TUN_METADATA0[16..30]->NXM_NX_REG14[0..14],move:NXM_NX_TUN_METADATA0[0..15]->NXM_NX_REG15[0..15],resubmit(,33) cookie=0x0, duration=10.515s, table=16, n_packets=0, n_bytes=0, priority=100,metadata=0x1,dl_src=01:00:00:00:00:00/01:00:00:00:00:00 actions=drop cookie=0x0, duration=10.505s, table=16, n_packets=0, n_bytes=0, priority=100,metadata=0x1,vlan_tci=0x1000/0x1000 actions=drop cookie=0x0, duration=10.518s, table=16, n_packets=0, n_bytes=0, priority=50,reg14=0x1,metadata=0x1 actions=resubmit(,17) cookie=0x0, duration=10.515s, table=16, n_packets=6, n_bytes=84, priority=50,reg14=0x2,metadata=0x1 actions=resubmit(,17) cookie=0x0, duration=10.506s, table=16, n_packets=0, n_bytes=0, priority=50,reg14=0x3,metadata=0x1 actions=resubmit(,17) cookie=0x0, duration=10.507s, table=17, n_packets=6, n_bytes=84, priority=0,metadata=0x1 actions=resubmit(,18) cookie=0x0, duration=10.506s, table=18, n_packets=6, n_bytes=84, priority=0,metadata=0x1 actions=resubmit(,19) cookie=0x0, duration=10.515s, table=19, n_packets=6, n_bytes=84, priority=0,metadata=0x1 actions=resubmit(,20) cookie=0x0, duration=10.517s, table=20, n_packets=6, n_bytes=84, priority=0,metadata=0x1 actions=resubmit(,21) cookie=0x0, duration=10.515s, table=21, n_packets=0, n_bytes=0, priority=100,ipv6,reg0=0x1/0x1,metadata=0x1 actions=ct(table=22,zone=NXM_NX_REG13[0..15]) cookie=0x0, duration=10.505s, table=21, n_packets=0, n_bytes=0, priority=100,ip,reg0=0x1/0x1,metadata=0x1 actions=ct(table=22,zone=NXM_NX_REG13[0..15]) cookie=0x0, duration=10.506s, table=21, n_packets=6, n_bytes=84, priority=0,metadata=0x1 actions=resubmit(,22) cookie=0x0, duration=10.514s, table=22, n_packets=6, n_bytes=84, priority=0,metadata=0x1 actions=resubmit(,23) cookie=0x0, duration=10.509s, table=23, n_packets=6, n_bytes=84, priority=0,metadata=0x1 actions=resubmit(,24) cookie=0x0, duration=10.514s, table=24, n_packets=0, n_bytes=0, priority=100,ip,reg0=0x2/0x2,metadata=0x1 actions=ct(commit,zone=NXM_NX_REG13[0..15],exec(load:0->NXM_NX_CT_LABEL[0])),resubmit(,25) cookie=0x0, duration=10.505s, table=24, n_packets=0, n_bytes=0, priority=100,ipv6,reg0=0x2/0x2,metadata=0x1 actions=ct(commit,zone=NXM_NX_REG13[0..15],exec(load:0->NXM_NX_CT_LABEL[0])),resubmit(,25) cookie=0x0, duration=10.518s, table=24, n_packets=6, n_bytes=84, priority=0,metadata=0x1 actions=resubmit(,25) cookie=0x0, duration=10.518s, table=25, n_packets=6, n_bytes=84, priority=0,metadata=0x1 actions=resubmit(,26) cookie=0x0, duration=10.506s, table=26, n_packets=6, n_bytes=84, priority=0,metadata=0x1 actions=resubmit(,27) cookie=0x0, duration=10.509s, table=27, n_packets=6, n_bytes=84, priority=0,metadata=0x1 actions=resubmit(,28) cookie=0x0, duration=10.514s, table=28, n_packets=2, n_bytes=28, priority=100,metadata=0x1,dl_dst=01:00:00:00:00:00/01:00:00:00:00:00 actions=set_field:0xffff->reg15,resubmit(,32) cookie=0x0, duration=10.518s, table=28, n_packets=1, n_bytes=14, priority=50,metadata=0x1,dl_dst=f0:00:00:00:00:01 actions=set_field:0x1->reg15,resubmit(,32) cookie=0x0, duration=10.512s, table=28, n_packets=1, n_bytes=14, priority=50,metadata=0x1,dl_dst=f0:00:00:00:00:02 actions=set_field:0x2->reg15,resubmit(,32) cookie=0x0, duration=10.518s, table=28, n_packets=2, n_bytes=28, priority=0,metadata=0x1 actions=set_field:0xfffe->reg15,resubmit(,32) cookie=0x0, duration=10.516s, table=32, n_packets=1, n_bytes=14, priority=100,reg15=0x1,metadata=0x1 actions=load:0x1->NXM_NX_TUN_ID[0..23],set_field:0x1/0xffffffff->tun_metadata0,move:NXM_NX_REG14[0..14]->NXM_NX_TUN_METADATA0[16..30],output:4 cookie=0x0, duration=10.629s, table=32, n_packets=2, n_bytes=28, priority=100,reg15=0xffff,metadata=0x1 actions=load:0x1->NXM_NX_TUN_ID[0..23],set_field:0xffff/0xffffffff->tun_metadata0,move:NXM_NX_REG14[0..14]->NXM_NX_TUN_METADATA0[16..30],output:4,resubmit(,33) cookie=0x0, duration=10.630s, table=32, n_packets=3, n_bytes=42, priority=0 actions=resubmit(,33) cookie=0x0, duration=10.518s, table=33, n_packets=4, n_bytes=56, priority=100,reg15=0xffff,metadata=0x1 actions=set_field:0x1->reg13,set_field:0x2->reg15,resubmit(,34),set_field:0xffff->reg15 cookie=0x0, duration=10.504s, table=33, n_packets=2, n_bytes=28, priority=100,reg15=0x2,metadata=0x1 actions=set_field:0x1->reg13,resubmit(,34) cookie=0x0, duration=10.504s, table=34, n_packets=3, n_bytes=42, priority=100,reg10=0/0x1,reg14=0x2,reg15=0x2,metadata=0x1 actions=drop cookie=0x0, duration=10.630s, table=34, n_packets=3, n_bytes=42, priority=0 actions=set_field:0->reg0,set_field:0->reg1,set_field:0->reg2,set_field:0->reg3,set_field:0->reg4,set_field:0->reg5,set_field:0->reg6,set_field:0->reg7,set_field:0->reg8,set_field:0->reg9,resubmit(,48) cookie=0x0, duration=10.518s, table=48, n_packets=3, n_bytes=42, priority=0,metadata=0x1 actions=resubmit(,49) cookie=0x0, duration=10.518s, table=49, n_packets=3, n_bytes=42, priority=0,metadata=0x1 actions=resubmit(,50) cookie=0x0, duration=10.507s, table=50, n_packets=0, n_bytes=0, priority=100,ip,reg0=0x1/0x1,metadata=0x1 actions=ct(table=51,zone=NXM_NX_REG13[0..15]) cookie=0x0, duration=10.506s, table=50, n_packets=0, n_bytes=0, priority=100,ipv6,reg0=0x1/0x1,metadata=0x1 actions=ct(table=51,zone=NXM_NX_REG13[0..15]) cookie=0x0, duration=10.514s, table=50, n_packets=3, n_bytes=42, priority=0,metadata=0x1 actions=resubmit(,51) cookie=0x0, duration=10.518s, table=51, n_packets=3, n_bytes=42, priority=0,metadata=0x1 actions=resubmit(,52) cookie=0x0, duration=10.506s, table=52, n_packets=3, n_bytes=42, priority=0,metadata=0x1 actions=resubmit(,53) cookie=0x0, duration=10.514s, table=53, n_packets=0, n_bytes=0, priority=100,ipv6,reg0=0x2/0x2,metadata=0x1 actions=ct(commit,zone=NXM_NX_REG13[0..15],exec(load:0->NXM_NX_CT_LABEL[0])),resubmit(,54) cookie=0x0, duration=10.506s, table=53, n_packets=0, n_bytes=0, priority=100,ip,reg0=0x2/0x2,metadata=0x1 actions=ct(commit,zone=NXM_NX_REG13[0..15],exec(load:0->NXM_NX_CT_LABEL[0])),resubmit(,54) cookie=0x0, duration=10.518s, table=53, n_packets=3, n_bytes=42, priority=0,metadata=0x1 actions=resubmit(,54) cookie=0x0, duration=10.505s, table=54, n_packets=3, n_bytes=42, priority=0,metadata=0x1 actions=resubmit(,55) cookie=0x0, duration=10.518s, table=55, n_packets=2, n_bytes=28, priority=100,metadata=0x1,dl_dst=01:00:00:00:00:00/01:00:00:00:00:00 actions=resubmit(,64) cookie=0x0, duration=10.519s, table=55, n_packets=0, n_bytes=0, priority=50,reg15=0x1,metadata=0x1 actions=resubmit(,64) cookie=0x0, duration=10.515s, table=55, n_packets=0, n_bytes=0, priority=50,reg15=0x3,metadata=0x1 actions=resubmit(,64) cookie=0x0, duration=10.507s, table=55, n_packets=1, n_bytes=14, priority=50,reg15=0x2,metadata=0x1 actions=resubmit(,64) cookie=0x0, duration=10.504s, table=64, n_packets=0, n_bytes=0, priority=100,reg10=0x1/0x1,reg15=0x2,metadata=0x1 actions=push:NXM_OF_IN_PORT[],set_field:0->in_port,resubmit(,65),pop:NXM_OF_IN_PORT[] cookie=0x0, duration=10.630s, table=64, n_packets=3, n_bytes=42, priority=0 actions=resubmit(,65) cookie=0x0, duration=10.504s, table=65, n_packets=3, n_bytes=42, priority=100,reg15=0x2,metadata=0x1 actions=output:1 ------ hv3 dump ------ 835f7be8-068c-4d0d-b616-eeb602ee891f Bridge br-phys Port "vif3" Interface "vif3" options: {rxq_pcap="hv3/vif3-rx.pcap", tx_pcap="hv3/vif3-tx.pcap"} Port br-phys Interface br-phys type: internal options: {rxq_pcap="/root/openvswitch-2.6.0~git20160804.0a0f39d/tests/testsuite.dir/2214/hv3/br-phys-rx.pcap", tx_pcap="/root/openvswitch-2.6.0~git20160804.0a0f39d/tests/testsuite.dir/2214/hv3/br-phys-tx.pcap"} Port "br-phys_n2" Interface "br-phys_n2" options: {rxq_pcap="/root/openvswitch-2.6.0~git20160804.0a0f39d/tests/testsuite.dir/2214/hv3/br-phys_n2-rx.pcap", stream="unix:/root/openvswitch-2.6.0~git20160804.0a0f39d/tests/testsuite.dir/2214/main/hv3_br-phys.sock", tx_pcap="/root/openvswitch-2.6.0~git20160804.0a0f39d/tests/testsuite.dir/2214/hv3/br-phys_n2-tx.pcap"} ./ovn.at:1320: as hv3 ovs-ofctl -O OpenFlow13 show br-int checking packets in hv1/vif1-tx.pcap against 1.expected: expected 6 packets, only received 3 ./ovn.at:1326: sort $rcv_text --- expout 2016-08-05 13:12:57.993344911 +0000 +++ /root/openvswitch-2.6.0~git20160804.0a0f39d/tests/testsuite.dir/at-groups/2214/stdout 2016-08-05 13:12:57.993344911 +0000 @@ -1,6 +1,3 @@ 010000000000f0000000000202ff -010000000000f0000000000303ff f00000000001f000000000020021 -f00000000001f000000000030031 fffffffffffff0000000000202ff -fffffffffffff0000000000303ff 2214. ovn.at:1164: 2214. ovn -- vtep: 3 HVs, 1 VIFs/HV, 1 GW, 1 LS (ovn.at:1164): FAILED (ovn.at:1326) ## ------------- ## ## ../config.log ## ## ------------- ## | This file contains any messages produced by compilers while | running configure, to aid debugging if configure makes a mistake. | | It was created by openvswitch configure 2.5.90, which was | generated by GNU Autoconf 2.69. Invocation command line was | | $ ./configure --build=i686-linux-gnu --prefix=/usr --includedir=${prefix}/include --mandir=${prefix}/share/man --infodir=${prefix}/share/info --sysconfdir=/etc --localstatedir=/var --disable-silent-rules --libexecdir=${prefix}/lib/openvswitch --disable-maintainer-mode --disable-dependency-tracking --enable-ssl --enable-shared | | ## --------- ## | ## Platform. ## | ## --------- ## | | hostname = yakkety-i386-openvswitch-build | uname -m = i686 | uname -r = 4.4.0-31-generic | uname -s = Linux | uname -v = #50-Ubuntu SMP Wed Jul 13 00:07:12 UTC 2016 | | /usr/bin/uname -p = unknown | /bin/uname -X = unknown | | /bin/arch = unknown | /usr/bin/arch -k = unknown | /usr/convex/getsysinfo = unknown | /usr/bin/hostinfo = unknown | /bin/machine = unknown | /usr/bin/oslevel = unknown | /bin/universe = unknown | | PATH: /usr/local/sbin | PATH: /usr/local/bin | PATH: /usr/sbin | PATH: /usr/bin | PATH: /sbin | PATH: /bin | | | ## ----------- ## | ## Core tests. ## | ## ----------- ## | | configure:2702: checking for a BSD-compatible install | configure:2770: result: /usr/bin/install -c | configure:2781: checking whether build environment is sane | configure:2836: result: yes | configure:2987: checking for a thread-safe mkdir -p | configure:3026: result: /bin/mkdir -p | configure:3033: checking for gawk | configure:3063: result: no | configure:3033: checking for mawk | configure:3049: found /usr/bin/mawk | configure:3060: result: mawk | configure:3071: checking whether make sets $(MAKE) | configure:3093: result: yes | configure:3122: checking whether make supports nested variables | configure:3139: result: yes | configure:3218: checking how to create a pax tar archive | configure:3229: tar --version | tar (GNU tar) 1.29 | Copyright (C) 2015 Free Software Foundation, Inc. | License GPLv3+: GNU GPL version 3 or later . | This is free software: you are free to change and redistribute it. | There is NO WARRANTY, to the extent permitted by law. | | Written by John Gilmore and Jay Fenlason. | configure:3232: $? = 0 | configure:3272: tardir=conftest.dir && eval tar --format=posix -chf - "$tardir" >conftest.tar | configure:3275: $? = 0 | configure:3279: tar -xf - &5 | gcc (Ubuntu 6.1.1-10ubuntu11) 6.1.1 20160724 | Copyright (C) 2016 Free Software Foundation, Inc. | This is free software; see the source for copying conditions. There is NO | warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. | | configure:3738: $? = 0 | configure:3727: gcc -v >&5 | Using built-in specs. | COLLECT_GCC=gcc | COLLECT_LTO_WRAPPER=/usr/lib/gcc/i686-linux-gnu/6/lto-wrapper | Target: i686-linux-gnu | Configured with: ../src/configure -v --with-pkgversion='Ubuntu 6.1.1-10ubuntu11' --with-bugurl=file:///usr/share/doc/gcc-6/README.Bugs --enable-languages=c,ada,c++,java,go,d,fortran,objc,obj-c++ --prefix=/usr --program-suffix=-6 --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --with-sysroot=/ --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-gnu-unique-object --disable-vtable-verify --enable-libmpx --enable-plugin --with-system-zlib --disable-browser-plugin --enable-java-awt=gtk --enable-gtk-cairo --with-java-home=/usr/lib/jvm/java-1.5.0-gcj-6-i386/jre --enable-java-home --with-jvm-root-dir=/usr/lib/jvm/java-1.5.0-gcj-6-i386 --with-jvm-jar-dir=/usr/lib/jvm-exports/java-1.5.0-gcj-6-i386 --with-arch-directory=i386 --with-ecj-jar=/usr/share/java/eclipse-ecj.jar --enable-objc-gc --enable-targets=all --enable-multiarch --disable-werror --with-arch-32=i686 --with-multilib-list=m32,m64,mx32 --enable-multilib --with-tune=generic --enable-checking=release --build=i686-linux-gnu --host=i686-linux-gnu --target=i686-linux-gnu | Thread model: posix | gcc version 6.1.1 20160724 (Ubuntu 6.1.1-10ubuntu11) | configure:3738: $? = 0 | configure:3727: gcc -V >&5 | gcc: error: unrecognized command line option '-V' | gcc: fatal error: no input files | compilation terminated. | configure:3738: $? = 1 | configure:3727: gcc -qversion >&5 | gcc: error: unrecognized command line option '-qversion'; did you mean '--version'? | gcc: fatal error: no input files | compilation terminated. | configure:3738: $? = 1 | configure:3758: checking whether the C compiler works | configure:3780: gcc conftest.c >&5 | configure:3784: $? = 0 | configure:3832: result: yes | configure:3835: checking for C compiler default output file name | configure:3837: result: a.out | configure:3843: checking for suffix of executables | configure:3850: gcc -o conftest conftest.c >&5 | configure:3854: $? = 0 | configure:3876: result: | configure:3898: checking whether we are cross compiling | configure:3906: gcc -o conftest conftest.c >&5 | configure:3910: $? = 0 | configure:3917: ./conftest | configure:3921: $? = 0 | configure:3936: result: no | configure:3941: checking for suffix of object files | configure:3963: gcc -c conftest.c >&5 | configure:3967: $? = 0 | configure:3988: result: o | configure:3992: checking whether we are using the GNU C compiler | configure:4011: gcc -c conftest.c >&5 | configure:4011: $? = 0 | configure:4020: result: yes | configure:4029: checking whether gcc accepts -g | configure:4049: gcc -c -g conftest.c >&5 | configure:4049: $? = 0 | configure:4090: result: yes | configure:4107: checking for gcc option to accept ISO C89 | configure:4170: gcc -c -g -O2 conftest.c >&5 | configure:4170: $? = 0 | configure:4183: result: none needed | configure:4208: checking whether gcc understands -c and -o together | configure:4230: gcc -c conftest.c -o conftest2.o | configure:4233: $? = 0 | configure:4230: gcc -c conftest.c -o conftest2.o | configure:4233: $? = 0 | configure:4245: result: yes | configure:4264: checking dependency style of gcc | configure:4375: result: none | configure:4390: checking for gcc option to accept ISO C99 | configure:4539: gcc -c -g -O2 conftest.c >&5 | configure:4539: $? = 0 | configure:4552: result: none needed | configure:4573: checking how to run the C preprocessor | configure:4604: gcc -E conftest.c | configure:4604: $? = 0 | configure:4618: gcc -E conftest.c | conftest.c:11:28: fatal error: ac_nonexistent.h: No such file or directory | #include | ^ | compilation terminated. | configure:4618: $? = 1 | configure: failed program was: | | /* confdefs.h */ | | #define PACKAGE_NAME "openvswitch" | | #define PACKAGE_TARNAME "openvswitch" | | #define PACKAGE_VERSION "2.5.90" | | #define PACKAGE_STRING "openvswitch 2.5.90" | | #define PACKAGE_BUGREPORT "bugs@openvswitch.org" | | #define PACKAGE_URL "" | | #define PACKAGE "openvswitch" | | #define VERSION "2.5.90" | | /* end confdefs.h. */ | | #include | configure:4643: result: gcc -E | configure:4663: gcc -E conftest.c | configure:4663: $? = 0 | configure:4677: gcc -E conftest.c | conftest.c:11:28: fatal error: ac_nonexistent.h: No such file or directory | #include | ^ | compilation terminated. | configure:4677: $? = 1 | configure: failed program was: | | /* confdefs.h */ | | #define PACKAGE_NAME "openvswitch" | | #define PACKAGE_TARNAME "openvswitch" | | #define PACKAGE_VERSION "2.5.90" | | #define PACKAGE_STRING "openvswitch 2.5.90" | | #define PACKAGE_BUGREPORT "bugs@openvswitch.org" | | #define PACKAGE_URL "" | | #define PACKAGE "openvswitch" | | #define VERSION "2.5.90" | | /* end confdefs.h. */ | | #include | configure:4706: checking for grep that handles long lines and -e | configure:4764: result: /bin/grep | configure:4769: checking for fgrep | configure:4831: result: /bin/grep -F | configure:4836: checking for egrep | configure:4898: result: /bin/grep -E | configure:4907: checking for perl | configure:4925: found /usr/bin/perl | configure:4938: result: /usr/bin/perl | configure:4956: checking for ANSI C header files | configure:4976: gcc -c -g -O2 conftest.c >&5 | configure:4976: $? = 0 | configure:5049: gcc -o conftest -g -O2 conftest.c >&5 | configure:5049: $? = 0 | configure:5049: ./conftest | configure:5049: $? = 0 | configure:5060: result: yes | configure:5073: checking for sys/types.h | configure:5073: gcc -c -g -O2 conftest.c >&5 | configure:5073: $? = 0 | configure:5073: result: yes | configure:5073: checking for sys/stat.h | configure:5073: gcc -c -g -O2 conftest.c >&5 | configure:5073: $? = 0 | configure:5073: result: yes | configure:5073: checking for stdlib.h | configure:5073: gcc -c -g -O2 conftest.c >&5 | configure:5073: $? = 0 | configure:5073: result: yes | configure:5073: checking for string.h | configure:5073: gcc -c -g -O2 conftest.c >&5 | configure:5073: $? = 0 | configure:5073: result: yes | configure:5073: checking for memory.h | configure:5073: gcc -c -g -O2 conftest.c >&5 | configure:5073: $? = 0 | configure:5073: result: yes | configure:5073: checking for strings.h | configure:5073: gcc -c -g -O2 conftest.c >&5 | configure:5073: $? = 0 | configure:5073: result: yes | configure:5073: checking for inttypes.h | configure:5073: gcc -c -g -O2 conftest.c >&5 | configure:5073: $? = 0 | configure:5073: result: yes | configure:5073: checking for stdint.h | configure:5073: gcc -c -g -O2 conftest.c >&5 | configure:5073: $? = 0 | configure:5073: result: yes | configure:5073: checking for unistd.h | configure:5073: gcc -c -g -O2 conftest.c >&5 | configure:5073: $? = 0 | configure:5073: result: yes | configure:5086: checking minix/config.h usability | configure:5086: gcc -c -g -O2 conftest.c >&5 | conftest.c:54:26: fatal error: minix/config.h: No such file or directory | #include | ^ | compilation terminated. | configure:5086: $? = 1 | configure: failed program was: | | /* confdefs.h */ | | #define PACKAGE_NAME "openvswitch" | | #define PACKAGE_TARNAME "openvswitch" | | #define PACKAGE_VERSION "2.5.90" | | #define PACKAGE_STRING "openvswitch 2.5.90" | | #define PACKAGE_BUGREPORT "bugs@openvswitch.org" | | #define PACKAGE_URL "" | | #define PACKAGE "openvswitch" | | #define VERSION "2.5.90" | | #define STDC_HEADERS 1 | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_STRING_H 1 | | #define HAVE_MEMORY_H 1 | | #define HAVE_STRINGS_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_UNISTD_H 1 | | /* end confdefs.h. */ | | #include | | #ifdef HAVE_SYS_TYPES_H | | # include | | #endif | | #ifdef HAVE_SYS_STAT_H | | # include | | #endif | | #ifdef STDC_HEADERS | | # include | | # include | | #else | | # ifdef HAVE_STDLIB_H | | # include | | # endif | | #endif | | #ifdef HAVE_STRING_H | | # if !defined STDC_HEADERS && defined HAVE_MEMORY_H | | # include | | # endif | | # include | | #endif | | #ifdef HAVE_STRINGS_H | | # include | | #endif | | #ifdef HAVE_INTTYPES_H | | # include | | #endif | | #ifdef HAVE_STDINT_H | | # include | | #endif | | #ifdef HAVE_UNISTD_H | | # include | | #endif | | #include | configure:5086: result: no | configure:5086: checking minix/config.h presence | configure:5086: gcc -E conftest.c | conftest.c:21:26: fatal error: minix/config.h: No such file or directory | #include | ^ | compilation terminated. | configure:5086: $? = 1 | configure: failed program was: | | /* confdefs.h */ | | #define PACKAGE_NAME "openvswitch" | | #define PACKAGE_TARNAME "openvswitch" | | #define PACKAGE_VERSION "2.5.90" | | #define PACKAGE_STRING "openvswitch 2.5.90" | | #define PACKAGE_BUGREPORT "bugs@openvswitch.org" | | #define PACKAGE_URL "" | | #define PACKAGE "openvswitch" | | #define VERSION "2.5.90" | | #define STDC_HEADERS 1 | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_STRING_H 1 | | #define HAVE_MEMORY_H 1 | | #define HAVE_STRINGS_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_UNISTD_H 1 | | /* end confdefs.h. */ | | #include | configure:5086: result: no | configure:5086: checking for minix/config.h | configure:5086: result: no | configure:5107: checking whether it is safe to define __EXTENSIONS__ | configure:5125: gcc -c -g -O2 conftest.c >&5 | configure:5125: $? = 0 | configure:5132: result: yes | configure:5146: checking whether byte ordering is bigendian | configure:5161: gcc -c -g -O2 conftest.c >&5 | conftest.c:27:9: error: unknown type name 'not' | not a universal capable compiler | ^~~ | conftest.c:27:15: error: expected '=', ',', ';', 'asm' or '__attribute__' before 'universal' | not a universal capable compiler | ^~~~~~~~~ | conftest.c:27:15: error: unknown type name 'universal' | configure:5161: $? = 1 | configure: failed program was: | | /* confdefs.h */ | | #define PACKAGE_NAME "openvswitch" | | #define PACKAGE_TARNAME "openvswitch" | | #define PACKAGE_VERSION "2.5.90" | | #define PACKAGE_STRING "openvswitch 2.5.90" | | #define PACKAGE_BUGREPORT "bugs@openvswitch.org" | | #define PACKAGE_URL "" | | #define PACKAGE "openvswitch" | | #define VERSION "2.5.90" | | #define STDC_HEADERS 1 | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_STRING_H 1 | | #define HAVE_MEMORY_H 1 | | #define HAVE_STRINGS_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_UNISTD_H 1 | | #define __EXTENSIONS__ 1 | | #define _ALL_SOURCE 1 | | #define _GNU_SOURCE 1 | | #define _POSIX_PTHREAD_SEMANTICS 1 | | #define _TANDEM_SOURCE 1 | | /* end confdefs.h. */ | | #ifndef __APPLE_CC__ | | not a universal capable compiler | | #endif | | typedef int dummy; | | | configure:5206: gcc -c -g -O2 conftest.c >&5 | configure:5206: $? = 0 | configure:5224: gcc -c -g -O2 conftest.c >&5 | conftest.c: In function 'main': | conftest.c:33:4: error: unknown type name 'not' | not big endian | ^~~ | conftest.c:33:12: error: expected '=', ',', ';', 'asm' or '__attribute__' before 'endian' | not big endian | ^~~~~~ | configure:5224: $? = 1 | configure: failed program was: | | /* confdefs.h */ | | #define PACKAGE_NAME "openvswitch" | | #define PACKAGE_TARNAME "openvswitch" | | #define PACKAGE_VERSION "2.5.90" | | #define PACKAGE_STRING "openvswitch 2.5.90" | | #define PACKAGE_BUGREPORT "bugs@openvswitch.org" | | #define PACKAGE_URL "" | | #define PACKAGE "openvswitch" | | #define VERSION "2.5.90" | | #define STDC_HEADERS 1 | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_STRING_H 1 | | #define HAVE_MEMORY_H 1 | | #define HAVE_STRINGS_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_UNISTD_H 1 | | #define __EXTENSIONS__ 1 | | #define _ALL_SOURCE 1 | | #define _GNU_SOURCE 1 | | #define _POSIX_PTHREAD_SEMANTICS 1 | | #define _TANDEM_SOURCE 1 | | /* end confdefs.h. */ | | #include | | #include | | | | int | | main () | | { | | #if BYTE_ORDER != BIG_ENDIAN | | not big endian | | #endif | | | | ; | | return 0; | | } | configure:5352: result: no | configure:5377: checking for special C compiler options needed for large files | configure:5422: result: no | configure:5428: checking for _FILE_OFFSET_BITS value needed for large files | configure:5453: gcc -c -g -O2 conftest.c >&5 | conftest.c:31:41: warning: result of '-2147483648l << 31' requires 63 bits to represent, but 'long int' only has 32 bits [-Wshift-overflow=] | #define LARGE_OFF_T ((((off_t) 1 << 31) << 31) - 1 + (((off_t) 1 << 31) << 31)) | ^ | conftest.c:32:23: note: in expansion of macro 'LARGE_OFF_T' | int off_t_is_large[(LARGE_OFF_T % 2147483629 == 721 | ^~~~~~~~~~~ | conftest.c:31:73: warning: result of '-2147483648l << 31' requires 63 bits to represent, but 'long int' only has 32 bits [-Wshift-overflow=] | #define LARGE_OFF_T ((((off_t) 1 << 31) << 31) - 1 + (((off_t) 1 << 31) << 31)) | ^ | conftest.c:32:23: note: in expansion of macro 'LARGE_OFF_T' | int off_t_is_large[(LARGE_OFF_T % 2147483629 == 721 | ^~~~~~~~~~~ | conftest.c:31:41: warning: result of '-2147483648l << 31' requires 63 bits to represent, but 'long int' only has 32 bits [-Wshift-overflow=] | #define LARGE_OFF_T ((((off_t) 1 << 31) << 31) - 1 + (((off_t) 1 << 31) << 31)) | ^ | conftest.c:33:13: note: in expansion of macro 'LARGE_OFF_T' | && LARGE_OFF_T % 2147483647 == 1) | ^~~~~~~~~~~ | conftest.c:31:73: warning: result of '-2147483648l << 31' requires 63 bits to represent, but 'long int' only has 32 bits [-Wshift-overflow=] | #define LARGE_OFF_T ((((off_t) 1 << 31) << 31) - 1 + (((off_t) 1 << 31) << 31)) | ^ | conftest.c:33:13: note: in expansion of macro 'LARGE_OFF_T' | && LARGE_OFF_T % 2147483647 == 1) | ^~~~~~~~~~~ | conftest.c:32:7: error: variably modified 'off_t_is_large' at file scope | int off_t_is_large[(LARGE_OFF_T % 2147483629 == 721 | ^~~~~~~~~~~~~~ | configure:5453: $? = 1 | configure: failed program was: | | /* confdefs.h */ | | #define PACKAGE_NAME "openvswitch" | | #define PACKAGE_TARNAME "openvswitch" | | #define PACKAGE_VERSION "2.5.90" | | #define PACKAGE_STRING "openvswitch 2.5.90" | | #define PACKAGE_BUGREPORT "bugs@openvswitch.org" | | #define PACKAGE_URL "" | | #define PACKAGE "openvswitch" | | #define VERSION "2.5.90" | | #define STDC_HEADERS 1 | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_STRING_H 1 | | #define HAVE_MEMORY_H 1 | | #define HAVE_STRINGS_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_UNISTD_H 1 | | #define __EXTENSIONS__ 1 | | #define _ALL_SOURCE 1 | | #define _GNU_SOURCE 1 | | #define _POSIX_PTHREAD_SEMANTICS 1 | | #define _TANDEM_SOURCE 1 | | /* end confdefs.h. */ | | #include | | /* Check that off_t can represent 2**63 - 1 correctly. | | We can't simply define LARGE_OFF_T to be 9223372036854775807, | | since some C++ compilers masquerading as C compilers | | incorrectly reject 9223372036854775807. */ | | #define LARGE_OFF_T ((((off_t) 1 << 31) << 31) - 1 + (((off_t) 1 << 31) << 31)) | | int off_t_is_large[(LARGE_OFF_T % 2147483629 == 721 | | && LARGE_OFF_T % 2147483647 == 1) | | ? 1 : -1]; | | int | | main () | | { | | | | ; | | return 0; | | } | configure:5477: gcc -c -g -O2 conftest.c >&5 | configure:5477: $? = 0 | configure:5485: result: 64 | configure:5600: checking build system type | configure:5614: result: i686-pc-linux-gnu | configure:5634: checking host system type | configure:5647: result: i686-pc-linux-gnu | configure:5688: checking how to print strings | configure:5715: result: printf | configure:5736: checking for a sed that does not truncate output | configure:5800: result: /bin/sed | configure:5848: checking for ld used by gcc | configure:5915: result: /usr/bin/ld | configure:5922: checking if the linker (/usr/bin/ld) is GNU ld | configure:5937: result: yes | configure:5949: checking for BSD- or MS-compatible name lister (nm) | configure:6003: result: /usr/bin/nm -B | configure:6133: checking the name lister (/usr/bin/nm -B) interface | configure:6140: gcc -c -g -O2 conftest.c >&5 | configure:6143: /usr/bin/nm -B "conftest.o" | configure:6146: output | 00000000 B some_variable | configure:6153: result: BSD nm | configure:6156: checking whether ln -s works | configure:6160: result: yes | configure:6168: checking the maximum length of command line arguments | configure:6299: result: 1572864 | configure:6347: checking how to convert i686-pc-linux-gnu file names to i686-pc-linux-gnu format | configure:6387: result: func_convert_file_noop | configure:6394: checking how to convert i686-pc-linux-gnu file names to toolchain format | configure:6414: result: func_convert_file_noop | configure:6421: checking for /usr/bin/ld option to reload object files | configure:6428: result: -r | configure:6502: checking for objdump | configure:6518: found /usr/bin/objdump | configure:6529: result: objdump | configure:6561: checking how to recognize dependent libraries | configure:6761: result: pass_all | configure:6846: checking for dlltool | configure:6876: result: no | configure:6906: checking how to associate runtime and link libraries | configure:6933: result: printf %s\n | configure:6993: checking for ar | configure:7009: found /usr/bin/ar | configure:7020: result: ar | configure:7057: checking for archiver @FILE support | configure:7074: gcc -c -g -O2 conftest.c >&5 | configure:7074: $? = 0 | configure:7077: ar cru libconftest.a @conftest.lst >&5 | ar: `u' modifier ignored since `D' is the default (see `U') | configure:7080: $? = 0 | configure:7085: ar cru libconftest.a @conftest.lst >&5 | ar: `u' modifier ignored since `D' is the default (see `U') | ar: conftest.o: No such file or directory | configure:7088: $? = 1 | configure:7100: result: @ | configure:7158: checking for strip | configure:7174: found /usr/bin/strip | configure:7185: result: strip | configure:7257: checking for ranlib | configure:7273: found /usr/bin/ranlib | configure:7284: result: ranlib | configure:7386: checking command to parse /usr/bin/nm -B output from gcc object | configure:7539: gcc -c -g -O2 conftest.c >&5 | configure:7542: $? = 0 | configure:7546: /usr/bin/nm -B conftest.o \| sed -n -e 's/^.*[ ]\([ABCDGIRSTW][ABCDGIRSTW]*\)[ ][ ]*\([_A-Za-z][_A-Za-z0-9]*\)$/\1 \2 \2/p' | sed '/ __gnu_lto/d' \> conftest.nm | configure:7549: $? = 0 | configure:7615: gcc -o conftest -g -O2 conftest.c conftstm.o >&5 | configure:7618: $? = 0 | configure:7656: result: ok | configure:7703: checking for sysroot | configure:7733: result: no | configure:7740: checking for a working dd | configure:7778: result: /bin/dd | configure:7782: checking how to truncate binary pipes | configure:7797: result: /bin/dd bs=4096 count=1 | configure:8126: checking for mt | configure:8142: found /bin/mt | configure:8153: result: mt | configure:8176: checking if mt is a manifest tool | configure:8182: mt '-?' | configure:8190: result: no | configure:8864: checking for dlfcn.h | configure:8864: gcc -c -g -O2 conftest.c >&5 | configure:8864: $? = 0 | configure:8864: result: yes | configure:9119: checking for objdir | configure:9134: result: .libs | configure:9398: checking if gcc supports -fno-rtti -fno-exceptions | configure:9416: gcc -c -g -O2 -fno-rtti -fno-exceptions conftest.c >&5 | cc1: warning: command line option '-fno-rtti' is valid for C++/ObjC++ but not for C | configure:9420: $? = 0 | configure:9433: result: no | configure:9791: checking for gcc option to produce PIC | configure:9798: result: -fPIC -DPIC | configure:9806: checking if gcc PIC flag -fPIC -DPIC works | configure:9824: gcc -c -g -O2 -fPIC -DPIC -DPIC conftest.c >&5 | configure:9828: $? = 0 | configure:9841: result: yes | configure:9870: checking if gcc static flag -static works | configure:9898: result: yes | configure:9913: checking if gcc supports -c -o file.o | configure:9934: gcc -c -g -O2 -o out/conftest2.o conftest.c >&5 | configure:9938: $? = 0 | configure:9960: result: yes | configure:9968: checking if gcc supports -c -o file.o | configure:10015: result: yes | configure:10048: checking whether the gcc linker (/usr/bin/ld) supports shared libraries | configure:11311: result: yes | configure:11348: checking whether -lc should be explicitly linked in | configure:11356: gcc -c -g -O2 conftest.c >&5 | configure:11359: $? = 0 | configure:11374: gcc -shared -fPIC -DPIC conftest.o -v -Wl,-soname -Wl,conftest -o conftest 2\>\&1 \| /bin/grep -lc \>/dev/null 2\>\&1 | configure:11377: $? = 0 | configure:11391: result: no | configure:11551: checking dynamic linker characteristics | configure:12132: gcc -o conftest -g -O2 -Wl,-rpath -Wl,/foo conftest.c >&5 | configure:12132: $? = 0 | configure:12381: result: GNU/Linux ld.so | configure:12503: checking how to hardcode library paths into programs | configure:12528: result: immediate | configure:13076: checking whether stripping libraries is possible | configure:13081: result: yes | configure:13116: checking if libtool supports shared libraries | configure:13118: result: yes | configure:13121: checking whether to build shared libraries | configure:13146: result: yes | configure:13149: checking whether to build static libraries | configure:13153: result: yes | configure:13226: checking for library containing pow | configure:13257: gcc -o conftest -g -O2 conftest.c >&5 | conftest.c:36:6: warning: conflicting types for built-in function 'pow' | char pow (); | ^~~ | /tmp/ccgRiNAf.o: In function `main': | /root/openvswitch-2.6.0~git20160804.0a0f39d/conftest.c:40: undefined reference to `pow' | collect2: error: ld returned 1 exit status | configure:13257: $? = 1 | configure: failed program was: | | /* confdefs.h */ | | #define PACKAGE_NAME "openvswitch" | | #define PACKAGE_TARNAME "openvswitch" | | #define PACKAGE_VERSION "2.5.90" | | #define PACKAGE_STRING "openvswitch 2.5.90" | | #define PACKAGE_BUGREPORT "bugs@openvswitch.org" | | #define PACKAGE_URL "" | | #define PACKAGE "openvswitch" | | #define VERSION "2.5.90" | | #define STDC_HEADERS 1 | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_STRING_H 1 | | #define HAVE_MEMORY_H 1 | | #define HAVE_STRINGS_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_UNISTD_H 1 | | #define __EXTENSIONS__ 1 | | #define _ALL_SOURCE 1 | | #define _GNU_SOURCE 1 | | #define _POSIX_PTHREAD_SEMANTICS 1 | | #define _TANDEM_SOURCE 1 | | #define _FILE_OFFSET_BITS 64 | | #define HAVE_DLFCN_H 1 | | #define LT_OBJDIR ".libs/" | | /* end confdefs.h. */ | | | | /* Override any GCC internal prototype to avoid an error. | | Use char because int might match the return type of a GCC | | builtin and then its argument prototype would still apply. */ | | #ifdef __cplusplus | | extern "C" | | #endif | | char pow (); | | int | | main () | | { | | return pow (); | | ; | | return 0; | | } | configure:13257: gcc -o conftest -g -O2 conftest.c -lm >&5 | conftest.c:36:6: warning: conflicting types for built-in function 'pow' | char pow (); | ^~~ | configure:13257: $? = 0 | configure:13274: result: -lm | configure:13282: checking for library containing clock_gettime | configure:13313: gcc -o conftest -g -O2 conftest.c -lm >&5 | configure:13313: $? = 0 | configure:13330: result: none required | configure:13338: checking for library containing timer_create | configure:13369: gcc -o conftest -g -O2 conftest.c -lm >&5 | /tmp/ccoe9Yms.o: In function `main': | /root/openvswitch-2.6.0~git20160804.0a0f39d/conftest.c:40: undefined reference to `timer_create' | collect2: error: ld returned 1 exit status | configure:13369: $? = 1 | configure: failed program was: | | /* confdefs.h */ | | #define PACKAGE_NAME "openvswitch" | | #define PACKAGE_TARNAME "openvswitch" | | #define PACKAGE_VERSION "2.5.90" | | #define PACKAGE_STRING "openvswitch 2.5.90" | | #define PACKAGE_BUGREPORT "bugs@openvswitch.org" | | #define PACKAGE_URL "" | | #define PACKAGE "openvswitch" | | #define VERSION "2.5.90" | | #define STDC_HEADERS 1 | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_STRING_H 1 | | #define HAVE_MEMORY_H 1 | | #define HAVE_STRINGS_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_UNISTD_H 1 | | #define __EXTENSIONS__ 1 | | #define _ALL_SOURCE 1 | | #define _GNU_SOURCE 1 | | #define _POSIX_PTHREAD_SEMANTICS 1 | | #define _TANDEM_SOURCE 1 | | #define _FILE_OFFSET_BITS 64 | | #define HAVE_DLFCN_H 1 | | #define LT_OBJDIR ".libs/" | | /* end confdefs.h. */ | | | | /* Override any GCC internal prototype to avoid an error. | | Use char because int might match the return type of a GCC | | builtin and then its argument prototype would still apply. */ | | #ifdef __cplusplus | | extern "C" | | #endif | | char timer_create (); | | int | | main () | | { | | return timer_create (); | | ; | | return 0; | | } | configure:13369: gcc -o conftest -g -O2 conftest.c -lrt -lm >&5 | configure:13369: $? = 0 | configure:13386: result: -lrt | configure:13394: checking for library containing pthread_create | configure:13425: gcc -o conftest -g -O2 conftest.c -lrt -lm >&5 | /tmp/ccwXqsxB.o: In function `main': | /root/openvswitch-2.6.0~git20160804.0a0f39d/conftest.c:40: undefined reference to `pthread_create' | collect2: error: ld returned 1 exit status | configure:13425: $? = 1 | configure: failed program was: | | /* confdefs.h */ | | #define PACKAGE_NAME "openvswitch" | | #define PACKAGE_TARNAME "openvswitch" | | #define PACKAGE_VERSION "2.5.90" | | #define PACKAGE_STRING "openvswitch 2.5.90" | | #define PACKAGE_BUGREPORT "bugs@openvswitch.org" | | #define PACKAGE_URL "" | | #define PACKAGE "openvswitch" | | #define VERSION "2.5.90" | | #define STDC_HEADERS 1 | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_STRING_H 1 | | #define HAVE_MEMORY_H 1 | | #define HAVE_STRINGS_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_UNISTD_H 1 | | #define __EXTENSIONS__ 1 | | #define _ALL_SOURCE 1 | | #define _GNU_SOURCE 1 | | #define _POSIX_PTHREAD_SEMANTICS 1 | | #define _TANDEM_SOURCE 1 | | #define _FILE_OFFSET_BITS 64 | | #define HAVE_DLFCN_H 1 | | #define LT_OBJDIR ".libs/" | | /* end confdefs.h. */ | | | | /* Override any GCC internal prototype to avoid an error. | | Use char because int might match the return type of a GCC | | builtin and then its argument prototype would still apply. */ | | #ifdef __cplusplus | | extern "C" | | #endif | | char pthread_create (); | | int | | main () | | { | | return pthread_create (); | | ; | | return 0; | | } | configure:13425: gcc -o conftest -g -O2 conftest.c -lpthread -lrt -lm >&5 | configure:13425: $? = 0 | configure:13442: result: -lpthread | configure:13450: checking whether strerror_r is declared | configure:13450: gcc -c -g -O2 conftest.c >&5 | configure:13450: $? = 0 | configure:13450: result: yes | configure:13463: checking for strerror_r | configure:13463: gcc -o conftest -g -O2 conftest.c -lpthread -lrt -lm >&5 | configure:13463: $? = 0 | configure:13463: result: yes | configure:13472: checking whether strerror_r returns char * | configure:13496: gcc -c -g -O2 conftest.c >&5 | configure:13496: $? = 0 | configure:13534: result: yes | configure:13543: checking vmware.h usability | configure:13543: gcc -c -g -O2 conftest.c >&5 | conftest.c:65:20: fatal error: vmware.h: No such file or directory | #include | ^ | compilation terminated. | configure:13543: $? = 1 | configure: failed program was: | | /* confdefs.h */ | | #define PACKAGE_NAME "openvswitch" | | #define PACKAGE_TARNAME "openvswitch" | | #define PACKAGE_VERSION "2.5.90" | | #define PACKAGE_STRING "openvswitch 2.5.90" | | #define PACKAGE_BUGREPORT "bugs@openvswitch.org" | | #define PACKAGE_URL "" | | #define PACKAGE "openvswitch" | | #define VERSION "2.5.90" | | #define STDC_HEADERS 1 | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_STRING_H 1 | | #define HAVE_MEMORY_H 1 | | #define HAVE_STRINGS_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_UNISTD_H 1 | | #define __EXTENSIONS__ 1 | | #define _ALL_SOURCE 1 | | #define _GNU_SOURCE 1 | | #define _POSIX_PTHREAD_SEMANTICS 1 | | #define _TANDEM_SOURCE 1 | | #define _FILE_OFFSET_BITS 64 | | #define HAVE_DLFCN_H 1 | | #define LT_OBJDIR ".libs/" | | #define HAVE_DECL_STRERROR_R 1 | | #define HAVE_STRERROR_R 1 | | #define STRERROR_R_CHAR_P 1 | | /* end confdefs.h. */ | | #include | | #ifdef HAVE_SYS_TYPES_H | | # include | | #endif | | #ifdef HAVE_SYS_STAT_H | | # include | | #endif | | #ifdef STDC_HEADERS | | # include | | # include | | #else | | # ifdef HAVE_STDLIB_H | | # include | | # endif | | #endif | | #ifdef HAVE_STRING_H | | # if !defined STDC_HEADERS && defined HAVE_MEMORY_H | | # include | | # endif | | # include | | #endif | | #ifdef HAVE_STRINGS_H | | # include | | #endif | | #ifdef HAVE_INTTYPES_H | | # include | | #endif | | #ifdef HAVE_STDINT_H | | # include | | #endif | | #ifdef HAVE_UNISTD_H | | # include | | #endif | | #include | configure:13543: result: no | configure:13543: checking vmware.h presence | configure:13543: gcc -E conftest.c | conftest.c:32:20: fatal error: vmware.h: No such file or directory | #include | ^ | compilation terminated. | configure:13543: $? = 1 | configure: failed program was: | | /* confdefs.h */ | | #define PACKAGE_NAME "openvswitch" | | #define PACKAGE_TARNAME "openvswitch" | | #define PACKAGE_VERSION "2.5.90" | | #define PACKAGE_STRING "openvswitch 2.5.90" | | #define PACKAGE_BUGREPORT "bugs@openvswitch.org" | | #define PACKAGE_URL "" | | #define PACKAGE "openvswitch" | | #define VERSION "2.5.90" | | #define STDC_HEADERS 1 | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_STRING_H 1 | | #define HAVE_MEMORY_H 1 | | #define HAVE_STRINGS_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_UNISTD_H 1 | | #define __EXTENSIONS__ 1 | | #define _ALL_SOURCE 1 | | #define _GNU_SOURCE 1 | | #define _POSIX_PTHREAD_SEMANTICS 1 | | #define _TANDEM_SOURCE 1 | | #define _FILE_OFFSET_BITS 64 | | #define HAVE_DLFCN_H 1 | | #define LT_OBJDIR ".libs/" | | #define HAVE_DECL_STRERROR_R 1 | | #define HAVE_STRERROR_R 1 | | #define STRERROR_R_CHAR_P 1 | | /* end confdefs.h. */ | | #include | configure:13543: result: no | configure:13543: checking for vmware.h | configure:13543: result: no | configure:13564: checking for MSVC x64 compiler | configure:13577: result: no | configure:13581: checking windows.h usability | configure:13581: gcc -c -g -O2 conftest.c >&5 | conftest.c:65:21: fatal error: windows.h: No such file or directory | #include | ^ | compilation terminated. | configure:13581: $? = 1 | configure: failed program was: | | /* confdefs.h */ | | #define PACKAGE_NAME "openvswitch" | | #define PACKAGE_TARNAME "openvswitch" | | #define PACKAGE_VERSION "2.5.90" | | #define PACKAGE_STRING "openvswitch 2.5.90" | | #define PACKAGE_BUGREPORT "bugs@openvswitch.org" | | #define PACKAGE_URL "" | | #define PACKAGE "openvswitch" | | #define VERSION "2.5.90" | | #define STDC_HEADERS 1 | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_STRING_H 1 | | #define HAVE_MEMORY_H 1 | | #define HAVE_STRINGS_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_UNISTD_H 1 | | #define __EXTENSIONS__ 1 | | #define _ALL_SOURCE 1 | | #define _GNU_SOURCE 1 | | #define _POSIX_PTHREAD_SEMANTICS 1 | | #define _TANDEM_SOURCE 1 | | #define _FILE_OFFSET_BITS 64 | | #define HAVE_DLFCN_H 1 | | #define LT_OBJDIR ".libs/" | | #define HAVE_DECL_STRERROR_R 1 | | #define HAVE_STRERROR_R 1 | | #define STRERROR_R_CHAR_P 1 | | /* end confdefs.h. */ | | #include | | #ifdef HAVE_SYS_TYPES_H | | # include | | #endif | | #ifdef HAVE_SYS_STAT_H | | # include | | #endif | | #ifdef STDC_HEADERS | | # include | | # include | | #else | | # ifdef HAVE_STDLIB_H | | # include | | # endif | | #endif | | #ifdef HAVE_STRING_H | | # if !defined STDC_HEADERS && defined HAVE_MEMORY_H | | # include | | # endif | | # include | | #endif | | #ifdef HAVE_STRINGS_H | | # include | | #endif | | #ifdef HAVE_INTTYPES_H | | # include | | #endif | | #ifdef HAVE_STDINT_H | | # include | | #endif | | #ifdef HAVE_UNISTD_H | | # include | | #endif | | #include | configure:13581: result: no | configure:13581: checking windows.h presence | configure:13581: gcc -E conftest.c | conftest.c:32:21: fatal error: windows.h: No such file or directory | #include | ^ | compilation terminated. | configure:13581: $? = 1 | configure: failed program was: | | /* confdefs.h */ | | #define PACKAGE_NAME "openvswitch" | | #define PACKAGE_TARNAME "openvswitch" | | #define PACKAGE_VERSION "2.5.90" | | #define PACKAGE_STRING "openvswitch 2.5.90" | | #define PACKAGE_BUGREPORT "bugs@openvswitch.org" | | #define PACKAGE_URL "" | | #define PACKAGE "openvswitch" | | #define VERSION "2.5.90" | | #define STDC_HEADERS 1 | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_STRING_H 1 | | #define HAVE_MEMORY_H 1 | | #define HAVE_STRINGS_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_UNISTD_H 1 | | #define __EXTENSIONS__ 1 | | #define _ALL_SOURCE 1 | | #define _GNU_SOURCE 1 | | #define _POSIX_PTHREAD_SEMANTICS 1 | | #define _TANDEM_SOURCE 1 | | #define _FILE_OFFSET_BITS 64 | | #define HAVE_DLFCN_H 1 | | #define LT_OBJDIR ".libs/" | | #define HAVE_DECL_STRERROR_R 1 | | #define HAVE_STRERROR_R 1 | | #define STRERROR_R_CHAR_P 1 | | /* end confdefs.h. */ | | #include | configure:13581: result: no | configure:13581: checking for windows.h | configure:13581: result: no | configure:13741: checking for linux/netlink.h | configure:13741: gcc -c -g -O2 conftest.c >&5 | configure:13741: $? = 0 | configure:13741: result: yes | configure:13797: checking for pkg-config | configure:13830: result: no | configure:13860: checking for openssl/ssl.h in /usr/local/ssl | configure:13875: result: no | configure:13860: checking for openssl/ssl.h in /usr/lib/ssl | configure:13875: result: no | configure:13860: checking for openssl/ssl.h in /usr/ssl | configure:13875: result: no | configure:13860: checking for openssl/ssl.h in /usr/pkg | configure:13875: result: no | configure:13860: checking for openssl/ssl.h in /usr/local | configure:13875: result: no | configure:13860: checking for openssl/ssl.h in /usr | configure:13871: result: yes | configure:13887: checking whether compiling and linking against OpenSSL works | Trying link with SSL_LDFLAGS=-L/usr/lib; SSL_LIBS=-lssl -lcrypto; SSL_INCLUDES=-I/usr/include | configure:13909: gcc -o conftest -g -O2 -I/usr/include -L/usr/lib conftest.c -lssl -lcrypto -lpthread -lrt -lm >&5 | configure:13909: $? = 0 | configure:13911: result: yes | configure:13978: checking for capng_clear in -lcap-ng | configure:14003: gcc -o conftest -g -O2 conftest.c -lcap-ng -lpthread -lrt -lm >&5 | configure:14003: $? = 0 | configure:14012: result: yes | configure:14059: checking for Python 2.x for x >= 7 | configure:14092: result: /usr/bin/python | configure:14112: checking for Python 3.x for x >= 4 | configure:14145: result: /usr/bin/python3 | configure:14165: checking for flake8 | configure:14176: result: no | configure:14186: checking for dot | configure:14197: result: yes | configure:14207: checking net/if_packet.h usability | configure:14207: gcc -c -g -O2 conftest.c >&5 | configure:14207: $? = 0 | configure:14207: result: yes | configure:14207: checking net/if_packet.h presence | configure:14207: gcc -E conftest.c | configure:14207: $? = 0 | configure:14207: result: yes | configure:14207: checking for net/if_packet.h | configure:14207: result: yes | configure:14228: checking net/if_dl.h usability | configure:14228: gcc -c -g -O2 conftest.c >&5 | conftest.c:70:23: fatal error: net/if_dl.h: No such file or directory | #include | ^ | compilation terminated. | configure:14228: $? = 1 | configure: failed program was: | | /* confdefs.h */ | | #define PACKAGE_NAME "openvswitch" | | #define PACKAGE_TARNAME "openvswitch" | | #define PACKAGE_VERSION "2.5.90" | | #define PACKAGE_STRING "openvswitch 2.5.90" | | #define PACKAGE_BUGREPORT "bugs@openvswitch.org" | | #define PACKAGE_URL "" | | #define PACKAGE "openvswitch" | | #define VERSION "2.5.90" | | #define STDC_HEADERS 1 | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_STRING_H 1 | | #define HAVE_MEMORY_H 1 | | #define HAVE_STRINGS_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_UNISTD_H 1 | | #define __EXTENSIONS__ 1 | | #define _ALL_SOURCE 1 | | #define _GNU_SOURCE 1 | | #define _POSIX_PTHREAD_SEMANTICS 1 | | #define _TANDEM_SOURCE 1 | | #define _FILE_OFFSET_BITS 64 | | #define HAVE_DLFCN_H 1 | | #define LT_OBJDIR ".libs/" | | #define HAVE_DECL_STRERROR_R 1 | | #define HAVE_STRERROR_R 1 | | #define STRERROR_R_CHAR_P 1 | | #define VSTUDIO_DDK 1 | | #define HAVE_NETLINK 1 | | #define HAVE_OPENSSL 1 | | #define HAVE_LIBCAPNG 1 | | #define HAVE_IF_PACKET 1 | | /* end confdefs.h. */ | | #include | | #ifdef HAVE_SYS_TYPES_H | | # include | | #endif | | #ifdef HAVE_SYS_STAT_H | | # include | | #endif | | #ifdef STDC_HEADERS | | # include | | # include | | #else | | # ifdef HAVE_STDLIB_H | | # include | | # endif | | #endif | | #ifdef HAVE_STRING_H | | # if !defined STDC_HEADERS && defined HAVE_MEMORY_H | | # include | | # endif | | # include | | #endif | | #ifdef HAVE_STRINGS_H | | # include | | #endif | | #ifdef HAVE_INTTYPES_H | | # include | | #endif | | #ifdef HAVE_STDINT_H | | # include | | #endif | | #ifdef HAVE_UNISTD_H | | # include | | #endif | | #include | configure:14228: result: no | configure:14228: checking net/if_dl.h presence | configure:14228: gcc -E conftest.c | conftest.c:37:23: fatal error: net/if_dl.h: No such file or directory | #include | ^ | compilation terminated. | configure:14228: $? = 1 | configure: failed program was: | | /* confdefs.h */ | | #define PACKAGE_NAME "openvswitch" | | #define PACKAGE_TARNAME "openvswitch" | | #define PACKAGE_VERSION "2.5.90" | | #define PACKAGE_STRING "openvswitch 2.5.90" | | #define PACKAGE_BUGREPORT "bugs@openvswitch.org" | | #define PACKAGE_URL "" | | #define PACKAGE "openvswitch" | | #define VERSION "2.5.90" | | #define STDC_HEADERS 1 | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_STRING_H 1 | | #define HAVE_MEMORY_H 1 | | #define HAVE_STRINGS_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_UNISTD_H 1 | | #define __EXTENSIONS__ 1 | | #define _ALL_SOURCE 1 | | #define _GNU_SOURCE 1 | | #define _POSIX_PTHREAD_SEMANTICS 1 | | #define _TANDEM_SOURCE 1 | | #define _FILE_OFFSET_BITS 64 | | #define HAVE_DLFCN_H 1 | | #define LT_OBJDIR ".libs/" | | #define HAVE_DECL_STRERROR_R 1 | | #define HAVE_STRERROR_R 1 | | #define STRERROR_R_CHAR_P 1 | | #define VSTUDIO_DDK 1 | | #define HAVE_NETLINK 1 | | #define HAVE_OPENSSL 1 | | #define HAVE_LIBCAPNG 1 | | #define HAVE_IF_PACKET 1 | | /* end confdefs.h. */ | | #include | configure:14228: result: no | configure:14228: checking for net/if_dl.h | configure:14228: result: no | configure:14307: checking whether strtok_r macro segfaults on some inputs | configure:14343: gcc -o conftest -g -O2 conftest.c -lpthread -lrt -lm >&5 | conftest.c: In function 'main': | conftest.c:54:28: warning: ignoring return value of 'freopen', declared with attribute warn_unused_result [-Wunused-result] | freopen ("/dev/null", "w", stdout); | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ | configure:14343: $? = 0 | configure:14343: ./conftest | configure:14343: $? = 0 | configure:14353: result: no | configure:14361: checking whether sys_siglist is declared | configure:14361: gcc -c -g -O2 conftest.c >&5 | configure:14361: $? = 0 | configure:14361: result: yes | configure:14373: checking for struct stat.st_mtim.tv_nsec | configure:14373: gcc -c -g -O2 conftest.c >&5 | configure:14373: $? = 0 | configure:14373: result: yes | configure:14383: checking for struct stat.st_mtimensec | configure:14383: gcc -c -g -O2 conftest.c >&5 | conftest.c: In function 'main': | conftest.c:45:12: error: 'struct stat' has no member named 'st_mtimensec'; did you mean 'st_mtim'? | if (ac_aggr.st_mtimensec) | ^ | configure:14383: $? = 1 | configure: failed program was: | | /* confdefs.h */ | | #define PACKAGE_NAME "openvswitch" | | #define PACKAGE_TARNAME "openvswitch" | | #define PACKAGE_VERSION "2.5.90" | | #define PACKAGE_STRING "openvswitch 2.5.90" | | #define PACKAGE_BUGREPORT "bugs@openvswitch.org" | | #define PACKAGE_URL "" | | #define PACKAGE "openvswitch" | | #define VERSION "2.5.90" | | #define STDC_HEADERS 1 | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_STRING_H 1 | | #define HAVE_MEMORY_H 1 | | #define HAVE_STRINGS_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_UNISTD_H 1 | | #define __EXTENSIONS__ 1 | | #define _ALL_SOURCE 1 | | #define _GNU_SOURCE 1 | | #define _POSIX_PTHREAD_SEMANTICS 1 | | #define _TANDEM_SOURCE 1 | | #define _FILE_OFFSET_BITS 64 | | #define HAVE_DLFCN_H 1 | | #define LT_OBJDIR ".libs/" | | #define HAVE_DECL_STRERROR_R 1 | | #define HAVE_STRERROR_R 1 | | #define STRERROR_R_CHAR_P 1 | | #define VSTUDIO_DDK 1 | | #define HAVE_NETLINK 1 | | #define HAVE_OPENSSL 1 | | #define HAVE_LIBCAPNG 1 | | #define HAVE_IF_PACKET 1 | | #define HAVE_DECL_SYS_SIGLIST 1 | | #define HAVE_STRUCT_STAT_ST_MTIM_TV_NSEC 1 | | /* end confdefs.h. */ | | #include | | | | int | | main () | | { | | static struct stat ac_aggr; | | if (ac_aggr.st_mtimensec) | | return 0; | | ; | | return 0; | | } | configure:14383: gcc -c -g -O2 conftest.c >&5 | conftest.c: In function 'main': | conftest.c:45:19: error: 'struct stat' has no member named 'st_mtimensec'; did you mean 'st_mtim'? | if (sizeof ac_aggr.st_mtimensec) | ^ | configure:14383: $? = 1 | configure: failed program was: | | /* confdefs.h */ | | #define PACKAGE_NAME "openvswitch" | | #define PACKAGE_TARNAME "openvswitch" | | #define PACKAGE_VERSION "2.5.90" | | #define PACKAGE_STRING "openvswitch 2.5.90" | | #define PACKAGE_BUGREPORT "bugs@openvswitch.org" | | #define PACKAGE_URL "" | | #define PACKAGE "openvswitch" | | #define VERSION "2.5.90" | | #define STDC_HEADERS 1 | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_STRING_H 1 | | #define HAVE_MEMORY_H 1 | | #define HAVE_STRINGS_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_UNISTD_H 1 | | #define __EXTENSIONS__ 1 | | #define _ALL_SOURCE 1 | | #define _GNU_SOURCE 1 | | #define _POSIX_PTHREAD_SEMANTICS 1 | | #define _TANDEM_SOURCE 1 | | #define _FILE_OFFSET_BITS 64 | | #define HAVE_DLFCN_H 1 | | #define LT_OBJDIR ".libs/" | | #define HAVE_DECL_STRERROR_R 1 | | #define HAVE_STRERROR_R 1 | | #define STRERROR_R_CHAR_P 1 | | #define VSTUDIO_DDK 1 | | #define HAVE_NETLINK 1 | | #define HAVE_OPENSSL 1 | | #define HAVE_LIBCAPNG 1 | | #define HAVE_IF_PACKET 1 | | #define HAVE_DECL_SYS_SIGLIST 1 | | #define HAVE_STRUCT_STAT_ST_MTIM_TV_NSEC 1 | | /* end confdefs.h. */ | | #include | | | | int | | main () | | { | | static struct stat ac_aggr; | | if (sizeof ac_aggr.st_mtimensec) | | return 0; | | ; | | return 0; | | } | configure:14383: result: no | configure:14394: checking for struct ifreq.ifr_flagshigh | configure:14394: gcc -c -g -O2 conftest.c >&5 | conftest.c: In function 'main': | conftest.c:45:12: error: 'struct ifreq' has no member named 'ifr_flagshigh' | if (ac_aggr.ifr_flagshigh) | ^ | configure:14394: $? = 1 | configure: failed program was: | | /* confdefs.h */ | | #define PACKAGE_NAME "openvswitch" | | #define PACKAGE_TARNAME "openvswitch" | | #define PACKAGE_VERSION "2.5.90" | | #define PACKAGE_STRING "openvswitch 2.5.90" | | #define PACKAGE_BUGREPORT "bugs@openvswitch.org" | | #define PACKAGE_URL "" | | #define PACKAGE "openvswitch" | | #define VERSION "2.5.90" | | #define STDC_HEADERS 1 | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_STRING_H 1 | | #define HAVE_MEMORY_H 1 | | #define HAVE_STRINGS_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_UNISTD_H 1 | | #define __EXTENSIONS__ 1 | | #define _ALL_SOURCE 1 | | #define _GNU_SOURCE 1 | | #define _POSIX_PTHREAD_SEMANTICS 1 | | #define _TANDEM_SOURCE 1 | | #define _FILE_OFFSET_BITS 64 | | #define HAVE_DLFCN_H 1 | | #define LT_OBJDIR ".libs/" | | #define HAVE_DECL_STRERROR_R 1 | | #define HAVE_STRERROR_R 1 | | #define STRERROR_R_CHAR_P 1 | | #define VSTUDIO_DDK 1 | | #define HAVE_NETLINK 1 | | #define HAVE_OPENSSL 1 | | #define HAVE_LIBCAPNG 1 | | #define HAVE_IF_PACKET 1 | | #define HAVE_DECL_SYS_SIGLIST 1 | | #define HAVE_STRUCT_STAT_ST_MTIM_TV_NSEC 1 | | /* end confdefs.h. */ | | #include | | | | int | | main () | | { | | static struct ifreq ac_aggr; | | if (ac_aggr.ifr_flagshigh) | | return 0; | | ; | | return 0; | | } | configure:14394: gcc -c -g -O2 conftest.c >&5 | conftest.c: In function 'main': | conftest.c:45:19: error: 'struct ifreq' has no member named 'ifr_flagshigh' | if (sizeof ac_aggr.ifr_flagshigh) | ^ | configure:14394: $? = 1 | configure: failed program was: | | /* confdefs.h */ | | #define PACKAGE_NAME "openvswitch" | | #define PACKAGE_TARNAME "openvswitch" | | #define PACKAGE_VERSION "2.5.90" | | #define PACKAGE_STRING "openvswitch 2.5.90" | | #define PACKAGE_BUGREPORT "bugs@openvswitch.org" | | #define PACKAGE_URL "" | | #define PACKAGE "openvswitch" | | #define VERSION "2.5.90" | | #define STDC_HEADERS 1 | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_STRING_H 1 | | #define HAVE_MEMORY_H 1 | | #define HAVE_STRINGS_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_UNISTD_H 1 | | #define __EXTENSIONS__ 1 | | #define _ALL_SOURCE 1 | | #define _GNU_SOURCE 1 | | #define _POSIX_PTHREAD_SEMANTICS 1 | | #define _TANDEM_SOURCE 1 | | #define _FILE_OFFSET_BITS 64 | | #define HAVE_DLFCN_H 1 | | #define LT_OBJDIR ".libs/" | | #define HAVE_DECL_STRERROR_R 1 | | #define HAVE_STRERROR_R 1 | | #define STRERROR_R_CHAR_P 1 | | #define VSTUDIO_DDK 1 | | #define HAVE_NETLINK 1 | | #define HAVE_OPENSSL 1 | | #define HAVE_LIBCAPNG 1 | | #define HAVE_IF_PACKET 1 | | #define HAVE_DECL_SYS_SIGLIST 1 | | #define HAVE_STRUCT_STAT_ST_MTIM_TV_NSEC 1 | | /* end confdefs.h. */ | | #include | | | | int | | main () | | { | | static struct ifreq ac_aggr; | | if (sizeof ac_aggr.ifr_flagshigh) | | return 0; | | ; | | return 0; | | } | configure:14394: result: no | configure:14408: checking for mlockall | configure:14408: gcc -o conftest -g -O2 conftest.c -lpthread -lrt -lm >&5 | configure:14408: $? = 0 | configure:14408: result: yes | configure:14408: checking for strnlen | configure:14408: gcc -o conftest -g -O2 conftest.c -lpthread -lrt -lm >&5 | configure:14408: $? = 0 | configure:14408: result: yes | configure:14408: checking for getloadavg | configure:14408: gcc -o conftest -g -O2 conftest.c -lpthread -lrt -lm >&5 | configure:14408: $? = 0 | configure:14408: result: yes | configure:14408: checking for statvfs | configure:14408: gcc -o conftest -g -O2 conftest.c -lpthread -lrt -lm >&5 | configure:14408: $? = 0 | configure:14408: result: yes | configure:14408: checking for getmntent_r | configure:14408: gcc -o conftest -g -O2 conftest.c -lpthread -lrt -lm >&5 | configure:14408: $? = 0 | configure:14408: result: yes | configure:14420: checking mntent.h usability | configure:14420: gcc -c -g -O2 conftest.c >&5 | configure:14420: $? = 0 | configure:14420: result: yes | configure:14420: checking mntent.h presence | configure:14420: gcc -E conftest.c | configure:14420: $? = 0 | configure:14420: result: yes | configure:14420: checking for mntent.h | configure:14420: result: yes | configure:14420: checking sys/statvfs.h usability | configure:14420: gcc -c -g -O2 conftest.c >&5 | configure:14420: $? = 0 | configure:14420: result: yes | configure:14420: checking sys/statvfs.h presence | configure:14420: gcc -E conftest.c | configure:14420: $? = 0 | configure:14420: result: yes | configure:14420: checking for sys/statvfs.h | configure:14420: result: yes | configure:14420: checking linux/types.h usability | configure:14420: gcc -c -g -O2 conftest.c >&5 | configure:14420: $? = 0 | configure:14420: result: yes | configure:14420: checking linux/types.h presence | configure:14420: gcc -E conftest.c | configure:14420: $? = 0 | configure:14420: result: yes | configure:14420: checking for linux/types.h | configure:14420: result: yes | configure:14420: checking linux/if_ether.h usability | configure:14420: gcc -c -g -O2 conftest.c >&5 | configure:14420: $? = 0 | configure:14420: result: yes | configure:14420: checking linux/if_ether.h presence | configure:14420: gcc -E conftest.c | configure:14420: $? = 0 | configure:14420: result: yes | configure:14420: checking for linux/if_ether.h | configure:14420: result: yes | configure:14420: checking stdatomic.h usability | configure:14420: gcc -c -g -O2 conftest.c >&5 | configure:14420: $? = 0 | configure:14420: result: yes | configure:14420: checking stdatomic.h presence | configure:14420: gcc -E conftest.c | configure:14420: $? = 0 | configure:14420: result: yes | configure:14420: checking for stdatomic.h | configure:14420: result: yes | configure:14432: checking for net/if_mib.h | configure:14432: gcc -c -g -O2 conftest.c >&5 | conftest.c:52:24: fatal error: net/if_mib.h: No such file or directory | #include | ^ | compilation terminated. | configure:14432: $? = 1 | configure: failed program was: | | /* confdefs.h */ | | #define PACKAGE_NAME "openvswitch" | | #define PACKAGE_TARNAME "openvswitch" | | #define PACKAGE_VERSION "2.5.90" | | #define PACKAGE_STRING "openvswitch 2.5.90" | | #define PACKAGE_BUGREPORT "bugs@openvswitch.org" | | #define PACKAGE_URL "" | | #define PACKAGE "openvswitch" | | #define VERSION "2.5.90" | | #define STDC_HEADERS 1 | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_STRING_H 1 | | #define HAVE_MEMORY_H 1 | | #define HAVE_STRINGS_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_UNISTD_H 1 | | #define __EXTENSIONS__ 1 | | #define _ALL_SOURCE 1 | | #define _GNU_SOURCE 1 | | #define _POSIX_PTHREAD_SEMANTICS 1 | | #define _TANDEM_SOURCE 1 | | #define _FILE_OFFSET_BITS 64 | | #define HAVE_DLFCN_H 1 | | #define LT_OBJDIR ".libs/" | | #define HAVE_DECL_STRERROR_R 1 | | #define HAVE_STRERROR_R 1 | | #define STRERROR_R_CHAR_P 1 | | #define VSTUDIO_DDK 1 | | #define HAVE_NETLINK 1 | | #define HAVE_OPENSSL 1 | | #define HAVE_LIBCAPNG 1 | | #define HAVE_IF_PACKET 1 | | #define HAVE_DECL_SYS_SIGLIST 1 | | #define HAVE_STRUCT_STAT_ST_MTIM_TV_NSEC 1 | | #define HAVE_MLOCKALL 1 | | #define HAVE_STRNLEN 1 | | #define HAVE_GETLOADAVG 1 | | #define HAVE_STATVFS 1 | | #define HAVE_GETMNTENT_R 1 | | #define HAVE_MNTENT_H 1 | | #define HAVE_SYS_STATVFS_H 1 | | #define HAVE_LINUX_TYPES_H 1 | | #define HAVE_LINUX_IF_ETHER_H 1 | | #define HAVE_STDATOMIC_H 1 | | /* end confdefs.h. */ | | #include | | #include | | | | #include | configure:14432: result: no | configure:14472: checking for library containing backtrace | configure:14503: gcc -o conftest -g -O2 conftest.c -lpthread -lrt -lm >&5 | configure:14503: $? = 0 | configure:14520: result: none required | configure:14532: checking linux/perf_event.h usability | configure:14532: gcc -c -g -O2 conftest.c >&5 | configure:14532: $? = 0 | configure:14532: result: yes | configure:14532: checking linux/perf_event.h presence | configure:14532: gcc -E conftest.c | configure:14532: $? = 0 | configure:14532: result: yes | configure:14532: checking for linux/perf_event.h | configure:14532: result: yes | configure:14544: checking valgrind/valgrind.h usability | configure:14544: gcc -c -g -O2 conftest.c >&5 | conftest.c:84:31: fatal error: valgrind/valgrind.h: No such file or directory | #include | ^ | compilation terminated. | configure:14544: $? = 1 | configure: failed program was: | | /* confdefs.h */ | | #define PACKAGE_NAME "openvswitch" | | #define PACKAGE_TARNAME "openvswitch" | | #define PACKAGE_VERSION "2.5.90" | | #define PACKAGE_STRING "openvswitch 2.5.90" | | #define PACKAGE_BUGREPORT "bugs@openvswitch.org" | | #define PACKAGE_URL "" | | #define PACKAGE "openvswitch" | | #define VERSION "2.5.90" | | #define STDC_HEADERS 1 | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_STRING_H 1 | | #define HAVE_MEMORY_H 1 | | #define HAVE_STRINGS_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_UNISTD_H 1 | | #define __EXTENSIONS__ 1 | | #define _ALL_SOURCE 1 | | #define _GNU_SOURCE 1 | | #define _POSIX_PTHREAD_SEMANTICS 1 | | #define _TANDEM_SOURCE 1 | | #define _FILE_OFFSET_BITS 64 | | #define HAVE_DLFCN_H 1 | | #define LT_OBJDIR ".libs/" | | #define HAVE_DECL_STRERROR_R 1 | | #define HAVE_STRERROR_R 1 | | #define STRERROR_R_CHAR_P 1 | | #define VSTUDIO_DDK 1 | | #define HAVE_NETLINK 1 | | #define HAVE_OPENSSL 1 | | #define HAVE_LIBCAPNG 1 | | #define HAVE_IF_PACKET 1 | | #define HAVE_DECL_SYS_SIGLIST 1 | | #define HAVE_STRUCT_STAT_ST_MTIM_TV_NSEC 1 | | #define HAVE_MLOCKALL 1 | | #define HAVE_STRNLEN 1 | | #define HAVE_GETLOADAVG 1 | | #define HAVE_STATVFS 1 | | #define HAVE_GETMNTENT_R 1 | | #define HAVE_MNTENT_H 1 | | #define HAVE_SYS_STATVFS_H 1 | | #define HAVE_LINUX_TYPES_H 1 | | #define HAVE_LINUX_IF_ETHER_H 1 | | #define HAVE_STDATOMIC_H 1 | | #define HAVE_BACKTRACE 1 | | #define HAVE_LINUX_PERF_EVENT_H 1 | | /* end confdefs.h. */ | | #include | | #ifdef HAVE_SYS_TYPES_H | | # include | | #endif | | #ifdef HAVE_SYS_STAT_H | | # include | | #endif | | #ifdef STDC_HEADERS | | # include | | # include | | #else | | # ifdef HAVE_STDLIB_H | | # include | | # endif | | #endif | | #ifdef HAVE_STRING_H | | # if !defined STDC_HEADERS && defined HAVE_MEMORY_H | | # include | | # endif | | # include | | #endif | | #ifdef HAVE_STRINGS_H | | # include | | #endif | | #ifdef HAVE_INTTYPES_H | | # include | | #endif | | #ifdef HAVE_STDINT_H | | # include | | #endif | | #ifdef HAVE_UNISTD_H | | # include | | #endif | | #include | configure:14544: result: no | configure:14544: checking valgrind/valgrind.h presence | configure:14544: gcc -E conftest.c | conftest.c:51:31: fatal error: valgrind/valgrind.h: No such file or directory | #include | ^ | compilation terminated. | configure:14544: $? = 1 | configure: failed program was: | | /* confdefs.h */ | | #define PACKAGE_NAME "openvswitch" | | #define PACKAGE_TARNAME "openvswitch" | | #define PACKAGE_VERSION "2.5.90" | | #define PACKAGE_STRING "openvswitch 2.5.90" | | #define PACKAGE_BUGREPORT "bugs@openvswitch.org" | | #define PACKAGE_URL "" | | #define PACKAGE "openvswitch" | | #define VERSION "2.5.90" | | #define STDC_HEADERS 1 | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_STRING_H 1 | | #define HAVE_MEMORY_H 1 | | #define HAVE_STRINGS_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_UNISTD_H 1 | | #define __EXTENSIONS__ 1 | | #define _ALL_SOURCE 1 | | #define _GNU_SOURCE 1 | | #define _POSIX_PTHREAD_SEMANTICS 1 | | #define _TANDEM_SOURCE 1 | | #define _FILE_OFFSET_BITS 64 | | #define HAVE_DLFCN_H 1 | | #define LT_OBJDIR ".libs/" | | #define HAVE_DECL_STRERROR_R 1 | | #define HAVE_STRERROR_R 1 | | #define STRERROR_R_CHAR_P 1 | | #define VSTUDIO_DDK 1 | | #define HAVE_NETLINK 1 | | #define HAVE_OPENSSL 1 | | #define HAVE_LIBCAPNG 1 | | #define HAVE_IF_PACKET 1 | | #define HAVE_DECL_SYS_SIGLIST 1 | | #define HAVE_STRUCT_STAT_ST_MTIM_TV_NSEC 1 | | #define HAVE_MLOCKALL 1 | | #define HAVE_STRNLEN 1 | | #define HAVE_GETLOADAVG 1 | | #define HAVE_STATVFS 1 | | #define HAVE_GETMNTENT_R 1 | | #define HAVE_MNTENT_H 1 | | #define HAVE_SYS_STATVFS_H 1 | | #define HAVE_LINUX_TYPES_H 1 | | #define HAVE_LINUX_IF_ETHER_H 1 | | #define HAVE_STDATOMIC_H 1 | | #define HAVE_BACKTRACE 1 | | #define HAVE_LINUX_PERF_EVENT_H 1 | | /* end confdefs.h. */ | | #include | configure:14544: result: no | configure:14544: checking for valgrind/valgrind.h | configure:14544: result: no | configure:14554: checking for connect in -lsocket | configure:14579: gcc -o conftest -g -O2 conftest.c -lsocket -lpthread -lrt -lm >&5 | /usr/bin/ld: cannot find -lsocket | collect2: error: ld returned 1 exit status | configure:14579: $? = 1 | configure: failed program was: | | /* confdefs.h */ | | #define PACKAGE_NAME "openvswitch" | | #define PACKAGE_TARNAME "openvswitch" | | #define PACKAGE_VERSION "2.5.90" | | #define PACKAGE_STRING "openvswitch 2.5.90" | | #define PACKAGE_BUGREPORT "bugs@openvswitch.org" | | #define PACKAGE_URL "" | | #define PACKAGE "openvswitch" | | #define VERSION "2.5.90" | | #define STDC_HEADERS 1 | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_STRING_H 1 | | #define HAVE_MEMORY_H 1 | | #define HAVE_STRINGS_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_UNISTD_H 1 | | #define __EXTENSIONS__ 1 | | #define _ALL_SOURCE 1 | | #define _GNU_SOURCE 1 | | #define _POSIX_PTHREAD_SEMANTICS 1 | | #define _TANDEM_SOURCE 1 | | #define _FILE_OFFSET_BITS 64 | | #define HAVE_DLFCN_H 1 | | #define LT_OBJDIR ".libs/" | | #define HAVE_DECL_STRERROR_R 1 | | #define HAVE_STRERROR_R 1 | | #define STRERROR_R_CHAR_P 1 | | #define VSTUDIO_DDK 1 | | #define HAVE_NETLINK 1 | | #define HAVE_OPENSSL 1 | | #define HAVE_LIBCAPNG 1 | | #define HAVE_IF_PACKET 1 | | #define HAVE_DECL_SYS_SIGLIST 1 | | #define HAVE_STRUCT_STAT_ST_MTIM_TV_NSEC 1 | | #define HAVE_MLOCKALL 1 | | #define HAVE_STRNLEN 1 | | #define HAVE_GETLOADAVG 1 | | #define HAVE_STATVFS 1 | | #define HAVE_GETMNTENT_R 1 | | #define HAVE_MNTENT_H 1 | | #define HAVE_SYS_STATVFS_H 1 | | #define HAVE_LINUX_TYPES_H 1 | | #define HAVE_LINUX_IF_ETHER_H 1 | | #define HAVE_STDATOMIC_H 1 | | #define HAVE_BACKTRACE 1 | | #define HAVE_LINUX_PERF_EVENT_H 1 | | /* end confdefs.h. */ | | | | /* Override any GCC internal prototype to avoid an error. | | Use char because int might match the return type of a GCC | | builtin and then its argument prototype would still apply. */ | | #ifdef __cplusplus | | extern "C" | | #endif | | char connect (); | | int | | main () | | { | | return connect (); | | ; | | return 0; | | } | configure:14588: result: no | configure:14599: checking for library containing gethostbyname | configure:14630: gcc -o conftest -g -O2 conftest.c -lpthread -lrt -lm >&5 | configure:14630: $? = 0 | configure:14647: result: none required | configure:14655: checking XenServer release | configure:14667: result: none | configure:14679: checking for groff | configure:14690: result: yes | configure:14700: checking whether make is GNU make | configure:14706: invoking make --version: | GNU Make 4.1 | Built for i686-pc-linux-gnu | Copyright (C) 1988-2014 Free Software Foundation, Inc. | License GPLv3+: GNU GPL version 3 or later | This is free software: you are free to change and redistribute it. | There is NO WARRANTY, to the extent permitted by law. | configure:14717: result: yes | configure:14727: checking whether gcc has that supports thread_local | configure:14744: gcc -o conftest -g -O2 conftest.c -lpthread -lrt -lm >&5 | conftest.c:51:21: fatal error: threads.h: No such file or directory | #include | ^ | compilation terminated. | configure:14744: $? = 1 | configure: failed program was: | | /* confdefs.h */ | | #define PACKAGE_NAME "openvswitch" | | #define PACKAGE_TARNAME "openvswitch" | | #define PACKAGE_VERSION "2.5.90" | | #define PACKAGE_STRING "openvswitch 2.5.90" | | #define PACKAGE_BUGREPORT "bugs@openvswitch.org" | | #define PACKAGE_URL "" | | #define PACKAGE "openvswitch" | | #define VERSION "2.5.90" | | #define STDC_HEADERS 1 | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_STRING_H 1 | | #define HAVE_MEMORY_H 1 | | #define HAVE_STRINGS_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_UNISTD_H 1 | | #define __EXTENSIONS__ 1 | | #define _ALL_SOURCE 1 | | #define _GNU_SOURCE 1 | | #define _POSIX_PTHREAD_SEMANTICS 1 | | #define _TANDEM_SOURCE 1 | | #define _FILE_OFFSET_BITS 64 | | #define HAVE_DLFCN_H 1 | | #define LT_OBJDIR ".libs/" | | #define HAVE_DECL_STRERROR_R 1 | | #define HAVE_STRERROR_R 1 | | #define STRERROR_R_CHAR_P 1 | | #define VSTUDIO_DDK 1 | | #define HAVE_NETLINK 1 | | #define HAVE_OPENSSL 1 | | #define HAVE_LIBCAPNG 1 | | #define HAVE_IF_PACKET 1 | | #define HAVE_DECL_SYS_SIGLIST 1 | | #define HAVE_STRUCT_STAT_ST_MTIM_TV_NSEC 1 | | #define HAVE_MLOCKALL 1 | | #define HAVE_STRNLEN 1 | | #define HAVE_GETLOADAVG 1 | | #define HAVE_STATVFS 1 | | #define HAVE_GETMNTENT_R 1 | | #define HAVE_MNTENT_H 1 | | #define HAVE_SYS_STATVFS_H 1 | | #define HAVE_LINUX_TYPES_H 1 | | #define HAVE_LINUX_IF_ETHER_H 1 | | #define HAVE_STDATOMIC_H 1 | | #define HAVE_BACKTRACE 1 | | #define HAVE_LINUX_PERF_EVENT_H 1 | | /* end confdefs.h. */ | | #include | | static thread_local int var; | | int | | main () | | { | | return var; | | ; | | return 0; | | } | configure:14752: result: no | configure:14759: checking whether gcc supports __thread | configure:14775: gcc -o conftest -g -O2 conftest.c -lpthread -lrt -lm >&5 | configure:14775: $? = 0 | configure:14783: result: yes | configure:14791: checking for library containing __atomic_load_8 | configure:14822: gcc -o conftest -g -O2 conftest.c -lpthread -lrt -lm >&5 | conftest.c:59:6: warning: conflicting types for built-in function '__atomic_load_8' | char __atomic_load_8 (); | ^~~~~~~~~~~~~~~ | /tmp/ccfd9EXz.o: In function `main': | /root/openvswitch-2.6.0~git20160804.0a0f39d/conftest.c:63: undefined reference to `__atomic_load_8' | collect2: error: ld returned 1 exit status | configure:14822: $? = 1 | configure: failed program was: | | /* confdefs.h */ | | #define PACKAGE_NAME "openvswitch" | | #define PACKAGE_TARNAME "openvswitch" | | #define PACKAGE_VERSION "2.5.90" | | #define PACKAGE_STRING "openvswitch 2.5.90" | | #define PACKAGE_BUGREPORT "bugs@openvswitch.org" | | #define PACKAGE_URL "" | | #define PACKAGE "openvswitch" | | #define VERSION "2.5.90" | | #define STDC_HEADERS 1 | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_STRING_H 1 | | #define HAVE_MEMORY_H 1 | | #define HAVE_STRINGS_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_UNISTD_H 1 | | #define __EXTENSIONS__ 1 | | #define _ALL_SOURCE 1 | | #define _GNU_SOURCE 1 | | #define _POSIX_PTHREAD_SEMANTICS 1 | | #define _TANDEM_SOURCE 1 | | #define _FILE_OFFSET_BITS 64 | | #define HAVE_DLFCN_H 1 | | #define LT_OBJDIR ".libs/" | | #define HAVE_DECL_STRERROR_R 1 | | #define HAVE_STRERROR_R 1 | | #define STRERROR_R_CHAR_P 1 | | #define VSTUDIO_DDK 1 | | #define HAVE_NETLINK 1 | | #define HAVE_OPENSSL 1 | | #define HAVE_LIBCAPNG 1 | | #define HAVE_IF_PACKET 1 | | #define HAVE_DECL_SYS_SIGLIST 1 | | #define HAVE_STRUCT_STAT_ST_MTIM_TV_NSEC 1 | | #define HAVE_MLOCKALL 1 | | #define HAVE_STRNLEN 1 | | #define HAVE_GETLOADAVG 1 | | #define HAVE_STATVFS 1 | | #define HAVE_GETMNTENT_R 1 | | #define HAVE_MNTENT_H 1 | | #define HAVE_SYS_STATVFS_H 1 | | #define HAVE_LINUX_TYPES_H 1 | | #define HAVE_LINUX_IF_ETHER_H 1 | | #define HAVE_STDATOMIC_H 1 | | #define HAVE_BACKTRACE 1 | | #define HAVE_LINUX_PERF_EVENT_H 1 | | #define HAVE___THREAD 1 | | /* end confdefs.h. */ | | | | /* Override any GCC internal prototype to avoid an error. | | Use char because int might match the return type of a GCC | | builtin and then its argument prototype would still apply. */ | | #ifdef __cplusplus | | extern "C" | | #endif | | char __atomic_load_8 (); | | int | | main () | | { | | return __atomic_load_8 (); | | ; | | return 0; | | } | configure:14822: gcc -o conftest -g -O2 conftest.c -latomic -lpthread -lrt -lm >&5 | conftest.c:59:6: warning: conflicting types for built-in function '__atomic_load_8' | char __atomic_load_8 (); | ^~~~~~~~~~~~~~~ | configure:14822: $? = 0 | configure:14839: result: -latomic | configure:14847: checking whether gcc supports GCC 4.0+ atomic built-ins | configure:14914: gcc -o conftest -g -O2 conftest.c -latomic -lpthread -lrt -lm >&5 | configure:14914: $? = 0 | configure:14922: result: yes | configure:14929: checking value of __atomic_always_lock_free(1) | configure:14934: gcc -o conftest -g -O2 conftest.c -latomic -lpthread -lrt -lm >&5 | configure:14934: $? = 0 | configure:14934: ./conftest | configure:14934: $? = 0 | configure:14941: result: 1 | configure:14950: checking value of __atomic_always_lock_free(2) | configure:14955: gcc -o conftest -g -O2 conftest.c -latomic -lpthread -lrt -lm >&5 | configure:14955: $? = 0 | configure:14955: ./conftest | configure:14955: $? = 0 | configure:14962: result: 1 | configure:14971: checking value of __atomic_always_lock_free(4) | configure:14976: gcc -o conftest -g -O2 conftest.c -latomic -lpthread -lrt -lm >&5 | configure:14976: $? = 0 | configure:14976: ./conftest | configure:14976: $? = 0 | configure:14983: result: 1 | configure:14992: checking value of __atomic_always_lock_free(8) | configure:14997: gcc -o conftest -g -O2 conftest.c -latomic -lpthread -lrt -lm >&5 | configure:14997: $? = 0 | configure:14997: ./conftest | configure:14997: $? = 0 | configure:15004: result: 1 | configure:15013: checking for library containing aio_write | configure:15044: gcc -o conftest -g -O2 conftest.c -latomic -lpthread -lrt -lm >&5 | configure:15044: $? = 0 | configure:15061: result: none required | configure:15079: checking for pthread_set_name_np | configure:15079: gcc -o conftest -g -O2 conftest.c -latomic -lpthread -lrt -lm >&5 | /tmp/ccEmQVfl.o: In function `main': | /root/openvswitch-2.6.0~git20160804.0a0f39d/conftest.c:91: undefined reference to `pthread_set_name_np' | collect2: error: ld returned 1 exit status | configure:15079: $? = 1 | configure: failed program was: | | /* confdefs.h */ | | #define PACKAGE_NAME "openvswitch" | | #define PACKAGE_TARNAME "openvswitch" | | #define PACKAGE_VERSION "2.5.90" | | #define PACKAGE_STRING "openvswitch 2.5.90" | | #define PACKAGE_BUGREPORT "bugs@openvswitch.org" | | #define PACKAGE_URL "" | | #define PACKAGE "openvswitch" | | #define VERSION "2.5.90" | | #define STDC_HEADERS 1 | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_STRING_H 1 | | #define HAVE_MEMORY_H 1 | | #define HAVE_STRINGS_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_UNISTD_H 1 | | #define __EXTENSIONS__ 1 | | #define _ALL_SOURCE 1 | | #define _GNU_SOURCE 1 | | #define _POSIX_PTHREAD_SEMANTICS 1 | | #define _TANDEM_SOURCE 1 | | #define _FILE_OFFSET_BITS 64 | | #define HAVE_DLFCN_H 1 | | #define LT_OBJDIR ".libs/" | | #define HAVE_DECL_STRERROR_R 1 | | #define HAVE_STRERROR_R 1 | | #define STRERROR_R_CHAR_P 1 | | #define VSTUDIO_DDK 1 | | #define HAVE_NETLINK 1 | | #define HAVE_OPENSSL 1 | | #define HAVE_LIBCAPNG 1 | | #define HAVE_IF_PACKET 1 | | #define HAVE_DECL_SYS_SIGLIST 1 | | #define HAVE_STRUCT_STAT_ST_MTIM_TV_NSEC 1 | | #define HAVE_MLOCKALL 1 | | #define HAVE_STRNLEN 1 | | #define HAVE_GETLOADAVG 1 | | #define HAVE_STATVFS 1 | | #define HAVE_GETMNTENT_R 1 | | #define HAVE_MNTENT_H 1 | | #define HAVE_SYS_STATVFS_H 1 | | #define HAVE_LINUX_TYPES_H 1 | | #define HAVE_LINUX_IF_ETHER_H 1 | | #define HAVE_STDATOMIC_H 1 | | #define HAVE_BACKTRACE 1 | | #define HAVE_LINUX_PERF_EVENT_H 1 | | #define HAVE___THREAD 1 | | #define HAVE_GCC4_ATOMICS 1 | | #define ATOMIC_ALWAYS_LOCK_FREE_1B 1 | | #define ATOMIC_ALWAYS_LOCK_FREE_2B 1 | | #define ATOMIC_ALWAYS_LOCK_FREE_4B 1 | | #define ATOMIC_ALWAYS_LOCK_FREE_8B 1 | | /* end confdefs.h. */ | | /* Define pthread_set_name_np to an innocuous variant, in case declares pthread_set_name_np. | | For example, HP-UX 11i declares gettimeofday. */ | | #define pthread_set_name_np innocuous_pthread_set_name_np | | | | /* System header to define __stub macros and hopefully few prototypes, | | which can conflict with char pthread_set_name_np (); below. | | Prefer to if __STDC__ is defined, since | | exists even on freestanding compilers. */ | | | | #ifdef __STDC__ | | # include | | #else | | # include | | #endif | | | | #undef pthread_set_name_np | | | | /* Override any GCC internal prototype to avoid an error. | | Use char because int might match the return type of a GCC | | builtin and then its argument prototype would still apply. */ | | #ifdef __cplusplus | | extern "C" | | #endif | | char pthread_set_name_np (); | | /* The GNU C library defines this for functions which it implements | | to always fail with ENOSYS. Some functions are actually named | | something starting with __ and the normal name is an alias. */ | | #if defined __stub_pthread_set_name_np || defined __stub___pthread_set_name_np | | choke me | | #endif | | | | int | | main () | | { | | return pthread_set_name_np (); | | ; | | return 0; | | } | configure:15079: result: no | configure:15089: checking for pthread_setname_np() variant | configure:15106: gcc -o conftest -g -O2 conftest.c -latomic -lpthread -lrt -lm >&5 | configure:15106: $? = 0 | configure:15132: result: glibc | configure:15147: checking whether __linux__ is defined | configure:15163: gcc -c -g -O2 conftest.c >&5 | configure:15163: $? = 0 | configure:15170: result: true | configure:15180: checking for working posix_memalign | configure:15204: gcc -o conftest -g -O2 conftest.c -latomic -lpthread -lrt -lm >&5 | configure:15204: $? = 0 | configure:15204: ./conftest | configure:15204: $? = 0 | configure:15214: result: yes | configure:15225: checking whether the preprocessor supports include_next | configure:15263: gcc -c -g -O2 -Iconftestd1b -Iconftestd2 conftest.c >&5 | configure:15263: $? = 0 | configure:15284: result: yes | configure:15305: checking whether system header files limit the line length | configure:15328: result: no | configure:15354: checking for stdio.h | configure:15354: gcc -c -g -O2 conftest.c >&5 | configure:15354: $? = 0 | configure:15354: result: yes | configure:15354: checking for string.h | configure:15354: result: yes | configure:15519: checking whether gcc accepts -Werror | configure:15537: gcc -c -g -O2 -Werror conftest.c >&5 | configure:15537: $? = 0 | configure:15545: result: yes | configure:15554: checking whether gcc accepts -Wall | configure:15572: gcc -c -g -O2 -Werror -Wall conftest.c >&5 | configure:15572: $? = 0 | configure:15580: result: yes | configure:15590: checking whether gcc accepts -Wextra | configure:15608: gcc -c -g -O2 -Werror -Wextra conftest.c >&5 | configure:15608: $? = 0 | configure:15616: result: yes | configure:15626: checking whether gcc accepts -Wno-sign-compare | configure:15644: gcc -c -g -O2 -Werror -Wno-sign-compare conftest.c >&5 | configure:15644: $? = 0 | configure:15652: result: yes | configure:15662: checking whether gcc accepts -Wpointer-arith | configure:15680: gcc -c -g -O2 -Werror -Wpointer-arith conftest.c >&5 | configure:15680: $? = 0 | configure:15688: result: yes | configure:15698: checking whether gcc accepts -Wformat-security | configure:15716: gcc -c -g -O2 -Werror -Wformat-security conftest.c >&5 | configure:15716: $? = 0 | configure:15724: result: yes | configure:15734: checking whether gcc accepts -Wswitch-enum | configure:15752: gcc -c -g -O2 -Werror -Wswitch-enum conftest.c >&5 | configure:15752: $? = 0 | configure:15760: result: yes | configure:15770: checking whether gcc accepts -Wunused-parameter | configure:15788: gcc -c -g -O2 -Werror -Wunused-parameter conftest.c >&5 | configure:15788: $? = 0 | configure:15796: result: yes | configure:15806: checking whether gcc accepts -Wbad-function-cast | configure:15824: gcc -c -g -O2 -Werror -Wbad-function-cast conftest.c >&5 | configure:15824: $? = 0 | configure:15832: result: yes | configure:15842: checking whether gcc accepts -Wcast-align | configure:15860: gcc -c -g -O2 -Werror -Wcast-align conftest.c >&5 | configure:15860: $? = 0 | configure:15868: result: yes | configure:15878: checking whether gcc accepts -Wstrict-prototypes | configure:15896: gcc -c -g -O2 -Werror -Wstrict-prototypes conftest.c >&5 | conftest.c:63:1: error: function declaration isn't a prototype [-Werror=strict-prototypes] | main () | ^~~~ | cc1: all warnings being treated as errors | configure:15896: $? = 1 | configure: failed program was: | | /* confdefs.h */ | | #define PACKAGE_NAME "openvswitch" | | #define PACKAGE_TARNAME "openvswitch" | | #define PACKAGE_VERSION "2.5.90" | | #define PACKAGE_STRING "openvswitch 2.5.90" | | #define PACKAGE_BUGREPORT "bugs@openvswitch.org" | | #define PACKAGE_URL "" | | #define PACKAGE "openvswitch" | | #define VERSION "2.5.90" | | #define STDC_HEADERS 1 | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_STRING_H 1 | | #define HAVE_MEMORY_H 1 | | #define HAVE_STRINGS_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_UNISTD_H 1 | | #define __EXTENSIONS__ 1 | | #define _ALL_SOURCE 1 | | #define _GNU_SOURCE 1 | | #define _POSIX_PTHREAD_SEMANTICS 1 | | #define _TANDEM_SOURCE 1 | | #define _FILE_OFFSET_BITS 64 | | #define HAVE_DLFCN_H 1 | | #define LT_OBJDIR ".libs/" | | #define HAVE_DECL_STRERROR_R 1 | | #define HAVE_STRERROR_R 1 | | #define STRERROR_R_CHAR_P 1 | | #define VSTUDIO_DDK 1 | | #define HAVE_NETLINK 1 | | #define HAVE_OPENSSL 1 | | #define HAVE_LIBCAPNG 1 | | #define HAVE_IF_PACKET 1 | | #define HAVE_DECL_SYS_SIGLIST 1 | | #define HAVE_STRUCT_STAT_ST_MTIM_TV_NSEC 1 | | #define HAVE_MLOCKALL 1 | | #define HAVE_STRNLEN 1 | | #define HAVE_GETLOADAVG 1 | | #define HAVE_STATVFS 1 | | #define HAVE_GETMNTENT_R 1 | | #define HAVE_MNTENT_H 1 | | #define HAVE_SYS_STATVFS_H 1 | | #define HAVE_LINUX_TYPES_H 1 | | #define HAVE_LINUX_IF_ETHER_H 1 | | #define HAVE_STDATOMIC_H 1 | | #define HAVE_BACKTRACE 1 | | #define HAVE_LINUX_PERF_EVENT_H 1 | | #define HAVE___THREAD 1 | | #define HAVE_GCC4_ATOMICS 1 | | #define ATOMIC_ALWAYS_LOCK_FREE_1B 1 | | #define ATOMIC_ALWAYS_LOCK_FREE_2B 1 | | #define ATOMIC_ALWAYS_LOCK_FREE_4B 1 | | #define ATOMIC_ALWAYS_LOCK_FREE_8B 1 | | #define HAVE_GLIBC_PTHREAD_SETNAME_NP 1 | | #define HAVE_POSIX_MEMALIGN 1 | | #define HAVE_STDIO_H 1 | | #define HAVE_STRING_H 1 | | /* end confdefs.h. */ | | | | int | | main () | | { | | | | ; | | return 0; | | } | configure:15904: result: no | configure:15914: checking whether gcc accepts -Wold-style-definition | configure:15932: gcc -c -g -O2 -Werror -Wold-style-definition conftest.c >&5 | conftest.c: In function 'main': | conftest.c:63:1: error: old-style function definition [-Werror=old-style-definition] | main () | ^~~~ | cc1: all warnings being treated as errors | configure:15932: $? = 1 | configure: failed program was: | | /* confdefs.h */ | | #define PACKAGE_NAME "openvswitch" | | #define PACKAGE_TARNAME "openvswitch" | | #define PACKAGE_VERSION "2.5.90" | | #define PACKAGE_STRING "openvswitch 2.5.90" | | #define PACKAGE_BUGREPORT "bugs@openvswitch.org" | | #define PACKAGE_URL "" | | #define PACKAGE "openvswitch" | | #define VERSION "2.5.90" | | #define STDC_HEADERS 1 | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_STRING_H 1 | | #define HAVE_MEMORY_H 1 | | #define HAVE_STRINGS_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_UNISTD_H 1 | | #define __EXTENSIONS__ 1 | | #define _ALL_SOURCE 1 | | #define _GNU_SOURCE 1 | | #define _POSIX_PTHREAD_SEMANTICS 1 | | #define _TANDEM_SOURCE 1 | | #define _FILE_OFFSET_BITS 64 | | #define HAVE_DLFCN_H 1 | | #define LT_OBJDIR ".libs/" | | #define HAVE_DECL_STRERROR_R 1 | | #define HAVE_STRERROR_R 1 | | #define STRERROR_R_CHAR_P 1 | | #define VSTUDIO_DDK 1 | | #define HAVE_NETLINK 1 | | #define HAVE_OPENSSL 1 | | #define HAVE_LIBCAPNG 1 | | #define HAVE_IF_PACKET 1 | | #define HAVE_DECL_SYS_SIGLIST 1 | | #define HAVE_STRUCT_STAT_ST_MTIM_TV_NSEC 1 | | #define HAVE_MLOCKALL 1 | | #define HAVE_STRNLEN 1 | | #define HAVE_GETLOADAVG 1 | | #define HAVE_STATVFS 1 | | #define HAVE_GETMNTENT_R 1 | | #define HAVE_MNTENT_H 1 | | #define HAVE_SYS_STATVFS_H 1 | | #define HAVE_LINUX_TYPES_H 1 | | #define HAVE_LINUX_IF_ETHER_H 1 | | #define HAVE_STDATOMIC_H 1 | | #define HAVE_BACKTRACE 1 | | #define HAVE_LINUX_PERF_EVENT_H 1 | | #define HAVE___THREAD 1 | | #define HAVE_GCC4_ATOMICS 1 | | #define ATOMIC_ALWAYS_LOCK_FREE_1B 1 | | #define ATOMIC_ALWAYS_LOCK_FREE_2B 1 | | #define ATOMIC_ALWAYS_LOCK_FREE_4B 1 | | #define ATOMIC_ALWAYS_LOCK_FREE_8B 1 | | #define HAVE_GLIBC_PTHREAD_SETNAME_NP 1 | | #define HAVE_POSIX_MEMALIGN 1 | | #define HAVE_STDIO_H 1 | | #define HAVE_STRING_H 1 | | /* end confdefs.h. */ | | | | int | | main () | | { | | | | ; | | return 0; | | } | configure:15940: result: no | configure:15950: checking whether gcc accepts -Wmissing-prototypes | configure:15968: gcc -c -g -O2 -Werror -Wmissing-prototypes conftest.c >&5 | configure:15968: $? = 0 | configure:15976: result: yes | configure:15986: checking whether gcc accepts -Wmissing-field-initializers | configure:16004: gcc -c -g -O2 -Werror -Wmissing-field-initializers conftest.c >&5 | configure:16004: $? = 0 | configure:16012: result: yes | configure:16022: checking whether gcc accepts -Wthread-safety | configure:16040: gcc -c -g -O2 -Werror -Wthread-safety conftest.c >&5 | gcc: error: unrecognized command line option '-Wthread-safety'; did you mean '-fthread-jumps'? | configure:16040: $? = 1 | configure: failed program was: | | /* confdefs.h */ | | #define PACKAGE_NAME "openvswitch" | | #define PACKAGE_TARNAME "openvswitch" | | #define PACKAGE_VERSION "2.5.90" | | #define PACKAGE_STRING "openvswitch 2.5.90" | | #define PACKAGE_BUGREPORT "bugs@openvswitch.org" | | #define PACKAGE_URL "" | | #define PACKAGE "openvswitch" | | #define VERSION "2.5.90" | | #define STDC_HEADERS 1 | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_STRING_H 1 | | #define HAVE_MEMORY_H 1 | | #define HAVE_STRINGS_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_UNISTD_H 1 | | #define __EXTENSIONS__ 1 | | #define _ALL_SOURCE 1 | | #define _GNU_SOURCE 1 | | #define _POSIX_PTHREAD_SEMANTICS 1 | | #define _TANDEM_SOURCE 1 | | #define _FILE_OFFSET_BITS 64 | | #define HAVE_DLFCN_H 1 | | #define LT_OBJDIR ".libs/" | | #define HAVE_DECL_STRERROR_R 1 | | #define HAVE_STRERROR_R 1 | | #define STRERROR_R_CHAR_P 1 | | #define VSTUDIO_DDK 1 | | #define HAVE_NETLINK 1 | | #define HAVE_OPENSSL 1 | | #define HAVE_LIBCAPNG 1 | | #define HAVE_IF_PACKET 1 | | #define HAVE_DECL_SYS_SIGLIST 1 | | #define HAVE_STRUCT_STAT_ST_MTIM_TV_NSEC 1 | | #define HAVE_MLOCKALL 1 | | #define HAVE_STRNLEN 1 | | #define HAVE_GETLOADAVG 1 | | #define HAVE_STATVFS 1 | | #define HAVE_GETMNTENT_R 1 | | #define HAVE_MNTENT_H 1 | | #define HAVE_SYS_STATVFS_H 1 | | #define HAVE_LINUX_TYPES_H 1 | | #define HAVE_LINUX_IF_ETHER_H 1 | | #define HAVE_STDATOMIC_H 1 | | #define HAVE_BACKTRACE 1 | | #define HAVE_LINUX_PERF_EVENT_H 1 | | #define HAVE___THREAD 1 | | #define HAVE_GCC4_ATOMICS 1 | | #define ATOMIC_ALWAYS_LOCK_FREE_1B 1 | | #define ATOMIC_ALWAYS_LOCK_FREE_2B 1 | | #define ATOMIC_ALWAYS_LOCK_FREE_4B 1 | | #define ATOMIC_ALWAYS_LOCK_FREE_8B 1 | | #define HAVE_GLIBC_PTHREAD_SETNAME_NP 1 | | #define HAVE_POSIX_MEMALIGN 1 | | #define HAVE_STDIO_H 1 | | #define HAVE_STRING_H 1 | | /* end confdefs.h. */ | | | | int | | main () | | { | | | | ; | | return 0; | | } | configure:16048: result: no | configure:16058: checking whether gcc accepts -fno-strict-aliasing | configure:16076: gcc -c -g -O2 -Werror -fno-strict-aliasing conftest.c >&5 | configure:16076: $? = 0 | configure:16084: result: yes | configure:16094: checking whether gcc accepts -Qunused-arguments | configure:16112: gcc -c -g -O2 -Werror -Qunused-arguments conftest.c >&5 | gcc: error: unrecognized command line option '-Qunused-arguments'; did you mean '-Wunused-argument'? | configure:16112: $? = 1 | configure: failed program was: | | /* confdefs.h */ | | #define PACKAGE_NAME "openvswitch" | | #define PACKAGE_TARNAME "openvswitch" | | #define PACKAGE_VERSION "2.5.90" | | #define PACKAGE_STRING "openvswitch 2.5.90" | | #define PACKAGE_BUGREPORT "bugs@openvswitch.org" | | #define PACKAGE_URL "" | | #define PACKAGE "openvswitch" | | #define VERSION "2.5.90" | | #define STDC_HEADERS 1 | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_STRING_H 1 | | #define HAVE_MEMORY_H 1 | | #define HAVE_STRINGS_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_UNISTD_H 1 | | #define __EXTENSIONS__ 1 | | #define _ALL_SOURCE 1 | | #define _GNU_SOURCE 1 | | #define _POSIX_PTHREAD_SEMANTICS 1 | | #define _TANDEM_SOURCE 1 | | #define _FILE_OFFSET_BITS 64 | | #define HAVE_DLFCN_H 1 | | #define LT_OBJDIR ".libs/" | | #define HAVE_DECL_STRERROR_R 1 | | #define HAVE_STRERROR_R 1 | | #define STRERROR_R_CHAR_P 1 | | #define VSTUDIO_DDK 1 | | #define HAVE_NETLINK 1 | | #define HAVE_OPENSSL 1 | | #define HAVE_LIBCAPNG 1 | | #define HAVE_IF_PACKET 1 | | #define HAVE_DECL_SYS_SIGLIST 1 | | #define HAVE_STRUCT_STAT_ST_MTIM_TV_NSEC 1 | | #define HAVE_MLOCKALL 1 | | #define HAVE_STRNLEN 1 | | #define HAVE_GETLOADAVG 1 | | #define HAVE_STATVFS 1 | | #define HAVE_GETMNTENT_R 1 | | #define HAVE_MNTENT_H 1 | | #define HAVE_SYS_STATVFS_H 1 | | #define HAVE_LINUX_TYPES_H 1 | | #define HAVE_LINUX_IF_ETHER_H 1 | | #define HAVE_STDATOMIC_H 1 | | #define HAVE_BACKTRACE 1 | | #define HAVE_LINUX_PERF_EVENT_H 1 | | #define HAVE___THREAD 1 | | #define HAVE_GCC4_ATOMICS 1 | | #define ATOMIC_ALWAYS_LOCK_FREE_1B 1 | | #define ATOMIC_ALWAYS_LOCK_FREE_2B 1 | | #define ATOMIC_ALWAYS_LOCK_FREE_4B 1 | | #define ATOMIC_ALWAYS_LOCK_FREE_8B 1 | | #define HAVE_GLIBC_PTHREAD_SETNAME_NP 1 | | #define HAVE_POSIX_MEMALIGN 1 | | #define HAVE_STDIO_H 1 | | #define HAVE_STRING_H 1 | | /* end confdefs.h. */ | | | | int | | main () | | { | | | | ; | | return 0; | | } | configure:16120: result: no | configure:16130: checking whether gcc accepts -Wno-unused | configure:16148: gcc -c -g -O2 -Werror -Wno-unused conftest.c >&5 | configure:16148: $? = 0 | configure:16156: result: yes | configure:16173: checking whether gcc accepts -Wno-unused-parameter | configure:16191: gcc -c -g -O2 -Werror -Wno-unused-parameter conftest.c >&5 | configure:16191: $? = 0 | configure:16199: result: yes | configure:16223: checking target hint for cgcc | configure:16237: result: x86 | configure:16249: checking whether make has GNU make $(if) extension | configure:16260: invoking make -f conftest.mk all: | make[1]: Entering directory '/root/openvswitch-2.6.0~git20160804.0a0f39d' | echo y > conftest.out | make[1]: Leaving directory '/root/openvswitch-2.6.0~git20160804.0a0f39d' | configure:16262: conftest.out contains: | y | configure:16272: result: yes | configure:21191: checking whether dpdk datapath is enabled | configure:21194: result: no | configure:21475: gcc -c -g -O2 conftest.c >&5 | conftest.c:61:1: note: #pragma message: Checking for pragma message | _Pragma("message(\"Checking for pragma message\")") | ^~~~~~~ | configure:21475: $? = 0 | configure:21529: checking whether make supports nested variables | configure:21546: result: yes | configure:21667: checking that generated files are newer than configure | configure:21673: result: done | configure:21787: creating ./config.status | | ## ---------------------- ## | ## Running config.status. ## | ## ---------------------- ## | | This file was extended by openvswitch config.status 2.5.90, which was | generated by GNU Autoconf 2.69. Invocation command line was | | CONFIG_FILES = | CONFIG_HEADERS = | CONFIG_LINKS = | CONFIG_COMMANDS = | $ ./config.status | | on yakkety-i386-openvswitch-build | | config.status:1236: creating lib/stdio.h | config.status:1236: creating lib/string.h | config.status:1236: creating ovsdb/libovsdb.sym | config.status:1236: creating ofproto/libofproto.sym | config.status:1236: creating lib/libsflow.sym | config.status:1236: creating lib/libopenvswitch.sym | config.status:1236: creating ovn/lib/libovn.sym | config.status:1236: creating vtep/libvtep.sym | config.status:1236: creating Makefile | config.status:1236: creating datapath/Makefile | config.status:1236: creating datapath/linux/Kbuild | config.status:1236: creating datapath/linux/Makefile | config.status:1236: creating datapath/linux/Makefile.main | config.status:1236: creating tests/atlocal | config.status:1236: creating lib/libopenvswitch.pc | config.status:1236: creating lib/libsflow.pc | config.status:1236: creating ofproto/libofproto.pc | config.status:1236: creating ovsdb/libovsdb.pc | config.status:1236: creating include/openvswitch/version.h | config.status:1236: creating config.h | config.status:1465: executing tests/atconfig commands | config.status:1465: executing depfiles commands | config.status:1465: executing libtool commands | config.status:1465: executing include/openflow/openflow.h.stamp commands | config.status:1465: executing utilities/bugtool/dummy commands | config.status:1465: executing ovn/dummy commands | config.status:1465: executing ovn/utilities/dummy commands | configure:23975: WARNING: unrecognized options: --disable-maintainer-mode | | ## ---------------- ## | ## Cache variables. ## | ## ---------------- ## | | ac_cv_build=i686-pc-linux-gnu | ac_cv_c_bigendian=no | ac_cv_c_compiler_gnu=yes | ac_cv_env_CC_set= | ac_cv_env_CC_value= | ac_cv_env_CFLAGS_set= | ac_cv_env_CFLAGS_value= | ac_cv_env_CPPFLAGS_set= | ac_cv_env_CPPFLAGS_value= | ac_cv_env_CPP_set= | ac_cv_env_CPP_value= | ac_cv_env_KARCH_set= | ac_cv_env_KARCH_value= | ac_cv_env_LDFLAGS_set= | ac_cv_env_LDFLAGS_value= | ac_cv_env_LIBS_set= | ac_cv_env_LIBS_value= | ac_cv_env_LT_SYS_LIBRARY_PATH_set= | ac_cv_env_LT_SYS_LIBRARY_PATH_value= | ac_cv_env_PERL_set= | ac_cv_env_PERL_value= | ac_cv_env_build_alias_set=set | ac_cv_env_build_alias_value=i686-linux-gnu | ac_cv_env_host_alias_set= | ac_cv_env_host_alias_value= | ac_cv_env_target_alias_set= | ac_cv_env_target_alias_value= | ac_cv_func_getloadavg=yes | ac_cv_func_getmntent_r=yes | ac_cv_func_mlockall=yes | ac_cv_func_pthread_set_name_np=no | ac_cv_func_statvfs=yes | ac_cv_func_strerror_r=yes | ac_cv_func_strerror_r_char_p=yes | ac_cv_func_strnlen=yes | ac_cv_have_decl_strerror_r=yes | ac_cv_have_decl_sys_siglist=yes | ac_cv_header_dlfcn_h=yes | ac_cv_header_inttypes_h=yes | ac_cv_header_linux_if_ether_h=yes | ac_cv_header_linux_netlink_h=yes | ac_cv_header_linux_perf_event_h=yes | ac_cv_header_linux_types_h=yes | ac_cv_header_memory_h=yes | ac_cv_header_minix_config_h=no | ac_cv_header_mntent_h=yes | ac_cv_header_net_if_dl_h=no | ac_cv_header_net_if_mib_h=no | ac_cv_header_net_if_packet_h=yes | ac_cv_header_stdatomic_h=yes | ac_cv_header_stdc=yes | ac_cv_header_stdint_h=yes | ac_cv_header_stdio_h=yes | ac_cv_header_stdlib_h=yes | ac_cv_header_string_h=yes | ac_cv_header_strings_h=yes | ac_cv_header_sys_stat_h=yes | ac_cv_header_sys_statvfs_h=yes | ac_cv_header_sys_types_h=yes | ac_cv_header_unistd_h=yes | ac_cv_header_valgrind_valgrind_h=no | ac_cv_header_vmware_h=no | ac_cv_header_windows_h=no | ac_cv_host=i686-pc-linux-gnu | ac_cv_lib_cap_ng_capng_clear=yes | ac_cv_lib_socket_connect=no | ac_cv_member_struct_ifreq_ifr_flagshigh=no | ac_cv_member_struct_stat_st_mtim_tv_nsec=yes | ac_cv_member_struct_stat_st_mtimensec=no | ac_cv_objext=o | ac_cv_path_EGREP='/bin/grep -E' | ac_cv_path_FGREP='/bin/grep -F' | ac_cv_path_GREP=/bin/grep | ac_cv_path_PERL=/usr/bin/perl | ac_cv_path_SED=/bin/sed | ac_cv_path_install='/usr/bin/install -c' | ac_cv_path_lt_DD=/bin/dd | ac_cv_path_mkdir=/bin/mkdir | ac_cv_prog_AWK=mawk | ac_cv_prog_CPP='gcc -E' | ac_cv_prog_ac_ct_AR=ar | ac_cv_prog_ac_ct_CC=gcc | ac_cv_prog_ac_ct_MANIFEST_TOOL=mt | ac_cv_prog_ac_ct_OBJDUMP=objdump | ac_cv_prog_ac_ct_RANLIB=ranlib | ac_cv_prog_ac_ct_STRIP=strip | ac_cv_prog_cc_c89= | ac_cv_prog_cc_c99= | ac_cv_prog_cc_g=yes | ac_cv_prog_make_make_set=yes | ac_cv_safe_to_define___extensions__=yes | ac_cv_search___atomic_load_8=-latomic | ac_cv_search_aio_write='none required' | ac_cv_search_backtrace='none required' | ac_cv_search_clock_gettime='none required' | ac_cv_search_gethostbyname='none required' | ac_cv_search_pow=-lm | ac_cv_search_pthread_create=-lpthread | ac_cv_search_timer_create=-lrt | ac_cv_sparse_target=x86 | ac_cv_sys_file_offset_bits=64 | ac_cv_sys_largefile_CC=no | am_cv_CC_dependencies_compiler_type=none | am_cv_make_support_nested_variables=yes | am_cv_prog_cc_c_o=yes | am_cv_prog_tar_pax=gnutar | ax_cv_func_posix_memalign_works=yes | cl_cv_x64=no | gl_cv_have_include_next=yes | gl_cv_next_stdio_h='' | gl_cv_next_string_h='' | gl_cv_pragma_columns=no | lt_cv_ar_at_file=@ | lt_cv_archive_cmds_need_lc=no | lt_cv_deplibs_check_method=pass_all | lt_cv_file_magic_cmd='$MAGIC_CMD' | lt_cv_file_magic_test_file= | lt_cv_ld_reload_flag=-r | lt_cv_nm_interface='BSD nm' | lt_cv_objdir=.libs | lt_cv_path_LD=/usr/bin/ld | lt_cv_path_NM='/usr/bin/nm -B' | lt_cv_path_mainfest_tool=no | lt_cv_prog_compiler_c_o=yes | lt_cv_prog_compiler_pic='-fPIC -DPIC' | lt_cv_prog_compiler_pic_works=yes | lt_cv_prog_compiler_rtti_exceptions=no | lt_cv_prog_compiler_static_works=yes | lt_cv_prog_gnu_ld=yes | lt_cv_sharedlib_from_linklib_cmd='printf %s\n' | lt_cv_shlibpath_overrides_runpath=no | lt_cv_sys_global_symbol_pipe='sed -n -e '\''s/^.*[ ]\([ABCDGIRSTW][ABCDGIRSTW]*\)[ ][ ]*\([_A-Za-z][_A-Za-z0-9]*\)$/\1 \2 \2/p'\'' | sed '\''/ __gnu_lto/d'\''' | lt_cv_sys_global_symbol_to_c_name_address='sed -n -e '\''s/^: \(.*\) .*$/ {"\1", (void *) 0},/p'\'' -e '\''s/^[ABCDGIRSTW][ABCDGIRSTW]* .* \(.*\)$/ {"\1", (void *) \&\1},/p'\''' | lt_cv_sys_global_symbol_to_c_name_address_lib_prefix='sed -n -e '\''s/^: \(.*\) .*$/ {"\1", (void *) 0},/p'\'' -e '\''s/^[ABCDGIRSTW][ABCDGIRSTW]* .* \(lib.*\)$/ {"\1", (void *) \&\1},/p'\'' -e '\''s/^[ABCDGIRSTW][ABCDGIRSTW]* .* \(.*\)$/ {"lib\1", (void *) \&\1},/p'\''' | lt_cv_sys_global_symbol_to_cdecl='sed -n -e '\''s/^T .* \(.*\)$/extern int \1();/p'\'' -e '\''s/^[ABCDGIRSTW][ABCDGIRSTW]* .* \(.*\)$/extern char \1;/p'\''' | lt_cv_sys_global_symbol_to_import= | lt_cv_sys_max_cmd_len=1572864 | lt_cv_to_host_file_cmd=func_convert_file_noop | lt_cv_to_tool_file_cmd=func_convert_file_noop | lt_cv_truncate_bin='/bin/dd bs=4096 count=1' | ovs_cv__Qunused_arguments=no | ovs_cv__Wall=yes | ovs_cv__Wbad_function_cast=yes | ovs_cv__Wcast_align=yes | ovs_cv__Werror=yes | ovs_cv__Wextra=yes | ovs_cv__Wformat_security=yes | ovs_cv__Wmissing_field_initializers=yes | ovs_cv__Wmissing_prototypes=yes | ovs_cv__Wno_sign_compare=yes | ovs_cv__Wno_unused=yes | ovs_cv__Wno_unused_parameter=yes | ovs_cv__Wold_style_definition=no | ovs_cv__Wpointer_arith=yes | ovs_cv__Wstrict_prototypes=no | ovs_cv__Wswitch_enum=yes | ovs_cv__Wthread_safety=no | ovs_cv__Wunused_parameter=yes | ovs_cv___thread=yes | ovs_cv__fno_strict_aliasing=yes | ovs_cv_atomic_always_lock_free_1=1 | ovs_cv_atomic_always_lock_free_2=1 | ovs_cv_atomic_always_lock_free_4=1 | ovs_cv_atomic_always_lock_free_8=1 | ovs_cv_dot=yes | ovs_cv_flake8=no | ovs_cv_gcc4_atomics=yes | ovs_cv_gnu_make=yes | ovs_cv_gnu_make_if=yes | ovs_cv_groff=yes | ovs_cv_linux=true | ovs_cv_pthread_setname_np=glibc | ovs_cv_python3=/usr/bin/python3 | ovs_cv_python=/usr/bin/python | ovs_cv_strtok_r_bug=no | ovs_cv_thread_local=no | ovs_cv_xsversion=none | | ## ----------------- ## | ## Output variables. ## | ## ----------------- ## | | ACLOCAL='${SHELL} /root/openvswitch-2.6.0~git20160804.0a0f39d/build-aux/missing aclocal-1.15' | AMDEPBACKSLASH='' | AMDEP_FALSE='' | AMDEP_TRUE='#' | AMTAR='$${TAR-tar}' | AM_BACKSLASH='\' | AM_DEFAULT_V='$(AM_DEFAULT_VERBOSITY)' | AM_DEFAULT_VERBOSITY='1' | AM_V='$(V)' | AR='ar' | AUTOCONF='${SHELL} /root/openvswitch-2.6.0~git20160804.0a0f39d/build-aux/missing autoconf' | AUTOHEADER='${SHELL} /root/openvswitch-2.6.0~git20160804.0a0f39d/build-aux/missing autoheader' | AUTOM4TE='${SHELL} /root/openvswitch-2.6.0~git20160804.0a0f39d/build-aux/missing autom4te' | AUTOMAKE='${SHELL} /root/openvswitch-2.6.0~git20160804.0a0f39d/build-aux/missing automake-1.15' | AWK='mawk' | CAPNG_LDADD='-lcap-ng' | CC='$(if $(C),env REAL_CC="gcc" CHECK="$(SPARSE) -I $(top_srcdir)/include/sparse $(SPARSEFLAGS) $(SPARSE_EXTRA_INCLUDES) " cgcc $(CGCCFLAGS),gcc)' | CCDEPMODE='depmode=none' | CFLAGS='-g -O2' | CGCCFLAGS='-target=i86' | CPP='gcc -E' | CPPFLAGS='' | CYGPATH_W='echo' | DBDIR='${sysconfdir}/${PACKAGE}' | DEFS='-DHAVE_CONFIG_H' | DEPDIR='.deps' | DLLTOOL='false' | DPDK_NETDEV_FALSE='' | DPDK_NETDEV_TRUE='#' | DPDK_vswitchd_LDFLAGS='' | DSYMUTIL='' | DUMPBIN='' | ECHO_C='' | ECHO_N='-n' | ECHO_T='' | EGREP='/bin/grep -E' | ESX_FALSE='' | ESX_TRUE='#' | EXEEXT='' | FGREP='/bin/grep -F' | GNU_MAKE_FALSE='#' | GNU_MAKE_TRUE='' | GREP='/bin/grep' | HAVE_DOT_FALSE='#' | HAVE_DOT_TRUE='' | HAVE_FLAKE8_FALSE='' | HAVE_FLAKE8_TRUE='#' | HAVE_GROFF_FALSE='#' | HAVE_GROFF_TRUE='' | HAVE_IF_DL_FALSE='' | HAVE_IF_DL_TRUE='#' | HAVE_IF_PACKET_FALSE='#' | HAVE_IF_PACKET_TRUE='' | HAVE_LIBCAPNG='yes' | HAVE_LIBCAPNG_FALSE='#' | HAVE_LIBCAPNG_TRUE='' | HAVE_NETLINK_FALSE='#' | HAVE_NETLINK_TRUE='' | HAVE_OPENSSL='yes' | HAVE_OPENSSL_FALSE='#' | HAVE_OPENSSL_TRUE='' | HAVE_POSIX_AIO_FALSE='#' | HAVE_POSIX_AIO_TRUE='' | HAVE_PYTHON3='yes' | HAVE_PYTHON3_FALSE='#' | HAVE_PYTHON3_TRUE='' | HAVE_PYTHON='yes' | HAVE_PYTHON_FALSE='#' | HAVE_PYTHON_TRUE='' | HAVE_WNO_UNUSED_FALSE='#' | HAVE_WNO_UNUSED_PARAMETER_FALSE='#' | HAVE_WNO_UNUSED_PARAMETER_TRUE='' | HAVE_WNO_UNUSED_TRUE='' | INCLUDE_NEXT='include_next' | INCLUDE_NEXT_AS_FIRST_DIRECTIVE='include_next' | INSTALL_DATA='${INSTALL} -m 644' | INSTALL_PROGRAM='${INSTALL}' | INSTALL_SCRIPT='${INSTALL}' | INSTALL_STRIP_PROGRAM='$(install_sh) -c -s' | KARCH='' | KBUILD='' | LD='/usr/bin/ld' | LDFLAGS='' | LIBOBJS='' | LIBS='-latomic -lpthread -lrt -lm ' | LIBTOOL='$(SHELL) $(top_builddir)/libtool' | LINUX_ENABLED_FALSE='' | LINUX_ENABLED_TRUE='#' | LINUX_FALSE='#' | LINUX_TRUE='' | LIPO='' | LN_S='ln -s' | LOGDIR='${localstatedir}/log/${PACKAGE}' | LTLIBOBJS='' | LT_AGE='0' | LT_CURRENT='1' | LT_REVISION='0' | LT_SYS_LIBRARY_PATH='' | MAKEINFO='${SHELL} /root/openvswitch-2.6.0~git20160804.0a0f39d/build-aux/missing makeinfo' | MANIFEST_TOOL=':' | MKDIR_P='/bin/mkdir -p' | MSVC64_LDFLAGS='' | MSVC_CFLAGS='' | NDEBUG_FALSE='' | NDEBUG_TRUE='#' | NEXT_AS_FIRST_DIRECTIVE_STDIO_H='' | NEXT_AS_FIRST_DIRECTIVE_STRING_H='' | NEXT_STDIO_H='' | NEXT_STRING_H='' | NM='/usr/bin/nm -B' | NMEDIT='' | OBJDUMP='objdump' | OBJEXT='o' | OTOOL64='' | OTOOL='' | OVS_CFLAGS='' | OVS_LDFLAGS='' | PACKAGE='openvswitch' | PACKAGE_BUGREPORT='bugs@openvswitch.org' | PACKAGE_NAME='openvswitch' | PACKAGE_STRING='openvswitch 2.5.90' | PACKAGE_TARNAME='openvswitch' | PACKAGE_URL='' | PACKAGE_VERSION='2.5.90' | PATH_SEPARATOR=':' | PERL='/usr/bin/perl' | PKG_CONFIG='' | PKIDIR='${localstatedir}/lib/openvswitch/pki' | PRAGMA_COLUMNS='' | PRAGMA_SYSTEM_HEADER='#pragma GCC system_header' | PTHREAD_INCLUDES='' | PTHREAD_LDFLAGS='' | PTHREAD_LIBS='' | PTHREAD_WIN32_DIR_DLL='' | PTHREAD_WIN32_DIR_DLL_WIN_FORM='' | PYTHON3='/usr/bin/python3' | PYTHON='/usr/bin/python' | RANLIB='ranlib' | RUNDIR='${localstatedir}/run/openvswitch' | SED='/bin/sed' | SET_MAKE='' | SHELL='/bin/bash' | SPARSE='sparse' | SPARSEFLAGS='' | SPARSE_EXTRA_INCLUDES='-I /usr/local/include -I /usr/include/i386-linux-gnu ' | SSL_INCLUDES='-I/usr/include' | SSL_LDFLAGS='-L/usr/lib' | SSL_LIBS='-lssl -lcrypto' | STRIP='strip' | VERSION='2.5.90' | VSTUDIO_CONFIG='' | VSTUDIO_DDK_FALSE='' | VSTUDIO_DDK_TRUE='#' | WARNING_FLAGS=' -Wall -Wextra -Wno-sign-compare -Wpointer-arith -Wformat-security -Wswitch-enum -Wunused-parameter -Wbad-function-cast -Wcast-align -Wmissing-prototypes -Wmissing-field-initializers -fno-strict-aliasing' | WIN32_FALSE='' | WIN32_TRUE='#' | ac_ct_AR='ar' | ac_ct_CC='gcc' | ac_ct_DUMPBIN='' | am__EXEEXT_FALSE='' | am__EXEEXT_TRUE='#' | am__fastdepCC_FALSE='' | am__fastdepCC_TRUE='#' | am__include='include' | am__isrc='' | am__leading_dot='.' | am__nodep='' | am__quote='' | am__tar='tar --format=posix -chf - "$$tardir"' | am__untar='tar -xf -' | bindir='${exec_prefix}/bin' | build='i686-pc-linux-gnu' | build_alias='i686-linux-gnu' | build_cpu='i686' | build_os='linux-gnu' | build_vendor='pc' | datadir='${datarootdir}' | datarootdir='${prefix}/share' | docdir='${datarootdir}/doc/${PACKAGE_TARNAME}' | dvidir='${docdir}' | exec_prefix='${prefix}' | host='i686-pc-linux-gnu' | host_alias='' | host_cpu='i686' | host_os='linux-gnu' | host_vendor='pc' | htmldir='${docdir}' | includedir='${prefix}/include' | infodir='${prefix}/share/info' | install_sh='${SHELL} /root/openvswitch-2.6.0~git20160804.0a0f39d/build-aux/install-sh' | libdir='${exec_prefix}/lib' | libexecdir='${prefix}/lib/openvswitch' | localedir='${datarootdir}/locale' | localstatedir='/var' | mandir='${prefix}/share/man' | mkdir_p='$(MKDIR_P)' | oldincludedir='/usr/include' | pdfdir='${docdir}' | prefix='/usr' | program_transform_name='s,x,x,' | psdir='${docdir}' | runstatedir='${localstatedir}/run' | sbindir='${exec_prefix}/sbin' | sharedstatedir='${prefix}/com' | sysconfdir='/etc' | target_alias='' | | ## ----------- ## | ## confdefs.h. ## | ## ----------- ## | | /* confdefs.h */ | #define PACKAGE_NAME "openvswitch" | #define PACKAGE_TARNAME "openvswitch" | #define PACKAGE_VERSION "2.5.90" | #define PACKAGE_STRING "openvswitch 2.5.90" | #define PACKAGE_BUGREPORT "bugs@openvswitch.org" | #define PACKAGE_URL "" | #define PACKAGE "openvswitch" | #define VERSION "2.5.90" | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define _FILE_OFFSET_BITS 64 | #define HAVE_DLFCN_H 1 | #define LT_OBJDIR ".libs/" | #define HAVE_DECL_STRERROR_R 1 | #define HAVE_STRERROR_R 1 | #define STRERROR_R_CHAR_P 1 | #define VSTUDIO_DDK 1 | #define HAVE_NETLINK 1 | #define HAVE_OPENSSL 1 | #define HAVE_LIBCAPNG 1 | #define HAVE_IF_PACKET 1 | #define HAVE_DECL_SYS_SIGLIST 1 | #define HAVE_STRUCT_STAT_ST_MTIM_TV_NSEC 1 | #define HAVE_MLOCKALL 1 | #define HAVE_STRNLEN 1 | #define HAVE_GETLOADAVG 1 | #define HAVE_STATVFS 1 | #define HAVE_GETMNTENT_R 1 | #define HAVE_MNTENT_H 1 | #define HAVE_SYS_STATVFS_H 1 | #define HAVE_LINUX_TYPES_H 1 | #define HAVE_LINUX_IF_ETHER_H 1 | #define HAVE_STDATOMIC_H 1 | #define HAVE_BACKTRACE 1 | #define HAVE_LINUX_PERF_EVENT_H 1 | #define HAVE___THREAD 1 | #define HAVE_GCC4_ATOMICS 1 | #define ATOMIC_ALWAYS_LOCK_FREE_1B 1 | #define ATOMIC_ALWAYS_LOCK_FREE_2B 1 | #define ATOMIC_ALWAYS_LOCK_FREE_4B 1 | #define ATOMIC_ALWAYS_LOCK_FREE_8B 1 | #define HAVE_GLIBC_PTHREAD_SETNAME_NP 1 | #define HAVE_POSIX_MEMALIGN 1 | #define HAVE_STDIO_H 1 | #define HAVE_STRING_H 1 | #define HAVE_PRAGMA_MESSAGE 1 | | configure: exit 0