[ovs-discuss] cross compile kernel module of OVS for PowePC Arch

Purandhar Sairam Mannidi sairam.mp at freescale.com
Mon Nov 25 09:52:45 UTC 2013


Forgot to add mailing list

From: Mannidi Purandhar Sairam-B39209
Sent: Monday, November 25, 2013 3:17 PM
To: 'Vivek Kumar (EPG)'
Cc: P Balaji-B37839; Harsh Prateek Bora
Subject: RE: cross compile kernel module of OVS for PowePC Arch

Hi Vivek,

While setting CC environment make sure you mention sysroot path. For example:
export CC="powerpc-fsl_networking-linux-gcc  -m32 -mhard-float  -mcpu=e500mc --sysroot=/balajip/QorIQ-SDK-V1.4-20130625-yocto/build_p4080ds_release/tmp/sysroots/p4080ds"

This is how yocto uses while building openvswitch for P4080 Board. I'm giving some content for compile script, please change it according to your needs
export LD="powerpc-fsl_networking-linux-ld --sysroot=/balajip/QorIQ-SDK-V1.4-20130625-yocto/build_p4080ds_release/tmp/sysroots/p4080ds"
export CXX="powerpc-fsl_networking-linux-g++  -m32 -mhard-float  -mcpu=e500mc --sysroot=/balajip/QorIQ-SDK-V1.4-20130625-yocto/build_p4080ds_release/tmp/sysroots/p4080ds"
export CCLD="powerpc-fsl_networking-linux-gcc  -m32 -mhard-float  -mcpu=e500mc --sysroot=/balajip/QorIQ-SDK-V1.4-20130625-yocto/build_p4080ds_release/tmp/sysroots/p4080ds"
export CFLAGS="-O2 -pipe -g -feliminate-unused-debug-types"
export CXXFLAGS="-O2 -pipe -g -feliminate-unused-debug-types -fpermissive -fvisibility-inlines-hidden"
export CPP="powerpc-fsl_networking-linux-gcc -E --sysroot=/balajip/QorIQ-SDK-V1.4-20130625-yocto/build_p4080ds_release/tmp/sysroots/p4080ds  -m32 -mhard-float  -mcpu=e500mc"

Try these options for configuring and compiling as I observe it is using wrong include paths.
Please let us know if this helps, we're glad to help you.

Thanks,
Sairam


From: Vivek Kumar (EPG) [mailto:kvivek at juniper.net]
Sent: Monday, November 25, 2013 2:56 PM
To: Mannidi Purandhar Sairam-B39209; discuss at openvswitch.org
Cc: P Balaji-B37839; Harsh Prateek Bora
Subject: RE: cross compile kernel module of OVS for PowePC Arch

Hi Balaji and Sairam,
Thanks for an early response.
The script I shared earlier was taken from an external source and we later modified it to suit our needs.

So, as Sairam suggest, we tried to compile as followed (which solved the previous problem though, Thanks to Sairam):

export TARGET_HOST=powerpc-linux-gnu
export CC=powerpc-linux-gcc
export LD=powerpc-linux-ld
export KERNEL_PATH=/home/kvivek/ovs-raptor/ovs_raptor/linux/build/taranis/buildroot-2011.02-rc2/output/build/linux-custom

./configure --host=$TARGET_HOST --target=powerpc CC=$CC --with-linux=$KERNEL_PATH KARCH=powerpc
make ARCH=powerpc CC=$CC LD=$LD

However, after compiling most of code, it throws an error saying:

make[2]: Entering directory `/home/kvivek/OVS-VER-1.9.3/ovs2/openvswitch-1.9.3'
depbase=`echo lib/aes128.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`;\
                powerpc-linux-gcc -DHAVE_CONFIG_H -I.  -I/usr/kerberos/include   -I ./include -I ./lib -I ./lib   -Wstrict-prototypes -Wall -Wno-sign-compare -Wpointer-arith -Wdeclaration-after-statement -Wformat-security -Wswitch-enum -Wunused-parameter -Wstrict-aliasing -Wbad-function-cast -Wcast-align -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-field-initializers -Wno-override-init  -I/home/kvivek/OVS-VER-1.9.3/ovs2/openvswitch-1.9.3/include/sparse -MT lib/aes128.o -MD -MP -MF $depbase.Tpo -c -o lib/aes128.o lib/aes128.c &&\
                mv -f $depbase.Tpo $depbase.Po
In file included from lib/aes128.c:29:0:
/home/kvivek/OVS-VER-1.9.3/ovs2/openvswitch-1.9.3/include/sparse/assert.h:18:2: error: #error "Use this header only with sparse.  It is not a correct implementation."
make[2]: *** [lib/aes128.o] Error 1
make[2]: Leaving directory `/home/kvivek/OVS-VER-1.9.3/ovs2/openvswitch-1.9.3'
make[1]: *** [all-recursive] Error 1
make[1]: Leaving directory `/home/kvivek/OVS-VER-1.9.3/ovs2/openvswitch-1.9.3'
make: *** [all] Error 2

We also tried installing sparse but that doesn't appear to help.

Any pointers to fix this issue will be highly appreciated.

Regards,
Vivek

From: discuss-bounces at openvswitch.org [mailto:discuss-bounces at openvswitch.org] On Behalf Of Purandhar Sairam Mannidi
Sent: Monday, November 25, 2013 1:05 PM
To: discuss at openvswitch.org
Cc: Balaji P
Subject: Re: [ovs-discuss] cross compile kernel module of OVS for PowePC Arch

Hi Vivek,

It looks  like your openvswitch is not compiling with cross compiler tools.
You should give the compiler options again while issuing make command.

Thanks,
Sairam

From: discuss-bounces at openvswitch.org<mailto:discuss-bounces at openvswitch.org> [mailto:discuss-bounces at openvswitch.org] On Behalf Of Vivek Kumar (EPG)
Sent: Monday, November 25, 2013 11:27 AM
To: discuss at openvswitch.org<mailto:discuss at openvswitch.org>
Subject: [ovs-discuss] cross compile kernel module of OVS for PowePC Arch

Hi

I am trying to cross compile kernel module of OVS for PowePC Arch. It gives below mentioned error during make. Can you please help me out in solving this issue.
Please find  config log and make log below in mail

Thanks in advance
Vivek
/*********************************/
37   /home/kvivek/OVS-VER-1.9.3/openvswitch-1.9.3/datapath/linux/genetlink-brcompat.c:1:
38   error: code model 'kernel' not supported in the 32 bit mode
39   /home/kvivek/OVS-VER-1.9.3/openvswitch-1.9.3/datapath/linux/genetlink-brcompat.c:1:
40   sorry, unimplemented: 64-bit mode not compiled in
41   make[5]: ***
/************************************

Environment variable and linux path:
  -------------------------------------------
  2 USDPAA_SDK_INSTALL_PATH=/home/kvivek/OVS-VER-1.9.3/ovs_install
  3 export USDPAA_SDK_INSTALL_PATH
  4 export TARGET_HOST=powerpc-linux-gnu
  5 export KERNEL_PATH=/home/kvivek/ovs-raptor/ovs_raptor/linux/build/taranis/buildroot-2011.02-rc2/output/build/linux-custom
  6 export KSRC=/home/kvivek/ovs-raptor/ovs_raptor/linux/build/taranis/buildroot-2011.02-rc2/output/build/linux-custom
  7 export CPUARCH=powerpc
  8 export CROSS_PREFIX=powerpc-linux-
  9 export CC=powerpc-linux-gcc
10 export AR=powerpc-linux-ar
11 export LD=powerpc-linux-ld
12 export RANLIB=powerpc-linux-ranlib
13 export CXX=powerpc-linux-g++
14 export STRIP=powerpc-linux-strip
15 #export PATH=$USDPAA_SDK_INSTALL_PATH/freescale-2010.09/bin/:$PATH
16 export PATH=/usr/local/trpz/tools/cross/i686-redhat-linux/gcc4.6-uClib0.9.32-linux2.6.38/usr/bin:$PATH
17 export OPENVSWITCH_LIBPATH=$USDPAA_SDK_INSTALL_PATH/build_p4080ds_release/sysroots/ppce500mc-linux/usr/lib/
18 export OPENVSWITCH_INCLUDEPATH=$USDPAA_SDK_INSTALL_PATH/build_p4080ds_release/sysroots/ppce500mc-linux/usr/include/
19 export OPENVSWITCH_SRCPATH=$USDPAA_SDK_INSTALL_PATH/build_p4080ds_release/sysroots/ppce500mc-lib/usr
20 ./configure --host $TARGET_HOST  CC=$CC --with-linux=$KERNEL_PATH CFLAGS="-std=gnu99 -g -I$USDPAA_SDK_INSTALL_PATH/build_p4080ds_release/sysroots/ppce500mc-linux/usr/include/  -L$USDPAA_SDK_INS    TALL_PATH/build_p4080ds_release/sysroots/ppce500mc-linux/usr/lib/" KARCH=powerpc


Make log:

make  all-recursive
  2 make[1]: Entering directory `/home/kvivek/OVS-VER-1.9.3/ovs'
  3 Making all in datapath
  4 make[2]: Entering directory `/home/kvivek/OVS-VER-1.9.3/ovs/datapath'
  5 Making all in linux
  6 make[3]: Entering directory `/home/kvivek/OVS-VER-1.9.3/ovs/datapath/linux'
  7 ln -s /home/kvivek/OVS-VER-1.9.3/ovs/datapath/linux/../actions.c
  8 ln -s /home/kvivek/OVS-VER-1.9.3/ovs/datapath/linux/../checksum.c
  9 ln -s /home/kvivek/OVS-VER-1.9.3/ovs/datapath/linux/../datapath.c
10 ln -s /home/kvivek/OVS-VER-1.9.3/ovs/datapath/linux/../dp_notify.c
11 ln -s /home/kvivek/OVS-VER-1.9.3/ovs/datapath/linux/../dp_sysfs_dp.c
12 ln -s /home/kvivek/OVS-VER-1.9.3/ovs/datapath/linux/../dp_sysfs_if.c
13 ln -s /home/kvivek/OVS-VER-1.9.3/ovs/datapath/linux/../flow.c
14 ln -s /home/kvivek/OVS-VER-1.9.3/ovs/datapath/linux/../genl_exec.c
15 ln -s /home/kvivek/OVS-VER-1.9.3/ovs/datapath/linux/../tunnel.c
16 ln -s /home/kvivek/OVS-VER-1.9.3/ovs/datapath/linux/../vlan.c
17 ln -s /home/kvivek/OVS-VER-1.9.3/ovs/datapath/linux/../vport.c
18 ln -s /home/kvivek/OVS-VER-1.9.3/ovs/datapath/linux/../vport-capwap.c
19 ln -s /home/kvivek/OVS-VER-1.9.3/ovs/datapath/linux/../vport-generic.c
20 ln -s /home/kvivek/OVS-VER-1.9.3/ovs/datapath/linux/../vport-gre.c
21 ln -s /home/kvivek/OVS-VER-1.9.3/ovs/datapath/linux/../vport-internal_dev.c
22 ln -s /home/kvivek/OVS-VER-1.9.3/ovs/datapath/linux/../vport-netdev.c
23 ln -s /home/kvivek/OVS-VER-1.9.3/ovs/datapath/linux/../vport-patch.c
24 ln -s /home/kvivek/OVS-VER-1.9.3/ovs/datapath/linux/../linux/compat/addrconf_core-openvswitch.c
25 ln -s /home/kvivek/OVS-VER-1.9.3/ovs/datapath/linux/../linux/compat/dev-openvswitch.c
26 ln -s /home/kvivek/OVS-VER-1.9.3/ovs/datapath/linux/../linux/compat/exthdrs_core.c
27 ln -s /home/kvivek/OVS-VER-1.9.3/ovs/datapath/linux/../linux/compat/flex_array.c
28 ln -s /home/kvivek/OVS-VER-1.9.3/ovs/datapath/linux/../linux/compat/genetlink-openvswitch.c
29 ln -s /home/kvivek/OVS-VER-1.9.3/ovs/datapath/linux/../linux/compat/ip_output-openvswitch.c
30 ln -s /home/kvivek/OVS-VER-1.9.3/ovs/datapath/linux/../linux/compat/kmemdup.c
31 ln -s /home/kvivek/OVS-VER-1.9.3/ovs/datapath/linux/../linux/compat/netdevice.c
32 ln -s /home/kvivek/OVS-VER-1.9.3/ovs/datapath/linux/../linux/compat/net_namespace.c
33 ln -s /home/kvivek/OVS-VER-1.9.3/ovs/datapath/linux/../linux/compat/reciprocal_div.c
34 ln -s /home/kvivek/OVS-VER-1.9.3/ovs/datapath/linux/../linux/compat/skbuff-openvswitch.c
35 ln -s /home/kvivek/OVS-VER-1.9.3/ovs/datapath/linux/../linux/compat/time.c
36 ln -s /home/kvivek/OVS-VER-1.9.3/ovs/datapath/linux/../linux/compat/workqueue.c
37 ln -s /home/kvivek/OVS-VER-1.9.3/ovs/datapath/linux/../linux/compat/genetlink-brcompat.c
38 ln -s /home/kvivek/OVS-VER-1.9.3/ovs/datapath/linux/../brcompat_main.c
39 make -C /home/kvivek/ovs-raptor/ovs_raptor/linux/build/taranis/buildroot-2011.02-rc2/output/build/linux-custom M=/home/kvivek/OVS-VER-1.9.3/ovs/datapath/linux modules
40 make[4]: Entering directory `/home/kvivek/ovs-raptor/ovs_raptor/linux/build/taranis/buildroot-2011.02-rc2/output/build/linux-custom'
41 test -e include/linux/autoconf.h -a -e include/config/auto.conf || (        \
42     echo;                               \
43     echo "  ERROR: Kernel configuration is invalid.";       \
44     echo "         include/linux/autoconf.h or include/config/auto.conf are missing.";  \
45     echo "         Run 'make oldconfig && make prepare' on kernel src to fix it.";  \
46     echo;                               \
47     /bin/false)
48 mkdir -p /home/kvivek/OVS-VER-1.9.3/ovs/datapath/linux/.tmp_versions ; rm -f /home/kvivek/OVS-VER-1.9.3/ovs/datapath/linux/.tmp_versions/*
49 make -f scripts/Makefile.build obj=/home/kvivek/OVS-VER-1.9.3/ovs/datapath/linux
50   gcc -Wp,-MD,/home/kvivek/OVS-VER-1.9.3/ovs/datapath/linux/.genetlink-brcompat.o.d  -nostdinc -isystem /usr/lib/gcc/i386-redhat-linux/4.1.2/include -I/home/kvivek/OVS-VER-1.9.3/ovs/include -I/    home/kvivek/OVS-VER-1.9.3/ovs/datapath/linux/compat -I/home/kvivek/OVS-VER-1.9.3/ovs/datapath/linux/compat/include -Iinclude  -I/home/kvivek/ovs-raptor/ovs_raptor/linux/build/taranis/buildroot-    2011.02-rc2/output/build/linux-custom/arch/x86/include -include include/linux/autoconf.h -D__KERNEL__ -Wall -Wundef -Wstrict-prototypes -Wno-trigraphs -fno-strict-aliasing -fno-common -Werror-i    mplicit-function-declaration -Wno-format-security -fno-delete-null-pointer-checks -Os -m64 -mno-red-zone -mcmodel=kernel -maccumulate-outgoing-args -DCONFIG_AS_CFI_SIGNAL_FRAME=1 -pipe -Wno-sig    n-compare -fno-asynchronous-unwind-tables -fomit-frame-pointer -g -DVERSION=\"1.9.3\" -I/home/kvivek/OVS-VER-1.9.3/ovs/datapath/linux/.. -I/home/kvivek/OVS-VER-1.9.3/ovs/datapath/linux/.. -g -i    nclude /home/kvivek/OVS-VER-1.9.3/ovs/datapath/linux/kcompat.h  -DMODULE -D"KBUILD_STR(s)=#s" -D"KBUILD_BASENAME=KBUILD_STR(genetlink_brcompat)"  -D"KBUILD_MODNAME=KBUILD_STR(brcompat)"  -c -o     /home/kvivek/OVS-VER-1.9.3/ovs/datapath/linux/genetlink-brcompat.o /home/kvivek/OVS-VER-1.9.3/ovs/datapath/linux/genetlink-brcompat.c
51 /home/kvivek/OVS-VER-1.9.3/ovs/datapath/linux/genetlink-brcompat.c:1: error: code model 'kernel' not supported in the 32 bit mode
52 /home/kvivek/OVS-VER-1.9.3/ovs/datapath/linux/genetlink-brcompat.c:1: sorry, unimplemented: 64-bit mode not compiled in
53 make[5]: *** [/home/kvivek/OVS-VER-1.9.3/ovs/datapath/linux/genetlink-brcompat.o] Error 1
54 make[4]: *** [_module_/home/kvivek/OVS-VER-1.9.3/ovs/datapath/linux] Error 2
55 make[4]: Leaving directory `/home/kvivek/ovs-raptor/ovs_raptor/linux/build/taranis/buildroot-2011.02-rc2/output/build/linux-custom'
56 make[3]: *** [default] Error 2
57 make[3]: Leaving directory `/home/kvivek/OVS-VER-1.9.3/ovs/datapath/linux'
58 make[2]: *** [all-recursive] Error 1
59 make[2]: Leaving directory `/home/kvivek/OVS-VER-1.9.3/ovs/datapath'
60 make[1]: *** [all-recursive] Error 1
61 make[1]: Leaving directory `/home/kvivek/OVS-VER-1.9.3/ovs'
62 make: *** [all] Error 2



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 1.9.3, which was
generated by GNU Autoconf 2.68.  Invocation command line was

  $ ./configure --host powerpc-linux-gnu CC=powerpc-linux-gcc --with-linux=/home/kvivek/ovs-raptor/ovs_raptor/linux/build/taranis/buildroot-2011.02-rc2/output/build/linux-custom CFLAGS=-std=gnu99 -g -I/home/kvivek/OVS-VER-1.9.3/ovs_install/build_p4080ds_release/sysroots/ppce500mc-linux/usr/include/  -L/home/kvivek/OVS-VER-1.9.3/ovs_install/build_p4080ds_release/sysroots/ppce500mc-linux/usr/lib/ KARCH=powerpc

## --------- ##
## Platform. ##
## --------- ##

hostname = dhcp-10-209-144-55
uname -m = i686
uname -r = 2.6.18-238.el5PAE
uname -s = Linux
uname -v = #1 SMP Thu Jan 13 17:10:20 EST 2011

/usr/bin/uname -p = unknown
/bin/uname -X     = unknown

/bin/arch              = i686
/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/trpz/tools/cross/i686-redhat-linux/gcc4.6-uClib0.9.32-linux2.6.38/usr/bin
PATH: /usr/local/trpz/tools/cross/i686-redhat-linux/gcc4.6-uClib0.9.32-linux2.6.38/usr/bin
PATH: /usr/lib/qt-3.3/bin
PATH: /usr/kerberos/sbin
PATH: /usr/kerberos/bin
PATH: /usr/local/sbin
PATH: /usr/local/bin
PATH: /sbin
PATH: /bin
PATH: /usr/sbin
PATH: /usr/bin
PATH: /root/bin
PATH: /usr/local/trpz/tools/cross/i686-redhat-linux/gcc4.6-uClib0.9.32-linux2.6.38/usr/bin


## ----------- ##
## Core tests. ##
## ----------- ##

configure:2336: checking for a BSD-compatible install
configure:2404: result: /usr/bin/install -c
configure:2415: checking whether build environment is sane
configure:2465: result: yes
configure:2514: checking for powerpc-linux-gnu-strip
configure:2541: result: powerpc-linux-strip
configure:2606: checking for a thread-safe mkdir -p
configure:2645: result: /bin/mkdir -p
configure:2658: checking for gawk
configure:2674: found /bin/gawk
configure:2685: result: gawk
configure:2696: checking whether make sets $(MAKE)
configure:2718: result: yes
configure:2807: checking for powerpc-linux-gnu-gcc
configure:2834: result: powerpc-linux-gcc
configure:3103: checking for C compiler version
configure:3112: powerpc-linux-gcc --version >&5
powerpc-linux-gcc (Buildroot 2011.05) 4.6.0
Copyright (C) 2011 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:3123: $? = 0
configure:3112: powerpc-linux-gcc -v >&5
Using built-in specs.
COLLECT_GCC=powerpc-linux-gcc
COLLECT_LTO_WRAPPER=/mnt/toolchain2/tools/cross/i686-redhat-linux/gcc4.6-uClib0.9.32-linux2.6.38/usr/bin/../libexec/gcc/powerpc-unknown-linux-uclibc/4.6.0/lto-wrapper
Target: powerpc-unknown-linux-uclibc
Configured with: /tmp/rrose/buildroot/buildroot-2011.05/output/toolchain/gcc-4.6.0/configure --prefix=/usr/local/trpz/tools/cross/i686-redhat-linux/gcc4.6-uClib0.9.32-linux2.6.38/usr --build=i686-pc-linux-gnu --host=i686-pc-linux-gnu --target=powerpc-unknown-linux-uclibc --enable-languages=c --with-sysroot=/usr/local/trpz/tools/cross/i686-redhat-linux/gcc4.6-uClib0.9.32-linux2.6.38/usr/powerpc-unknown-linux-uclibc/sysroot --with-build-time-tools=/usr/local/trpz/tools/cross/i686-redhat-linux/gcc4.6-uClib0.9.32-linux2.6.38/usr/powerpc-unknown-linux-uclibc/bin --disable-__cxa_atexit --disable-libquadmath --disable-libgomp --with-gnu-ld --disable-libssp --disable-multilib --disable-tls --disable-shared --with-gmp=/usr/local/trpz/tools/cross/i686-redhat-linux/gcc4.6-uClib0.9.32-linux2.6.38/usr --with-mpfr=/usr/local/trpz/tools/cross/i686-redhat-linux/gcc4.6-uClib0.9.32-linux2.6.38/usr --with-mpc=/usr/local/trpz/tools/cross/i686-redhat-linux/gcc4.6-uClib0.9.32-linux2.6.38/usr --disable-nls --enable-threads --disable-decimal-float --with-float=soft --with-tune=8540 --with-pkgversion='Buildroot 2011.05' --with-bugurl=http://bugs.buildroot.net/
Thread model: posix
gcc version 4.6.0 (Buildroot 2011.05)
configure:3123: $? = 0
configure:3112: powerpc-linux-gcc -V >&5
powerpc-linux-gcc: error: unrecognized option '-V'
powerpc-linux-gcc: fatal error: no input files
compilation terminated.
configure:3123: $? = 1
configure:3112: powerpc-linux-gcc -qversion >&5
powerpc-linux-gcc: error: unrecognized option '-qversion'
powerpc-linux-gcc: fatal error: no input files
compilation terminated.
configure:3123: $? = 1
configure:3143: checking whether the C compiler works
configure:3165: powerpc-linux-gcc -std=gnu99 -g -I/home/kvivek/OVS-VER-1.9.3/ovs_install/build_p4080ds_release/sysroots/ppce500mc-linux/usr/include/  -L/home/kvivek/OVS-VER-1.9.3/ovs_install/build_p4080ds_release/sysroots/ppce500mc-linux/usr/lib/   conftest.c  >&5
configure:3169: $? = 0
configure:3217: result: yes
configure:3220: checking for C compiler default output file name
configure:3222: result: a.out
configure:3228: checking for suffix of executables
configure:3235: powerpc-linux-gcc -o conftest -std=gnu99 -g -I/home/kvivek/OVS-VER-1.9.3/ovs_install/build_p4080ds_release/sysroots/ppce500mc-linux/usr/include/  -L/home/kvivek/OVS-VER-1.9.3/ovs_install/build_p4080ds_release/sysroots/ppce500mc-linux/usr/lib/   conftest.c  >&5
configure:3239: $? = 0
configure:3261: result:
configure:3283: checking whether we are cross compiling
configure:3291: powerpc-linux-gcc -o conftest -std=gnu99 -g -I/home/kvivek/OVS-VER-1.9.3/ovs_install/build_p4080ds_release/sysroots/ppce500mc-linux/usr/include/  -L/home/kvivek/OVS-VER-1.9.3/ovs_install/build_p4080ds_release/sysroots/ppce500mc-linux/usr/lib/   conftest.c  >&5
configure:3295: $? = 0
configure:3302: ./conftest
./configure: line 3304: ./conftest: cannot execute binary file
configure:3306: $? = 126
configure:3321: result: yes
configure:3326: checking for suffix of object files
configure:3348: powerpc-linux-gcc -c -std=gnu99 -g -I/home/kvivek/OVS-VER-1.9.3/ovs_install/build_p4080ds_release/sysroots/ppce500mc-linux/usr/include/  -L/home/kvivek/OVS-VER-1.9.3/ovs_install/build_p4080ds_release/sysroots/ppce500mc-linux/usr/lib/  conftest.c >&5
configure:3352: $? = 0
configure:3373: result: o
configure:3377: checking whether we are using the GNU C compiler
configure:3396: powerpc-linux-gcc -c -std=gnu99 -g -I/home/kvivek/OVS-VER-1.9.3/ovs_install/build_p4080ds_release/sysroots/ppce500mc-linux/usr/include/  -L/home/kvivek/OVS-VER-1.9.3/ovs_install/build_p4080ds_release/sysroots/ppce500mc-linux/usr/lib/  conftest.c >&5
configure:3396: $? = 0
configure:3405: result: yes
configure:3414: checking whether powerpc-linux-gcc accepts -g
configure:3434: powerpc-linux-gcc -c -g  conftest.c >&5
configure:3434: $? = 0
configure:3475: result: yes
configure:3492: checking for powerpc-linux-gcc option to accept ISO C89
configure:3556: powerpc-linux-gcc  -c -std=gnu99 -g -I/home/kvivek/OVS-VER-1.9.3/ovs_install/build_p4080ds_release/sysroots/ppce500mc-linux/usr/include/  -L/home/kvivek/OVS-VER-1.9.3/ovs_install/build_p4080ds_release/sysroots/ppce500mc-linux/usr/lib/  conftest.c >&5
configure:3556: $? = 0
configure:3569: result: none needed
configure:3600: checking for style of include used by make
configure:3628: result: GNU
configure:3653: checking dependency style of powerpc-linux-gcc
configure:3763: result: gcc3
configure:3779: checking whether powerpc-linux-gcc and cc understand -c and -o together
configure:3810: powerpc-linux-gcc -c conftest.c -o conftest2.o >&5
configure:3814: $? = 0
configure:3820: powerpc-linux-gcc -c conftest.c -o conftest2.o >&5
configure:3824: $? = 0
configure:3835: cc -c conftest.c >&5
configure:3839: $? = 0
configure:3847: cc -c conftest.c -o conftest2.o >&5
configure:3851: $? = 0
configure:3857: cc -c conftest.c -o conftest2.o >&5
configure:3861: $? = 0
configure:3879: result: yes
configure:3909: checking how to run the C preprocessor
configure:3940: powerpc-linux-gcc -E  conftest.c
configure:3940: $? = 0
configure:3954: powerpc-linux-gcc -E  conftest.c
conftest.c:11:28: fatal error: ac_nonexistent.h: No such file or directory
compilation terminated.
configure:3954: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "openvswitch"
| #define PACKAGE_TARNAME "openvswitch"
| #define PACKAGE_VERSION "1.9.3"
| #define PACKAGE_STRING "openvswitch 1.9.3"
| #define PACKAGE_BUGREPORT "ovs-bugs at openvswitch.org<mailto:ovs-bugs at openvswitch.org>"
| #define PACKAGE_URL ""
| #define PACKAGE "openvswitch"
| #define VERSION "1.9.3"
| /* end confdefs.h.  */
| #include <ac_nonexistent.h>
configure:3979: result: powerpc-linux-gcc -E
configure:3999: powerpc-linux-gcc -E  conftest.c
configure:3999: $? = 0
configure:4013: powerpc-linux-gcc -E  conftest.c
conftest.c:11:28: fatal error: ac_nonexistent.h: No such file or directory
compilation terminated.
configure:4013: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "openvswitch"
| #define PACKAGE_TARNAME "openvswitch"
| #define PACKAGE_VERSION "1.9.3"
| #define PACKAGE_STRING "openvswitch 1.9.3"
| #define PACKAGE_BUGREPORT "ovs-bugs at openvswitch.org<mailto:ovs-bugs at openvswitch.org>"
| #define PACKAGE_URL ""
| #define PACKAGE "openvswitch"
| #define VERSION "1.9.3"
| /* end confdefs.h.  */
| #include <ac_nonexistent.h>
configure:4044: checking for powerpc-linux-gnu-ranlib
configure:4071: result: powerpc-linux-ranlib
configure:4134: checking for grep that handles long lines and -e
configure:4192: result: /bin/grep
configure:4197: checking for fgrep
configure:4259: result: /bin/grep -F
configure:4268: checking for perl
configure:4286: found /usr/bin/perl
configure:4299: result: /usr/bin/perl
configure:4317: checking for egrep
configure:4379: result: /bin/grep -E
configure:4384: checking for ANSI C header files
configure:4404: powerpc-linux-gcc -c -std=gnu99 -g -I/home/kvivek/OVS-VER-1.9.3/ovs_install/build_p4080ds_release/sysroots/ppce500mc-linux/usr/include/  -L/home/kvivek/OVS-VER-1.9.3/ovs_install/build_p4080ds_release/sysroots/ppce500mc-linux/usr/lib/  conftest.c >&5
configure:4404: $? = 0
configure:4488: result: yes
configure:4501: checking for sys/types.h
configure:4501: powerpc-linux-gcc -c -std=gnu99 -g -I/home/kvivek/OVS-VER-1.9.3/ovs_install/build_p4080ds_release/sysroots/ppce500mc-linux/usr/include/  -L/home/kvivek/OVS-VER-1.9.3/ovs_install/build_p4080ds_release/sysroots/ppce500mc-linux/usr/lib/  conftest.c >&5
configure:4501: $? = 0
configure:4501: result: yes
configure:4501: checking for sys/stat.h
configure:4501: powerpc-linux-gcc -c -std=gnu99 -g -I/home/kvivek/OVS-VER-1.9.3/ovs_install/build_p4080ds_release/sysroots/ppce500mc-linux/usr/include/  -L/home/kvivek/OVS-VER-1.9.3/ovs_install/build_p4080ds_release/sysroots/ppce500mc-linux/usr/lib/  conftest.c >&5
configure:4501: $? = 0
configure:4501: result: yes
configure:4501: checking for stdlib.h
configure:4501: powerpc-linux-gcc -c -std=gnu99 -g -I/home/kvivek/OVS-VER-1.9.3/ovs_install/build_p4080ds_release/sysroots/ppce500mc-linux/usr/include/  -L/home/kvivek/OVS-VER-1.9.3/ovs_install/build_p4080ds_release/sysroots/ppce500mc-linux/usr/lib/  conftest.c >&5
configure:4501: $? = 0
configure:4501: result: yes
configure:4501: checking for string.h
configure:4501: powerpc-linux-gcc -c -std=gnu99 -g -I/home/kvivek/OVS-VER-1.9.3/ovs_install/build_p4080ds_release/sysroots/ppce500mc-linux/usr/include/  -L/home/kvivek/OVS-VER-1.9.3/ovs_install/build_p4080ds_release/sysroots/ppce500mc-linux/usr/lib/  conftest.c >&5
configure:4501: $? = 0
configure:4501: result: yes
configure:4501: checking for memory.h
configure:4501: powerpc-linux-gcc -c -std=gnu99 -g -I/home/kvivek/OVS-VER-1.9.3/ovs_install/build_p4080ds_release/sysroots/ppce500mc-linux/usr/include/  -L/home/kvivek/OVS-VER-1.9.3/ovs_install/build_p4080ds_release/sysroots/ppce500mc-linux/usr/lib/  conftest.c >&5
configure:4501: $? = 0
configure:4501: result: yes
configure:4501: checking for strings.h
configure:4501: powerpc-linux-gcc -c -std=gnu99 -g -I/home/kvivek/OVS-VER-1.9.3/ovs_install/build_p4080ds_release/sysroots/ppce500mc-linux/usr/include/  -L/home/kvivek/OVS-VER-1.9.3/ovs_install/build_p4080ds_release/sysroots/ppce500mc-linux/usr/lib/  conftest.c >&5
configure:4501: $? = 0
configure:4501: result: yes
configure:4501: checking for inttypes.h
configure:4501: powerpc-linux-gcc -c -std=gnu99 -g -I/home/kvivek/OVS-VER-1.9.3/ovs_install/build_p4080ds_release/sysroots/ppce500mc-linux/usr/include/  -L/home/kvivek/OVS-VER-1.9.3/ovs_install/build_p4080ds_release/sysroots/ppce500mc-linux/usr/lib/  conftest.c >&5
configure:4501: $? = 0
configure:4501: result: yes
configure:4501: checking for stdint.h
configure:4501: powerpc-linux-gcc -c -std=gnu99 -g -I/home/kvivek/OVS-VER-1.9.3/ovs_install/build_p4080ds_release/sysroots/ppce500mc-linux/usr/include/  -L/home/kvivek/OVS-VER-1.9.3/ovs_install/build_p4080ds_release/sysroots/ppce500mc-linux/usr/lib/  conftest.c >&5
configure:4501: $? = 0
configure:4501: result: yes
configure:4501: checking for unistd.h
configure:4501: powerpc-linux-gcc -c -std=gnu99 -g -I/home/kvivek/OVS-VER-1.9.3/ovs_install/build_p4080ds_release/sysroots/ppce500mc-linux/usr/include/  -L/home/kvivek/OVS-VER-1.9.3/ovs_install/build_p4080ds_release/sysroots/ppce500mc-linux/usr/lib/  conftest.c >&5
configure:4501: $? = 0
configure:4501: result: yes
configure:4514: checking minix/config.h usability
configure:4514: powerpc-linux-gcc -c -std=gnu99 -g -I/home/kvivek/OVS-VER-1.9.3/ovs_install/build_p4080ds_release/sysroots/ppce500mc-linux/usr/include/  -L/home/kvivek/OVS-VER-1.9.3/ovs_install/build_p4080ds_release/sysroots/ppce500mc-linux/usr/lib/  conftest.c >&5
conftest.c:54:26: fatal error: minix/config.h: No such file or directory
compilation terminated.
configure:4514: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "openvswitch"
| #define PACKAGE_TARNAME "openvswitch"
| #define PACKAGE_VERSION "1.9.3"
| #define PACKAGE_STRING "openvswitch 1.9.3"
| #define PACKAGE_BUGREPORT "ovs-bugs at openvswitch.org<mailto:ovs-bugs at openvswitch.org>"
| #define PACKAGE_URL ""
| #define PACKAGE "openvswitch"
| #define VERSION "1.9.3"
| #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 <stdio.h>
| #ifdef HAVE_SYS_TYPES_H
| # include <sys/types.h>
| #endif
| #ifdef HAVE_SYS_STAT_H
| # include <sys/stat.h>
| #endif
| #ifdef STDC_HEADERS
| # include <stdlib.h>
| # include <stddef.h>
| #else
| # ifdef HAVE_STDLIB_H
| #  include <stdlib.h>
| # endif
| #endif
| #ifdef HAVE_STRING_H
| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
| #  include <memory.h>
| # endif
| # include <string.h>
| #endif
| #ifdef HAVE_STRINGS_H
| # include <strings.h>
| #endif
| #ifdef HAVE_INTTYPES_H
| # include <inttypes.h>
| #endif
| #ifdef HAVE_STDINT_H
| # include <stdint.h>
| #endif
| #ifdef HAVE_UNISTD_H
| # include <unistd.h>
| #endif
| #include <minix/config.h>
configure:4514: result: no
configure:4514: checking minix/config.h presence
configure:4514: powerpc-linux-gcc -E  conftest.c
conftest.c:21:26: fatal error: minix/config.h: No such file or directory
compilation terminated.
configure:4514: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "openvswitch"
| #define PACKAGE_TARNAME "openvswitch"
| #define PACKAGE_VERSION "1.9.3"
| #define PACKAGE_STRING "openvswitch 1.9.3"
| #define PACKAGE_BUGREPORT "ovs-bugs at openvswitch.org<mailto:ovs-bugs at openvswitch.org>"
| #define PACKAGE_URL ""
| #define PACKAGE "openvswitch"
| #define VERSION "1.9.3"
| #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 <minix/config.h>
configure:4514: result: no
configure:4514: checking for minix/config.h
configure:4514: result: no
configure:4535: checking whether it is safe to define __EXTENSIONS__
configure:4553: powerpc-linux-gcc -c -std=gnu99 -g -I/home/kvivek/OVS-VER-1.9.3/ovs_install/build_p4080ds_release/sysroots/ppce500mc-linux/usr/include/  -L/home/kvivek/OVS-VER-1.9.3/ovs_install/build_p4080ds_release/sysroots/ppce500mc-linux/usr/lib/  conftest.c >&5
configure:4553: $? = 0
configure:4560: result: yes
configure:4574: checking whether byte ordering is bigendian
configure:4589: powerpc-linux-gcc -c -std=gnu99 -g -I/home/kvivek/OVS-VER-1.9.3/ovs_install/build_p4080ds_release/sysroots/ppce500mc-linux/usr/include/  -L/home/kvivek/OVS-VER-1.9.3/ovs_install/build_p4080ds_release/sysroots/ppce500mc-linux/usr/lib/  conftest.c >&5
conftest.c:27:9: error: unknown type name 'not'
conftest.c:27:15: error: expected '=', ',', ';', 'asm' or '__attribute__' before 'universal'
conftest.c:27:15: error: unknown type name 'universal'
configure:4589: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "openvswitch"
| #define PACKAGE_TARNAME "openvswitch"
| #define PACKAGE_VERSION "1.9.3"
| #define PACKAGE_STRING "openvswitch 1.9.3"
| #define PACKAGE_BUGREPORT "ovs-bugs at openvswitch.org<mailto:ovs-bugs at openvswitch.org>"
| #define PACKAGE_URL ""
| #define PACKAGE "openvswitch"
| #define VERSION "1.9.3"
| #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:4634: powerpc-linux-gcc -c -std=gnu99 -g -I/home/kvivek/OVS-VER-1.9.3/ovs_install/build_p4080ds_release/sysroots/ppce500mc-linux/usr/include/  -L/home/kvivek/OVS-VER-1.9.3/ovs_install/build_p4080ds_release/sysroots/ppce500mc-linux/usr/lib/  conftest.c >&5
configure:4634: $? = 0
configure:4652: powerpc-linux-gcc -c -std=gnu99 -g -I/home/kvivek/OVS-VER-1.9.3/ovs_install/build_p4080ds_release/sysroots/ppce500mc-linux/usr/include/  -L/home/kvivek/OVS-VER-1.9.3/ovs_install/build_p4080ds_release/sysroots/ppce500mc-linux/usr/lib/  conftest.c >&5
configure:4652: $? = 0
configure:4780: result: yes
configure:4805: checking for special C compiler options needed for large files
configure:4850: result: no
configure:4856: checking for _FILE_OFFSET_BITS value needed for large files
configure:4881: powerpc-linux-gcc -c -std=gnu99 -g -I/home/kvivek/OVS-VER-1.9.3/ovs_install/build_p4080ds_release/sysroots/ppce500mc-linux/usr/include/  -L/home/kvivek/OVS-VER-1.9.3/ovs_install/build_p4080ds_release/sysroots/ppce500mc-linux/usr/lib/  conftest.c >&5
conftest.c:33:3: warning: left shift count >= width of type [enabled by default]
conftest.c:33:3: warning: left shift count >= width of type [enabled by default]
conftest.c:34:10: warning: left shift count >= width of type [enabled by default]
conftest.c:34:10: warning: left shift count >= width of type [enabled by default]
conftest.c:33:7: error: size of array 'off_t_is_large' is negative
conftest.c:35:9: warning: variably modified 'off_t_is_large' at file scope [enabled by default]
configure:4881: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "openvswitch"
| #define PACKAGE_TARNAME "openvswitch"
| #define PACKAGE_VERSION "1.9.3"
| #define PACKAGE_STRING "openvswitch 1.9.3"
| #define PACKAGE_BUGREPORT "ovs-bugs at openvswitch.org<mailto:ovs-bugs at openvswitch.org>"
| #define PACKAGE_URL ""
| #define PACKAGE "openvswitch"
| #define VERSION "1.9.3"
| #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 WORDS_BIGENDIAN 1
| /* end confdefs.h.  */
| #include <sys/types.h>
|  /* 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 << 62) - 1 + ((off_t) 1 << 62))
|   int off_t_is_large[(LARGE_OFF_T % 2147483629 == 721
|                       && LARGE_OFF_T % 2147483647 == 1)
|                      ? 1 : -1];
| int
| main ()
| {
|
|   ;
|   return 0;
| }
configure:4905: powerpc-linux-gcc -c -std=gnu99 -g -I/home/kvivek/OVS-VER-1.9.3/ovs_install/build_p4080ds_release/sysroots/ppce500mc-linux/usr/include/  -L/home/kvivek/OVS-VER-1.9.3/ovs_install/build_p4080ds_release/sysroots/ppce500mc-linux/usr/lib/  conftest.c >&5
configure:4905: $? = 0
configure:4913: result: 64
configure:4997: checking for library containing pow
configure:5028: powerpc-linux-gcc -o conftest -std=gnu99 -g -I/home/kvivek/OVS-VER-1.9.3/ovs_install/build_p4080ds_release/sysroots/ppce500mc-linux/usr/include/  -L/home/kvivek/OVS-VER-1.9.3/ovs_install/build_p4080ds_release/sysroots/ppce500mc-linux/usr/lib/   conftest.c  >&5
conftest.c:35:6: warning: conflicting types for built-in function 'pow' [enabled by default]
/tmp/ccMLKesr.o: In function `main':
/home/kvivek/OVS-VER-1.9.3/ovs/conftest.c:39: undefined reference to `pow'
collect2: ld returned 1 exit status
configure:5028: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "openvswitch"
| #define PACKAGE_TARNAME "openvswitch"
| #define PACKAGE_VERSION "1.9.3"
| #define PACKAGE_STRING "openvswitch 1.9.3"
| #define PACKAGE_BUGREPORT "ovs-bugs at openvswitch.org<mailto:ovs-bugs at openvswitch.org>"
| #define PACKAGE_URL ""
| #define PACKAGE "openvswitch"
| #define VERSION "1.9.3"
| #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 WORDS_BIGENDIAN 1
| #define _FILE_OFFSET_BITS 64
| /* 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:5028: powerpc-linux-gcc -o conftest -std=gnu99 -g -I/home/kvivek/OVS-VER-1.9.3/ovs_install/build_p4080ds_release/sysroots/ppce500mc-linux/usr/include/  -L/home/kvivek/OVS-VER-1.9.3/ovs_install/build_p4080ds_release/sysroots/ppce500mc-linux/usr/lib/   conftest.c -lm   >&5
conftest.c:35:6: warning: conflicting types for built-in function 'pow' [enabled by default]
configure:5028: $? = 0
configure:5045: result: -lm
configure:5053: checking for library containing clock_gettime
configure:5084: powerpc-linux-gcc -o conftest -std=gnu99 -g -I/home/kvivek/OVS-VER-1.9.3/ovs_install/build_p4080ds_release/sysroots/ppce500mc-linux/usr/include/  -L/home/kvivek/OVS-VER-1.9.3/ovs_install/build_p4080ds_release/sysroots/ppce500mc-linux/usr/lib/   conftest.c -lm  >&5
configure:5084: $? = 0
configure:5101: result: none required
configure:5109: checking for library containing timer_create
configure:5140: powerpc-linux-gcc -o conftest -std=gnu99 -g -I/home/kvivek/OVS-VER-1.9.3/ovs_install/build_p4080ds_release/sysroots/ppce500mc-linux/usr/include/  -L/home/kvivek/OVS-VER-1.9.3/ovs_install/build_p4080ds_release/sysroots/ppce500mc-linux/usr/lib/   conftest.c -lm  >&5
/tmp/ccCga4ZY.o: In function `main':
/home/kvivek/OVS-VER-1.9.3/ovs/conftest.c:39: undefined reference to `timer_create'
collect2: ld returned 1 exit status
configure:5140: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "openvswitch"
| #define PACKAGE_TARNAME "openvswitch"
| #define PACKAGE_VERSION "1.9.3"
| #define PACKAGE_STRING "openvswitch 1.9.3"
| #define PACKAGE_BUGREPORT "ovs-bugs at openvswitch.org<mailto:ovs-bugs at openvswitch.org>"
| #define PACKAGE_URL ""
| #define PACKAGE "openvswitch"
| #define VERSION "1.9.3"
| #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 WORDS_BIGENDIAN 1
| #define _FILE_OFFSET_BITS 64
| /* 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:5140: powerpc-linux-gcc -o conftest -std=gnu99 -g -I/home/kvivek/OVS-VER-1.9.3/ovs_install/build_p4080ds_release/sysroots/ppce500mc-linux/usr/include/  -L/home/kvivek/OVS-VER-1.9.3/ovs_install/build_p4080ds_release/sysroots/ppce500mc-linux/usr/lib/   conftest.c -lrt  -lm  >&5
configure:5140: $? = 0
configure:5157: result: -lrt
configure:5165: checking for library containing pcap_open_live
configure:5196: powerpc-linux-gcc -o conftest -std=gnu99 -g -I/home/kvivek/OVS-VER-1.9.3/ovs_install/build_p4080ds_release/sysroots/ppce500mc-linux/usr/include/  -L/home/kvivek/OVS-VER-1.9.3/ovs_install/build_p4080ds_release/sysroots/ppce500mc-linux/usr/lib/   conftest.c -lrt -lm  >&5
/tmp/cccL4LiA.o: In function `main':
/home/kvivek/OVS-VER-1.9.3/ovs/conftest.c:39: undefined reference to `pcap_open_live'
collect2: ld returned 1 exit status
configure:5196: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "openvswitch"
| #define PACKAGE_TARNAME "openvswitch"
| #define PACKAGE_VERSION "1.9.3"
| #define PACKAGE_STRING "openvswitch 1.9.3"
| #define PACKAGE_BUGREPORT "ovs-bugs at openvswitch.org<mailto:ovs-bugs at openvswitch.org>"
| #define PACKAGE_URL ""
| #define PACKAGE "openvswitch"
| #define VERSION "1.9.3"
| #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 WORDS_BIGENDIAN 1
| #define _FILE_OFFSET_BITS 64
| /* 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 pcap_open_live ();
| int
| main ()
| {
| return pcap_open_live ();
|   ;
|   return 0;
| }
configure:5196: powerpc-linux-gcc -o conftest -std=gnu99 -g -I/home/kvivek/OVS-VER-1.9.3/ovs_install/build_p4080ds_release/sysroots/ppce500mc-linux/usr/include/  -L/home/kvivek/OVS-VER-1.9.3/ovs_install/build_p4080ds_release/sysroots/ppce500mc-linux/usr/lib/   conftest.c -lpcap  -lrt -lm  >&5
/mnt/toolchain2/tools/cross/i686-redhat-linux/gcc4.6-uClib0.9.32-linux2.6.38/usr/bin/../lib/gcc/powerpc-unknown-linux-uclibc/4.6.0/../../../../powerpc-unknown-linux-uclibc/bin/ld: cannot find -lpcap
collect2: ld returned 1 exit status
configure:5196: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "openvswitch"
| #define PACKAGE_TARNAME "openvswitch"
| #define PACKAGE_VERSION "1.9.3"
| #define PACKAGE_STRING "openvswitch 1.9.3"
| #define PACKAGE_BUGREPORT "ovs-bugs at openvswitch.org<mailto:ovs-bugs at openvswitch.org>"
| #define PACKAGE_URL ""
| #define PACKAGE "openvswitch"
| #define VERSION "1.9.3"
| #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 WORDS_BIGENDIAN 1
| #define _FILE_OFFSET_BITS 64
| /* 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 pcap_open_live ();
| int
| main ()
| {
| return pcap_open_live ();
|   ;
|   return 0;
| }
configure:5213: result: no
configure:5222: checking vmware.h usability
configure:5222: powerpc-linux-gcc -c -std=gnu99 -g -I/home/kvivek/OVS-VER-1.9.3/ovs_install/build_p4080ds_release/sysroots/ppce500mc-linux/usr/include/  -L/home/kvivek/OVS-VER-1.9.3/ovs_install/build_p4080ds_release/sysroots/ppce500mc-linux/usr/lib/  conftest.c >&5
conftest.c:61:20: fatal error: vmware.h: No such file or directory
compilation terminated.
configure:5222: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "openvswitch"
| #define PACKAGE_TARNAME "openvswitch"
| #define PACKAGE_VERSION "1.9.3"
| #define PACKAGE_STRING "openvswitch 1.9.3"
| #define PACKAGE_BUGREPORT "ovs-bugs at openvswitch.org<mailto:ovs-bugs at openvswitch.org>"
| #define PACKAGE_URL ""
| #define PACKAGE "openvswitch"
| #define VERSION "1.9.3"
| #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 WORDS_BIGENDIAN 1
| #define _FILE_OFFSET_BITS 64
| /* end confdefs.h.  */
| #include <stdio.h>
| #ifdef HAVE_SYS_TYPES_H
| # include <sys/types.h>
| #endif
| #ifdef HAVE_SYS_STAT_H
| # include <sys/stat.h>
| #endif
| #ifdef STDC_HEADERS
| # include <stdlib.h>
| # include <stddef.h>
| #else
| # ifdef HAVE_STDLIB_H
| #  include <stdlib.h>
| # endif
| #endif
| #ifdef HAVE_STRING_H
| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
| #  include <memory.h>
| # endif
| # include <string.h>
| #endif
| #ifdef HAVE_STRINGS_H
| # include <strings.h>
| #endif
| #ifdef HAVE_INTTYPES_H
| # include <inttypes.h>
| #endif
| #ifdef HAVE_STDINT_H
| # include <stdint.h>
| #endif
| #ifdef HAVE_UNISTD_H
| # include <unistd.h>
| #endif
| #include <vmware.h>
configure:5222: result: no
configure:5222: checking vmware.h presence
configure:5222: powerpc-linux-gcc -E  conftest.c
conftest.c:28:20: fatal error: vmware.h: No such file or directory
compilation terminated.
configure:5222: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "openvswitch"
| #define PACKAGE_TARNAME "openvswitch"
| #define PACKAGE_VERSION "1.9.3"
| #define PACKAGE_STRING "openvswitch 1.9.3"
| #define PACKAGE_BUGREPORT "ovs-bugs at openvswitch.org<mailto:ovs-bugs at openvswitch.org>"
| #define PACKAGE_URL ""
| #define PACKAGE "openvswitch"
| #define VERSION "1.9.3"
| #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 WORDS_BIGENDIAN 1
| #define _FILE_OFFSET_BITS 64
| /* end confdefs.h.  */
| #include <vmware.h>
configure:5222: result: no
configure:5222: checking for vmware.h
configure:5222: result: no
configure:5278: checking for linux/netlink.h
configure:5278: powerpc-linux-gcc -c -std=gnu99 -g -I/home/kvivek/OVS-VER-1.9.3/ovs_install/build_p4080ds_release/sysroots/ppce500mc-linux/usr/include/  -L/home/kvivek/OVS-VER-1.9.3/ovs_install/build_p4080ds_release/sysroots/ppce500mc-linux/usr/lib/  conftest.c >&5
configure:5278: $? = 0
configure:5278: result: yes
configure:5313: checking for powerpc-linux-gnu-pkg-config
configure:5346: result: no
configure:5356: checking for pkg-config
configure:5374: found /usr/bin/pkg-config
configure:5386: result: /usr/bin/pkg-config
configure:5398: WARNING: using cross tools not prefixed with host triplet
configure:5411: checking pkg-config is at least version 0.9.0
configure:5414: result: yes
configure:5438: checking for SSL
configure:5445: $PKG_CONFIG --exists --print-errors "openssl"
configure:5448: $? = 0
configure:5462: $PKG_CONFIG --exists --print-errors "openssl"
configure:5465: $? = 0
configure:5535: result: yes
configure:5565: checking for Python 2.x for x >= 4
configure:5591: result: /usr/bin/python
configure:5611: checking for pyuic4
configure:5622: result: no
configure:5631: checking for PySide.QtCore Python module
running /usr/bin/python -c 'import PySide.QtCore
import sys
sys.exit(0)'...
Traceback (most recent call last):
  File "<string>", line 1, in ?
ImportError: No module named PySide.QtCore
configure:5648: result: no
configure:5651: checking for PyQt4.QtCore Python module
running /usr/bin/python -c 'import PyQt4.QtCore
import sys
sys.exit(0)'...
Traceback (most recent call last):
  File "<string>", line 1, in ?
ImportError: No module named PyQt4.QtCore
configure:5668: result: no
configure:5671: checking for twisted.conch.ssh Python module
running /usr/bin/python -c 'import twisted.conch.ssh
import sys
sys.exit(0)'...
Traceback (most recent call last):
  File "<string>", line 1, in ?
ImportError: No module named twisted.conch.ssh
configure:5688: result: no
configure:5691: checking for twisted.internet Python module
running /usr/bin/python -c 'import twisted.internet
import sys
sys.exit(0)'...
Traceback (most recent call last):
  File "<string>", line 1, in ?
ImportError: No module named twisted.internet
configure:5708: result: no
configure:5711: checking for twisted.application Python module
running /usr/bin/python -c 'import twisted.application
import sys
sys.exit(0)'...
Traceback (most recent call last):
  File "<string>", line 1, in ?
ImportError: No module named twisted.application
configure:5728: result: no
configure:5731: checking for json Python module
running /usr/bin/python -c 'import json
import sys
sys.exit(0)'...
Traceback (most recent call last):
  File "<string>", line 1, in ?
ImportError: No module named json
configure:5748: result: no
configure:5751: checking for zope.interface Python module
running /usr/bin/python -c 'import zope.interface
import sys
sys.exit(0)'...
Traceback (most recent call last):
  File "<string>", line 1, in ?
ImportError: No module named zope.interface
configure:5768: result: no
configure:5781: checking whether to build ovsdbmonitor
configure:5783: result: no
configure:5793: checking for dot
configure:5804: result: no
configure:5814: checking net/if_packet.h usability
configure:5814: powerpc-linux-gcc -c -std=gnu99 -g -I/home/kvivek/OVS-VER-1.9.3/ovs_install/build_p4080ds_release/sysroots/ppce500mc-linux/usr/include/  -L/home/kvivek/OVS-VER-1.9.3/ovs_install/build_p4080ds_release/sysroots/ppce500mc-linux/usr/lib/  conftest.c >&5
configure:5814: $? = 0
configure:5814: result: yes
configure:5814: checking net/if_packet.h presence
configure:5814: powerpc-linux-gcc -E  conftest.c
configure:5814: $? = 0
configure:5814: result: yes
configure:5814: checking for net/if_packet.h
configure:5814: result: yes
configure:5835: checking net/if_dl.h usability
configure:5835: powerpc-linux-gcc -c -std=gnu99 -g -I/home/kvivek/OVS-VER-1.9.3/ovs_install/build_p4080ds_release/sysroots/ppce500mc-linux/usr/include/  -L/home/kvivek/OVS-VER-1.9.3/ovs_install/build_p4080ds_release/sysroots/ppce500mc-linux/usr/lib/  conftest.c >&5
conftest.c:64:23: fatal error: net/if_dl.h: No such file or directory
compilation terminated.
configure:5835: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "openvswitch"
| #define PACKAGE_TARNAME "openvswitch"
| #define PACKAGE_VERSION "1.9.3"
| #define PACKAGE_STRING "openvswitch 1.9.3"
| #define PACKAGE_BUGREPORT "ovs-bugs at openvswitch.org<mailto:ovs-bugs at openvswitch.org>"
| #define PACKAGE_URL ""
| #define PACKAGE "openvswitch"
| #define VERSION "1.9.3"
| #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 WORDS_BIGENDIAN 1
| #define _FILE_OFFSET_BITS 64
| #define HAVE_NETLINK 1
| #define HAVE_OPENSSL 1
| #define HAVE_IF_PACKET 1
| /* end confdefs.h.  */
| #include <stdio.h>
| #ifdef HAVE_SYS_TYPES_H
| # include <sys/types.h>
| #endif
| #ifdef HAVE_SYS_STAT_H
| # include <sys/stat.h>
| #endif
| #ifdef STDC_HEADERS
| # include <stdlib.h>
| # include <stddef.h>
| #else
| # ifdef HAVE_STDLIB_H
| #  include <stdlib.h>
| # endif
| #endif
| #ifdef HAVE_STRING_H
| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
| #  include <memory.h>
| # endif
| # include <string.h>
| #endif
| #ifdef HAVE_STRINGS_H
| # include <strings.h>
| #endif
| #ifdef HAVE_INTTYPES_H
| # include <inttypes.h>
| #endif
| #ifdef HAVE_STDINT_H
| # include <stdint.h>
| #endif
| #ifdef HAVE_UNISTD_H
| # include <unistd.h>
| #endif
| #include <net/if_dl.h>
configure:5835: result: no
configure:5835: checking net/if_dl.h presence
configure:5835: powerpc-linux-gcc -E  conftest.c
conftest.c:31:23: fatal error: net/if_dl.h: No such file or directory
compilation terminated.
configure:5835: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "openvswitch"
| #define PACKAGE_TARNAME "openvswitch"
| #define PACKAGE_VERSION "1.9.3"
| #define PACKAGE_STRING "openvswitch 1.9.3"
| #define PACKAGE_BUGREPORT "ovs-bugs at openvswitch.org<mailto:ovs-bugs at openvswitch.org>"
| #define PACKAGE_URL ""
| #define PACKAGE "openvswitch"
| #define VERSION "1.9.3"
| #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 WORDS_BIGENDIAN 1
| #define _FILE_OFFSET_BITS 64
| #define HAVE_NETLINK 1
| #define HAVE_OPENSSL 1
| #define HAVE_IF_PACKET 1
| /* end confdefs.h.  */
| #include <net/if_dl.h>
configure:5835: result: no
configure:5835: checking for net/if_dl.h
configure:5835: result: no
configure:5856: checking whether strtok_r macro segfaults on some inputs
configure:5895: result: yes
configure:5903: checking for struct stat.st_mtim.tv_nsec
configure:5903: powerpc-linux-gcc -c -std=gnu99 -g -I/home/kvivek/OVS-VER-1.9.3/ovs_install/build_p4080ds_release/sysroots/ppce500mc-linux/usr/include/  -L/home/kvivek/OVS-VER-1.9.3/ovs_install/build_p4080ds_release/sysroots/ppce500mc-linux/usr/lib/  conftest.c >&5
configure:5903: $? = 0
configure:5903: result: yes
configure:5913: checking for struct stat.st_mtimensec
configure:5913: powerpc-linux-gcc -c -std=gnu99 -g -I/home/kvivek/OVS-VER-1.9.3/ovs_install/build_p4080ds_release/sysroots/ppce500mc-linux/usr/include/  -L/home/kvivek/OVS-VER-1.9.3/ovs_install/build_p4080ds_release/sysroots/ppce500mc-linux/usr/lib/  conftest.c >&5
conftest.c: In function 'main':
conftest.c:39:12: error: 'struct stat' has no member named 'st_mtimensec'
configure:5913: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "openvswitch"
| #define PACKAGE_TARNAME "openvswitch"
| #define PACKAGE_VERSION "1.9.3"
| #define PACKAGE_STRING "openvswitch 1.9.3"
| #define PACKAGE_BUGREPORT "ovs-bugs at openvswitch.org<mailto:ovs-bugs at openvswitch.org>"
| #define PACKAGE_URL ""
| #define PACKAGE "openvswitch"
| #define VERSION "1.9.3"
| #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 WORDS_BIGENDIAN 1
| #define _FILE_OFFSET_BITS 64
| #define HAVE_NETLINK 1
| #define HAVE_OPENSSL 1
| #define HAVE_IF_PACKET 1
| #define HAVE_STRTOK_R_BUG 1
| #define HAVE_STRUCT_STAT_ST_MTIM_TV_NSEC 1
| /* end confdefs.h.  */
| #include <sys/stat.h>
|
| int
| main ()
| {
| static struct stat ac_aggr;
| if (ac_aggr.st_mtimensec)
| return 0;
|   ;
|   return 0;
| }
configure:5913: powerpc-linux-gcc -c -std=gnu99 -g -I/home/kvivek/OVS-VER-1.9.3/ovs_install/build_p4080ds_release/sysroots/ppce500mc-linux/usr/include/  -L/home/kvivek/OVS-VER-1.9.3/ovs_install/build_p4080ds_release/sysroots/ppce500mc-linux/usr/lib/  conftest.c >&5
conftest.c: In function 'main':
conftest.c:39:19: error: 'struct stat' has no member named 'st_mtimensec'
configure:5913: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "openvswitch"
| #define PACKAGE_TARNAME "openvswitch"
| #define PACKAGE_VERSION "1.9.3"
| #define PACKAGE_STRING "openvswitch 1.9.3"
| #define PACKAGE_BUGREPORT "ovs-bugs at openvswitch.org"
| #define PACKAGE_URL ""
| #define PACKAGE "openvswitch"
| #define VERSION "1.9.3"
| #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 WORDS_BIGENDIAN 1
| #define _FILE_OFFSET_BITS 64
| #define HAVE_NETLINK 1
| #define HAVE_OPENSSL 1
| #define HAVE_IF_PACKET 1
| #define HAVE_STRTOK_R_BUG 1
| #define HAVE_STRUCT_STAT_ST_MTIM_TV_NSEC 1
| /* end confdefs.h.  */
| #include <sys/stat.h>
|
| int
| main ()
| {
| static struct stat ac_aggr;
| if (sizeof ac_aggr.st_mtimensec)
| return 0;
|   ;
|   return 0;
| }
configure:5913: result: no
configure:5927: checking for mlockall
configure:5927: powerpc-linux-gcc -o conftest -std=gnu99 -g -I/home/kvivek/OVS-VER-1.9.3/ovs_install/build_p4080ds_release/sysroots/ppce500mc-linux/usr/include/  -L/home/kvivek/OVS-VER-1.9.3/ovs_install/build_p4080ds_release/sysroots/ppce500mc-linux/usr/lib/   conftest.c -lrt -lm  >&5
configure:5927: $? = 0
configure:5927: result: yes
configure:5927: checking for strnlen
configure:5927: powerpc-linux-gcc -o conftest -std=gnu99 -g -I/home/kvivek/OVS-VER-1.9.3/ovs_install/build_p4080ds_release/sysroots/ppce500mc-linux/usr/include/  -L/home/kvivek/OVS-VER-1.9.3/ovs_install/build_p4080ds_release/sysroots/ppce500mc-linux/usr/lib/   conftest.c -lrt -lm  >&5
configure:5927: $? = 0
configure:5927: result: yes
configure:5927: checking for strsignal
configure:5927: powerpc-linux-gcc -o conftest -std=gnu99 -g -I/home/kvivek/OVS-VER-1.9.3/ovs_install/build_p4080ds_release/sysroots/ppce500mc-linux/usr/include/  -L/home/kvivek/OVS-VER-1.9.3/ovs_install/build_p4080ds_release/sysroots/ppce500mc-linux/usr/lib/   conftest.c -lrt -lm  >&5
configure:5927: $? = 0
configure:5927: result: yes
configure:5927: checking for getloadavg
configure:5927: powerpc-linux-gcc -o conftest -std=gnu99 -g -I/home/kvivek/OVS-VER-1.9.3/ovs_install/build_p4080ds_release/sysroots/ppce500mc-linux/usr/include/  -L/home/kvivek/OVS-VER-1.9.3/ovs_install/build_p4080ds_release/sysroots/ppce500mc-linux/usr/lib/   conftest.c -lrt -lm  >&5
/tmp/ccYo9frh.o: In function `main':
/home/kvivek/OVS-VER-1.9.3/ovs/conftest.c:70: undefined reference to `getloadavg'
collect2: ld returned 1 exit status
configure:5927: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "openvswitch"
| #define PACKAGE_TARNAME "openvswitch"
| #define PACKAGE_VERSION "1.9.3"
| #define PACKAGE_STRING "openvswitch 1.9.3"
| #define PACKAGE_BUGREPORT "ovs-bugs at openvswitch.org"
| #define PACKAGE_URL ""
| #define PACKAGE "openvswitch"
| #define VERSION "1.9.3"
| #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 WORDS_BIGENDIAN 1
| #define _FILE_OFFSET_BITS 64
| #define HAVE_NETLINK 1
| #define HAVE_OPENSSL 1
| #define HAVE_IF_PACKET 1
| #define HAVE_STRTOK_R_BUG 1
| #define HAVE_STRUCT_STAT_ST_MTIM_TV_NSEC 1
| #define HAVE_MLOCKALL 1
| #define HAVE_STRNLEN 1
| #define HAVE_STRSIGNAL 1
| /* end confdefs.h.  */
| /* Define getloadavg to an innocuous variant, in case <limits.h> declares getloadavg.
|    For example, HP-UX 11i <limits.h> declares gettimeofday.  */
| #define getloadavg innocuous_getloadavg
|
| /* System header to define __stub macros and hopefully few prototypes,
|     which can conflict with char getloadavg (); below.
|     Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
|     <limits.h> exists even on freestanding compilers.  */
|
| #ifdef __STDC__
| # include <limits.h>
| #else
| # include <assert.h>
| #endif
|
| #undef getloadavg
|
| /* 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 getloadavg ();
| /* 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_getloadavg || defined __stub___getloadavg
| choke me
| #endif
|
| int
| main ()
| {
| return getloadavg ();
|   ;
|   return 0;
| }
configure:5927: result: no
configure:5927: checking for statvfs
configure:5927: powerpc-linux-gcc -o conftest -std=gnu99 -g -I/home/kvivek/OVS-VER-1.9.3/ovs_install/build_p4080ds_release/sysroots/ppce500mc-linux/usr/include/  -L/home/kvivek/OVS-VER-1.9.3/ovs_install/build_p4080ds_release/sysroots/ppce500mc-linux/usr/lib/   conftest.c -lrt -lm  >&5
configure:5927: $? = 0
configure:5927: result: yes
configure:5927: checking for setmntent
configure:5927: powerpc-linux-gcc -o conftest -std=gnu99 -g -I/home/kvivek/OVS-VER-1.9.3/ovs_install/build_p4080ds_release/sysroots/ppce500mc-linux/usr/include/  -L/home/kvivek/OVS-VER-1.9.3/ovs_install/build_p4080ds_release/sysroots/ppce500mc-linux/usr/lib/   conftest.c -lrt -lm  >&5
configure:5927: $? = 0
configure:5927: result: yes
configure:5939: checking mntent.h usability
configure:5939: powerpc-linux-gcc -c -std=gnu99 -g -I/home/kvivek/OVS-VER-1.9.3/ovs_install/build_p4080ds_release/sysroots/ppce500mc-linux/usr/include/  -L/home/kvivek/OVS-VER-1.9.3/ovs_install/build_p4080ds_release/sysroots/ppce500mc-linux/usr/lib/  conftest.c >&5
configure:5939: $? = 0
configure:5939: result: yes
configure:5939: checking mntent.h presence
configure:5939: powerpc-linux-gcc -E  conftest.c
configure:5939: $? = 0
configure:5939: result: yes
configure:5939: checking for mntent.h
configure:5939: result: yes
configure:5939: checking sys/statvfs.h usability
configure:5939: powerpc-linux-gcc -c -std=gnu99 -g -I/home/kvivek/OVS-VER-1.9.3/ovs_install/build_p4080ds_release/sysroots/ppce500mc-linux/usr/include/  -L/home/kvivek/OVS-VER-1.9.3/ovs_install/build_p4080ds_release/sysroots/ppce500mc-linux/usr/lib/  conftest.c >&5
configure:5939: $? = 0
configure:5939: result: yes
configure:5939: checking sys/statvfs.h presence
configure:5939: powerpc-linux-gcc -E  conftest.c
configure:5939: $? = 0
configure:5939: result: yes
configure:5939: checking for sys/statvfs.h
configure:5939: result: yes
configure:5939: checking linux/types.h usability
configure:5939: powerpc-linux-gcc -c -std=gnu99 -g -I/home/kvivek/OVS-VER-1.9.3/ovs_install/build_p4080ds_release/sysroots/ppce500mc-linux/usr/include/  -L/home/kvivek/OVS-VER-1.9.3/ovs_install/build_p4080ds_release/sysroots/ppce500mc-linux/usr/lib/  conftest.c >&5
configure:5939: $? = 0
configure:5939: result: yes
configure:5939: checking linux/types.h presence
configure:5939: powerpc-linux-gcc -E  conftest.c
configure:5939: $? = 0
configure:5939: result: yes
configure:5939: checking for linux/types.h
configure:5939: result: yes
configure:5939: checking execinfo.h usability
configure:5939: powerpc-linux-gcc -c -std=gnu99 -g -I/home/kvivek/OVS-VER-1.9.3/ovs_install/build_p4080ds_release/sysroots/ppce500mc-linux/usr/include/  -L/home/kvivek/OVS-VER-1.9.3/ovs_install/build_p4080ds_release/sysroots/ppce500mc-linux/usr/lib/  conftest.c >&5
conftest.c:74:22: fatal error: execinfo.h: No such file or directory
compilation terminated.
configure:5939: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "openvswitch"
| #define PACKAGE_TARNAME "openvswitch"
| #define PACKAGE_VERSION "1.9.3"
| #define PACKAGE_STRING "openvswitch 1.9.3"
| #define PACKAGE_BUGREPORT "ovs-bugs at openvswitch.org"
| #define PACKAGE_URL ""
| #define PACKAGE "openvswitch"
| #define VERSION "1.9.3"
| #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 WORDS_BIGENDIAN 1
| #define _FILE_OFFSET_BITS 64
| #define HAVE_NETLINK 1
| #define HAVE_OPENSSL 1
| #define HAVE_IF_PACKET 1
| #define HAVE_STRTOK_R_BUG 1
| #define HAVE_STRUCT_STAT_ST_MTIM_TV_NSEC 1
| #define HAVE_MLOCKALL 1
| #define HAVE_STRNLEN 1
| #define HAVE_STRSIGNAL 1
| #define HAVE_STATVFS 1
| #define HAVE_SETMNTENT 1
| #define HAVE_MNTENT_H 1
| #define HAVE_SYS_STATVFS_H 1
| #define HAVE_LINUX_TYPES_H 1
| /* end confdefs.h.  */
| #include <stdio.h>
| #ifdef HAVE_SYS_TYPES_H
| # include <sys/types.h>
| #endif
| #ifdef HAVE_SYS_STAT_H
| # include <sys/stat.h>
| #endif
| #ifdef STDC_HEADERS
| # include <stdlib.h>
| # include <stddef.h>
| #else
| # ifdef HAVE_STDLIB_H
| #  include <stdlib.h>
| # endif
| #endif
| #ifdef HAVE_STRING_H
| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
| #  include <memory.h>
| # endif
| # include <string.h>
| #endif
| #ifdef HAVE_STRINGS_H
| # include <strings.h>
| #endif
| #ifdef HAVE_INTTYPES_H
| # include <inttypes.h>
| #endif
| #ifdef HAVE_STDINT_H
| # include <stdint.h>
| #endif
| #ifdef HAVE_UNISTD_H
| # include <unistd.h>
| #endif
| #include <execinfo.h>
configure:5939: result: no
configure:5939: checking execinfo.h presence
configure:5939: powerpc-linux-gcc -E  conftest.c
conftest.c:41:22: fatal error: execinfo.h: No such file or directory
compilation terminated.
configure:5939: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "openvswitch"
| #define PACKAGE_TARNAME "openvswitch"
| #define PACKAGE_VERSION "1.9.3"
| #define PACKAGE_STRING "openvswitch 1.9.3"
| #define PACKAGE_BUGREPORT "ovs-bugs at openvswitch.org"
| #define PACKAGE_URL ""
| #define PACKAGE "openvswitch"
| #define VERSION "1.9.3"
| #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 WORDS_BIGENDIAN 1
| #define _FILE_OFFSET_BITS 64
| #define HAVE_NETLINK 1
| #define HAVE_OPENSSL 1
| #define HAVE_IF_PACKET 1
| #define HAVE_STRTOK_R_BUG 1
| #define HAVE_STRUCT_STAT_ST_MTIM_TV_NSEC 1
| #define HAVE_MLOCKALL 1
| #define HAVE_STRNLEN 1
| #define HAVE_STRSIGNAL 1
| #define HAVE_STATVFS 1
| #define HAVE_SETMNTENT 1
| #define HAVE_MNTENT_H 1
| #define HAVE_SYS_STATVFS_H 1
| #define HAVE_LINUX_TYPES_H 1
| /* end confdefs.h.  */
| #include <execinfo.h>
configure:5939: result: no
configure:5939: checking for execinfo.h
configure:5939: result: no
configure:5977: checking for execinfo.h
configure:5977: result: no
configure:5993: checking whether libc supports hooks for malloc and related functions
configure:6012: powerpc-linux-gcc -c -std=gnu99 -g -I/home/kvivek/OVS-VER-1.9.3/ovs_install/build_p4080ds_release/sysroots/ppce500mc-linux/usr/include/  -L/home/kvivek/OVS-VER-1.9.3/ovs_install/build_p4080ds_release/sysroots/ppce500mc-linux/usr/lib/  conftest.c >&5
conftest.c: In function 'main':
conftest.c:46:8: error: '__malloc_hook' undeclared (first use in this function)
conftest.c:46:8: note: each undeclared identifier is reported only once for each function it appears in
conftest.c:47:18: error: '__realloc_hook' undeclared (first use in this function)
conftest.c:48:18: error: '__free_hook' undeclared (first use in this function)
configure:6012: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "openvswitch"
| #define PACKAGE_TARNAME "openvswitch"
| #define PACKAGE_VERSION "1.9.3"
| #define PACKAGE_STRING "openvswitch 1.9.3"
| #define PACKAGE_BUGREPORT "ovs-bugs at openvswitch.org"
| #define PACKAGE_URL ""
| #define PACKAGE "openvswitch"
| #define VERSION "1.9.3"
| #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 WORDS_BIGENDIAN 1
| #define _FILE_OFFSET_BITS 64
| #define HAVE_NETLINK 1
| #define HAVE_OPENSSL 1
| #define HAVE_IF_PACKET 1
| #define HAVE_STRTOK_R_BUG 1
| #define HAVE_STRUCT_STAT_ST_MTIM_TV_NSEC 1
| #define HAVE_MLOCKALL 1
| #define HAVE_STRNLEN 1
| #define HAVE_STRSIGNAL 1
| #define HAVE_STATVFS 1
| #define HAVE_SETMNTENT 1
| #define HAVE_MNTENT_H 1
| #define HAVE_SYS_STATVFS_H 1
| #define HAVE_LINUX_TYPES_H 1
| /* end confdefs.h.  */
| #include <malloc.h>
|
| int
| main ()
| {
| (void) __malloc_hook;
|           (void) __realloc_hook;
|           (void) __free_hook;
|   ;
|   return 0;
| }
configure:6019: result: no
configure:6028: checking valgrind/valgrind.h usability
configure:6028: powerpc-linux-gcc -c -std=gnu99 -g -I/home/kvivek/OVS-VER-1.9.3/ovs_install/build_p4080ds_release/sysroots/ppce500mc-linux/usr/include/  -L/home/kvivek/OVS-VER-1.9.3/ovs_install/build_p4080ds_release/sysroots/ppce500mc-linux/usr/lib/  conftest.c >&5
conftest.c:74:31: fatal error: valgrind/valgrind.h: No such file or directory
compilation terminated.
configure:6028: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "openvswitch"
| #define PACKAGE_TARNAME "openvswitch"
| #define PACKAGE_VERSION "1.9.3"
| #define PACKAGE_STRING "openvswitch 1.9.3"
| #define PACKAGE_BUGREPORT "ovs-bugs at openvswitch.org"
| #define PACKAGE_URL ""
| #define PACKAGE "openvswitch"
| #define VERSION "1.9.3"
| #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 WORDS_BIGENDIAN 1
| #define _FILE_OFFSET_BITS 64
| #define HAVE_NETLINK 1
| #define HAVE_OPENSSL 1
| #define HAVE_IF_PACKET 1
| #define HAVE_STRTOK_R_BUG 1
| #define HAVE_STRUCT_STAT_ST_MTIM_TV_NSEC 1
| #define HAVE_MLOCKALL 1
| #define HAVE_STRNLEN 1
| #define HAVE_STRSIGNAL 1
| #define HAVE_STATVFS 1
| #define HAVE_SETMNTENT 1
| #define HAVE_MNTENT_H 1
| #define HAVE_SYS_STATVFS_H 1
| #define HAVE_LINUX_TYPES_H 1
| /* end confdefs.h.  */
| #include <stdio.h>
| #ifdef HAVE_SYS_TYPES_H
| # include <sys/types.h>
| #endif
| #ifdef HAVE_SYS_STAT_H
| # include <sys/stat.h>
| #endif
| #ifdef STDC_HEADERS
| # include <stdlib.h>
| # include <stddef.h>
| #else
| # ifdef HAVE_STDLIB_H
| #  include <stdlib.h>
| # endif
| #endif
| #ifdef HAVE_STRING_H
| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
| #  include <memory.h>
| # endif
| # include <string.h>
| #endif
| #ifdef HAVE_STRINGS_H
| # include <strings.h>
| #endif
| #ifdef HAVE_INTTYPES_H
| # include <inttypes.h>
| #endif
| #ifdef HAVE_STDINT_H
| # include <stdint.h>
| #endif
| #ifdef HAVE_UNISTD_H
| # include <unistd.h>
| #endif
| #include <valgrind/valgrind.h>
configure:6028: result: no
configure:6028: checking valgrind/valgrind.h presence
configure:6028: powerpc-linux-gcc -E  conftest.c
conftest.c:41:31: fatal error: valgrind/valgrind.h: No such file or directory
compilation terminated.
configure:6028: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "openvswitch"
| #define PACKAGE_TARNAME "openvswitch"
| #define PACKAGE_VERSION "1.9.3"
| #define PACKAGE_STRING "openvswitch 1.9.3"
| #define PACKAGE_BUGREPORT "ovs-bugs at openvswitch.org"
| #define PACKAGE_URL ""
| #define PACKAGE "openvswitch"
| #define VERSION "1.9.3"
| #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 WORDS_BIGENDIAN 1
| #define _FILE_OFFSET_BITS 64
| #define HAVE_NETLINK 1
| #define HAVE_OPENSSL 1
| #define HAVE_IF_PACKET 1
| #define HAVE_STRTOK_R_BUG 1
| #define HAVE_STRUCT_STAT_ST_MTIM_TV_NSEC 1
| #define HAVE_MLOCKALL 1
| #define HAVE_STRNLEN 1
| #define HAVE_STRSIGNAL 1
| #define HAVE_STATVFS 1
| #define HAVE_SETMNTENT 1
| #define HAVE_MNTENT_H 1
| #define HAVE_SYS_STATVFS_H 1
| #define HAVE_LINUX_TYPES_H 1
| /* end confdefs.h.  */
| #include <valgrind/valgrind.h>
configure:6028: result: no
configure:6028: checking for valgrind/valgrind.h
configure:6028: result: no
configure:6038: checking for connect in -lsocket
configure:6063: powerpc-linux-gcc -o conftest -std=gnu99 -g -I/home/kvivek/OVS-VER-1.9.3/ovs_install/build_p4080ds_release/sysroots/ppce500mc-linux/usr/include/  -L/home/kvivek/OVS-VER-1.9.3/ovs_install/build_p4080ds_release/sysroots/ppce500mc-linux/usr/lib/   conftest.c -lsocket  -lrt -lm  >&5
/mnt/toolchain2/tools/cross/i686-redhat-linux/gcc4.6-uClib0.9.32-linux2.6.38/usr/bin/../lib/gcc/powerpc-unknown-linux-uclibc/4.6.0/../../../../powerpc-unknown-linux-uclibc/bin/ld: cannot find -lsocket
collect2: ld returned 1 exit status
configure:6063: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "openvswitch"
| #define PACKAGE_TARNAME "openvswitch"
| #define PACKAGE_VERSION "1.9.3"
| #define PACKAGE_STRING "openvswitch 1.9.3"
| #define PACKAGE_BUGREPORT "ovs-bugs at openvswitch.org"
| #define PACKAGE_URL ""
| #define PACKAGE "openvswitch"
| #define VERSION "1.9.3"
| #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 WORDS_BIGENDIAN 1
| #define _FILE_OFFSET_BITS 64
| #define HAVE_NETLINK 1
| #define HAVE_OPENSSL 1
| #define HAVE_IF_PACKET 1
| #define HAVE_STRTOK_R_BUG 1
| #define HAVE_STRUCT_STAT_ST_MTIM_TV_NSEC 1
| #define HAVE_MLOCKALL 1
| #define HAVE_STRNLEN 1
| #define HAVE_STRSIGNAL 1
| #define HAVE_STATVFS 1
| #define HAVE_SETMNTENT 1
| #define HAVE_MNTENT_H 1
| #define HAVE_SYS_STATVFS_H 1
| #define HAVE_LINUX_TYPES_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:6072: result: no
configure:6083: checking for library containing gethostbyname
configure:6114: powerpc-linux-gcc -o conftest -std=gnu99 -g -I/home/kvivek/OVS-VER-1.9.3/ovs_install/build_p4080ds_release/sysroots/ppce500mc-linux/usr/include/  -L/home/kvivek/OVS-VER-1.9.3/ovs_install/build_p4080ds_release/sysroots/ppce500mc-linux/usr/lib/   conftest.c -lrt -lm  >&5
/tmp/ccqHyqXy.o: In function `main':
/home/kvivek/OVS-VER-1.9.3/ovs/conftest.c:52: warning: gethostbyname is obsolescent, use getnameinfo() instead.
configure:6114: $? = 0
configure:6131: result: none required
configure:6139: checking for user-defined linker section support
configure:6176: powerpc-linux-gcc -o conftest -std=gnu99 -g -I/home/kvivek/OVS-VER-1.9.3/ovs_install/build_p4080ds_release/sysroots/ppce500mc-linux/usr/include/  -L/home/kvivek/OVS-VER-1.9.3/ovs_install/build_p4080ds_release/sysroots/ppce500mc-linux/usr/lib/   conftest1.c conftest2.c -lrt -lm  >&5
configure:6185: $? = 0
configure:6207: result: yes
configure:6222: checking XenServer release
configure:6234: result: none
configure:6246: checking for groff
configure:6257: result: yes
configure:6292: checking whether make is GNU make
configure:6298: invoking make --version:
GNU Make 3.81
Copyright (C) 2006  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.

This program built for i686-redhat-linux-gnu
configure:6309: result: yes
configure:6335: checking whether powerpc-linux-gcc accepts -Wall
configure:6353: powerpc-linux-gcc -c -std=gnu99 -g -I/home/kvivek/OVS-VER-1.9.3/ovs_install/build_p4080ds_release/sysroots/ppce500mc-linux/usr/include/  -L/home/kvivek/OVS-VER-1.9.3/ovs_install/build_p4080ds_release/sysroots/ppce500mc-linux/usr/lib/ -Wall  conftest.c >&5
configure:6353: $? = 0
configure:6361: result: yes
configure:6371: checking whether powerpc-linux-gcc accepts -Wno-sign-compare
configure:6389: powerpc-linux-gcc -c -std=gnu99 -g -I/home/kvivek/OVS-VER-1.9.3/ovs_install/build_p4080ds_release/sysroots/ppce500mc-linux/usr/include/  -L/home/kvivek/OVS-VER-1.9.3/ovs_install/build_p4080ds_release/sysroots/ppce500mc-linux/usr/lib/ -Wno-sign-compare  conftest.c >&5
configure:6389: $? = 0
configure:6397: result: yes
configure:6407: checking whether powerpc-linux-gcc accepts -Wpointer-arith
configure:6425: powerpc-linux-gcc -c -std=gnu99 -g -I/home/kvivek/OVS-VER-1.9.3/ovs_install/build_p4080ds_release/sysroots/ppce500mc-linux/usr/include/  -L/home/kvivek/OVS-VER-1.9.3/ovs_install/build_p4080ds_release/sysroots/ppce500mc-linux/usr/lib/ -Wpointer-arith  conftest.c >&5
configure:6425: $? = 0
configure:6433: result: yes
configure:6443: checking whether powerpc-linux-gcc accepts -Wdeclaration-after-statement
configure:6461: powerpc-linux-gcc -c -std=gnu99 -g -I/home/kvivek/OVS-VER-1.9.3/ovs_install/build_p4080ds_release/sysroots/ppce500mc-linux/usr/include/  -L/home/kvivek/OVS-VER-1.9.3/ovs_install/build_p4080ds_release/sysroots/ppce500mc-linux/usr/lib/ -Wdeclaration-after-statement  conftest.c >&5
configure:6461: $? = 0
configure:6469: result: yes
configure:6479: checking whether powerpc-linux-gcc accepts -Wformat-security
configure:6497: powerpc-linux-gcc -c -std=gnu99 -g -I/home/kvivek/OVS-VER-1.9.3/ovs_install/build_p4080ds_release/sysroots/ppce500mc-linux/usr/include/  -L/home/kvivek/OVS-VER-1.9.3/ovs_install/build_p4080ds_release/sysroots/ppce500mc-linux/usr/lib/ -Wformat-security  conftest.c >&5
cc1: warning: -Wformat-security ignored without -Wformat [-Wformat-security]
configure:6497: $? = 0
configure:6505: result: yes
configure:6515: checking whether powerpc-linux-gcc accepts -Wswitch-enum
configure:6533: powerpc-linux-gcc -c -std=gnu99 -g -I/home/kvivek/OVS-VER-1.9.3/ovs_install/build_p4080ds_release/sysroots/ppce500mc-linux/usr/include/  -L/home/kvivek/OVS-VER-1.9.3/ovs_install/build_p4080ds_release/sysroots/ppce500mc-linux/usr/lib/ -Wswitch-enum  conftest.c >&5
configure:6533: $? = 0
configure:6541: result: yes
configure:6551: checking whether powerpc-linux-gcc accepts -Wunused-parameter
configure:6569: powerpc-linux-gcc -c -std=gnu99 -g -I/home/kvivek/OVS-VER-1.9.3/ovs_install/build_p4080ds_release/sysroots/ppce500mc-linux/usr/include/  -L/home/kvivek/OVS-VER-1.9.3/ovs_install/build_p4080ds_release/sysroots/ppce500mc-linux/usr/lib/ -Wunused-parameter  conftest.c >&5
configure:6569: $? = 0
configure:6577: result: yes
configure:6587: checking whether powerpc-linux-gcc accepts -Wstrict-aliasing
configure:6605: powerpc-linux-gcc -c -std=gnu99 -g -I/home/kvivek/OVS-VER-1.9.3/ovs_install/build_p4080ds_release/sysroots/ppce500mc-linux/usr/include/  -L/home/kvivek/OVS-VER-1.9.3/ovs_install/build_p4080ds_release/sysroots/ppce500mc-linux/usr/lib/ -Wstrict-aliasing  conftest.c >&5
configure:6605: $? = 0
configure:6613: result: yes
configure:6623: checking whether powerpc-linux-gcc accepts -Wbad-function-cast
configure:6641: powerpc-linux-gcc -c -std=gnu99 -g -I/home/kvivek/OVS-VER-1.9.3/ovs_install/build_p4080ds_release/sysroots/ppce500mc-linux/usr/include/  -L/home/kvivek/OVS-VER-1.9.3/ovs_install/build_p4080ds_release/sysroots/ppce500mc-linux/usr/lib/ -Wbad-function-cast  conftest.c >&5
configure:6641: $? = 0
configure:6649: result: yes
configure:6659: checking whether powerpc-linux-gcc accepts -Wcast-align
configure:6677: powerpc-linux-gcc -c -std=gnu99 -g -I/home/kvivek/OVS-VER-1.9.3/ovs_install/build_p4080ds_release/sysroots/ppce500mc-linux/usr/include/  -L/home/kvivek/OVS-VER-1.9.3/ovs_install/build_p4080ds_release/sysroots/ppce500mc-linux/usr/lib/ -Wcast-align  conftest.c >&5
configure:6677: $? = 0
configure:6685: result: yes
configure:6695: checking whether powerpc-linux-gcc accepts -Wstrict-prototypes
configure:6713: powerpc-linux-gcc -c -std=gnu99 -g -I/home/kvivek/OVS-VER-1.9.3/ovs_install/build_p4080ds_release/sysroots/ppce500mc-linux/usr/include/  -L/home/kvivek/OVS-VER-1.9.3/ovs_install/build_p4080ds_release/sysroots/ppce500mc-linux/usr/lib/ -Wstrict-prototypes  conftest.c >&5
conftest.c:44:1: warning: function declaration isn't a prototype [-Wstrict-prototypes]
configure:6713: $? = 0
configure:6721: result: yes
configure:6731: checking whether powerpc-linux-gcc accepts -Wold-style-definition
configure:6749: powerpc-linux-gcc -c -std=gnu99 -g -I/home/kvivek/OVS-VER-1.9.3/ovs_install/build_p4080ds_release/sysroots/ppce500mc-linux/usr/include/  -L/home/kvivek/OVS-VER-1.9.3/ovs_install/build_p4080ds_release/sysroots/ppce500mc-linux/usr/lib/ -Wold-style-definition  conftest.c >&5
conftest.c: In function 'main':
conftest.c:44:1: warning: old-style function definition [-Wold-style-definition]
configure:6749: $? = 0
configure:6757: result: yes
configure:6767: checking whether powerpc-linux-gcc accepts -Wmissing-prototypes
configure:6785: powerpc-linux-gcc -c -std=gnu99 -g -I/home/kvivek/OVS-VER-1.9.3/ovs_install/build_p4080ds_release/sysroots/ppce500mc-linux/usr/include/  -L/home/kvivek/OVS-VER-1.9.3/ovs_install/build_p4080ds_release/sysroots/ppce500mc-linux/usr/lib/ -Wmissing-prototypes  conftest.c >&5
configure:6785: $? = 0
configure:6793: result: yes
configure:6803: checking whether powerpc-linux-gcc accepts -Wmissing-field-initializers
configure:6821: powerpc-linux-gcc -c -std=gnu99 -g -I/home/kvivek/OVS-VER-1.9.3/ovs_install/build_p4080ds_release/sysroots/ppce500mc-linux/usr/include/  -L/home/kvivek/OVS-VER-1.9.3/ovs_install/build_p4080ds_release/sysroots/ppce500mc-linux/usr/lib/ -Wmissing-field-initializers  conftest.c >&5
configure:6821: $? = 0
configure:6829: result: yes
configure:6839: checking whether powerpc-linux-gcc accepts -Wno-override-init
configure:6857: powerpc-linux-gcc -c -std=gnu99 -g -I/home/kvivek/OVS-VER-1.9.3/ovs_install/build_p4080ds_release/sysroots/ppce500mc-linux/usr/include/  -L/home/kvivek/OVS-VER-1.9.3/ovs_install/build_p4080ds_release/sysroots/ppce500mc-linux/usr/lib/ -Wno-override-init  conftest.c >&5
configure:6857: $? = 0
configure:6865: result: yes
configure:6875: checking whether powerpc-linux-gcc accepts -Wno-unused
configure:6893: powerpc-linux-gcc -c -std=gnu99 -g -I/home/kvivek/OVS-VER-1.9.3/ovs_install/build_p4080ds_release/sysroots/ppce500mc-linux/usr/include/  -L/home/kvivek/OVS-VER-1.9.3/ovs_install/build_p4080ds_release/sysroots/ppce500mc-linux/usr/lib/ -Wno-unused  conftest.c >&5
configure:6893: $? = 0
configure:6901: result: yes
configure:6918: checking whether powerpc-linux-gcc accepts -Wno-unused-parameter
configure:6936: powerpc-linux-gcc -c -std=gnu99 -g -I/home/kvivek/OVS-VER-1.9.3/ovs_install/build_p4080ds_release/sysroots/ppce500mc-linux/usr/include/  -L/home/kvivek/OVS-VER-1.9.3/ovs_install/build_p4080ds_release/sysroots/ppce500mc-linux/usr/lib/ -Wno-unused-parameter  conftest.c >&5
configure:6936: $? = 0
configure:6944: result: yes
configure:6968: checking target hint for cgcc
configure:6982: result: other
configure:6995: checking whether make has GNU make $(if) extension
configure:7006: invoking make -f conftest.mk all:
echo y > conftest.out
configure:7008: conftest.out contains:
y
configure:7018: result: yes
configure:7089: checking for Linux build directory
configure:7092: result: /home/kvivek/ovs-raptor/ovs_raptor/linux/build/taranis/buildroot-2011.02-rc2/output/build/linux-custom
configure:7104: checking for Linux source directory
configure:7138: result: /home/kvivek/ovs-raptor/ovs_raptor/linux/build/taranis/buildroot-2011.02-rc2/output/build/linux-custom
configure:7141: checking for kernel version
configure:7153: result: 2.6.32
configure:7179: checking whether src_err, matches in /home/kvivek/ovs-raptor/ovs_raptor/linux/build/taranis/buildroot-2011.02-rc2/output/build/linux-custom/arch/x86/include/asm/checksum_32.h
configure:7193: result: no
configure:7209: checking whether ERR_CAST matches in /home/kvivek/ovs-raptor/ovs_raptor/linux/build/taranis/buildroot-2011.02-rc2/output/build/linux-custom/include/linux/err.h
configure:7216: result: yes
configure:7239: checking whether eth_hw_addr_random matches in /home/kvivek/ovs-raptor/ovs_raptor/linux/build/taranis/buildroot-2011.02-rc2/output/build/linux-custom/include/linux/etherdevice.h
configure:7253: result: no
configure:7269: checking whether vlan_set_encap_proto matches in /home/kvivek/ovs-raptor/ovs_raptor/linux/build/taranis/buildroot-2011.02-rc2/output/build/linux-custom/include/linux/if_vlan.h
configure:7283: result: no
configure:7299: checking whether ipv4_is_multicast matches in /home/kvivek/ovs-raptor/ovs_raptor/linux/build/taranis/buildroot-2011.02-rc2/output/build/linux-custom/include/linux/in.h
configure:7306: result: yes
configure:7329: checking whether dev_disable_lro matches in /home/kvivek/ovs-raptor/ovs_raptor/linux/build/taranis/buildroot-2011.02-rc2/output/build/linux-custom/include/linux/netdevice.h
configure:7336: result: yes
configure:7358: checking whether dev_get_stats matches in /home/kvivek/ovs-raptor/ovs_raptor/linux/build/taranis/buildroot-2011.02-rc2/output/build/linux-custom/include/linux/netdevice.h
configure:7365: result: yes
configure:7387: checking whether dev_get_by_index_rcu matches in /home/kvivek/ovs-raptor/ovs_raptor/linux/build/taranis/buildroot-2011.02-rc2/output/build/linux-custom/include/linux/netdevice.h
configure:7401: result: no
configure:7416: checking whether can_checksum_protocol matches in /home/kvivek/ovs-raptor/ovs_raptor/linux/build/taranis/buildroot-2011.02-rc2/output/build/linux-custom/include/linux/netdevice.h
configure:7430: result: no
configure:7446: checking whether rcu_read_lock_held matches in /home/kvivek/ovs-raptor/ovs_raptor/linux/build/taranis/buildroot-2011.02-rc2/output/build/linux-custom/include/linux/rcupdate.h
configure:7460: result: no
configure:7463: checking whether rcu_read_lock_held matches in /home/kvivek/ovs-raptor/ovs_raptor/linux/build/taranis/buildroot-2011.02-rc2/output/build/linux-custom/include/linux/rtnetlink.h
configure:7477: result: no
configure:7537: checking whether [^@]proto_data_valid matches in /home/kvivek/ovs-raptor/ovs_raptor/linux/build/taranis/buildroot-2011.02-rc2/output/build/linux-custom/include/linux/skbuff.h
configure:7551: result: no
configure:7566: checking whether raw matches in /home/kvivek/ovs-raptor/ovs_raptor/linux/build/taranis/buildroot-2011.02-rc2/output/build/linux-custom/include/linux/skbuff.h
configure:7580: result: no
configure:7595: checking whether skb_dst( matches in /home/kvivek/ovs-raptor/ovs_raptor/linux/build/taranis/buildroot-2011.02-rc2/output/build/linux-custom/include/linux/skbuff.h
configure:7602: result: yes
configure:7624: checking whether skb_copy_from_linear_data_offset matches in /home/kvivek/ovs-raptor/ovs_raptor/linux/build/taranis/buildroot-2011.02-rc2/output/build/linux-custom/include/linux/skbuff.h
configure:7631: result: yes
configure:7653: checking whether skb_reset_tail_pointer matches in /home/kvivek/ovs-raptor/ovs_raptor/linux/build/taranis/buildroot-2011.02-rc2/output/build/linux-custom/include/linux/skbuff.h
configure:7660: result: yes
configure:7682: checking whether skb_cow_head matches in /home/kvivek/ovs-raptor/ovs_raptor/linux/build/taranis/buildroot-2011.02-rc2/output/build/linux-custom/include/linux/skbuff.h
configure:7689: result: yes
configure:7711: checking whether skb_transport_header matches in /home/kvivek/ovs-raptor/ovs_raptor/linux/build/taranis/buildroot-2011.02-rc2/output/build/linux-custom/include/linux/skbuff.h
configure:7718: result: yes
configure:7740: checking whether icmp6_hdr matches in /home/kvivek/ovs-raptor/ovs_raptor/linux/build/taranis/buildroot-2011.02-rc2/output/build/linux-custom/include/linux/icmpv6.h
configure:7747: result: yes
configure:7769: checking whether skb_warn_if_lro matches in /home/kvivek/ovs-raptor/ovs_raptor/linux/build/taranis/buildroot-2011.02-rc2/output/build/linux-custom/include/linux/skbuff.h
configure:7776: result: yes
configure:7798: checking whether consume_skb matches in /home/kvivek/ovs-raptor/ovs_raptor/linux/build/taranis/buildroot-2011.02-rc2/output/build/linux-custom/include/linux/skbuff.h
configure:7805: result: yes
configure:7827: checking whether skb_frag_page matches in /home/kvivek/ovs-raptor/ovs_raptor/linux/build/taranis/buildroot-2011.02-rc2/output/build/linux-custom/include/linux/skbuff.h
configure:7841: result: no
configure:7856: checking whether skb_reset_mac_len matches in /home/kvivek/ovs-raptor/ovs_raptor/linux/build/taranis/buildroot-2011.02-rc2/output/build/linux-custom/include/linux/skbuff.h
configure:7870: result: no
configure:7886: checking whether kmemdup matches in /home/kvivek/ovs-raptor/ovs_raptor/linux/build/taranis/buildroot-2011.02-rc2/output/build/linux-custom/include/linux/string.h
configure:7893: result: yes
configure:7972: checking whether bool matches in /home/kvivek/ovs-raptor/ovs_raptor/linux/build/taranis/buildroot-2011.02-rc2/output/build/linux-custom/include/linux/types.h
configure:7979: result: yes
configure:8001: checking whether __wsum matches in /home/kvivek/ovs-raptor/ovs_raptor/linux/build/taranis/buildroot-2011.02-rc2/output/build/linux-custom/include/linux/types.h
configure:8008: result: yes
configure:8030: checking whether __wsum matches in /home/kvivek/ovs-raptor/ovs_raptor/linux/build/taranis/buildroot-2011.02-rc2/output/build/linux-custom/include/uapi/linux/types.h
configure:8053: result: file not found
configure:8060: checking whether csum_replace4 matches in /home/kvivek/ovs-raptor/ovs_raptor/linux/build/taranis/buildroot-2011.02-rc2/output/build/linux-custom/include/net/checksum.h
configure:8067: result: yes
configure:8089: checking whether csum_unfold matches in /home/kvivek/ovs-raptor/ovs_raptor/linux/build/taranis/buildroot-2011.02-rc2/output/build/linux-custom/include/net/checksum.h
configure:8096: result: yes
configure:8119: checking whether NLA_NUL_STRING matches in /home/kvivek/ovs-raptor/ovs_raptor/linux/build/taranis/buildroot-2011.02-rc2/output/build/linux-custom/include/net/netlink.h
configure:8126: result: yes
configure:8148: checking whether nla_get_be16 matches in /home/kvivek/ovs-raptor/ovs_raptor/linux/build/taranis/buildroot-2011.02-rc2/output/build/linux-custom/include/net/netlink.h
configure:8155: result: yes
configure:8177: checking whether nla_put_be16 matches in /home/kvivek/ovs-raptor/ovs_raptor/linux/build/taranis/buildroot-2011.02-rc2/output/build/linux-custom/include/net/netlink.h
configure:8191: result: no
configure:8206: checking whether nla_put_be32 matches in /home/kvivek/ovs-raptor/ovs_raptor/linux/build/taranis/buildroot-2011.02-rc2/output/build/linux-custom/include/net/netlink.h
configure:8220: result: no
configure:8235: checking whether nla_put_be64 matches in /home/kvivek/ovs-raptor/ovs_raptor/linux/build/taranis/buildroot-2011.02-rc2/output/build/linux-custom/include/net/netlink.h
configure:8249: result: no
configure:8264: checking whether nla_find_nested matches in /home/kvivek/ovs-raptor/ovs_raptor/linux/build/taranis/buildroot-2011.02-rc2/output/build/linux-custom/include/net/netlink.h
configure:8271: result: yes
configure:8294: checking whether ADD_ALL_VLANS_CMD matches in /home/kvivek/ovs-raptor/ovs_raptor/linux/build/taranis/buildroot-2011.02-rc2/output/build/linux-custom/include/linux/if_vlan.h
configure:8308: result: no
configure:8324: checking whether openvswitch_handle_frame_hook matches in /home/kvivek/ovs-raptor/ovs_raptor/linux/build/taranis/buildroot-2011.02-rc2/output/build/linux-custom/include/linux/openvswitch.h
configure:8347: result: file not found
configure:8354: checking for /home/kvivek/ovs-raptor/ovs_raptor/linux/build/taranis/buildroot-2011.02-rc2/output/build/linux-custom/include/linux/log2.h
configure:8357: result: yes
configure:8616: creating ./config.status

## ---------------------- ##
## Running config.status. ##
## ---------------------- ##

This file was extended by openvswitch config.status 1.9.3, which was
generated by GNU Autoconf 2.68.  Invocation command line was

  CONFIG_FILES    =
  CONFIG_HEADERS  =
  CONFIG_LINKS    =
  CONFIG_COMMANDS =
  $ ./config.status

on dhcp-10-209-144-55

config.status:951: creating Makefile
config.status:951: creating datapath/Makefile
config.status:951: creating datapath/linux/Kbuild
config.status:951: creating datapath/linux/Makefile
config.status:951: creating datapath/linux/Makefile.main
config.status:951: creating tests/atlocal
config.status:951: creating config.h
config.status:1180: executing tests/atconfig commands
config.status:1180: executing depfiles commands
config.status:1180: executing include/openflow/openflow.h.stamp commands
config.status:1180: executing ovsdb/ovsdbmonitor/dummy commands
config.status:1180: executing utilities/bugtool/dummy commands

## ---------------- ##
## Cache variables. ##
## ---------------- ##

ac_cv_c_bigendian=yes
ac_cv_c_compiler_gnu=yes
ac_cv_env_CC_set=set
ac_cv_env_CC_value=powerpc-linux-gcc
ac_cv_env_CFLAGS_set=set
ac_cv_env_CFLAGS_value='-std=gnu99 -g -I/home/kvivek/OVS-VER-1.9.3/ovs_install/build_p4080ds_release/sysroots/ppce500mc-linux/usr/include/  -L/home/kvivek/OVS-VER-1.9.3/ovs_install/build_p4080ds_release/sysroots/ppce500mc-linux/usr/lib/'
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=set
ac_cv_env_KARCH_value=powerpc
ac_cv_env_LDFLAGS_set=
ac_cv_env_LDFLAGS_value=
ac_cv_env_LIBS_set=
ac_cv_env_LIBS_value=
ac_cv_env_PERL_set=
ac_cv_env_PERL_value=
ac_cv_env_PKG_CONFIG_LIBDIR_set=
ac_cv_env_PKG_CONFIG_LIBDIR_value=
ac_cv_env_PKG_CONFIG_PATH_set=
ac_cv_env_PKG_CONFIG_PATH_value=
ac_cv_env_PKG_CONFIG_set=
ac_cv_env_PKG_CONFIG_value=
ac_cv_env_SSL_CFLAGS_set=
ac_cv_env_SSL_CFLAGS_value=
ac_cv_env_SSL_LIBS_set=
ac_cv_env_SSL_LIBS_value=
ac_cv_env_build_alias_set=
ac_cv_env_build_alias_value=
ac_cv_env_host_alias_set=set
ac_cv_env_host_alias_value=powerpc-linux-gnu
ac_cv_env_target_alias_set=
ac_cv_env_target_alias_value=
ac_cv_func_getloadavg=no
ac_cv_func_mlockall=yes
ac_cv_func_setmntent=yes
ac_cv_func_statvfs=yes
ac_cv_func_strnlen=yes
ac_cv_func_strsignal=yes
ac_cv_header_execinfo_h=no
ac_cv_header_inttypes_h=yes
ac_cv_header_linux_netlink_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_packet_h=yes
ac_cv_header_stdc=yes
ac_cv_header_stdint_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_lib_socket_connect=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_ac_pt_PKG_CONFIG=/usr/bin/pkg-config
ac_cv_path_install='/usr/bin/install -c'
ac_cv_path_mkdir=/bin/mkdir
ac_cv_prog_AWK=gawk
ac_cv_prog_CC=powerpc-linux-gcc
ac_cv_prog_CPP='powerpc-linux-gcc -E'
ac_cv_prog_RANLIB=powerpc-linux-ranlib
ac_cv_prog_STRIP=powerpc-linux-strip
ac_cv_prog_cc_c89=
ac_cv_prog_cc_g=yes
ac_cv_prog_cc_powerpc_linux_gcc_c_o=yes
ac_cv_prog_make_make_set=yes
ac_cv_safe_to_define___extensions__=yes
ac_cv_search_clock_gettime='none required'
ac_cv_search_gethostbyname='none required'
ac_cv_search_pcap_open_live=no
ac_cv_search_pow=-lm
ac_cv_search_timer_create=-lrt
ac_cv_sparse_target=other
ac_cv_sys_file_offset_bits=64
ac_cv_sys_largefile_CC=no
am_cv_CC_dependencies_compiler_type=gcc3
ovs_cv__Wall=yes
ovs_cv__Wbad_function_cast=yes
ovs_cv__Wcast_align=yes
ovs_cv__Wdeclaration_after_statement=yes
ovs_cv__Wformat_security=yes
ovs_cv__Wmissing_field_initializers=yes
ovs_cv__Wmissing_prototypes=yes
ovs_cv__Wno_override_init=yes
ovs_cv__Wno_sign_compare=yes
ovs_cv__Wno_unused=yes
ovs_cv__Wno_unused_parameter=yes
ovs_cv__Wold_style_definition=yes
ovs_cv__Wpointer_arith=yes
ovs_cv__Wstrict_aliasing=yes
ovs_cv__Wstrict_prototypes=yes
ovs_cv__Wswitch_enum=yes
ovs_cv__Wunused_parameter=yes
ovs_cv_dot=no
ovs_cv_gnu_make=yes
ovs_cv_gnu_make_if=yes
ovs_cv_groff=yes
ovs_cv_malloc_hooks=no
ovs_cv_py_PyQt4_QtCore=no
ovs_cv_py_PySide_QtCore=no
ovs_cv_py_json=no
ovs_cv_py_twisted_application=no
ovs_cv_py_twisted_conch_ssh=no
ovs_cv_py_twisted_internet=no
ovs_cv_py_zope_interface=no
ovs_cv_python=/usr/bin/python
ovs_cv_pyuic4=no
ovs_cv_strtok_r_bug=yes
ovs_cv_use_linker_sections=yes
ovs_cv_xsversion=none
pkg_cv_SSL_CFLAGS='-I/usr/kerberos/include  '
pkg_cv_SSL_LIBS='-L/usr/kerberos/lib -lssl -lcrypto -ldl -lz  '

## ----------------- ##
## Output variables. ##
## ----------------- ##

ACLOCAL='${SHELL} /home/kvivek/OVS-VER-1.9.3/ovs/build-aux/missing --run aclocal-1.11'
AMDEPBACKSLASH='\'
AMDEP_FALSE='#'
AMDEP_TRUE=''
AMTAR='${SHELL} /home/kvivek/OVS-VER-1.9.3/ovs/build-aux/missing --run tar'
AUTOCONF='${SHELL} /home/kvivek/OVS-VER-1.9.3/ovs/build-aux/missing --run autoconf'
AUTOHEADER='${SHELL} /home/kvivek/OVS-VER-1.9.3/ovs/build-aux/missing --run autoheader'
AUTOM4TE='${SHELL} /home/kvivek/OVS-VER-1.9.3/ovs/build-aux/missing --run autom4te'
AUTOMAKE='${SHELL} /home/kvivek/OVS-VER-1.9.3/ovs/build-aux/missing --run automake-1.11'
AWK='gawk'
BUILD_BRCOMPAT='yes'
BUILD_BRCOMPAT_FALSE='#'
BUILD_BRCOMPAT_TRUE=''
BUILD_OVSDBMONITOR_FALSE=''
BUILD_OVSDBMONITOR_TRUE='#'
CC='$(if $(C),REAL_CC="powerpc-linux-gcc" CHECK="$(SPARSE) -I $(top_srcdir)/include/sparse $(SPARSEFLAGS)" cgcc $(CGCCFLAGS),powerpc-linux-gcc)'
CCDEPMODE='depmode=gcc3'
CFLAGS='-std=gnu99 -g -I/home/kvivek/OVS-VER-1.9.3/ovs_install/build_p4080ds_release/sysroots/ppce500mc-linux/usr/include/  -L/home/kvivek/OVS-VER-1.9.3/ovs_install/build_p4080ds_release/sysroots/ppce500mc-linux/usr/lib/'
CGCCFLAGS=''
CPP='powerpc-linux-gcc -E'
CPPFLAGS=''
CYGPATH_W='echo'
DBDIR='${sysconfdir}/${PACKAGE}'
DEFS='-DHAVE_CONFIG_H'
DEPDIR='.deps'
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_GROFF_FALSE='#'
HAVE_GROFF_TRUE=''
HAVE_IF_DL_FALSE=''
HAVE_IF_DL_TRUE='#'
HAVE_IF_PACKET_FALSE='#'
HAVE_IF_PACKET_TRUE=''
HAVE_NETLINK_FALSE='#'
HAVE_NETLINK_TRUE=''
HAVE_OPENSSL='yes'
HAVE_OPENSSL_FALSE='#'
HAVE_OPENSSL_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=''
INSTALL_DATA='${INSTALL} -m 644'
INSTALL_PROGRAM='${INSTALL}'
INSTALL_SCRIPT='${INSTALL}'
INSTALL_STRIP_PROGRAM='$(install_sh) -c -s'
KARCH='powerpc'
KBUILD='/home/kvivek/ovs-raptor/ovs_raptor/linux/build/taranis/buildroot-2011.02-rc2/output/build/linux-custom'
LDFLAGS=''
LIBOBJS=''
LIBS='-lrt -lm '
LINUX_DATAPATH_FALSE='#'
LINUX_DATAPATH_TRUE=''
LINUX_ENABLED_FALSE='#'
LINUX_ENABLED_TRUE=''
LOGDIR='${localstatedir}/log/${PACKAGE}'
LTLIBOBJS=''
MAKEINFO='${SHELL} /home/kvivek/OVS-VER-1.9.3/ovs/build-aux/missing --run makeinfo'
MKDIR_P='/bin/mkdir -p'
NDEBUG_FALSE=''
NDEBUG_TRUE='#'
OBJEXT='o'
PACKAGE='openvswitch'
PACKAGE_BUGREPORT='ovs-bugs at openvswitch.org'
PACKAGE_NAME='openvswitch'
PACKAGE_STRING='openvswitch 1.9.3'
PACKAGE_TARNAME='openvswitch'
PACKAGE_URL=''
PACKAGE_VERSION='1.9.3'
PATH_SEPARATOR=':'
PERL='/usr/bin/perl'
PKG_CONFIG='/usr/bin/pkg-config'
PKG_CONFIG_LIBDIR=''
PKG_CONFIG_PATH=''
PKIDIR='${localstatedir}/lib/openvswitch/pki'
PYTHON='/usr/bin/python'
PYUIC4='${SHELL} /home/kvivek/OVS-VER-1.9.3/ovs/build-aux/missing --run pyuic4'
RANLIB='powerpc-linux-ranlib'
RUNDIR='${localstatedir}/run/openvswitch'
SET_MAKE=''
SHELL='/bin/sh'
SPARSE='sparse'
SPARSEFLAGS=''
SSL_CFLAGS='-I/usr/kerberos/include  '
SSL_LIBS='-L/usr/kerberos/lib -lssl -lcrypto -ldl -lz  '
STRIP='powerpc-linux-strip'
USE_LINKER_SECTIONS_FALSE='#'
USE_LINKER_SECTIONS_TRUE=''
VERSION='1.9.3'
WARNING_FLAGS=' -Wall -Wno-sign-compare -Wpointer-arith -Wdeclaration-after-statement -Wformat-security -Wswitch-enum -Wunused-parameter -Wstrict-aliasing -Wbad-function-cast -Wcast-align -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-field-initializers -Wno-override-init'
ac_ct_CC=''
am__EXEEXT_FALSE=''
am__EXEEXT_TRUE='#'
am__fastdepCC_FALSE='#'
am__fastdepCC_TRUE=''
am__include='include'
am__isrc=''
am__leading_dot='.'
am__quote=''
am__tar='${AMTAR} chof - "$$tardir"'
am__untar='${AMTAR} xf -'
bindir='${exec_prefix}/bin'
build_alias=''
datadir='${datarootdir}'
datarootdir='${prefix}/share'
docdir='${datarootdir}/doc/${PACKAGE_TARNAME}'
dvidir='${docdir}'
exec_prefix='${prefix}'
host_alias='powerpc-linux-gnu'
htmldir='${docdir}'
includedir='${prefix}/include'
infodir='${datarootdir}/info'
install_sh='${SHELL} /home/kvivek/OVS-VER-1.9.3/ovs/build-aux/install-sh'
libdir='${exec_prefix}/lib'
libexecdir='${exec_prefix}/libexec'
localedir='${datarootdir}/locale'
localstatedir='${prefix}/var'
mandir='${datarootdir}/man'
mkdir_p='/bin/mkdir -p'
oldincludedir='/usr/include'
pdfdir='${docdir}'
prefix='/usr/local'
program_transform_name='s,x,x,'
psdir='${docdir}'
sbindir='${exec_prefix}/sbin'
sharedstatedir='${prefix}/com'
sysconfdir='${prefix}/etc'
target_alias=''

## ----------- ##
## confdefs.h. ##
## ----------- ##

/* confdefs.h */
#define PACKAGE_NAME "openvswitch"
#define PACKAGE_TARNAME "openvswitch"
#define PACKAGE_VERSION "1.9.3"
#define PACKAGE_STRING "openvswitch 1.9.3"
#define PACKAGE_BUGREPORT "ovs-bugs at openvswitch.org"
#define PACKAGE_URL ""
#define PACKAGE "openvswitch"
#define VERSION "1.9.3"
#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 WORDS_BIGENDIAN 1
#define _FILE_OFFSET_BITS 64
#define HAVE_NETLINK 1
#define HAVE_OPENSSL 1
#define HAVE_IF_PACKET 1
#define HAVE_STRTOK_R_BUG 1
#define HAVE_STRUCT_STAT_ST_MTIM_TV_NSEC 1
#define HAVE_MLOCKALL 1
#define HAVE_STRNLEN 1
#define HAVE_STRSIGNAL 1
#define HAVE_STATVFS 1
#define HAVE_SETMNTENT 1
#define HAVE_MNTENT_H 1
#define HAVE_SYS_STATVFS_H 1
#define HAVE_LINUX_TYPES_H 1
#define USE_LINKER_SECTIONS 1
#define LINUX_DATAPATH 1

configure: exit 0

-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://openvswitch.org/pipermail/ovs-discuss/attachments/20131125/033e9372/attachment.html>


More information about the discuss mailing list