summaryrefslogtreecommitdiff
path: root/package/nfs-utils
diff options
context:
space:
mode:
authorWaldemar Brodkorb <wbx@openadk.org>2011-02-08 21:45:05 +0100
committerWaldemar Brodkorb <wbx@openadk.org>2011-02-08 21:45:05 +0100
commitc115a9d1c3c12ce5504a1a5169006c66cafc34e3 (patch)
treef4bef63dd572e3fe54b8d5fdbffcbf2e2e78d7a2 /package/nfs-utils
parent91fb280c3d35424d56c7f9a3bea23f383dfcb56a (diff)
many bugfixes for native adksystems and some package updates
Diffstat (limited to 'package/nfs-utils')
-rw-r--r--package/nfs-utils/Makefile18
-rw-r--r--package/nfs-utils/files/nfsd.init3
-rw-r--r--package/nfs-utils/patches/patch-config_log5831
-rw-r--r--package/nfs-utils/patches/patch-tools_rpcgen_Makefile_in6
4 files changed, 19 insertions, 5839 deletions
diff --git a/package/nfs-utils/Makefile b/package/nfs-utils/Makefile
index 1d6e9aa23..e277874c6 100644
--- a/package/nfs-utils/Makefile
+++ b/package/nfs-utils/Makefile
@@ -5,7 +5,7 @@ include ${TOPDIR}/rules.mk
PKG_NAME:= nfs-utils
PKG_VERSION:= 1.2.3
-PKG_RELEASE:= 5
+PKG_RELEASE:= 6
PKG_MD5SUM:= 1131dc5f27c4f3905a6e7ee0d594fd4d
PKG_DESCR:= Utilities for NFS kernel server implementation
PKG_SECTION:= net/fs
@@ -23,7 +23,7 @@ PKGCB_WITHOUT_TIRPC:= portmap
PKG_FLAVOURS_NFS_UTILS:=WITH_KERBEROS
PKGFD_WITH_KERBEROS:= enable Kerberos support (MIT)
-PKGFS_WITH_KERBEROS:= libkrb5 libevent libnfsidmap librpcsecgss libcom-err libgssglue
+PKGFS_WITH_KERBEROS:= libkrb5 libevent libnfsidmap librpcsecgss libcom-err libgssglue kmod-rpcsec-gss-krb5 kmod-sunrpc-gss
PKGFB_WITH_KERBEROS:= libnfsidmap krb5 libevent libgssglue librpcsecgss
DISTFILES:= ${PKG_NAME}-${PKG_VERSION}.tar.bz2
@@ -32,9 +32,17 @@ include ${TOPDIR}/mk/package.mk
$(eval $(call PKG_template,NFS_UTILS,${PKG_NAME},${PKG_VERSION}-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION}))
+ifeq ($(ADK_NATIVE),)
+KRB5INC:= ${STAGING_TARGET_DIR}/usr
+TIRPCINC:= ${STAGING_TARGET_DIR}/usr/include/tirpc
+else
+KRB5INC:= /usr
+TIRPCINC:= /usr/include/tirpc
+endif
+
ifeq ($(ADK_PACKAGE_NFS_UTILS_WITH_KERBEROS),y)
CONFIGURE_ARGS+= --enable-nfsv4 \
- --with-krb5=${STAGING_TARGET_DIR}/usr/ \
+ --with-krb5=$(KRB5INC) \
--enable-gss
CONFIGURE_ENV+= LIBS="-lrpcsecgss"
else
@@ -44,7 +52,7 @@ endif
ifeq ($(ADK_PACKAGE_NFS_UTILS_WITH_TIRPC),y)
CONFIGURE_ARGS+= --enable-tirpc \
- --with-tirpcinclude=${STAGING_TARGET_DIR}/usr/include/tirpc
+ --with-tirpcinclude=${TIRPCINC}
else
CONFIGURE_ARGS+= --disable-tirpc
endif
@@ -57,6 +65,8 @@ CONFIGURE_ARGS+= --without-tcp-wrappers \
post-install:
${INSTALL_DIR} ${IDIR_NFS_UTILS}/usr/sbin ${IDIR_NFS_UTILS}/etc
+ ${INSTALL_DIR} ${IDIR_NFS_UTILS}/sbin
+ ${CP} ${WRKINST}/sbin/{u,}mount.nfs* ${IDIR_NFS_UTILS}/sbin
${INSTALL_DATA} ./files/rpc ${IDIR_NFS_UTILS}/etc
${INSTALL_BIN} ${WRKBUILD}/utils/exportfs/exportfs \
${IDIR_NFS_UTILS}/usr/sbin/
diff --git a/package/nfs-utils/files/nfsd.init b/package/nfs-utils/files/nfsd.init
index 26be81aa8..4f0aaabe3 100644
--- a/package/nfs-utils/files/nfsd.init
+++ b/package/nfs-utils/files/nfsd.init
@@ -7,7 +7,7 @@
case $1 in
autostop) ;;
autostart)
- test x"${portmap:-NO}" = x"NO" || test x"${rpcbind:-NO}" = x"NO" && exit 0
+ test x"${portmap:-NO}" = x"NO" && test x"${rpcbind:-NO}" = x"NO" && exit 0
test x"${nfs_server:-NO}" = x"NO" && exit 0
exec sh $0 start
;;
@@ -32,6 +32,7 @@ stop)
if [ ${nfs_server_version} -eq 4 ];then
kill $(pgrep -f /usr/sbin/idmapd)
kill $(pgrep -f /usr/sbin/svcgssd)
+ umount /var/lib/nfs/rpc_pipefs
fi
;;
restart)
diff --git a/package/nfs-utils/patches/patch-config_log b/package/nfs-utils/patches/patch-config_log
deleted file mode 100644
index f781209a4..000000000
--- a/package/nfs-utils/patches/patch-config_log
+++ /dev/null
@@ -1,5831 +0,0 @@
---- nfs-utils-1.2.3.orig/config.log 2010-09-28 14:25:03.000000000 +0200
-+++ nfs-utils-1.2.3/config.log 2011-01-21 17:33:44.714914032 +0100
-@@ -4,22 +4,22 @@ running configure, to aid debugging if c
- It was created by linux nfs-utils configure 1.2.3, which was
- generated by GNU Autoconf 2.65. Invocation command line was
-
-- $ ./configure --disable-gss
-+ $ /home/wbx/adk/openadk/build_ibm-x40_i686_uclibc/w-nfs-utils-1.2.3-3/nfs-utils-1.2.3/configure --build=x86_64-linux-gnu --host=i686-openadk-linux --target=i686-openadk-linux --program-prefix= --program-suffix= --prefix=/usr --bindir=/usr/bin --datadir=/usr/share --mandir=/usr/share/man --libexecdir=/usr/libexec --localstatedir=/var --sysconfdir=/etc --disable-nls --enable-shared --enable-static --disable-dependency-tracking --disable-libtool-lock --enable-nfsv4 --with-krb5=/home/wbx/adk/openadk/target_i686_uclibc/usr/ --enable-gss --enable-tirpc --with-tirpcinclude=/home/wbx/adk/openadk/target_i686_uclibc/usr/include/tirpc --without-tcp-wrappers --with-rpcgen=internal --disable-uuid
-
- ## --------- ##
- ## Platform. ##
- ## --------- ##
-
--hostname = TopHat.home.4dicksons.org
-+hostname = chrom
- uname -m = x86_64
--uname -r = 2.6.34.6-54.fc13.x86_64
-+uname -r = 2.6.31-22-server
- uname -s = Linux
--uname -v = #1 SMP Sun Sep 5 17:16:27 UTC 2010
-+uname -v = #70-Ubuntu SMP Thu Dec 2 00:00:57 UTC 2010
-
- /usr/bin/uname -p = unknown
- /bin/uname -X = unknown
-
--/bin/arch = x86_64
-+/bin/arch = unknown
- /usr/bin/arch -k = unknown
- /usr/convex/getsysinfo = unknown
- /usr/bin/hostinfo = unknown
-@@ -27,23 +27,18 @@ uname -v = #1 SMP Sun Sep 5 17:16:27 UTC
- /usr/bin/oslevel = unknown
- /bin/universe = unknown
-
--PATH: /usr/lib64/qt-3.3/bin
--PATH: /usr/kerberos/sbin
--PATH: /usr/kerberos/bin
--PATH: /usr/lib64/ccache
--PATH: /usr/local/bin
--PATH: /bin
--PATH: /usr/bin
-+PATH: /home/wbx/adk/openadk/scripts
-+PATH: /home/wbx/adk/openadk/bin/tools
-+PATH: /home/wbx/adk/openadk/host_i686_uclibc/bin
-+PATH: /home/wbx/adk/openadk/host_i686_uclibc/usr/bin
-+PATH: /home/wbx/adk/openadk/target_i686_uclibc/scripts
- PATH: /usr/local/sbin
-+PATH: /usr/local/bin
- PATH: /usr/sbin
--PATH: /sbin
--PATH: /sbin
- PATH: /usr/bin
--PATH: /usr/sbin
--PATH: /usr/local/bin
--PATH: /usr/local/kde/bin
--PATH: /home/steved/bin
--PATH: /home/steved/bin
-+PATH: /sbin
-+PATH: /bin
-+PATH: /usr/games
-
-
- ## ----------- ##
-@@ -51,17 +46,19 @@ PATH: /home/steved/bin
- ## ----------- ##
-
- configure:2864: checking build system type
--configure:2878: result: x86_64-unknown-linux-gnu
-+configure:2878: result: x86_64-pc-linux-gnu
- configure:2898: checking host system type
--configure:2911: result: x86_64-unknown-linux-gnu
-+configure:2911: result: i686-openadk-linux-gnu
- configure:2948: checking for a BSD-compatible install
--configure:3016: result: /usr/bin/install -c
-+configure:3016: result: /home/wbx/adk/openadk/scripts/install -c
- configure:3027: checking whether build environment is sane
- configure:3077: result: yes
-+configure:3126: checking for i686-openadk-linux-strip
-+configure:3153: result: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-strip
- configure:3218: checking for a thread-safe mkdir -p
- configure:3257: result: /bin/mkdir -p
- configure:3270: checking for gawk
--configure:3286: found /bin/gawk
-+configure:3286: found /usr/bin/gawk
- configure:3297: result: gawk
- configure:3308: checking whether make sets $(MAKE)
- configure:3330: result: yes
-@@ -69,70 +66,70 @@ configure:3413: checking whether to enab
- configure:3422: result: no
- configure:3727: checking for style of include used by make
- configure:3755: result: GNU
--configure:3825: checking for gcc
--configure:3841: found /usr/lib64/ccache/gcc
--configure:3852: result: gcc
-+configure:3785: checking for i686-openadk-linux-gcc
-+configure:3812: result: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc
- configure:4081: checking for C compiler version
--configure:4090: gcc --version >&5
--gcc (GCC) 4.4.4 20100630 (Red Hat 4.4.4-10)
-+configure:4090: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc --version >&5
-+i686-openadk-linux-uclibc-gcc (GCC) 4.5.2
- Copyright (C) 2010 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:4101: $? = 0
--configure:4090: gcc -v >&5
-+configure:4090: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -v >&5
- Using built-in specs.
--Target: x86_64-redhat-linux
--Configured with: ../configure --prefix=/usr --mandir=/usr/share/man --infodir=/usr/share/info --with-bugurl=http://bugzilla.redhat.com/bugzilla --enable-bootstrap --enable-shared --enable-threads=posix --enable-checking=release --with-system-zlib --enable-__cxa_atexit --disable-libunwind-exceptions --enable-gnu-unique-object --enable-languages=c,c++,objc,obj-c++,java,fortran,ada --enable-java-awt=gtk --disable-dssi --with-java-home=/usr/lib/jvm/java-1.5.0-gcj-1.5.0.0/jre --enable-libgcj-multifile --enable-java-maintainer-mode --with-ecj-jar=/usr/share/java/eclipse-ecj.jar --disable-libjava-multilib --with-ppl --with-cloog --with-tune=generic --with-arch_32=i686 --build=x86_64-redhat-linux
-+COLLECT_GCC=/home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc
-+COLLECT_LTO_WRAPPER=/home/wbx/adk/openadk/host_i686_uclibc/libexec/gcc/i686-openadk-linux-uclibc/4.5.2/lto-wrapper
-+Target: i686-openadk-linux-uclibc
-+Configured with: /home/wbx/adk/openadk/toolchain_build_i686_uclibc/w-gcc-4.5.2-1/gcc-4.5.2/configure --prefix=/home/wbx/adk/openadk/host_i686_uclibc --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=i686-openadk-linux-uclibc --with-gmp=/home/wbx/adk/openadk/host_i686_uclibc --with-mpfr=/home/wbx/adk/openadk/host_i686_uclibc --with-libelf=/home/wbx/adk/openadk/host_i686_uclibc --disable-__cxa_atexit --with-gnu-ld --disable-libmudflap --disable-libgomp --disable-biarch --disable-decimal-float --disable-multilib --disable-sjlj-exceptions --disable-libstdcxx-pch --disable-ppl-version-check --disable-cloog-version-check --without-ppl --without-cloog --disable-nls --enable-libssp --enable-lto --enable-tls --enable-target-optspace --enable-languages=c,c++ --with-sysroot='/home/wbx/adk/openadk/host_i686_uclibc/../target_i686_uclibc' --with-slibdir=/home/wbx/adk/openadk/target_i686_uclibc/lib --enable-shared
- Thread model: posix
--gcc version 4.4.4 20100630 (Red Hat 4.4.4-10) (GCC)
-+gcc version 4.5.2 (GCC)
- configure:4101: $? = 0
--configure:4090: gcc -V >&5
--gcc: '-V' option must have argument
-+configure:4090: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -V >&5
-+i686-openadk-linux-uclibc-gcc: '-V' option must have argument
- configure:4101: $? = 1
--configure:4090: gcc -qversion >&5
--gcc: unrecognized option '-qversion'
--gcc: no input files
-+configure:4090: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -qversion >&5
-+i686-openadk-linux-uclibc-gcc: unrecognized option '-qversion'
-+i686-openadk-linux-uclibc-gcc: no input files
- configure:4101: $? = 1
- configure:4121: checking whether the C compiler works
--configure:4143: gcc conftest.c >&5
-+configure:4143: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -march=pentium-m -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include -Wl,-O2 -Wl,-rpath -Wl,/usr/lib -Wl,-rpath-link -Wl,/home/wbx/adk/openadk/target_i686_uclibc/usr/lib -L/home/wbx/adk/openadk/target_i686_uclibc/lib -L/home/wbx/adk/openadk/target_i686_uclibc/usr/lib conftest.c -lrpcsecgss >&5
-+/home/wbx/adk/openadk/target_i686_uclibc/usr/lib/librpcsecgss.so: warning: gethostbyname is obsolescent, use getnameinfo() instead.
- configure:4147: $? = 0
- configure:4196: result: yes
- configure:4199: checking for C compiler default output file name
- configure:4201: result: a.out
- configure:4207: checking for suffix of executables
--configure:4214: gcc -o conftest conftest.c >&5
-+configure:4214: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -o conftest -march=pentium-m -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include -Wl,-O2 -Wl,-rpath -Wl,/usr/lib -Wl,-rpath-link -Wl,/home/wbx/adk/openadk/target_i686_uclibc/usr/lib -L/home/wbx/adk/openadk/target_i686_uclibc/lib -L/home/wbx/adk/openadk/target_i686_uclibc/usr/lib conftest.c -lrpcsecgss >&5
-+/home/wbx/adk/openadk/target_i686_uclibc/usr/lib/librpcsecgss.so: warning: gethostbyname is obsolescent, use getnameinfo() instead.
- configure:4218: $? = 0
- configure:4240: result:
- configure:4262: checking whether we are cross compiling
--configure:4270: gcc -o conftest conftest.c >&5
--configure:4274: $? = 0
--configure:4281: ./conftest
--configure:4285: $? = 0
--configure:4300: result: no
-+configure:4300: result: yes
- configure:4305: checking for suffix of object files
--configure:4327: gcc -c conftest.c >&5
-+configure:4327: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -c -march=pentium-m -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include conftest.c >&5
- configure:4331: $? = 0
- configure:4352: result: o
- configure:4356: checking whether we are using the GNU C compiler
--configure:4375: gcc -c conftest.c >&5
-+configure:4375: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -c -march=pentium-m -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include conftest.c >&5
- configure:4375: $? = 0
- configure:4384: result: yes
--configure:4393: checking whether gcc accepts -g
--configure:4413: gcc -c -g conftest.c >&5
-+configure:4393: checking whether /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc accepts -g
-+configure:4413: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -c -g -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include conftest.c >&5
- configure:4413: $? = 0
- configure:4454: result: yes
--configure:4471: checking for gcc option to accept ISO C89
--configure:4535: gcc -c -g -O2 conftest.c >&5
-+configure:4471: checking for /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc option to accept ISO C89
-+configure:4535: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -c -march=pentium-m -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include conftest.c >&5
- configure:4535: $? = 0
- configure:4548: result: none needed
--configure:4570: checking dependency style of gcc
--configure:4680: result: gcc3
-+configure:4570: checking dependency style of /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc
-+configure:4680: result: none
- configure:4701: checking how to run the C preprocessor
--configure:4732: gcc -E conftest.c
-+configure:4732: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -E -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include conftest.c
- configure:4732: $? = 0
--configure:4746: gcc -E conftest.c
--conftest.c:14:28: error: ac_nonexistent.h: No such file or directory
-+configure:4746: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -E -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include conftest.c
-+conftest.c:15:28: fatal error: ac_nonexistent.h: No such file or directory
-+compilation terminated.
- configure:4746: $? = 1
- configure: failed program was:
- | /* confdefs.h */
-@@ -147,13 +144,15 @@ configure: failed program was:
- | #define START_STATD "/usr/sbin/start-statd"
- | #define NFS3_SUPPORTED 1
- | #define NFS4_SUPPORTED 1
-+| #define GSS_SUPPORTED 1
- | /* end confdefs.h. */
- | #include <ac_nonexistent.h>
--configure:4771: result: gcc -E
--configure:4791: gcc -E conftest.c
-+configure:4771: result: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -E
-+configure:4791: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -E -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include conftest.c
- configure:4791: $? = 0
--configure:4805: gcc -E conftest.c
--conftest.c:14:28: error: ac_nonexistent.h: No such file or directory
-+configure:4805: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -E -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include conftest.c
-+conftest.c:15:28: fatal error: ac_nonexistent.h: No such file or directory
-+compilation terminated.
- configure:4805: $? = 1
- configure: failed program was:
- | /* confdefs.h */
-@@ -168,6 +167,7 @@ configure: failed program was:
- | #define START_STATD "/usr/sbin/start-statd"
- | #define NFS3_SUPPORTED 1
- | #define NFS4_SUPPORTED 1
-+| #define GSS_SUPPORTED 1
- | /* end confdefs.h. */
- | #include <ac_nonexistent.h>
- configure:4834: checking for grep that handles long lines and -e
-@@ -175,152 +175,5230 @@ configure:4892: result: /bin/grep
- configure:4897: checking for egrep
- configure:4959: result: /bin/grep -E
- configure:4964: checking for ANSI C header files
--configure:4984: gcc -c -g -O2 conftest.c >&5
-+configure:4984: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -c -march=pentium-m -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include conftest.c >&5
- configure:4984: $? = 0
--configure:5057: gcc -o conftest -g -O2 conftest.c >&5
--configure:5057: $? = 0
--configure:5057: ./conftest
--configure:5057: $? = 0
- configure:5068: result: yes
- configure:5081: checking for sys/types.h
--configure:5081: gcc -c -g -O2 conftest.c >&5
-+configure:5081: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -c -march=pentium-m -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include conftest.c >&5
- configure:5081: $? = 0
- configure:5081: result: yes
- configure:5081: checking for sys/stat.h
--configure:5081: gcc -c -g -O2 conftest.c >&5
-+configure:5081: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -c -march=pentium-m -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include conftest.c >&5
- configure:5081: $? = 0
- configure:5081: result: yes
- configure:5081: checking for stdlib.h
--configure:5081: gcc -c -g -O2 conftest.c >&5
-+configure:5081: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -c -march=pentium-m -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include conftest.c >&5
- configure:5081: $? = 0
- configure:5081: result: yes
- configure:5081: checking for string.h
--configure:5081: gcc -c -g -O2 conftest.c >&5
-+configure:5081: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -c -march=pentium-m -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include conftest.c >&5
- configure:5081: $? = 0
- configure:5081: result: yes
- configure:5081: checking for memory.h
--configure:5081: gcc -c -g -O2 conftest.c >&5
-+configure:5081: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -c -march=pentium-m -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include conftest.c >&5
- configure:5081: $? = 0
- configure:5081: result: yes
- configure:5081: checking for strings.h
--configure:5081: gcc -c -g -O2 conftest.c >&5
-+configure:5081: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -c -march=pentium-m -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include conftest.c >&5
- configure:5081: $? = 0
- configure:5081: result: yes
- configure:5081: checking for inttypes.h
--configure:5081: gcc -c -g -O2 conftest.c >&5
-+configure:5081: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -c -march=pentium-m -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include conftest.c >&5
- configure:5081: $? = 0
- configure:5081: result: yes
- configure:5081: checking for stdint.h
--configure:5081: gcc -c -g -O2 conftest.c >&5
-+configure:5081: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -c -march=pentium-m -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include conftest.c >&5
- configure:5081: $? = 0
- configure:5081: result: yes
- configure:5081: checking for unistd.h
--configure:5081: gcc -c -g -O2 conftest.c >&5
-+configure:5081: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -c -march=pentium-m -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include conftest.c >&5
- configure:5081: $? = 0
- configure:5081: result: yes
- configure:5108: checking for clnt_tli_create in -ltirpc
--configure:5133: gcc -o conftest -g -O2 conftest.c -ltirpc >&5
-+configure:5133: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -o conftest -march=pentium-m -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include -Wl,-O2 -Wl,-rpath -Wl,/usr/lib -Wl,-rpath-link -Wl,/home/wbx/adk/openadk/target_i686_uclibc/usr/lib -L/home/wbx/adk/openadk/target_i686_uclibc/lib -L/home/wbx/adk/openadk/target_i686_uclibc/usr/lib conftest.c -ltirpc -lrpcsecgss >&5
-+/home/wbx/adk/openadk/target_i686_uclibc/usr/lib/libtirpc.so: warning: gethostbyname is obsolescent, use getnameinfo() instead.
- configure:5133: $? = 0
- configure:5142: result: yes
--configure:5167: checking /usr/include/tirpc/netconfig.h usability
--configure:5167: gcc -c -g -O2 conftest.c >&5
-+configure:5167: checking /home/wbx/adk/openadk/target_i686_uclibc/usr/include/tirpc/netconfig.h usability
-+configure:5167: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -c -march=pentium-m -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include conftest.c >&5
- configure:5167: $? = 0
- configure:5167: result: yes
--configure:5167: checking /usr/include/tirpc/netconfig.h presence
--configure:5167: gcc -E conftest.c
-+configure:5167: checking /home/wbx/adk/openadk/target_i686_uclibc/usr/include/tirpc/netconfig.h presence
-+configure:5167: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -E -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include conftest.c
-+configure:5167: $? = 0
-+configure:5167: result: yes
-+configure:5167: checking for /home/wbx/adk/openadk/target_i686_uclibc/usr/include/tirpc/netconfig.h
-+configure:5167: result: yes
-+configure:5194: checking for prctl
-+configure:5194: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -o conftest -march=pentium-m -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include -Wl,-O2 -Wl,-rpath -Wl,/usr/lib -Wl,-rpath-link -Wl,/home/wbx/adk/openadk/target_i686_uclibc/usr/lib -L/home/wbx/adk/openadk/target_i686_uclibc/lib -L/home/wbx/adk/openadk/target_i686_uclibc/usr/lib conftest.c -ltirpc -lrpcsecgss >&5
-+/home/wbx/adk/openadk/target_i686_uclibc/usr/lib/libtirpc.so: warning: gethostbyname is obsolescent, use getnameinfo() instead.
-+configure:5194: $? = 0
-+configure:5194: result: yes
-+configure:5209: checking for cap_get_proc in -lcap
-+configure:5234: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -o conftest -march=pentium-m -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include -Wl,-O2 -Wl,-rpath -Wl,/usr/lib -Wl,-rpath-link -Wl,/home/wbx/adk/openadk/target_i686_uclibc/usr/lib -L/home/wbx/adk/openadk/target_i686_uclibc/lib -L/home/wbx/adk/openadk/target_i686_uclibc/usr/lib conftest.c -lcap -ltirpc -lrpcsecgss >&5
-+/home/wbx/adk/openadk/host_i686_uclibc/lib/gcc/i686-openadk-linux-uclibc/4.5.2/../../../../i686-openadk-linux-uclibc/bin/ld: cannot find -lcap
-+/home/wbx/adk/openadk/target_i686_uclibc/usr/lib/libtirpc.so: warning: gethostbyname is obsolescent, use getnameinfo() instead.
-+collect2: ld returned 1 exit status
-+configure:5234: $? = 1
-+configure: failed program was:
-+| /* confdefs.h */
-+| #define PACKAGE_NAME "linux nfs-utils"
-+| #define PACKAGE_TARNAME "nfs-utils"
-+| #define PACKAGE_VERSION "1.2.3"
-+| #define PACKAGE_STRING "linux nfs-utils 1.2.3"
-+| #define PACKAGE_BUGREPORT "linux-nfs@vger.kernel.org"
-+| #define PACKAGE_URL ""
-+| #define PACKAGE "nfs-utils"
-+| #define VERSION "1.2.3"
-+| #define START_STATD "/usr/sbin/start-statd"
-+| #define NFS3_SUPPORTED 1
-+| #define NFS4_SUPPORTED 1
-+| #define GSS_SUPPORTED 1
-+| #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 HAVE_LIBTIRPC 1
-+| #define HAVE__HOME_WBX_ADK_OPENADK_TARGET_I686_UCLIBC_USR_INCLUDE_TIRPC_NETCONFIG_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 cap_get_proc ();
-+| int
-+| main ()
-+| {
-+| return cap_get_proc ();
-+| ;
-+| return 0;
-+| }
-+configure:5243: result: no
-+configure:5252: checking sys/capability.h usability
-+configure:5252: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -c -march=pentium-m -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include conftest.c >&5
-+conftest.c:60:28: fatal error: sys/capability.h: No such file or directory
-+compilation terminated.
-+configure:5252: $? = 1
-+configure: failed program was:
-+| /* confdefs.h */
-+| #define PACKAGE_NAME "linux nfs-utils"
-+| #define PACKAGE_TARNAME "nfs-utils"
-+| #define PACKAGE_VERSION "1.2.3"
-+| #define PACKAGE_STRING "linux nfs-utils 1.2.3"
-+| #define PACKAGE_BUGREPORT "linux-nfs@vger.kernel.org"
-+| #define PACKAGE_URL ""
-+| #define PACKAGE "nfs-utils"
-+| #define VERSION "1.2.3"
-+| #define START_STATD "/usr/sbin/start-statd"
-+| #define NFS3_SUPPORTED 1
-+| #define NFS4_SUPPORTED 1
-+| #define GSS_SUPPORTED 1
-+| #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 HAVE_LIBTIRPC 1
-+| #define HAVE__HOME_WBX_ADK_OPENADK_TARGET_I686_UCLIBC_USR_INCLUDE_TIRPC_NETCONFIG_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 <sys/capability.h>
-+configure:5252: result: no
-+configure:5252: checking sys/capability.h presence
-+configure:5252: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -E -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include conftest.c
-+conftest.c:27:28: fatal error: sys/capability.h: No such file or directory
-+compilation terminated.
-+configure:5252: $? = 1
-+configure: failed program was:
-+| /* confdefs.h */
-+| #define PACKAGE_NAME "linux nfs-utils"
-+| #define PACKAGE_TARNAME "nfs-utils"
-+| #define PACKAGE_VERSION "1.2.3"
-+| #define PACKAGE_STRING "linux nfs-utils 1.2.3"
-+| #define PACKAGE_BUGREPORT "linux-nfs@vger.kernel.org"
-+| #define PACKAGE_URL ""
-+| #define PACKAGE "nfs-utils"
-+| #define VERSION "1.2.3"
-+| #define START_STATD "/usr/sbin/start-statd"
-+| #define NFS3_SUPPORTED 1
-+| #define NFS4_SUPPORTED 1
-+| #define GSS_SUPPORTED 1
-+| #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 HAVE_LIBTIRPC 1
-+| #define HAVE__HOME_WBX_ADK_OPENADK_TARGET_I686_UCLIBC_USR_INCLUDE_TIRPC_NETCONFIG_H 1
-+| /* end confdefs.h. */
-+| #include <sys/capability.h>
-+configure:5252: result: no
-+configure:5252: checking for sys/capability.h
-+configure:5252: result: no
-+configure:5362: checking for special C compiler options needed for large files
-+configure:5407: result: no
-+configure:5413: checking for _FILE_OFFSET_BITS value needed for large files
-+configure:5438: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -c -march=pentium-m -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include conftest.c >&5
-+conftest.c:33:3: warning: left shift count >= width of type
-+conftest.c:33:3: warning: left shift count >= width of type
-+conftest.c:34:10: warning: left shift count >= width of type
-+conftest.c:34:10: warning: left shift count >= width of type
-+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
-+configure:5438: $? = 1
-+configure: failed program was:
-+| /* confdefs.h */
-+| #define PACKAGE_NAME "linux nfs-utils"
-+| #define PACKAGE_TARNAME "nfs-utils"
-+| #define PACKAGE_VERSION "1.2.3"
-+| #define PACKAGE_STRING "linux nfs-utils 1.2.3"
-+| #define PACKAGE_BUGREPORT "linux-nfs@vger.kernel.org"
-+| #define PACKAGE_URL ""
-+| #define PACKAGE "nfs-utils"
-+| #define VERSION "1.2.3"
-+| #define START_STATD "/usr/sbin/start-statd"
-+| #define NFS3_SUPPORTED 1
-+| #define NFS4_SUPPORTED 1
-+| #define GSS_SUPPORTED 1
-+| #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 HAVE_LIBTIRPC 1
-+| #define HAVE__HOME_WBX_ADK_OPENADK_TARGET_I686_UCLIBC_USR_INCLUDE_TIRPC_NETCONFIG_H 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:5462: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -c -march=pentium-m -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include conftest.c >&5
-+configure:5462: $? = 0
-+configure:5470: result: 64
-+configure:5671: checking for C++ compiler version
-+configure:5680: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-g++ --version >&5
-+i686-openadk-linux-uclibc-g++ (GCC) 4.5.2
-+Copyright (C) 2010 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:5691: $? = 0
-+configure:5680: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-g++ -v >&5
-+Using built-in specs.
-+COLLECT_GCC=/home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-g++
-+COLLECT_LTO_WRAPPER=/home/wbx/adk/openadk/host_i686_uclibc/libexec/gcc/i686-openadk-linux-uclibc/4.5.2/lto-wrapper
-+Target: i686-openadk-linux-uclibc
-+Configured with: /home/wbx/adk/openadk/toolchain_build_i686_uclibc/w-gcc-4.5.2-1/gcc-4.5.2/configure --prefix=/home/wbx/adk/openadk/host_i686_uclibc --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=i686-openadk-linux-uclibc --with-gmp=/home/wbx/adk/openadk/host_i686_uclibc --with-mpfr=/home/wbx/adk/openadk/host_i686_uclibc --with-libelf=/home/wbx/adk/openadk/host_i686_uclibc --disable-__cxa_atexit --with-gnu-ld --disable-libmudflap --disable-libgomp --disable-biarch --disable-decimal-float --disable-multilib --disable-sjlj-exceptions --disable-libstdcxx-pch --disable-ppl-version-check --disable-cloog-version-check --without-ppl --without-cloog --disable-nls --enable-libssp --enable-lto --enable-tls --enable-target-optspace --enable-languages=c,c++ --with-sysroot='/home/wbx/adk/openadk/host_i686_uclibc/../target_i686_uclibc' --with-slibdir=/home/wbx/adk/openadk/target_i686_uclibc/lib --enable-shared
-+Thread model: posix
-+gcc version 4.5.2 (GCC)
-+configure:5691: $? = 0
-+configure:5680: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-g++ -V >&5
-+i686-openadk-linux-uclibc-g++: '-V' option must have argument
-+configure:5691: $? = 1
-+configure:5680: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-g++ -qversion >&5
-+i686-openadk-linux-uclibc-g++: unrecognized option '-qversion'
-+i686-openadk-linux-uclibc-g++: no input files
-+configure:5691: $? = 1
-+configure:5695: checking whether we are using the GNU C++ compiler
-+configure:5714: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-g++ -c -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include conftest.cpp >&5
-+configure:5714: $? = 0
-+configure:5723: result: yes
-+configure:5732: checking whether /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-g++ accepts -g
-+configure:5752: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-g++ -c -g -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include conftest.cpp >&5
-+configure:5752: $? = 0
-+configure:5793: result: yes
-+configure:5818: checking dependency style of /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-g++
-+configure:5928: result: none
-+configure:5951: checking for i686-openadk-linux-gcc
-+configure:5978: result: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc
-+configure:6247: checking for C compiler version
-+configure:6256: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc --version >&5
-+i686-openadk-linux-uclibc-gcc (GCC) 4.5.2
-+Copyright (C) 2010 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:6267: $? = 0
-+configure:6256: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -v >&5
-+Using built-in specs.
-+COLLECT_GCC=/home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc
-+COLLECT_LTO_WRAPPER=/home/wbx/adk/openadk/host_i686_uclibc/libexec/gcc/i686-openadk-linux-uclibc/4.5.2/lto-wrapper
-+Target: i686-openadk-linux-uclibc
-+Configured with: /home/wbx/adk/openadk/toolchain_build_i686_uclibc/w-gcc-4.5.2-1/gcc-4.5.2/configure --prefix=/home/wbx/adk/openadk/host_i686_uclibc --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=i686-openadk-linux-uclibc --with-gmp=/home/wbx/adk/openadk/host_i686_uclibc --with-mpfr=/home/wbx/adk/openadk/host_i686_uclibc --with-libelf=/home/wbx/adk/openadk/host_i686_uclibc --disable-__cxa_atexit --with-gnu-ld --disable-libmudflap --disable-libgomp --disable-biarch --disable-decimal-float --disable-multilib --disable-sjlj-exceptions --disable-libstdcxx-pch --disable-ppl-version-check --disable-cloog-version-check --without-ppl --without-cloog --disable-nls --enable-libssp --enable-lto --enable-tls --enable-target-optspace --enable-languages=c,c++ --with-sysroot='/home/wbx/adk/openadk/host_i686_uclibc/../target_i686_uclibc' --with-slibdir=/home/wbx/adk/openadk/target_i686_uclibc/lib --enable-shared
-+Thread model: posix
-+gcc version 4.5.2 (GCC)
-+configure:6267: $? = 0
-+configure:6256: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -V >&5
-+i686-openadk-linux-uclibc-gcc: '-V' option must have argument
-+configure:6267: $? = 1
-+configure:6256: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -qversion >&5
-+i686-openadk-linux-uclibc-gcc: unrecognized option '-qversion'
-+i686-openadk-linux-uclibc-gcc: no input files
-+configure:6267: $? = 1
-+configure:6271: checking whether we are using the GNU C compiler
-+configure:6299: result: yes
-+configure:6308: checking whether /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc accepts -g
-+configure:6369: result: yes
-+configure:6386: checking for /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc option to accept ISO C89
-+configure:6463: result: none needed
-+configure:6485: checking dependency style of /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc
-+configure:6595: result: none
-+configure:6615: checking how to run the C preprocessor
-+configure:6685: result: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -E
-+configure:6705: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -E -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include conftest.c
-+configure:6705: $? = 0
-+configure:6719: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -E -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include conftest.c
-+conftest.c:28:28: fatal error: ac_nonexistent.h: No such file or directory
-+compilation terminated.
-+configure:6719: $? = 1
-+configure: failed program was:
-+| /* confdefs.h */
-+| #define PACKAGE_NAME "linux nfs-utils"
-+| #define PACKAGE_TARNAME "nfs-utils"
-+| #define PACKAGE_VERSION "1.2.3"
-+| #define PACKAGE_STRING "linux nfs-utils 1.2.3"
-+| #define PACKAGE_BUGREPORT "linux-nfs@vger.kernel.org"
-+| #define PACKAGE_URL ""
-+| #define PACKAGE "nfs-utils"
-+| #define VERSION "1.2.3"
-+| #define START_STATD "/usr/sbin/start-statd"
-+| #define NFS3_SUPPORTED 1
-+| #define NFS4_SUPPORTED 1
-+| #define GSS_SUPPORTED 1
-+| #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 HAVE_LIBTIRPC 1
-+| #define HAVE__HOME_WBX_ADK_OPENADK_TARGET_I686_UCLIBC_USR_INCLUDE_TIRPC_NETCONFIG_H 1
-+| #define _FILE_OFFSET_BITS 64
-+| /* end confdefs.h. */
-+| #include <ac_nonexistent.h>
-+configure:6748: checking whether ln -s works
-+configure:6752: result: yes
-+configure:6759: checking whether make sets $(MAKE)
-+configure:6781: result: yes
-+configure:6815: checking for a sed that does not truncate output
-+configure:6879: result: /home/wbx/adk/openadk/scripts/sed
-+configure:6897: checking for fgrep
-+configure:6959: result: /bin/grep -F
-+configure:6994: checking for ld used by /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc
-+configure:7061: result: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-ld
-+configure:7068: checking if the linker (/home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-ld) is GNU ld
-+configure:7083: result: yes
-+configure:7095: checking for BSD- or MS-compatible name lister (nm)
-+configure:7144: result: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-nm
-+configure:7262: checking the name lister (/home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-nm) interface
-+configure:7269: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -c -march=pentium-m -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include conftest.c >&5
-+configure:7272: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-nm "conftest.o"
-+configure:7275: output
-+00000000 B some_variable
-+configure:7282: result: BSD nm
-+configure:7286: checking the maximum length of command line arguments
-+configure:7406: result: 3458764513820540925
-+configure:7423: checking whether the shell understands some XSI constructs
-+configure:7433: result: yes
-+configure:7437: checking whether the shell understands "+="
-+configure:7443: result: yes
-+configure:7478: checking for /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-ld option to reload object files
-+configure:7485: result: -r
-+configure:7514: checking for i686-openadk-linux-objdump
-+configure:7530: found /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-objdump
-+configure:7541: result: i686-openadk-linux-objdump
-+configure:7613: checking how to recognize dependent libraries
-+configure:7809: result: pass_all
-+configure:7829: checking for i686-openadk-linux-ar
-+configure:7856: result: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-ar
-+configure:7934: checking for i686-openadk-linux-strip
-+configure:7961: result: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-strip
-+configure:8033: checking for i686-openadk-linux-ranlib
-+configure:8060: result: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-ranlib
-+configure:8190: checking command to parse /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-nm output from /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc object
-+configure:8308: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -c -march=pentium-m -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include conftest.c >&5
-+configure:8311: $? = 0
-+configure:8315: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-nm conftest.o \| sed -n -e 's/^.*[ ]\([ABCDGIRSTW][ABCDGIRSTW]*\)[ ][ ]*\([_A-Za-z][_A-Za-z0-9]*\)$/\1 \2 \2/p' \> conftest.nm
-+configure:8318: $? = 0
-+configure:8372: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -o conftest -march=pentium-m -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include -Wl,-O2 -Wl,-rpath -Wl,/usr/lib -Wl,-rpath-link -Wl,/home/wbx/adk/openadk/target_i686_uclibc/usr/lib -L/home/wbx/adk/openadk/target_i686_uclibc/lib -L/home/wbx/adk/openadk/target_i686_uclibc/usr/lib conftest.c conftstm.o >&5
-+configure:8375: $? = 0
-+configure:8413: result: ok
-+configure:9218: checking for dlfcn.h
-+configure:9218: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -c -march=pentium-m -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include conftest.c >&5
-+configure:9218: $? = 0
-+configure:9218: result: yes
-+configure:9343: checking for C++ compiler version
-+configure:9352: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-g++ --version >&5
-+i686-openadk-linux-uclibc-g++ (GCC) 4.5.2
-+Copyright (C) 2010 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:9363: $? = 0
-+configure:9352: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-g++ -v >&5
-+Using built-in specs.
-+COLLECT_GCC=/home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-g++
-+COLLECT_LTO_WRAPPER=/home/wbx/adk/openadk/host_i686_uclibc/libexec/gcc/i686-openadk-linux-uclibc/4.5.2/lto-wrapper
-+Target: i686-openadk-linux-uclibc
-+Configured with: /home/wbx/adk/openadk/toolchain_build_i686_uclibc/w-gcc-4.5.2-1/gcc-4.5.2/configure --prefix=/home/wbx/adk/openadk/host_i686_uclibc --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=i686-openadk-linux-uclibc --with-gmp=/home/wbx/adk/openadk/host_i686_uclibc --with-mpfr=/home/wbx/adk/openadk/host_i686_uclibc --with-libelf=/home/wbx/adk/openadk/host_i686_uclibc --disable-__cxa_atexit --with-gnu-ld --disable-libmudflap --disable-libgomp --disable-biarch --disable-decimal-float --disable-multilib --disable-sjlj-exceptions --disable-libstdcxx-pch --disable-ppl-version-check --disable-cloog-version-check --without-ppl --without-cloog --disable-nls --enable-libssp --enable-lto --enable-tls --enable-target-optspace --enable-languages=c,c++ --with-sysroot='/home/wbx/adk/openadk/host_i686_uclibc/../target_i686_uclibc' --with-slibdir=/home/wbx/adk/openadk/target_i686_uclibc/lib --enable-shared
-+Thread model: posix
-+gcc version 4.5.2 (GCC)
-+configure:9363: $? = 0
-+configure:9352: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-g++ -V >&5
-+i686-openadk-linux-uclibc-g++: '-V' option must have argument
-+configure:9363: $? = 1
-+configure:9352: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-g++ -qversion >&5
-+i686-openadk-linux-uclibc-g++: unrecognized option '-qversion'
-+i686-openadk-linux-uclibc-g++: no input files
-+configure:9363: $? = 1
-+configure:9367: checking whether we are using the GNU C++ compiler
-+configure:9395: result: yes
-+configure:9404: checking whether /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-g++ accepts -g
-+configure:9465: result: yes
-+configure:9490: checking dependency style of /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-g++
-+configure:9600: result: none
-+configure:9623: checking how to run the C++ preprocessor
-+configure:9650: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-g++ -E -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include conftest.cpp
-+configure:9650: $? = 0
-+configure:9664: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-g++ -E -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include conftest.cpp
-+conftest.cpp:29:28: fatal error: ac_nonexistent.h: No such file or directory
-+compilation terminated.
-+configure:9664: $? = 1
-+configure: failed program was:
-+| /* confdefs.h */
-+| #define PACKAGE_NAME "linux nfs-utils"
-+| #define PACKAGE_TARNAME "nfs-utils"
-+| #define PACKAGE_VERSION "1.2.3"
-+| #define PACKAGE_STRING "linux nfs-utils 1.2.3"
-+| #define PACKAGE_BUGREPORT "linux-nfs@vger.kernel.org"
-+| #define PACKAGE_URL ""
-+| #define PACKAGE "nfs-utils"
-+| #define VERSION "1.2.3"
-+| #define START_STATD "/usr/sbin/start-statd"
-+| #define NFS3_SUPPORTED 1
-+| #define NFS4_SUPPORTED 1
-+| #define GSS_SUPPORTED 1
-+| #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 HAVE_LIBTIRPC 1
-+| #define HAVE__HOME_WBX_ADK_OPENADK_TARGET_I686_UCLIBC_USR_INCLUDE_TIRPC_NETCONFIG_H 1
-+| #define _FILE_OFFSET_BITS 64
-+| #define HAVE_DLFCN_H 1
-+| /* end confdefs.h. */
-+| #include <ac_nonexistent.h>
-+configure:9689: result: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-g++ -E
-+configure:9709: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-g++ -E -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include conftest.cpp
-+configure:9709: $? = 0
-+configure:9723: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-g++ -E -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include conftest.cpp
-+conftest.cpp:29:28: fatal error: ac_nonexistent.h: No such file or directory
-+compilation terminated.
-+configure:9723: $? = 1
-+configure: failed program was:
-+| /* confdefs.h */
-+| #define PACKAGE_NAME "linux nfs-utils"
-+| #define PACKAGE_TARNAME "nfs-utils"
-+| #define PACKAGE_VERSION "1.2.3"
-+| #define PACKAGE_STRING "linux nfs-utils 1.2.3"
-+| #define PACKAGE_BUGREPORT "linux-nfs@vger.kernel.org"
-+| #define PACKAGE_URL ""
-+| #define PACKAGE "nfs-utils"
-+| #define VERSION "1.2.3"
-+| #define START_STATD "/usr/sbin/start-statd"
-+| #define NFS3_SUPPORTED 1
-+| #define NFS4_SUPPORTED 1
-+| #define GSS_SUPPORTED 1
-+| #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 HAVE_LIBTIRPC 1
-+| #define HAVE__HOME_WBX_ADK_OPENADK_TARGET_I686_UCLIBC_USR_INCLUDE_TIRPC_NETCONFIG_H 1
-+| #define _FILE_OFFSET_BITS 64
-+| #define HAVE_DLFCN_H 1
-+| /* end confdefs.h. */
-+| #include <ac_nonexistent.h>
-+configure:9929: checking for objdir
-+configure:9944: result: .libs
-+configure:10240: checking if /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc supports -fno-rtti -fno-exceptions
-+configure:10258: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -c -march=pentium-m -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include -fno-rtti -fno-exceptions conftest.c >&5
-+cc1: warning: command line option "-fno-rtti" is valid for C++/ObjC++ but not for C
-+configure:10262: $? = 0
-+configure:10275: result: no
-+configure:10295: checking for /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc option to produce PIC
-+configure:10567: result: -fPIC -DPIC
-+configure:10579: checking if /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc PIC flag -fPIC -DPIC works
-+configure:10597: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -c -march=pentium-m -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include -fPIC -DPIC -DPIC conftest.c >&5
-+configure:10601: $? = 0
-+configure:10614: result: yes
-+configure:10638: checking if /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc static flag -static works
-+configure:10666: result: yes
-+configure:10681: checking if /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc supports -c -o file.o
-+configure:10702: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -c -march=pentium-m -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include -o out/conftest2.o conftest.c >&5
-+configure:10706: $? = 0
-+configure:10728: result: yes
-+configure:10736: checking if /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc supports -c -o file.o
-+configure:10783: result: yes
-+configure:10816: checking whether the /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc linker (/home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-ld) supports shared libraries
-+configure:11802: result: yes
-+configure:11839: checking whether -lc should be explicitly linked in
-+configure:11844: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -c -march=pentium-m -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include conftest.c >&5
-+configure:11847: $? = 0
-+configure:11862: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -shared conftest.o -v -Wl,-soname -Wl,conftest -o conftest 2\>\&1 \| /bin/grep -lc \>/dev/null 2\>\&1
-+configure:11865: $? = 0
-+configure:11877: result: no
-+configure:12041: checking dynamic linker characteristics
-+configure:12474: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -o conftest -march=pentium-m -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include -Wl,-O2 -Wl,-rpath -Wl,/usr/lib -Wl,-rpath-link -Wl,/home/wbx/adk/openadk/target_i686_uclibc/usr/lib -L/home/wbx/adk/openadk/target_i686_uclibc/lib -L/home/wbx/adk/openadk/target_i686_uclibc/usr/lib -Wl,-rpath -Wl,/foo conftest.c -ltirpc -lrpcsecgss >&5
-+/home/wbx/adk/openadk/target_i686_uclibc/usr/lib/libtirpc.so: warning: gethostbyname is obsolescent, use getnameinfo() instead.
-+configure:12474: $? = 0
-+configure:12695: result: GNU/Linux ld.so
-+configure:12797: checking how to hardcode library paths into programs
-+configure:12822: result: immediate
-+configure:13342: checking whether stripping libraries is possible
-+configure:13347: result: yes
-+configure:13382: checking if libtool supports shared libraries
-+configure:13384: result: yes
-+configure:13387: checking whether to build shared libraries
-+configure:13408: result: yes
-+configure:13411: checking whether to build static libraries
-+configure:13415: result: yes
-+configure:13565: checking for ld used by /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-g++
-+configure:13632: result: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-ld
-+configure:13639: checking if the linker (/home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-ld) is GNU ld
-+configure:13654: result: yes
-+configure:13709: checking whether the /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-g++ linker (/home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-ld) supports shared libraries
-+configure:14622: result: yes
-+configure:14650: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-g++ -c -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include conftest.cpp >&5
-+configure:14653: $? = 0
-+configure:14835: checking for /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-g++ option to produce PIC
-+configure:15152: result: -fPIC -DPIC
-+configure:15161: checking if /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-g++ PIC flag -fPIC -DPIC works
-+configure:15179: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-g++ -c -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include -fPIC -DPIC -DPIC conftest.cpp >&5
-+configure:15183: $? = 0
-+configure:15196: result: yes
-+configure:15217: checking if /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-g++ static flag -static works
-+configure:15245: result: yes
-+configure:15257: checking if /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-g++ supports -c -o file.o
-+configure:15278: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-g++ -c -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include -o out/conftest2.o conftest.cpp >&5
-+configure:15282: $? = 0
-+configure:15304: result: yes
-+configure:15309: checking if /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-g++ supports -c -o file.o
-+configure:15356: result: yes
-+configure:15386: checking whether the /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-g++ linker (/home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-ld) supports shared libraries
-+configure:15412: result: yes
-+configure:15549: checking dynamic linker characteristics
-+configure:15930: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-g++ -o conftest -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include -Wl,-O2 -Wl,-rpath -Wl,/usr/lib -Wl,-rpath-link -Wl,/home/wbx/adk/openadk/target_i686_uclibc/usr/lib -L/home/wbx/adk/openadk/target_i686_uclibc/lib -L/home/wbx/adk/openadk/target_i686_uclibc/usr/lib -Wl,-rpath -Wl,/foo conftest.cpp -ltirpc -lrpcsecgss >&5
-+/home/wbx/adk/openadk/target_i686_uclibc/usr/lib/libtirpc.so: warning: gethostbyname is obsolescent, use getnameinfo() instead.
-+configure:15930: $? = 0
-+configure:16151: result: GNU/Linux ld.so
-+configure:16202: checking how to hardcode library paths into programs
-+configure:16227: result: immediate
-+configure:16286: checking whether /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc and cc understand -c and -o together
-+configure:16317: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -c conftest.c -o conftest2.o >&5
-+configure:16321: $? = 0
-+configure:16327: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -c conftest.c -o conftest2.o >&5
-+configure:16331: $? = 0
-+configure:16342: cc -c conftest.c >&5
-+configure:16346: $? = 0
-+configure:16354: cc -c conftest.c -o conftest2.o >&5
-+configure:16358: $? = 0
-+configure:16364: cc -c conftest.c -o conftest2.o >&5
-+configure:16368: $? = 0
-+configure:16386: result: yes
-+configure:16423: checking for i686-openadk-linux-ar
-+configure:16450: result: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-ar
-+configure:16515: checking for i686-openadk-linux-ld
-+configure:16542: result: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-ld
-+configure:16605: checking for ANSI C header files
-+configure:16709: result: yes
-+configure:16718: checking for GNU libc2
-+configure:16732: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -E -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include conftest.c
-+configure:16732: $? = 0
-+configure:16740: result: yes
-+configure:16748: checking for BSD signal semantics
-+configure:16797: result: no
-+configure:16805: checking for gethostbyname
-+configure:16805: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -o conftest -march=pentium-m -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include -D_GNU_SOURCE -Wl,-O2 -Wl,-rpath -Wl,/usr/lib -Wl,-rpath-link -Wl,/home/wbx/adk/openadk/target_i686_uclibc/usr/lib -L/home/wbx/adk/openadk/target_i686_uclibc/lib -L/home/wbx/adk/openadk/target_i686_uclibc/usr/lib conftest.c -ltirpc -lrpcsecgss >&5
-+/tmp/ccoPHc9A.o: In function `main':
-+conftest.c:(.text+0x12): warning: gethostbyname is obsolescent, use getnameinfo() instead.
-+configure:16805: $? = 0
-+configure:16805: result: yes
-+configure:16853: checking for connect
-+configure:16853: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -o conftest -march=pentium-m -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include -D_GNU_SOURCE -Wl,-O2 -Wl,-rpath -Wl,/usr/lib -Wl,-rpath-link -Wl,/home/wbx/adk/openadk/target_i686_uclibc/usr/lib -L/home/wbx/adk/openadk/target_i686_uclibc/lib -L/home/wbx/adk/openadk/target_i686_uclibc/usr/lib conftest.c -ltirpc -lrpcsecgss >&5
-+/home/wbx/adk/openadk/target_i686_uclibc/usr/lib/libtirpc.so: warning: gethostbyname is obsolescent, use getnameinfo() instead.
-+configure:16853: $? = 0
-+configure:16853: result: yes
-+configure:16902: checking for getaddrinfo
-+configure:16902: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -o conftest -march=pentium-m -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include -D_GNU_SOURCE -Wl,-O2 -Wl,-rpath -Wl,/usr/lib -Wl,-rpath-link -Wl,/home/wbx/adk/openadk/target_i686_uclibc/usr/lib -L/home/wbx/adk/openadk/target_i686_uclibc/lib -L/home/wbx/adk/openadk/target_i686_uclibc/usr/lib conftest.c -ltirpc -lrpcsecgss >&5
-+/home/wbx/adk/openadk/target_i686_uclibc/usr/lib/libtirpc.so: warning: gethostbyname is obsolescent, use getnameinfo() instead.
-+configure:16902: $? = 0
-+configure:16902: result: yes
-+configure:16910: checking for getrpcbynumber
-+configure:16910: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -o conftest -march=pentium-m -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include -D_GNU_SOURCE -Wl,-O2 -Wl,-rpath -Wl,/usr/lib -Wl,-rpath-link -Wl,/home/wbx/adk/openadk/target_i686_uclibc/usr/lib -L/home/wbx/adk/openadk/target_i686_uclibc/lib -L/home/wbx/adk/openadk/target_i686_uclibc/usr/lib conftest.c -ltirpc -lrpcsecgss >&5
-+/home/wbx/adk/openadk/target_i686_uclibc/usr/lib/libtirpc.so: warning: gethostbyname is obsolescent, use getnameinfo() instead.
-+configure:16910: $? = 0
-+configure:16910: result: yes
-+configure:16918: checking for getservbyname
-+configure:16918: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -o conftest -march=pentium-m -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include -D_GNU_SOURCE -Wl,-O2 -Wl,-rpath -Wl,/usr/lib -Wl,-rpath-link -Wl,/home/wbx/adk/openadk/target_i686_uclibc/usr/lib -L/home/wbx/adk/openadk/target_i686_uclibc/lib -L/home/wbx/adk/openadk/target_i686_uclibc/usr/lib conftest.c -ltirpc -lrpcsecgss >&5
-+/home/wbx/adk/openadk/target_i686_uclibc/usr/lib/libtirpc.so: warning: gethostbyname is obsolescent, use getnameinfo() instead.
-+configure:16918: $? = 0
-+configure:16918: result: yes
-+configure:16926: checking for crypt in -lcrypt
-+configure:16951: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -o conftest -march=pentium-m -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include -D_GNU_SOURCE -Wl,-O2 -Wl,-rpath -Wl,/usr/lib -Wl,-rpath-link -Wl,/home/wbx/adk/openadk/target_i686_uclibc/usr/lib -L/home/wbx/adk/openadk/target_i686_uclibc/lib -L/home/wbx/adk/openadk/target_i686_uclibc/usr/lib conftest.c -lcrypt -ltirpc -lrpcsecgss >&5
-+/home/wbx/adk/openadk/target_i686_uclibc/usr/lib/libtirpc.so: warning: gethostbyname is obsolescent, use getnameinfo() instead.
-+configure:16951: $? = 0
-+configure:16960: result: yes
-+configure:16970: checking for event_dispatch in -levent
-+configure:16995: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -o conftest -march=pentium-m -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include -D_GNU_SOURCE -Wl,-O2 -Wl,-rpath -Wl,/usr/lib -Wl,-rpath-link -Wl,/home/wbx/adk/openadk/target_i686_uclibc/usr/lib -L/home/wbx/adk/openadk/target_i686_uclibc/lib -L/home/wbx/adk/openadk/target_i686_uclibc/usr/lib conftest.c -levent -ltirpc -lrpcsecgss >&5
-+/home/wbx/adk/openadk/target_i686_uclibc/usr/lib/libtirpc.so: warning: gethostbyname is obsolescent, use getnameinfo() instead.
-+configure:16995: $? = 0
-+configure:17004: result: yes
-+configure:17015: checking event.h usability
-+configure:17015: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -c -march=pentium-m -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include -D_GNU_SOURCE conftest.c >&5
-+configure:17015: $? = 0
-+configure:17015: result: yes
-+configure:17015: checking event.h presence
-+configure:17015: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -E -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include -D_GNU_SOURCE conftest.c
-+configure:17015: $? = 0
-+configure:17015: result: yes
-+configure:17015: checking for event.h
-+configure:17015: result: yes
-+configure:17032: checking for nfs4_init_name_mapping in -lnfsidmap
-+configure:17057: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -o conftest -march=pentium-m -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include -D_GNU_SOURCE -Wl,-O2 -Wl,-rpath -Wl,/usr/lib -Wl,-rpath-link -Wl,/home/wbx/adk/openadk/target_i686_uclibc/usr/lib -L/home/wbx/adk/openadk/target_i686_uclibc/lib -L/home/wbx/adk/openadk/target_i686_uclibc/usr/lib conftest.c -lnfsidmap -ltirpc -lrpcsecgss >&5
-+/home/wbx/adk/openadk/target_i686_uclibc/usr/lib/libnfsidmap.so: warning: gethostbyname is obsolescent, use getnameinfo() instead.
-+configure:17057: $? = 0
-+configure:17066: result: yes
-+configure:17077: checking nfsidmap.h usability
-+configure:17077: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -c -march=pentium-m -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include -D_GNU_SOURCE conftest.c >&5
-+configure:17077: $? = 0
-+configure:17077: result: yes
-+configure:17077: checking nfsidmap.h presence
-+configure:17077: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -E -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include -D_GNU_SOURCE conftest.c
-+configure:17077: $? = 0
-+configure:17077: result: yes
-+configure:17077: checking for nfsidmap.h
-+configure:17077: result: yes
-+configure:17090: checking for nfs4_set_debug in -lnfsidmap
-+configure:17115: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -o conftest -march=pentium-m -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include -D_GNU_SOURCE -Wl,-O2 -Wl,-rpath -Wl,/usr/lib -Wl,-rpath-link -Wl,/home/wbx/adk/openadk/target_i686_uclibc/usr/lib -L/home/wbx/adk/openadk/target_i686_uclibc/lib -L/home/wbx/adk/openadk/target_i686_uclibc/usr/lib conftest.c -lnfsidmap -ltirpc -lrpcsecgss >&5
-+/home/wbx/adk/openadk/target_i686_uclibc/usr/lib/libnfsidmap.so: warning: gethostbyname is obsolescent, use getnameinfo() instead.
-+configure:17115: $? = 0
-+configure:17124: result: yes
-+configure:17142: checking for i686-openadk-linux-pkg-config
-+configure:17175: result: no
-+configure:17185: checking for pkg-config
-+configure:17203: found /usr/bin/pkg-config
-+configure:17215: result: /usr/bin/pkg-config
-+configure:17227: WARNING: using cross tools not prefixed with host triplet
-+configure:17240: checking pkg-config is at least version 0.9.0
-+configure:17243: result: yes
-+configure:17256: checking for GSSGLUE
-+configure:17263: $PKG_CONFIG --exists --print-errors "libgssglue >= 0.1"
-+configure:17266: $? = 0
-+configure:17279: $PKG_CONFIG --exists --print-errors "libgssglue >= 0.1"
-+configure:17282: $? = 0
-+configure:17336: result: yes
-+configure:17590: checking for getnameinfo
-+configure:17590: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -o conftest -march=pentium-m -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include -D_GNU_SOURCE -Wl,-O2 -Wl,-rpath -Wl,/usr/lib -Wl,-rpath-link -Wl,/home/wbx/adk/openadk/target_i686_uclibc/usr/lib -L/home/wbx/adk/openadk/target_i686_uclibc/lib -L/home/wbx/adk/openadk/target_i686_uclibc/usr/lib conftest.c -ltirpc -lrpcsecgss >&5
-+/home/wbx/adk/openadk/target_i686_uclibc/usr/lib/libtirpc.so: warning: gethostbyname is obsolescent, use getnameinfo() instead.
-+configure:17590: $? = 0
-+configure:17590: result: yes
-+configure:17600: checking for nfs4_init_name_mapping in -lnfsidmap
-+configure:17634: result: yes
-+configure:17645: checking for nfsidmap.h
-+configure:17645: result: yes
-+configure:17658: checking for nfs4_set_debug in -lnfsidmap
-+configure:17692: result: yes
-+configure:17705: checking spkm3.h usability
-+configure:17705: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -c -march=pentium-m -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include -D_GNU_SOURCE conftest.c >&5
-+conftest.c:69:19: fatal error: spkm3.h: No such file or directory
-+compilation terminated.
-+configure:17705: $? = 1
-+configure: failed program was:
-+| /* confdefs.h */
-+| #define PACKAGE_NAME "linux nfs-utils"
-+| #define PACKAGE_TARNAME "nfs-utils"
-+| #define PACKAGE_VERSION "1.2.3"
-+| #define PACKAGE_STRING "linux nfs-utils 1.2.3"
-+| #define PACKAGE_BUGREPORT "linux-nfs@vger.kernel.org"
-+| #define PACKAGE_URL ""
-+| #define PACKAGE "nfs-utils"
-+| #define VERSION "1.2.3"
-+| #define START_STATD "/usr/sbin/start-statd"
-+| #define NFS3_SUPPORTED 1
-+| #define NFS4_SUPPORTED 1
-+| #define GSS_SUPPORTED 1
-+| #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 HAVE_LIBTIRPC 1
-+| #define HAVE__HOME_WBX_ADK_OPENADK_TARGET_I686_UCLIBC_USR_INCLUDE_TIRPC_NETCONFIG_H 1
-+| #define _FILE_OFFSET_BITS 64
-+| #define HAVE_DLFCN_H 1
-+| #define LT_OBJDIR ".libs/"
-+| #define STDC_HEADERS 1
-+| #define HAVE_EVENT_H 1
-+| #define HAVE_NFSIDMAP_H 1
-+| #define HAVE_NFS4_SET_DEBUG 1
-+| #define HAVE_NFSIDMAP_H 1
-+| #define HAVE_NFS4_SET_DEBUG 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 <spkm3.h>
-+configure:17705: result: no
-+configure:17705: checking spkm3.h presence
-+configure:17705: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -E -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include -D_GNU_SOURCE conftest.c
-+conftest.c:36:19: fatal error: spkm3.h: No such file or directory
-+compilation terminated.
-+configure:17705: $? = 1
-+configure: failed program was:
-+| /* confdefs.h */
-+| #define PACKAGE_NAME "linux nfs-utils"
-+| #define PACKAGE_TARNAME "nfs-utils"
-+| #define PACKAGE_VERSION "1.2.3"
-+| #define PACKAGE_STRING "linux nfs-utils 1.2.3"
-+| #define PACKAGE_BUGREPORT "linux-nfs@vger.kernel.org"
-+| #define PACKAGE_URL ""
-+| #define PACKAGE "nfs-utils"
-+| #define VERSION "1.2.3"
-+| #define START_STATD "/usr/sbin/start-statd"
-+| #define NFS3_SUPPORTED 1
-+| #define NFS4_SUPPORTED 1
-+| #define GSS_SUPPORTED 1
-+| #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 HAVE_LIBTIRPC 1
-+| #define HAVE__HOME_WBX_ADK_OPENADK_TARGET_I686_UCLIBC_USR_INCLUDE_TIRPC_NETCONFIG_H 1
-+| #define _FILE_OFFSET_BITS 64
-+| #define HAVE_DLFCN_H 1
-+| #define LT_OBJDIR ".libs/"
-+| #define STDC_HEADERS 1
-+| #define HAVE_EVENT_H 1
-+| #define HAVE_NFSIDMAP_H 1
-+| #define HAVE_NFS4_SET_DEBUG 1
-+| #define HAVE_NFSIDMAP_H 1
-+| #define HAVE_NFS4_SET_DEBUG 1
-+| /* end confdefs.h. */
-+| #include <spkm3.h>
-+configure:17705: result: no
-+configure:17705: checking for spkm3.h
-+configure:17705: result: no
-+configure:17712: WARNING: Could not locate SPKM3 header; will not have SPKM3 support
-+configure:17720: checking for Kerberos v5
-+configure:17791: result: /home/wbx/adk/openadk/target_i686_uclibc/usr/
-+configure:17805: checking for gss_krb5_export_lucid_sec_context in -lgssapi_krb5
-+configure:17830: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -o conftest -march=pentium-m -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include -D_GNU_SOURCE -Wl,-O2 -Wl,-rpath -Wl,/usr/lib -Wl,-rpath-link -Wl,/home/wbx/adk/openadk/target_i686_uclibc/usr/lib -L/home/wbx/adk/openadk/target_i686_uclibc/lib -L/home/wbx/adk/openadk/target_i686_uclibc/usr/lib conftest.c -lgssapi_krb5 -L/home/wbx/adk/openadk/target_i686_uclibc/usr/lib $(PROG_RPATH_FLAGS) -march=pentium-m -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -Wl,-O2 -Wl,-rpath -Wl,/usr/lib -Wl,-rpath-link -Wl,/home/wbx/adk/openadk/target_i686_uclibc/usr/lib -L/home/wbx/adk/openadk/target_i686_uclibc/lib -L/home/wbx/adk/openadk/target_i686_uclibc/usr/lib -lgssapi_krb5 -lkrb5 -lk5crypto -lcom_err -lresolv -ldl -ltirpc -lrpcsecgss >&5
-+i686-openadk-linux-uclibc-gcc: $(PROG_RPATH_FLAGS): No such file or directory
-+configure:17830: $? = 1
-+configure: failed program was:
-+| /* confdefs.h */
-+| #define PACKAGE_NAME "linux nfs-utils"
-+| #define PACKAGE_TARNAME "nfs-utils"
-+| #define PACKAGE_VERSION "1.2.3"
-+| #define PACKAGE_STRING "linux nfs-utils 1.2.3"
-+| #define PACKAGE_BUGREPORT "linux-nfs@vger.kernel.org"
-+| #define PACKAGE_URL ""
-+| #define PACKAGE "nfs-utils"
-+| #define VERSION "1.2.3"
-+| #define START_STATD "/usr/sbin/start-statd"
-+| #define NFS3_SUPPORTED 1
-+| #define NFS4_SUPPORTED 1
-+| #define GSS_SUPPORTED 1
-+| #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 HAVE_LIBTIRPC 1
-+| #define HAVE__HOME_WBX_ADK_OPENADK_TARGET_I686_UCLIBC_USR_INCLUDE_TIRPC_NETCONFIG_H 1
-+| #define _FILE_OFFSET_BITS 64
-+| #define HAVE_DLFCN_H 1
-+| #define LT_OBJDIR ".libs/"
-+| #define STDC_HEADERS 1
-+| #define HAVE_EVENT_H 1
-+| #define HAVE_NFSIDMAP_H 1
-+| #define HAVE_NFS4_SET_DEBUG 1
-+| #define HAVE_NFSIDMAP_H 1
-+| #define HAVE_NFS4_SET_DEBUG 1
-+| #define KRB5_VERSION 181
-+| #define HAVE_KRB5 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 gss_krb5_export_lucid_sec_context ();
-+| int
-+| main ()
-+| {
-+| return gss_krb5_export_lucid_sec_context ();
-+| ;
-+| return 0;
-+| }
-+configure:17840: result: no
-+configure:17850: checking for gss_krb5_set_allowable_enctypes in -lgssapi_krb5
-+configure:17875: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -o conftest -march=pentium-m -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include -D_GNU_SOURCE -Wl,-O2 -Wl,-rpath -Wl,/usr/lib -Wl,-rpath-link -Wl,/home/wbx/adk/openadk/target_i686_uclibc/usr/lib -L/home/wbx/adk/openadk/target_i686_uclibc/lib -L/home/wbx/adk/openadk/target_i686_uclibc/usr/lib conftest.c -lgssapi_krb5 -L/home/wbx/adk/openadk/target_i686_uclibc/usr/lib $(PROG_RPATH_FLAGS) -march=pentium-m -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -Wl,-O2 -Wl,-rpath -Wl,/usr/lib -Wl,-rpath-link -Wl,/home/wbx/adk/openadk/target_i686_uclibc/usr/lib -L/home/wbx/adk/openadk/target_i686_uclibc/lib -L/home/wbx/adk/openadk/target_i686_uclibc/usr/lib -lgssapi_krb5 -lkrb5 -lk5crypto -lcom_err -lresolv -ldl -ltirpc -lrpcsecgss >&5
-+i686-openadk-linux-uclibc-gcc: $(PROG_RPATH_FLAGS): No such file or directory
-+configure:17875: $? = 1
-+configure: failed program was:
-+| /* confdefs.h */
-+| #define PACKAGE_NAME "linux nfs-utils"
-+| #define PACKAGE_TARNAME "nfs-utils"
-+| #define PACKAGE_VERSION "1.2.3"
-+| #define PACKAGE_STRING "linux nfs-utils 1.2.3"
-+| #define PACKAGE_BUGREPORT "linux-nfs@vger.kernel.org"
-+| #define PACKAGE_URL ""
-+| #define PACKAGE "nfs-utils"
-+| #define VERSION "1.2.3"
-+| #define START_STATD "/usr/sbin/start-statd"
-+| #define NFS3_SUPPORTED 1
-+| #define NFS4_SUPPORTED 1
-+| #define GSS_SUPPORTED 1
-+| #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 HAVE_LIBTIRPC 1
-+| #define HAVE__HOME_WBX_ADK_OPENADK_TARGET_I686_UCLIBC_USR_INCLUDE_TIRPC_NETCONFIG_H 1
-+| #define _FILE_OFFSET_BITS 64
-+| #define HAVE_DLFCN_H 1
-+| #define LT_OBJDIR ".libs/"
-+| #define STDC_HEADERS 1
-+| #define HAVE_EVENT_H 1
-+| #define HAVE_NFSIDMAP_H 1
-+| #define HAVE_NFS4_SET_DEBUG 1
-+| #define HAVE_NFSIDMAP_H 1
-+| #define HAVE_NFS4_SET_DEBUG 1
-+| #define KRB5_VERSION 181
-+| #define HAVE_KRB5 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 gss_krb5_set_allowable_enctypes ();
-+| int
-+| main ()
-+| {
-+| return gss_krb5_set_allowable_enctypes ();
-+| ;
-+| return 0;
-+| }
-+configure:17885: result: no
-+configure:17895: checking for gss_krb5_ccache_name in -lgssapi_krb5
-+configure:17920: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -o conftest -march=pentium-m -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include -D_GNU_SOURCE -Wl,-O2 -Wl,-rpath -Wl,/usr/lib -Wl,-rpath-link -Wl,/home/wbx/adk/openadk/target_i686_uclibc/usr/lib -L/home/wbx/adk/openadk/target_i686_uclibc/lib -L/home/wbx/adk/openadk/target_i686_uclibc/usr/lib conftest.c -lgssapi_krb5 -L/home/wbx/adk/openadk/target_i686_uclibc/usr/lib $(PROG_RPATH_FLAGS) -march=pentium-m -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -Wl,-O2 -Wl,-rpath -Wl,/usr/lib -Wl,-rpath-link -Wl,/home/wbx/adk/openadk/target_i686_uclibc/usr/lib -L/home/wbx/adk/openadk/target_i686_uclibc/lib -L/home/wbx/adk/openadk/target_i686_uclibc/usr/lib -lgssapi_krb5 -lkrb5 -lk5crypto -lcom_err -lresolv -ldl -ltirpc -lrpcsecgss >&5
-+i686-openadk-linux-uclibc-gcc: $(PROG_RPATH_FLAGS): No such file or directory
-+configure:17920: $? = 1
-+configure: failed program was:
-+| /* confdefs.h */
-+| #define PACKAGE_NAME "linux nfs-utils"
-+| #define PACKAGE_TARNAME "nfs-utils"
-+| #define PACKAGE_VERSION "1.2.3"
-+| #define PACKAGE_STRING "linux nfs-utils 1.2.3"
-+| #define PACKAGE_BUGREPORT "linux-nfs@vger.kernel.org"
-+| #define PACKAGE_URL ""
-+| #define PACKAGE "nfs-utils"
-+| #define VERSION "1.2.3"
-+| #define START_STATD "/usr/sbin/start-statd"
-+| #define NFS3_SUPPORTED 1
-+| #define NFS4_SUPPORTED 1
-+| #define GSS_SUPPORTED 1
-+| #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 HAVE_LIBTIRPC 1
-+| #define HAVE__HOME_WBX_ADK_OPENADK_TARGET_I686_UCLIBC_USR_INCLUDE_TIRPC_NETCONFIG_H 1
-+| #define _FILE_OFFSET_BITS 64
-+| #define HAVE_DLFCN_H 1
-+| #define LT_OBJDIR ".libs/"
-+| #define STDC_HEADERS 1
-+| #define HAVE_EVENT_H 1
-+| #define HAVE_NFSIDMAP_H 1
-+| #define HAVE_NFS4_SET_DEBUG 1
-+| #define HAVE_NFSIDMAP_H 1
-+| #define HAVE_NFS4_SET_DEBUG 1
-+| #define KRB5_VERSION 181
-+| #define HAVE_KRB5 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 gss_krb5_ccache_name ();
-+| int
-+| main ()
-+| {
-+| return gss_krb5_ccache_name ();
-+| ;
-+| return 0;
-+| }
-+configure:17930: result: no
-+configure:17941: checking for krb5_get_error_message in -lgssapi_krb5
-+configure:17966: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -o conftest -march=pentium-m -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include -D_GNU_SOURCE -Wl,-O2 -Wl,-rpath -Wl,/usr/lib -Wl,-rpath-link -Wl,/home/wbx/adk/openadk/target_i686_uclibc/usr/lib -L/home/wbx/adk/openadk/target_i686_uclibc/lib -L/home/wbx/adk/openadk/target_i686_uclibc/usr/lib conftest.c -lgssapi_krb5 -L/home/wbx/adk/openadk/target_i686_uclibc/usr/lib $(PROG_RPATH_FLAGS) -march=pentium-m -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -Wl,-O2 -Wl,-rpath -Wl,/usr/lib -Wl,-rpath-link -Wl,/home/wbx/adk/openadk/target_i686_uclibc/usr/lib -L/home/wbx/adk/openadk/target_i686_uclibc/lib -L/home/wbx/adk/openadk/target_i686_uclibc/usr/lib -lgssapi_krb5 -lkrb5 -lk5crypto -lcom_err -lresolv -ldl -ltirpc -lrpcsecgss >&5
-+i686-openadk-linux-uclibc-gcc: $(PROG_RPATH_FLAGS): No such file or directory
-+configure:17966: $? = 1
-+configure: failed program was:
-+| /* confdefs.h */
-+| #define PACKAGE_NAME "linux nfs-utils"
-+| #define PACKAGE_TARNAME "nfs-utils"
-+| #define PACKAGE_VERSION "1.2.3"
-+| #define PACKAGE_STRING "linux nfs-utils 1.2.3"
-+| #define PACKAGE_BUGREPORT "linux-nfs@vger.kernel.org"
-+| #define PACKAGE_URL ""
-+| #define PACKAGE "nfs-utils"
-+| #define VERSION "1.2.3"
-+| #define START_STATD "/usr/sbin/start-statd"
-+| #define NFS3_SUPPORTED 1
-+| #define NFS4_SUPPORTED 1
-+| #define GSS_SUPPORTED 1
-+| #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 HAVE_LIBTIRPC 1
-+| #define HAVE__HOME_WBX_ADK_OPENADK_TARGET_I686_UCLIBC_USR_INCLUDE_TIRPC_NETCONFIG_H 1
-+| #define _FILE_OFFSET_BITS 64
-+| #define HAVE_DLFCN_H 1
-+| #define LT_OBJDIR ".libs/"
-+| #define STDC_HEADERS 1
-+| #define HAVE_EVENT_H 1
-+| #define HAVE_NFSIDMAP_H 1
-+| #define HAVE_NFS4_SET_DEBUG 1
-+| #define HAVE_NFSIDMAP_H 1
-+| #define HAVE_NFS4_SET_DEBUG 1
-+| #define KRB5_VERSION 181
-+| #define HAVE_KRB5 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 krb5_get_error_message ();
-+| int
-+| main ()
-+| {
-+| return krb5_get_error_message ();
-+| ;
-+| return 0;
-+| }
-+configure:17976: result: no
-+configure:17987: checking for krb5_get_init_creds_opt_set_addressless in -lgssapi_krb5
-+configure:18012: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -o conftest -march=pentium-m -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include -D_GNU_SOURCE -Wl,-O2 -Wl,-rpath -Wl,/usr/lib -Wl,-rpath-link -Wl,/home/wbx/adk/openadk/target_i686_uclibc/usr/lib -L/home/wbx/adk/openadk/target_i686_uclibc/lib -L/home/wbx/adk/openadk/target_i686_uclibc/usr/lib conftest.c -lgssapi_krb5 -L/home/wbx/adk/openadk/target_i686_uclibc/usr/lib $(PROG_RPATH_FLAGS) -march=pentium-m -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -Wl,-O2 -Wl,-rpath -Wl,/usr/lib -Wl,-rpath-link -Wl,/home/wbx/adk/openadk/target_i686_uclibc/usr/lib -L/home/wbx/adk/openadk/target_i686_uclibc/lib -L/home/wbx/adk/openadk/target_i686_uclibc/usr/lib -lgssapi_krb5 -lkrb5 -lk5crypto -lcom_err -lresolv -ldl -ltirpc -lrpcsecgss >&5
-+i686-openadk-linux-uclibc-gcc: $(PROG_RPATH_FLAGS): No such file or directory
-+configure:18012: $? = 1
-+configure: failed program was:
-+| /* confdefs.h */
-+| #define PACKAGE_NAME "linux nfs-utils"
-+| #define PACKAGE_TARNAME "nfs-utils"
-+| #define PACKAGE_VERSION "1.2.3"
-+| #define PACKAGE_STRING "linux nfs-utils 1.2.3"
-+| #define PACKAGE_BUGREPORT "linux-nfs@vger.kernel.org"
-+| #define PACKAGE_URL ""
-+| #define PACKAGE "nfs-utils"
-+| #define VERSION "1.2.3"
-+| #define START_STATD "/usr/sbin/start-statd"
-+| #define NFS3_SUPPORTED 1
-+| #define NFS4_SUPPORTED 1
-+| #define GSS_SUPPORTED 1
-+| #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 HAVE_LIBTIRPC 1
-+| #define HAVE__HOME_WBX_ADK_OPENADK_TARGET_I686_UCLIBC_USR_INCLUDE_TIRPC_NETCONFIG_H 1
-+| #define _FILE_OFFSET_BITS 64
-+| #define HAVE_DLFCN_H 1
-+| #define LT_OBJDIR ".libs/"
-+| #define STDC_HEADERS 1
-+| #define HAVE_EVENT_H 1
-+| #define HAVE_NFSIDMAP_H 1
-+| #define HAVE_NFS4_SET_DEBUG 1
-+| #define HAVE_NFSIDMAP_H 1
-+| #define HAVE_NFS4_SET_DEBUG 1
-+| #define KRB5_VERSION 181
-+| #define HAVE_KRB5 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 krb5_get_init_creds_opt_set_addressless ();
-+| int
-+| main ()
-+| {
-+| return krb5_get_init_creds_opt_set_addressless ();
-+| ;
-+| return 0;
-+| }
-+configure:18022: result: no
-+configure:18143: checking whether AI_ADDRCONFIG is declared
-+configure:18143: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -c -march=pentium-m -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include -D_GNU_SOURCE conftest.c >&5
-+configure:18143: $? = 0
-+configure:18143: result: yes
-+configure:18195: checking arpa/inet.h usability
-+configure:18195: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -c -march=pentium-m -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include -D_GNU_SOURCE conftest.c >&5
-+configure:18195: $? = 0
-+configure:18195: result: yes
-+configure:18195: checking arpa/inet.h presence
-+configure:18195: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -E -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include -D_GNU_SOURCE conftest.c
-+configure:18195: $? = 0
-+configure:18195: result: yes
-+configure:18195: checking for arpa/inet.h
-+configure:18195: result: yes
-+configure:18195: checking fcntl.h usability
-+configure:18195: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -c -march=pentium-m -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include -D_GNU_SOURCE conftest.c >&5
-+configure:18195: $? = 0
-+configure:18195: result: yes
-+configure:18195: checking fcntl.h presence
-+configure:18195: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -E -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include -D_GNU_SOURCE conftest.c
-+configure:18195: $? = 0
-+configure:18195: result: yes
-+configure:18195: checking for fcntl.h
-+configure:18195: result: yes
-+configure:18195: checking libintl.h usability
-+configure:18195: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -c -march=pentium-m -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include -D_GNU_SOURCE conftest.c >&5
-+configure:18195: $? = 0
-+configure:18195: result: yes
-+configure:18195: checking libintl.h presence
-+configure:18195: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -E -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include -D_GNU_SOURCE conftest.c
-+configure:18195: $? = 0
-+configure:18195: result: yes
-+configure:18195: checking for libintl.h
-+configure:18195: result: yes
-+configure:18195: checking limits.h usability
-+configure:18195: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -c -march=pentium-m -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include -D_GNU_SOURCE conftest.c >&5
-+configure:18195: $? = 0
-+configure:18195: result: yes
-+configure:18195: checking limits.h presence
-+configure:18195: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -E -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include -D_GNU_SOURCE conftest.c
-+configure:18195: $? = 0
-+configure:18195: result: yes
-+configure:18195: checking for limits.h
-+configure:18195: result: yes
-+configure:18195: checking malloc.h usability
-+configure:18195: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -c -march=pentium-m -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include -D_GNU_SOURCE conftest.c >&5
-+configure:18195: $? = 0
-+configure:18195: result: yes
-+configure:18195: checking malloc.h presence
-+configure:18195: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -E -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include -D_GNU_SOURCE conftest.c
-+configure:18195: $? = 0
-+configure:18195: result: yes
-+configure:18195: checking for malloc.h
-+configure:18195: result: yes
-+configure:18195: checking for memory.h
-+configure:18195: result: yes
-+configure:18195: checking netdb.h usability
-+configure:18195: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -c -march=pentium-m -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include -D_GNU_SOURCE conftest.c >&5
-+configure:18195: $? = 0
-+configure:18195: result: yes
-+configure:18195: checking netdb.h presence
-+configure:18195: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -E -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include -D_GNU_SOURCE conftest.c
-+configure:18195: $? = 0
-+configure:18195: result: yes
-+configure:18195: checking for netdb.h
-+configure:18195: result: yes
-+configure:18195: checking netinet/in.h usability
-+configure:18195: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -c -march=pentium-m -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include -D_GNU_SOURCE conftest.c >&5
-+configure:18195: $? = 0
-+configure:18195: result: yes
-+configure:18195: checking netinet/in.h presence
-+configure:18195: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -E -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include -D_GNU_SOURCE conftest.c
-+configure:18195: $? = 0
-+configure:18195: result: yes
-+configure:18195: checking for netinet/in.h
-+configure:18195: result: yes
-+configure:18195: checking paths.h usability
-+configure:18195: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -c -march=pentium-m -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include -D_GNU_SOURCE conftest.c >&5
-+configure:18195: $? = 0
-+configure:18195: result: yes
-+configure:18195: checking paths.h presence
-+configure:18195: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -E -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include -D_GNU_SOURCE conftest.c
-+configure:18195: $? = 0
-+configure:18195: result: yes
-+configure:18195: checking for paths.h
-+configure:18195: result: yes
-+configure:18195: checking for stdlib.h
-+configure:18195: result: yes
-+configure:18195: checking for string.h
-+configure:18195: result: yes
-+configure:18195: checking sys/file.h usability
-+configure:18195: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -c -march=pentium-m -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include -D_GNU_SOURCE conftest.c >&5
-+configure:18195: $? = 0
-+configure:18195: result: yes
-+configure:18195: checking sys/file.h presence
-+configure:18195: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -E -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include -D_GNU_SOURCE conftest.c
-+configure:18195: $? = 0
-+configure:18195: result: yes
-+configure:18195: checking for sys/file.h
-+configure:18195: result: yes
-+configure:18195: checking sys/ioctl.h usability
-+configure:18195: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -c -march=pentium-m -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include -D_GNU_SOURCE conftest.c >&5
-+configure:18195: $? = 0
-+configure:18195: result: yes
-+configure:18195: checking sys/ioctl.h presence
-+configure:18195: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -E -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include -D_GNU_SOURCE conftest.c
-+configure:18195: $? = 0
-+configure:18195: result: yes
-+configure:18195: checking for sys/ioctl.h
-+configure:18195: result: yes
-+configure:18195: checking sys/mount.h usability
-+configure:18195: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -c -march=pentium-m -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include -D_GNU_SOURCE conftest.c >&5
-+configure:18195: $? = 0
-+configure:18195: result: yes
-+configure:18195: checking sys/mount.h presence
-+configure:18195: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -E -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include -D_GNU_SOURCE conftest.c
-+configure:18195: $? = 0
-+configure:18195: result: yes
-+configure:18195: checking for sys/mount.h
-+configure:18195: result: yes
-+configure:18195: checking sys/param.h usability
-+configure:18195: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -c -march=pentium-m -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include -D_GNU_SOURCE conftest.c >&5
-+configure:18195: $? = 0
-+configure:18195: result: yes
-+configure:18195: checking sys/param.h presence
-+configure:18195: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -E -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include -D_GNU_SOURCE conftest.c
-+configure:18195: $? = 0
-+configure:18195: result: yes
-+configure:18195: checking for sys/param.h
-+configure:18195: result: yes
-+configure:18195: checking sys/socket.h usability
-+configure:18195: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -c -march=pentium-m -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include -D_GNU_SOURCE conftest.c >&5
-+configure:18195: $? = 0
-+configure:18195: result: yes
-+configure:18195: checking sys/socket.h presence
-+configure:18195: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -E -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include -D_GNU_SOURCE conftest.c
-+configure:18195: $? = 0
-+configure:18195: result: yes
-+configure:18195: checking for sys/socket.h
-+configure:18195: result: yes
-+configure:18195: checking sys/time.h usability
-+configure:18195: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -c -march=pentium-m -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include -D_GNU_SOURCE conftest.c >&5
-+configure:18195: $? = 0
-+configure:18195: result: yes
-+configure:18195: checking sys/time.h presence
-+configure:18195: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -E -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include -D_GNU_SOURCE conftest.c
-+configure:18195: $? = 0
-+configure:18195: result: yes
-+configure:18195: checking for sys/time.h
-+configure:18195: result: yes
-+configure:18195: checking sys/vfs.h usability
-+configure:18195: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -c -march=pentium-m -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include -D_GNU_SOURCE conftest.c >&5
-+configure:18195: $? = 0
-+configure:18195: result: yes
-+configure:18195: checking sys/vfs.h presence
-+configure:18195: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -E -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include -D_GNU_SOURCE conftest.c
-+configure:18195: $? = 0
-+configure:18195: result: yes
-+configure:18195: checking for sys/vfs.h
-+configure:18195: result: yes
-+configure:18195: checking syslog.h usability
-+configure:18195: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -c -march=pentium-m -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include -D_GNU_SOURCE conftest.c >&5
-+configure:18195: $? = 0
-+configure:18195: result: yes
-+configure:18195: checking syslog.h presence
-+configure:18195: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -E -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include -D_GNU_SOURCE conftest.c
-+configure:18195: $? = 0
-+configure:18195: result: yes
-+configure:18195: checking for syslog.h
-+configure:18195: result: yes
-+configure:18195: checking for unistd.h
-+configure:18195: result: yes
-+configure:18195: checking com_err.h usability
-+configure:18195: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -c -march=pentium-m -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include -D_GNU_SOURCE conftest.c >&5
-+conftest.c:92:21: fatal error: com_err.h: No such file or directory
-+compilation terminated.
-+configure:18195: $? = 1
-+configure: failed program was:
-+| /* confdefs.h */
-+| #define PACKAGE_NAME "linux nfs-utils"
-+| #define PACKAGE_TARNAME "nfs-utils"
-+| #define PACKAGE_VERSION "1.2.3"
-+| #define PACKAGE_STRING "linux nfs-utils 1.2.3"
-+| #define PACKAGE_BUGREPORT "linux-nfs@vger.kernel.org"
-+| #define PACKAGE_URL ""
-+| #define PACKAGE "nfs-utils"
-+| #define VERSION "1.2.3"
-+| #define START_STATD "/usr/sbin/start-statd"
-+| #define NFS3_SUPPORTED 1
-+| #define NFS4_SUPPORTED 1
-+| #define GSS_SUPPORTED 1
-+| #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 HAVE_LIBTIRPC 1
-+| #define HAVE__HOME_WBX_ADK_OPENADK_TARGET_I686_UCLIBC_USR_INCLUDE_TIRPC_NETCONFIG_H 1
-+| #define _FILE_OFFSET_BITS 64
-+| #define HAVE_DLFCN_H 1
-+| #define LT_OBJDIR ".libs/"
-+| #define STDC_HEADERS 1
-+| #define HAVE_EVENT_H 1
-+| #define HAVE_NFSIDMAP_H 1
-+| #define HAVE_NFS4_SET_DEBUG 1
-+| #define HAVE_NFSIDMAP_H 1
-+| #define HAVE_NFS4_SET_DEBUG 1
-+| #define KRB5_VERSION 181
-+| #define HAVE_KRB5 1
-+| #define HAVE_DECL_AI_ADDRCONFIG 1
-+| #define HAVE_ARPA_INET_H 1
-+| #define HAVE_FCNTL_H 1
-+| #define HAVE_LIBINTL_H 1
-+| #define HAVE_LIMITS_H 1
-+| #define HAVE_MALLOC_H 1
-+| #define HAVE_MEMORY_H 1
-+| #define HAVE_NETDB_H 1
-+| #define HAVE_NETINET_IN_H 1
-+| #define HAVE_PATHS_H 1
-+| #define HAVE_STDLIB_H 1
-+| #define HAVE_STRING_H 1
-+| #define HAVE_SYS_FILE_H 1
-+| #define HAVE_SYS_IOCTL_H 1
-+| #define HAVE_SYS_MOUNT_H 1
-+| #define HAVE_SYS_PARAM_H 1
-+| #define HAVE_SYS_SOCKET_H 1
-+| #define HAVE_SYS_TIME_H 1
-+| #define HAVE_SYS_VFS_H 1
-+| #define HAVE_SYSLOG_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 <com_err.h>
-+configure:18195: result: no
-+configure:18195: checking com_err.h presence
-+configure:18195: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -E -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include -D_GNU_SOURCE conftest.c
-+conftest.c:59:21: fatal error: com_err.h: No such file or directory
-+compilation terminated.
-+configure:18195: $? = 1
-+configure: failed program was:
-+| /* confdefs.h */
-+| #define PACKAGE_NAME "linux nfs-utils"
-+| #define PACKAGE_TARNAME "nfs-utils"
-+| #define PACKAGE_VERSION "1.2.3"
-+| #define PACKAGE_STRING "linux nfs-utils 1.2.3"
-+| #define PACKAGE_BUGREPORT "linux-nfs@vger.kernel.org"
-+| #define PACKAGE_URL ""
-+| #define PACKAGE "nfs-utils"
-+| #define VERSION "1.2.3"
-+| #define START_STATD "/usr/sbin/start-statd"
-+| #define NFS3_SUPPORTED 1
-+| #define NFS4_SUPPORTED 1
-+| #define GSS_SUPPORTED 1
-+| #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 HAVE_LIBTIRPC 1
-+| #define HAVE__HOME_WBX_ADK_OPENADK_TARGET_I686_UCLIBC_USR_INCLUDE_TIRPC_NETCONFIG_H 1
-+| #define _FILE_OFFSET_BITS 64
-+| #define HAVE_DLFCN_H 1
-+| #define LT_OBJDIR ".libs/"
-+| #define STDC_HEADERS 1
-+| #define HAVE_EVENT_H 1
-+| #define HAVE_NFSIDMAP_H 1
-+| #define HAVE_NFS4_SET_DEBUG 1
-+| #define HAVE_NFSIDMAP_H 1
-+| #define HAVE_NFS4_SET_DEBUG 1
-+| #define KRB5_VERSION 181
-+| #define HAVE_KRB5 1
-+| #define HAVE_DECL_AI_ADDRCONFIG 1
-+| #define HAVE_ARPA_INET_H 1
-+| #define HAVE_FCNTL_H 1
-+| #define HAVE_LIBINTL_H 1
-+| #define HAVE_LIMITS_H 1
-+| #define HAVE_MALLOC_H 1
-+| #define HAVE_MEMORY_H 1
-+| #define HAVE_NETDB_H 1
-+| #define HAVE_NETINET_IN_H 1
-+| #define HAVE_PATHS_H 1
-+| #define HAVE_STDLIB_H 1
-+| #define HAVE_STRING_H 1
-+| #define HAVE_SYS_FILE_H 1
-+| #define HAVE_SYS_IOCTL_H 1
-+| #define HAVE_SYS_MOUNT_H 1
-+| #define HAVE_SYS_PARAM_H 1
-+| #define HAVE_SYS_SOCKET_H 1
-+| #define HAVE_SYS_TIME_H 1
-+| #define HAVE_SYS_VFS_H 1
-+| #define HAVE_SYSLOG_H 1
-+| #define HAVE_UNISTD_H 1
-+| /* end confdefs.h. */
-+| #include <com_err.h>
-+configure:18195: result: no
-+configure:18195: checking for com_err.h
-+configure:18195: result: no
-+configure:18195: checking et/com_err.h usability
-+configure:18195: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -c -march=pentium-m -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include -D_GNU_SOURCE conftest.c >&5
-+configure:18195: $? = 0
-+configure:18195: result: yes
-+configure:18195: checking et/com_err.h presence
-+configure:18195: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -E -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include -D_GNU_SOURCE conftest.c
-+configure:18195: $? = 0
-+configure:18195: result: yes
-+configure:18195: checking for et/com_err.h
-+configure:18195: result: yes
-+configure:18195: checking ifaddrs.h usability
-+configure:18195: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -c -march=pentium-m -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include -D_GNU_SOURCE conftest.c >&5
-+configure:18195: $? = 0
-+configure:18195: result: yes
-+configure:18195: checking ifaddrs.h presence
-+configure:18195: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -E -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include -D_GNU_SOURCE conftest.c
-+configure:18195: $? = 0
-+configure:18195: result: yes
-+configure:18195: checking for ifaddrs.h
-+configure:18195: result: yes
-+configure:18207: checking for an ANSI C-conforming const
-+configure:18272: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -c -march=pentium-m -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include -D_GNU_SOURCE conftest.c >&5
-+configure:18272: $? = 0
-+configure:18279: result: yes
-+configure:18287: checking for uid_t in sys/types.h
-+configure:18306: result: yes
-+configure:18317: checking for inline
-+configure:18333: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -c -march=pentium-m -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include -D_GNU_SOURCE conftest.c >&5
-+configure:18333: $? = 0
-+configure:18341: result: inline
-+configure:18359: checking for off_t
-+configure:18359: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -c -march=pentium-m -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include -D_GNU_SOURCE conftest.c >&5
-+configure:18359: $? = 0
-+configure:18359: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -c -march=pentium-m -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include -D_GNU_SOURCE conftest.c >&5
-+conftest.c: In function 'main':
-+conftest.c:97:20: error: expected expression before ')' token
-+configure:18359: $? = 1
-+configure: failed program was:
-+| /* confdefs.h */
-+| #define PACKAGE_NAME "linux nfs-utils"
-+| #define PACKAGE_TARNAME "nfs-utils"
-+| #define PACKAGE_VERSION "1.2.3"
-+| #define PACKAGE_STRING "linux nfs-utils 1.2.3"
-+| #define PACKAGE_BUGREPORT "linux-nfs@vger.kernel.org"
-+| #define PACKAGE_URL ""
-+| #define PACKAGE "nfs-utils"
-+| #define VERSION "1.2.3"
-+| #define START_STATD "/usr/sbin/start-statd"
-+| #define NFS3_SUPPORTED 1
-+| #define NFS4_SUPPORTED 1
-+| #define GSS_SUPPORTED 1
-+| #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 HAVE_LIBTIRPC 1
-+| #define HAVE__HOME_WBX_ADK_OPENADK_TARGET_I686_UCLIBC_USR_INCLUDE_TIRPC_NETCONFIG_H 1
-+| #define _FILE_OFFSET_BITS 64
-+| #define HAVE_DLFCN_H 1
-+| #define LT_OBJDIR ".libs/"
-+| #define STDC_HEADERS 1
-+| #define HAVE_EVENT_H 1
-+| #define HAVE_NFSIDMAP_H 1
-+| #define HAVE_NFS4_SET_DEBUG 1
-+| #define HAVE_NFSIDMAP_H 1
-+| #define HAVE_NFS4_SET_DEBUG 1
-+| #define KRB5_VERSION 181
-+| #define HAVE_KRB5 1
-+| #define HAVE_DECL_AI_ADDRCONFIG 1
-+| #define HAVE_ARPA_INET_H 1
-+| #define HAVE_FCNTL_H 1
-+| #define HAVE_LIBINTL_H 1
-+| #define HAVE_LIMITS_H 1
-+| #define HAVE_MALLOC_H 1
-+| #define HAVE_MEMORY_H 1
-+| #define HAVE_NETDB_H 1
-+| #define HAVE_NETINET_IN_H 1
-+| #define HAVE_PATHS_H 1
-+| #define HAVE_STDLIB_H 1
-+| #define HAVE_STRING_H 1
-+| #define HAVE_SYS_FILE_H 1
-+| #define HAVE_SYS_IOCTL_H 1
-+| #define HAVE_SYS_MOUNT_H 1
-+| #define HAVE_SYS_PARAM_H 1
-+| #define HAVE_SYS_SOCKET_H 1
-+| #define HAVE_SYS_TIME_H 1
-+| #define HAVE_SYS_VFS_H 1
-+| #define HAVE_SYSLOG_H 1
-+| #define HAVE_UNISTD_H 1
-+| #define HAVE_ET_COM_ERR_H 1
-+| #define HAVE_IFADDRS_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
-+| int
-+| main ()
-+| {
-+| if (sizeof ((off_t)))
-+| return 0;
-+| ;
-+| return 0;
-+| }
-+configure:18359: result: yes
-+configure:18370: checking for pid_t
-+configure:18370: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -c -march=pentium-m -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include -D_GNU_SOURCE conftest.c >&5
-+configure:18370: $? = 0
-+configure:18370: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -c -march=pentium-m -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include -D_GNU_SOURCE conftest.c >&5
-+conftest.c: In function 'main':
-+conftest.c:97:20: error: expected expression before ')' token
-+configure:18370: $? = 1
-+configure: failed program was:
-+| /* confdefs.h */
-+| #define PACKAGE_NAME "linux nfs-utils"
-+| #define PACKAGE_TARNAME "nfs-utils"
-+| #define PACKAGE_VERSION "1.2.3"
-+| #define PACKAGE_STRING "linux nfs-utils 1.2.3"
-+| #define PACKAGE_BUGREPORT "linux-nfs@vger.kernel.org"
-+| #define PACKAGE_URL ""
-+| #define PACKAGE "nfs-utils"
-+| #define VERSION "1.2.3"
-+| #define START_STATD "/usr/sbin/start-statd"
-+| #define NFS3_SUPPORTED 1
-+| #define NFS4_SUPPORTED 1
-+| #define GSS_SUPPORTED 1
-+| #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 HAVE_LIBTIRPC 1
-+| #define HAVE__HOME_WBX_ADK_OPENADK_TARGET_I686_UCLIBC_USR_INCLUDE_TIRPC_NETCONFIG_H 1
-+| #define _FILE_OFFSET_BITS 64
-+| #define HAVE_DLFCN_H 1
-+| #define LT_OBJDIR ".libs/"
-+| #define STDC_HEADERS 1
-+| #define HAVE_EVENT_H 1
-+| #define HAVE_NFSIDMAP_H 1
-+| #define HAVE_NFS4_SET_DEBUG 1
-+| #define HAVE_NFSIDMAP_H 1
-+| #define HAVE_NFS4_SET_DEBUG 1
-+| #define KRB5_VERSION 181
-+| #define HAVE_KRB5 1
-+| #define HAVE_DECL_AI_ADDRCONFIG 1
-+| #define HAVE_ARPA_INET_H 1
-+| #define HAVE_FCNTL_H 1
-+| #define HAVE_LIBINTL_H 1
-+| #define HAVE_LIMITS_H 1
-+| #define HAVE_MALLOC_H 1
-+| #define HAVE_MEMORY_H 1
-+| #define HAVE_NETDB_H 1
-+| #define HAVE_NETINET_IN_H 1
-+| #define HAVE_PATHS_H 1
-+| #define HAVE_STDLIB_H 1
-+| #define HAVE_STRING_H 1
-+| #define HAVE_SYS_FILE_H 1
-+| #define HAVE_SYS_IOCTL_H 1
-+| #define HAVE_SYS_MOUNT_H 1
-+| #define HAVE_SYS_PARAM_H 1
-+| #define HAVE_SYS_SOCKET_H 1
-+| #define HAVE_SYS_TIME_H 1
-+| #define HAVE_SYS_VFS_H 1
-+| #define HAVE_SYSLOG_H 1
-+| #define HAVE_UNISTD_H 1
-+| #define HAVE_ET_COM_ERR_H 1
-+| #define HAVE_IFADDRS_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
-+| int
-+| main ()
-+| {
-+| if (sizeof ((pid_t)))
-+| return 0;
-+| ;
-+| return 0;
-+| }
-+configure:18370: result: yes
-+configure:18381: checking for size_t
-+configure:18381: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -c -march=pentium-m -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include -D_GNU_SOURCE conftest.c >&5
-+configure:18381: $? = 0
-+configure:18381: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -c -march=pentium-m -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include -D_GNU_SOURCE conftest.c >&5
-+conftest.c: In function 'main':
-+conftest.c:97:21: error: expected expression before ')' token
-+configure:18381: $? = 1
-+configure: failed program was:
-+| /* confdefs.h */
-+| #define PACKAGE_NAME "linux nfs-utils"
-+| #define PACKAGE_TARNAME "nfs-utils"
-+| #define PACKAGE_VERSION "1.2.3"
-+| #define PACKAGE_STRING "linux nfs-utils 1.2.3"
-+| #define PACKAGE_BUGREPORT "linux-nfs@vger.kernel.org"
-+| #define PACKAGE_URL ""
-+| #define PACKAGE "nfs-utils"
-+| #define VERSION "1.2.3"
-+| #define START_STATD "/usr/sbin/start-statd"
-+| #define NFS3_SUPPORTED 1
-+| #define NFS4_SUPPORTED 1
-+| #define GSS_SUPPORTED 1
-+| #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 HAVE_LIBTIRPC 1
-+| #define HAVE__HOME_WBX_ADK_OPENADK_TARGET_I686_UCLIBC_USR_INCLUDE_TIRPC_NETCONFIG_H 1
-+| #define _FILE_OFFSET_BITS 64
-+| #define HAVE_DLFCN_H 1
-+| #define LT_OBJDIR ".libs/"
-+| #define STDC_HEADERS 1
-+| #define HAVE_EVENT_H 1
-+| #define HAVE_NFSIDMAP_H 1
-+| #define HAVE_NFS4_SET_DEBUG 1
-+| #define HAVE_NFSIDMAP_H 1
-+| #define HAVE_NFS4_SET_DEBUG 1
-+| #define KRB5_VERSION 181
-+| #define HAVE_KRB5 1
-+| #define HAVE_DECL_AI_ADDRCONFIG 1
-+| #define HAVE_ARPA_INET_H 1
-+| #define HAVE_FCNTL_H 1
-+| #define HAVE_LIBINTL_H 1
-+| #define HAVE_LIMITS_H 1
-+| #define HAVE_MALLOC_H 1
-+| #define HAVE_MEMORY_H 1
-+| #define HAVE_NETDB_H 1
-+| #define HAVE_NETINET_IN_H 1
-+| #define HAVE_PATHS_H 1
-+| #define HAVE_STDLIB_H 1
-+| #define HAVE_STRING_H 1
-+| #define HAVE_SYS_FILE_H 1
-+| #define HAVE_SYS_IOCTL_H 1
-+| #define HAVE_SYS_MOUNT_H 1
-+| #define HAVE_SYS_PARAM_H 1
-+| #define HAVE_SYS_SOCKET_H 1
-+| #define HAVE_SYS_TIME_H 1
-+| #define HAVE_SYS_VFS_H 1
-+| #define HAVE_SYSLOG_H 1
-+| #define HAVE_UNISTD_H 1
-+| #define HAVE_ET_COM_ERR_H 1
-+| #define HAVE_IFADDRS_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
-+| int
-+| main ()
-+| {
-+| if (sizeof ((size_t)))
-+| return 0;
-+| ;
-+| return 0;
-+| }
-+configure:18381: result: yes
-+configure:18392: checking whether time.h and sys/time.h may both be included
-+configure:18412: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -c -march=pentium-m -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include -D_GNU_SOURCE conftest.c >&5
-+configure:18412: $? = 0
-+configure:18419: result: yes
-+configure:18427: checking whether struct tm is in sys/time.h or time.h
-+configure:18447: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -c -march=pentium-m -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include -D_GNU_SOURCE conftest.c >&5
-+configure:18447: $? = 0
-+configure:18454: result: time.h
-+configure:18465: checking for working alloca.h
-+configure:18482: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -o conftest -march=pentium-m -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include -D_GNU_SOURCE -Wl,-O2 -Wl,-rpath -Wl,/usr/lib -Wl,-rpath-link -Wl,/home/wbx/adk/openadk/target_i686_uclibc/usr/lib -L/home/wbx/adk/openadk/target_i686_uclibc/lib -L/home/wbx/adk/openadk/target_i686_uclibc/usr/lib conftest.c -ltirpc -lrpcsecgss >&5
-+/home/wbx/adk/openadk/target_i686_uclibc/usr/lib/libtirpc.so: warning: gethostbyname is obsolescent, use getnameinfo() instead.
-+configure:18482: $? = 0
-+configure:18490: result: yes
-+configure:18498: checking for alloca
-+configure:18535: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -o conftest -march=pentium-m -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include -D_GNU_SOURCE -Wl,-O2 -Wl,-rpath -Wl,/usr/lib -Wl,-rpath-link -Wl,/home/wbx/adk/openadk/target_i686_uclibc/usr/lib -L/home/wbx/adk/openadk/target_i686_uclibc/lib -L/home/wbx/adk/openadk/target_i686_uclibc/usr/lib conftest.c -ltirpc -lrpcsecgss >&5
-+/home/wbx/adk/openadk/target_i686_uclibc/usr/lib/libtirpc.so: warning: gethostbyname is obsolescent, use getnameinfo() instead.
-+configure:18535: $? = 0
-+configure:18543: result: yes
-+configure:18656: checking for dirent.h that defines DIR
-+configure:18675: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -c -march=pentium-m -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include -D_GNU_SOURCE conftest.c >&5
-+configure:18675: $? = 0
-+configure:18683: result: yes
-+configure:18697: checking for library containing opendir
-+configure:18728: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -o conftest -march=pentium-m -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include -D_GNU_SOURCE -Wl,-O2 -Wl,-rpath -Wl,/usr/lib -Wl,-rpath-link -Wl,/home/wbx/adk/openadk/target_i686_uclibc/usr/lib -L/home/wbx/adk/openadk/target_i686_uclibc/lib -L/home/wbx/adk/openadk/target_i686_uclibc/usr/lib conftest.c -ltirpc -lrpcsecgss >&5
-+/home/wbx/adk/openadk/target_i686_uclibc/usr/lib/libtirpc.so: warning: gethostbyname is obsolescent, use getnameinfo() instead.
-+configure:18728: $? = 0
-+configure:18745: result: none required
-+configure:18812: checking whether closedir returns void
-+configure:18846: result: yes
-+configure:18854: checking for error_at_line
-+configure:18870: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -o conftest -march=pentium-m -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include -D_GNU_SOURCE -Wl,-O2 -Wl,-rpath -Wl,/usr/lib -Wl,-rpath-link -Wl,/home/wbx/adk/openadk/target_i686_uclibc/usr/lib -L/home/wbx/adk/openadk/target_i686_uclibc/lib -L/home/wbx/adk/openadk/target_i686_uclibc/usr/lib conftest.c -ltirpc -lrpcsecgss >&5
-+/home/wbx/adk/openadk/target_i686_uclibc/usr/lib/libtirpc.so: warning: gethostbyname is obsolescent, use getnameinfo() instead.
-+configure:18870: $? = 0
-+configure:18878: result: yes
-+configure:18891: checking vfork.h usability
-+configure:18891: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -c -march=pentium-m -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include -D_GNU_SOURCE conftest.c >&5
-+conftest.c:99:19: fatal error: vfork.h: No such file or directory
-+compilation terminated.
-+configure:18891: $? = 1
-+configure: failed program was:
-+| /* confdefs.h */
-+| #define PACKAGE_NAME "linux nfs-utils"
-+| #define PACKAGE_TARNAME "nfs-utils"
-+| #define PACKAGE_VERSION "1.2.3"
-+| #define PACKAGE_STRING "linux nfs-utils 1.2.3"
-+| #define PACKAGE_BUGREPORT "linux-nfs@vger.kernel.org"
-+| #define PACKAGE_URL ""
-+| #define PACKAGE "nfs-utils"
-+| #define VERSION "1.2.3"
-+| #define START_STATD "/usr/sbin/start-statd"
-+| #define NFS3_SUPPORTED 1
-+| #define NFS4_SUPPORTED 1
-+| #define GSS_SUPPORTED 1
-+| #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 HAVE_LIBTIRPC 1
-+| #define HAVE__HOME_WBX_ADK_OPENADK_TARGET_I686_UCLIBC_USR_INCLUDE_TIRPC_NETCONFIG_H 1
-+| #define _FILE_OFFSET_BITS 64
-+| #define HAVE_DLFCN_H 1
-+| #define LT_OBJDIR ".libs/"
-+| #define STDC_HEADERS 1
-+| #define HAVE_EVENT_H 1
-+| #define HAVE_NFSIDMAP_H 1
-+| #define HAVE_NFS4_SET_DEBUG 1
-+| #define HAVE_NFSIDMAP_H 1
-+| #define HAVE_NFS4_SET_DEBUG 1
-+| #define KRB5_VERSION 181
-+| #define HAVE_KRB5 1
-+| #define HAVE_DECL_AI_ADDRCONFIG 1
-+| #define HAVE_ARPA_INET_H 1
-+| #define HAVE_FCNTL_H 1
-+| #define HAVE_LIBINTL_H 1
-+| #define HAVE_LIMITS_H 1
-+| #define HAVE_MALLOC_H 1
-+| #define HAVE_MEMORY_H 1
-+| #define HAVE_NETDB_H 1
-+| #define HAVE_NETINET_IN_H 1
-+| #define HAVE_PATHS_H 1
-+| #define HAVE_STDLIB_H 1
-+| #define HAVE_STRING_H 1
-+| #define HAVE_SYS_FILE_H 1
-+| #define HAVE_SYS_IOCTL_H 1
-+| #define HAVE_SYS_MOUNT_H 1
-+| #define HAVE_SYS_PARAM_H 1
-+| #define HAVE_SYS_SOCKET_H 1
-+| #define HAVE_SYS_TIME_H 1
-+| #define HAVE_SYS_VFS_H 1
-+| #define HAVE_SYSLOG_H 1
-+| #define HAVE_UNISTD_H 1
-+| #define HAVE_ET_COM_ERR_H 1
-+| #define HAVE_IFADDRS_H 1
-+| #define TIME_WITH_SYS_TIME 1
-+| #define HAVE_ALLOCA_H 1
-+| #define HAVE_ALLOCA 1
-+| #define HAVE_DIRENT_H 1
-+| #define CLOSEDIR_VOID 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 <vfork.h>
-+configure:18891: result: no
-+configure:18891: checking vfork.h presence
-+configure:18891: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -E -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include -D_GNU_SOURCE conftest.c
-+conftest.c:66:19: fatal error: vfork.h: No such file or directory
-+compilation terminated.
-+configure:18891: $? = 1
-+configure: failed program was:
-+| /* confdefs.h */
-+| #define PACKAGE_NAME "linux nfs-utils"
-+| #define PACKAGE_TARNAME "nfs-utils"
-+| #define PACKAGE_VERSION "1.2.3"
-+| #define PACKAGE_STRING "linux nfs-utils 1.2.3"
-+| #define PACKAGE_BUGREPORT "linux-nfs@vger.kernel.org"
-+| #define PACKAGE_URL ""
-+| #define PACKAGE "nfs-utils"
-+| #define VERSION "1.2.3"
-+| #define START_STATD "/usr/sbin/start-statd"
-+| #define NFS3_SUPPORTED 1
-+| #define NFS4_SUPPORTED 1
-+| #define GSS_SUPPORTED 1
-+| #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 HAVE_LIBTIRPC 1
-+| #define HAVE__HOME_WBX_ADK_OPENADK_TARGET_I686_UCLIBC_USR_INCLUDE_TIRPC_NETCONFIG_H 1
-+| #define _FILE_OFFSET_BITS 64
-+| #define HAVE_DLFCN_H 1
-+| #define LT_OBJDIR ".libs/"
-+| #define STDC_HEADERS 1
-+| #define HAVE_EVENT_H 1
-+| #define HAVE_NFSIDMAP_H 1
-+| #define HAVE_NFS4_SET_DEBUG 1
-+| #define HAVE_NFSIDMAP_H 1
-+| #define HAVE_NFS4_SET_DEBUG 1
-+| #define KRB5_VERSION 181
-+| #define HAVE_KRB5 1
-+| #define HAVE_DECL_AI_ADDRCONFIG 1
-+| #define HAVE_ARPA_INET_H 1
-+| #define HAVE_FCNTL_H 1
-+| #define HAVE_LIBINTL_H 1
-+| #define HAVE_LIMITS_H 1
-+| #define HAVE_MALLOC_H 1
-+| #define HAVE_MEMORY_H 1
-+| #define HAVE_NETDB_H 1
-+| #define HAVE_NETINET_IN_H 1
-+| #define HAVE_PATHS_H 1
-+| #define HAVE_STDLIB_H 1
-+| #define HAVE_STRING_H 1
-+| #define HAVE_SYS_FILE_H 1
-+| #define HAVE_SYS_IOCTL_H 1
-+| #define HAVE_SYS_MOUNT_H 1
-+| #define HAVE_SYS_PARAM_H 1
-+| #define HAVE_SYS_SOCKET_H 1
-+| #define HAVE_SYS_TIME_H 1
-+| #define HAVE_SYS_VFS_H 1
-+| #define HAVE_SYSLOG_H 1
-+| #define HAVE_UNISTD_H 1
-+| #define HAVE_ET_COM_ERR_H 1
-+| #define HAVE_IFADDRS_H 1
-+| #define TIME_WITH_SYS_TIME 1
-+| #define HAVE_ALLOCA_H 1
-+| #define HAVE_ALLOCA 1
-+| #define HAVE_DIRENT_H 1
-+| #define CLOSEDIR_VOID 1
-+| /* end confdefs.h. */
-+| #include <vfork.h>
-+configure:18891: result: no
-+configure:18891: checking for vfork.h
-+configure:18891: result: no
-+configure:18904: checking for fork
-+configure:18904: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -o conftest -march=pentium-m -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include -D_GNU_SOURCE -Wl,-O2 -Wl,-rpath -Wl,/usr/lib -Wl,-rpath-link -Wl,/home/wbx/adk/openadk/target_i686_uclibc/usr/lib -L/home/wbx/adk/openadk/target_i686_uclibc/lib -L/home/wbx/adk/openadk/target_i686_uclibc/usr/lib conftest.c -ltirpc -lrpcsecgss >&5
-+conftest.c:89:6: warning: conflicting types for built-in function 'fork'
-+/home/wbx/adk/openadk/target_i686_uclibc/usr/lib/libtirpc.so: warning: gethostbyname is obsolescent, use getnameinfo() instead.
-+configure:18904: $? = 0
-+configure:18904: result: yes
-+configure:18904: checking for vfork
-+configure:18904: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -o conftest -march=pentium-m -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include -D_GNU_SOURCE -Wl,-O2 -Wl,-rpath -Wl,/usr/lib -Wl,-rpath-link -Wl,/home/wbx/adk/openadk/target_i686_uclibc/usr/lib -L/home/wbx/adk/openadk/target_i686_uclibc/lib -L/home/wbx/adk/openadk/target_i686_uclibc/usr/lib conftest.c -ltirpc -lrpcsecgss >&5
-+/home/wbx/adk/openadk/target_i686_uclibc/usr/lib/libtirpc.so: warning: gethostbyname is obsolescent, use getnameinfo() instead.
-+configure:18904: $? = 0
-+configure:18904: result: yes
-+configure:18915: checking for working fork
-+configure:18947: result: cross
-+configure:18963: WARNING: result yes guessed because of cross compilation
-+configure:18968: checking for working vfork
-+configure:19078: result: yes
-+configure:19103: checking type of array argument to getgroups
-+configure:19162: result: gid_t
-+configure:19170: checking for getgroups
-+configure:19170: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -o conftest -march=pentium-m -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include -D_GNU_SOURCE -Wl,-O2 -Wl,-rpath -Wl,/usr/lib -Wl,-rpath-link -Wl,/home/wbx/adk/openadk/target_i686_uclibc/usr/lib -L/home/wbx/adk/openadk/target_i686_uclibc/lib -L/home/wbx/adk/openadk/target_i686_uclibc/usr/lib conftest.c -ltirpc -lrpcsecgss >&5
-+/home/wbx/adk/openadk/target_i686_uclibc/usr/lib/libtirpc.so: warning: gethostbyname is obsolescent, use getnameinfo() instead.
-+configure:19170: $? = 0
-+configure:19170: result: yes
-+configure:19225: checking for working getgroups
-+configure:19256: result: no
-+configure:19270: checking for library containing getmntent
-+configure:19301: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -o conftest -march=pentium-m -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include -D_GNU_SOURCE -Wl,-O2 -Wl,-rpath -Wl,/usr/lib -Wl,-rpath-link -Wl,/home/wbx/adk/openadk/target_i686_uclibc/usr/lib -L/home/wbx/adk/openadk/target_i686_uclibc/lib -L/home/wbx/adk/openadk/target_i686_uclibc/usr/lib conftest.c -ltirpc -lrpcsecgss >&5
-+/home/wbx/adk/openadk/target_i686_uclibc/usr/lib/libtirpc.so: warning: gethostbyname is obsolescent, use getnameinfo() instead.
-+configure:19301: $? = 0
-+configure:19318: result: none required
-+configure:19333: checking whether /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc needs -traditional
-+configure:19367: result: no
-+configure:19374: checking whether lstat correctly handles trailing slash
-+configure:19417: result: no
-+configure:19436: checking whether lstat accepts an empty string
-+configure:19466: result: yes
-+configure:19482: checking whether lstat correctly handles trailing slash
-+configure:19525: result: no
-+configure:19544: checking whether sys/types.h defines makedev
-+configure:19560: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -o conftest -march=pentium-m -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include -D_GNU_SOURCE -Wl,-O2 -Wl,-rpath -Wl,/usr/lib -Wl,-rpath-link -Wl,/home/wbx/adk/openadk/target_i686_uclibc/usr/lib -L/home/wbx/adk/openadk/target_i686_uclibc/lib -L/home/wbx/adk/openadk/target_i686_uclibc/usr/lib conftest.c -ltirpc -lrpcsecgss >&5
-+/home/wbx/adk/openadk/target_i686_uclibc/usr/lib/libtirpc.so: warning: gethostbyname is obsolescent, use getnameinfo() instead.
-+configure:19560: $? = 0
-+configure:19569: result: yes
-+configure:19595: checking for working memcmp
-+configure:19648: result: no
-+configure:19661: checking sys/select.h usability
-+configure:19661: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -c -march=pentium-m -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include -D_GNU_SOURCE conftest.c >&5
-+configure:19661: $? = 0
-+configure:19661: result: yes
-+configure:19661: checking sys/select.h presence
-+configure:19661: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -E -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include -D_GNU_SOURCE conftest.c
-+configure:19661: $? = 0
-+configure:19661: result: yes
-+configure:19661: checking for sys/select.h
-+configure:19661: result: yes
-+configure:19661: checking for sys/socket.h
-+configure:19661: result: yes
-+configure:19672: checking types of arguments for select
-+configure:19700: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -c -march=pentium-m -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include -D_GNU_SOURCE conftest.c >&5
-+configure:19700: $? = 0
-+configure:19711: result: int,fd_set *,struct timeval *
-+configure:19734: checking return type of signal handlers
-+configure:19752: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -c -march=pentium-m -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include -D_GNU_SOURCE conftest.c >&5
-+conftest.c: In function 'main':
-+conftest.c:84:1: error: void value not ignored as it ought to be
-+configure:19752: $? = 1
-+configure: failed program was:
-+| /* confdefs.h */
-+| #define PACKAGE_NAME "linux nfs-utils"
-+| #define PACKAGE_TARNAME "nfs-utils"
-+| #define PACKAGE_VERSION "1.2.3"
-+| #define PACKAGE_STRING "linux nfs-utils 1.2.3"
-+| #define PACKAGE_BUGREPORT "linux-nfs@vger.kernel.org"
-+| #define PACKAGE_URL ""
-+| #define PACKAGE "nfs-utils"
-+| #define VERSION "1.2.3"
-+| #define START_STATD "/usr/sbin/start-statd"
-+| #define NFS3_SUPPORTED 1
-+| #define NFS4_SUPPORTED 1
-+| #define GSS_SUPPORTED 1
-+| #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 HAVE_LIBTIRPC 1
-+| #define HAVE__HOME_WBX_ADK_OPENADK_TARGET_I686_UCLIBC_USR_INCLUDE_TIRPC_NETCONFIG_H 1
-+| #define _FILE_OFFSET_BITS 64
-+| #define HAVE_DLFCN_H 1
-+| #define LT_OBJDIR ".libs/"
-+| #define STDC_HEADERS 1
-+| #define HAVE_EVENT_H 1
-+| #define HAVE_NFSIDMAP_H 1
-+| #define HAVE_NFS4_SET_DEBUG 1
-+| #define HAVE_NFSIDMAP_H 1
-+| #define HAVE_NFS4_SET_DEBUG 1
-+| #define KRB5_VERSION 181
-+| #define HAVE_KRB5 1
-+| #define HAVE_DECL_AI_ADDRCONFIG 1
-+| #define HAVE_ARPA_INET_H 1
-+| #define HAVE_FCNTL_H 1
-+| #define HAVE_LIBINTL_H 1
-+| #define HAVE_LIMITS_H 1
-+| #define HAVE_MALLOC_H 1
-+| #define HAVE_MEMORY_H 1
-+| #define HAVE_NETDB_H 1
-+| #define HAVE_NETINET_IN_H 1
-+| #define HAVE_PATHS_H 1
-+| #define HAVE_STDLIB_H 1
-+| #define HAVE_STRING_H 1
-+| #define HAVE_SYS_FILE_H 1
-+| #define HAVE_SYS_IOCTL_H 1
-+| #define HAVE_SYS_MOUNT_H 1
-+| #define HAVE_SYS_PARAM_H 1
-+| #define HAVE_SYS_SOCKET_H 1
-+| #define HAVE_SYS_TIME_H 1
-+| #define HAVE_SYS_VFS_H 1
-+| #define HAVE_SYSLOG_H 1
-+| #define HAVE_UNISTD_H 1
-+| #define HAVE_ET_COM_ERR_H 1
-+| #define HAVE_IFADDRS_H 1
-+| #define TIME_WITH_SYS_TIME 1
-+| #define HAVE_ALLOCA_H 1
-+| #define HAVE_ALLOCA 1
-+| #define HAVE_DIRENT_H 1
-+| #define CLOSEDIR_VOID 1
-+| #define HAVE_FORK 1
-+| #define HAVE_VFORK 1
-+| #define HAVE_WORKING_VFORK 1
-+| #define HAVE_WORKING_FORK 1
-+| #define GETGROUPS_T gid_t
-+| #define HAVE_GETMNTENT 1
-+| #define HAVE_LSTAT_EMPTY_STRING_BUG 1
-+| #define HAVE_SYS_SELECT_H 1
-+| #define HAVE_SYS_SOCKET_H 1
-+| #define SELECT_TYPE_ARG1 int
-+| #define SELECT_TYPE_ARG234 (fd_set *)
-+| #define SELECT_TYPE_ARG5 (struct timeval *)
-+| /* end confdefs.h. */
-+| #include <sys/types.h>
-+| #include <signal.h>
-+|
-+| int
-+| main ()
-+| {
-+| return *(signal (0, 0)) (0) == 1;
-+| ;
-+| return 0;
-+| }
-+configure:19759: result: void
-+configure:19767: checking whether stat accepts an empty string
-+configure:19797: result: yes
-+configure:19815: checking for vprintf
-+configure:19815: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -o conftest -march=pentium-m -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include -D_GNU_SOURCE -Wl,-O2 -Wl,-rpath -Wl,/usr/lib -Wl,-rpath-link -Wl,/home/wbx/adk/openadk/target_i686_uclibc/usr/lib -L/home/wbx/adk/openadk/target_i686_uclibc/lib -L/home/wbx/adk/openadk/target_i686_uclibc/usr/lib conftest.c -ltirpc -lrpcsecgss >&5
-+conftest.c:103:6: warning: conflicting types for built-in function 'vprintf'
-+/home/wbx/adk/openadk/target_i686_uclibc/usr/lib/libtirpc.so: warning: gethostbyname is obsolescent, use getnameinfo() instead.
-+configure:19815: $? = 0
-+configure:19815: result: yes
-+configure:19821: checking for _doprnt
-+configure:19821: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -o conftest -march=pentium-m -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include -D_GNU_SOURCE -Wl,-O2 -Wl,-rpath -Wl,/usr/lib -Wl,-rpath-link -Wl,/home/wbx/adk/openadk/target_i686_uclibc/usr/lib -L/home/wbx/adk/openadk/target_i686_uclibc/lib -L/home/wbx/adk/openadk/target_i686_uclibc/usr/lib conftest.c -ltirpc -lrpcsecgss >&5
-+/home/wbx/adk/openadk/target_i686_uclibc/usr/lib/libtirpc.so: warning: gethostbyname is obsolescent, use getnameinfo() instead.
-+/tmp/ccFobr1P.o: In function `main':
-+conftest.c:(.text+0x12): undefined reference to `_doprnt'
-+collect2: ld returned 1 exit status
-+configure:19821: $? = 1
-+configure: failed program was:
-+| /* confdefs.h */
-+| #define PACKAGE_NAME "linux nfs-utils"
-+| #define PACKAGE_TARNAME "nfs-utils"
-+| #define PACKAGE_VERSION "1.2.3"
-+| #define PACKAGE_STRING "linux nfs-utils 1.2.3"
-+| #define PACKAGE_BUGREPORT "linux-nfs@vger.kernel.org"
-+| #define PACKAGE_URL ""
-+| #define PACKAGE "nfs-utils"
-+| #define VERSION "1.2.3"
-+| #define START_STATD "/usr/sbin/start-statd"
-+| #define NFS3_SUPPORTED 1
-+| #define NFS4_SUPPORTED 1
-+| #define GSS_SUPPORTED 1
-+| #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 HAVE_LIBTIRPC 1
-+| #define HAVE__HOME_WBX_ADK_OPENADK_TARGET_I686_UCLIBC_USR_INCLUDE_TIRPC_NETCONFIG_H 1
-+| #define _FILE_OFFSET_BITS 64
-+| #define HAVE_DLFCN_H 1
-+| #define LT_OBJDIR ".libs/"
-+| #define STDC_HEADERS 1
-+| #define HAVE_EVENT_H 1
-+| #define HAVE_NFSIDMAP_H 1
-+| #define HAVE_NFS4_SET_DEBUG 1
-+| #define HAVE_NFSIDMAP_H 1
-+| #define HAVE_NFS4_SET_DEBUG 1
-+| #define KRB5_VERSION 181
-+| #define HAVE_KRB5 1
-+| #define HAVE_DECL_AI_ADDRCONFIG 1
-+| #define HAVE_ARPA_INET_H 1
-+| #define HAVE_FCNTL_H 1
-+| #define HAVE_LIBINTL_H 1
-+| #define HAVE_LIMITS_H 1
-+| #define HAVE_MALLOC_H 1
-+| #define HAVE_MEMORY_H 1
-+| #define HAVE_NETDB_H 1
-+| #define HAVE_NETINET_IN_H 1
-+| #define HAVE_PATHS_H 1
-+| #define HAVE_STDLIB_H 1
-+| #define HAVE_STRING_H 1
-+| #define HAVE_SYS_FILE_H 1
-+| #define HAVE_SYS_IOCTL_H 1
-+| #define HAVE_SYS_MOUNT_H 1
-+| #define HAVE_SYS_PARAM_H 1
-+| #define HAVE_SYS_SOCKET_H 1
-+| #define HAVE_SYS_TIME_H 1
-+| #define HAVE_SYS_VFS_H 1
-+| #define HAVE_SYSLOG_H 1
-+| #define HAVE_UNISTD_H 1
-+| #define HAVE_ET_COM_ERR_H 1
-+| #define HAVE_IFADDRS_H 1
-+| #define TIME_WITH_SYS_TIME 1
-+| #define HAVE_ALLOCA_H 1
-+| #define HAVE_ALLOCA 1
-+| #define HAVE_DIRENT_H 1
-+| #define CLOSEDIR_VOID 1
-+| #define HAVE_FORK 1
-+| #define HAVE_VFORK 1
-+| #define HAVE_WORKING_VFORK 1
-+| #define HAVE_WORKING_FORK 1
-+| #define GETGROUPS_T gid_t
-+| #define HAVE_GETMNTENT 1
-+| #define HAVE_LSTAT_EMPTY_STRING_BUG 1
-+| #define HAVE_SYS_SELECT_H 1
-+| #define HAVE_SYS_SOCKET_H 1
-+| #define SELECT_TYPE_ARG1 int
-+| #define SELECT_TYPE_ARG234 (fd_set *)
-+| #define SELECT_TYPE_ARG5 (struct timeval *)
-+| #define RETSIGTYPE void
-+| #define HAVE_STAT_EMPTY_STRING_BUG 1
-+| #define HAVE_VPRINTF 1
-+| /* end confdefs.h. */
-+| /* Define _doprnt to an innocuous variant, in case <limits.h> declares _doprnt.
-+| For example, HP-UX 11i <limits.h> declares gettimeofday. */
-+| #define _doprnt innocuous__doprnt
-+|
-+| /* System header to define __stub macros and hopefully few prototypes,
-+| which can conflict with char _doprnt (); 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 _doprnt
-+|
-+| /* 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 _doprnt ();
-+| /* 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__doprnt || defined __stub____doprnt
-+| choke me
-+| #endif
-+|
-+| int
-+| main ()
-+| {
-+| return _doprnt ();
-+| ;
-+| return 0;
-+| }
-+configure:19821: result: no
-+configure:19840: checking for alarm
-+configure:19840: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -o conftest -march=pentium-m -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include -D_GNU_SOURCE -Wl,-O2 -Wl,-rpath -Wl,/usr/lib -Wl,-rpath-link -Wl,/home/wbx/adk/openadk/target_i686_uclibc/usr/lib -L/home/wbx/adk/openadk/target_i686_uclibc/lib -L/home/wbx/adk/openadk/target_i686_uclibc/usr/lib conftest.c -ltirpc -lrpcsecgss >&5
-+/home/wbx/adk/openadk/target_i686_uclibc/usr/lib/libtirpc.so: warning: gethostbyname is obsolescent, use getnameinfo() instead.
-+configure:19840: $? = 0
-+configure:19840: result: yes
-+configure:19840: checking for atexit
-+configure:19840: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -o conftest -march=pentium-m -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include -D_GNU_SOURCE -Wl,-O2 -Wl,-rpath -Wl,/usr/lib -Wl,-rpath-link -Wl,/home/wbx/adk/openadk/target_i686_uclibc/usr/lib -L/home/wbx/adk/openadk/target_i686_uclibc/lib -L/home/wbx/adk/openadk/target_i686_uclibc/usr/lib conftest.c -ltirpc -lrpcsecgss >&5
-+/home/wbx/adk/openadk/target_i686_uclibc/usr/lib/libtirpc.so: warning: gethostbyname is obsolescent, use getnameinfo() instead.
-+configure:19840: $? = 0
-+configure:19840: result: yes
-+configure:19840: checking for dup2
-+configure:19840: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -o conftest -march=pentium-m -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include -D_GNU_SOURCE -Wl,-O2 -Wl,-rpath -Wl,/usr/lib -Wl,-rpath-link -Wl,/home/wbx/adk/openadk/target_i686_uclibc/usr/lib -L/home/wbx/adk/openadk/target_i686_uclibc/lib -L/home/wbx/adk/openadk/target_i686_uclibc/usr/lib conftest.c -ltirpc -lrpcsecgss >&5
-+/home/wbx/adk/openadk/target_i686_uclibc/usr/lib/libtirpc.so: warning: gethostbyname is obsolescent, use getnameinfo() instead.
-+configure:19840: $? = 0
-+configure:19840: result: yes
-+configure:19840: checking for fdatasync
-+configure:19840: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -o conftest -march=pentium-m -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include -D_GNU_SOURCE -Wl,-O2 -Wl,-rpath -Wl,/usr/lib -Wl,-rpath-link -Wl,/home/wbx/adk/openadk/target_i686_uclibc/usr/lib -L/home/wbx/adk/openadk/target_i686_uclibc/lib -L/home/wbx/adk/openadk/target_i686_uclibc/usr/lib conftest.c -ltirpc -lrpcsecgss >&5
-+/home/wbx/adk/openadk/target_i686_uclibc/usr/lib/libtirpc.so: warning: gethostbyname is obsolescent, use getnameinfo() instead.
-+configure:19840: $? = 0
-+configure:19840: result: yes
-+configure:19840: checking for ftruncate
-+configure:19840: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -o conftest -march=pentium-m -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include -D_GNU_SOURCE -Wl,-O2 -Wl,-rpath -Wl,/usr/lib -Wl,-rpath-link -Wl,/home/wbx/adk/openadk/target_i686_uclibc/usr/lib -L/home/wbx/adk/openadk/target_i686_uclibc/lib -L/home/wbx/adk/openadk/target_i686_uclibc/usr/lib conftest.c -ltirpc -lrpcsecgss >&5
-+/home/wbx/adk/openadk/target_i686_uclibc/usr/lib/libtirpc.so: warning: gethostbyname is obsolescent, use getnameinfo() instead.
-+configure:19840: $? = 0
-+configure:19840: result: yes
-+configure:19840: checking for getcwd
-+configure:19840: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -o conftest -march=pentium-m -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include -D_GNU_SOURCE -Wl,-O2 -Wl,-rpath -Wl,/usr/lib -Wl,-rpath-link -Wl,/home/wbx/adk/openadk/target_i686_uclibc/usr/lib -L/home/wbx/adk/openadk/target_i686_uclibc/lib -L/home/wbx/adk/openadk/target_i686_uclibc/usr/lib conftest.c -ltirpc -lrpcsecgss >&5
-+/home/wbx/adk/openadk/target_i686_uclibc/usr/lib/libtirpc.so: warning: gethostbyname is obsolescent, use getnameinfo() instead.
-+configure:19840: $? = 0
-+configure:19840: result: yes
-+configure:19840: checking for gethostbyaddr
-+configure:19840: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -o conftest -march=pentium-m -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include -D_GNU_SOURCE -Wl,-O2 -Wl,-rpath -Wl,/usr/lib -Wl,-rpath-link -Wl,/home/wbx/adk/openadk/target_i686_uclibc/usr/lib -L/home/wbx/adk/openadk/target_i686_uclibc/lib -L/home/wbx/adk/openadk/target_i686_uclibc/usr/lib conftest.c -ltirpc -lrpcsecgss >&5
-+/tmp/ccMsHpoy.o: In function `main':
-+conftest.c:(.text+0x12): warning: gethostbyaddr is obsolescent, use getaddrinfo() instead.
-+/home/wbx/adk/openadk/target_i686_uclibc/usr/lib/libtirpc.so: warning: gethostbyname is obsolescent, use getnameinfo() instead.
-+configure:19840: $? = 0
-+configure:19840: result: yes
-+configure:19840: checking for gethostbyname
-+configure:19840: result: yes
-+configure:19840: checking for gethostname
-+configure:19840: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -o conftest -march=pentium-m -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include -D_GNU_SOURCE -Wl,-O2 -Wl,-rpath -Wl,/usr/lib -Wl,-rpath-link -Wl,/home/wbx/adk/openadk/target_i686_uclibc/usr/lib -L/home/wbx/adk/openadk/target_i686_uclibc/lib -L/home/wbx/adk/openadk/target_i686_uclibc/usr/lib conftest.c -ltirpc -lrpcsecgss >&5
-+/home/wbx/adk/openadk/target_i686_uclibc/usr/lib/libtirpc.so: warning: gethostbyname is obsolescent, use getnameinfo() instead.
-+configure:19840: $? = 0
-+configure:19840: result: yes
-+configure:19840: checking for getmntent
-+configure:19840: result: yes
-+configure:19840: checking for getnameinfo
-+configure:19840: result: yes
-+configure:19840: checking for getrpcbyname
-+configure:19840: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -o conftest -march=pentium-m -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include -D_GNU_SOURCE -Wl,-O2 -Wl,-rpath -Wl,/usr/lib -Wl,-rpath-link -Wl,/home/wbx/adk/openadk/target_i686_uclibc/usr/lib -L/home/wbx/adk/openadk/target_i686_uclibc/lib -L/home/wbx/adk/openadk/target_i686_uclibc/usr/lib conftest.c -ltirpc -lrpcsecgss >&5
-+/home/wbx/adk/openadk/target_i686_uclibc/usr/lib/libtirpc.so: warning: gethostbyname is obsolescent, use getnameinfo() instead.
-+configure:19840: $? = 0
-+configure:19840: result: yes
-+configure:19840: checking for getifaddrs
-+configure:19840: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -o conftest -march=pentium-m -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include -D_GNU_SOURCE -Wl,-O2 -Wl,-rpath -Wl,/usr/lib -Wl,-rpath-link -Wl,/home/wbx/adk/openadk/target_i686_uclibc/usr/lib -L/home/wbx/adk/openadk/target_i686_uclibc/lib -L/home/wbx/adk/openadk/target_i686_uclibc/usr/lib conftest.c -ltirpc -lrpcsecgss >&5
-+/home/wbx/adk/openadk/target_i686_uclibc/usr/lib/libtirpc.so: warning: gethostbyname is obsolescent, use getnameinfo() instead.
-+configure:19840: $? = 0
-+configure:19840: result: yes
-+configure:19840: checking for gettimeofday
-+configure:19840: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -o conftest -march=pentium-m -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include -D_GNU_SOURCE -Wl,-O2 -Wl,-rpath -Wl,/usr/lib -Wl,-rpath-link -Wl,/home/wbx/adk/openadk/target_i686_uclibc/usr/lib -L/home/wbx/adk/openadk/target_i686_uclibc/lib -L/home/wbx/adk/openadk/target_i686_uclibc/usr/lib conftest.c -ltirpc -lrpcsecgss >&5
-+/home/wbx/adk/openadk/target_i686_uclibc/usr/lib/libtirpc.so: warning: gethostbyname is obsolescent, use getnameinfo() instead.
-+configure:19840: $? = 0
-+configure:19840: result: yes
-+configure:19840: checking for hasmntopt
-+configure:19840: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -o conftest -march=pentium-m -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include -D_GNU_SOURCE -Wl,-O2 -Wl,-rpath -Wl,/usr/lib -Wl,-rpath-link -Wl,/home/wbx/adk/openadk/target_i686_uclibc/usr/lib -L/home/wbx/adk/openadk/target_i686_uclibc/lib -L/home/wbx/adk/openadk/target_i686_uclibc/usr/lib conftest.c -ltirpc -lrpcsecgss >&5
-+/home/wbx/adk/openadk/target_i686_uclibc/usr/lib/libtirpc.so: warning: gethostbyname is obsolescent, use getnameinfo() instead.
-+configure:19840: $? = 0
-+configure:19840: result: yes
-+configure:19840: checking for inet_ntoa
-+configure:19840: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -o conftest -march=pentium-m -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include -D_GNU_SOURCE -Wl,-O2 -Wl,-rpath -Wl,/usr/lib -Wl,-rpath-link -Wl,/home/wbx/adk/openadk/target_i686_uclibc/usr/lib -L/home/wbx/adk/openadk/target_i686_uclibc/lib -L/home/wbx/adk/openadk/target_i686_uclibc/usr/lib conftest.c -ltirpc -lrpcsecgss >&5
-+/home/wbx/adk/openadk/target_i686_uclibc/usr/lib/libtirpc.so: warning: gethostbyname is obsolescent, use getnameinfo() instead.
-+configure:19840: $? = 0
-+configure:19840: result: yes
-+configure:19840: checking for innetgr
-+configure:19840: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -o conftest -march=pentium-m -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include -D_GNU_SOURCE -Wl,-O2 -Wl,-rpath -Wl,/usr/lib -Wl,-rpath-link -Wl,/home/wbx/adk/openadk/target_i686_uclibc/usr/lib -L/home/wbx/adk/openadk/target_i686_uclibc/lib -L/home/wbx/adk/openadk/target_i686_uclibc/usr/lib conftest.c -ltirpc -lrpcsecgss >&5
-+/home/wbx/adk/openadk/target_i686_uclibc/usr/lib/libtirpc.so: warning: gethostbyname is obsolescent, use getnameinfo() instead.
-+/tmp/cc8RLUnr.o: In function `main':
-+conftest.c:(.text+0x12): undefined reference to `innetgr'
-+collect2: ld returned 1 exit status
-+configure:19840: $? = 1
-+configure: failed program was:
-+| /* confdefs.h */
-+| #define PACKAGE_NAME "linux nfs-utils"
-+| #define PACKAGE_TARNAME "nfs-utils"
-+| #define PACKAGE_VERSION "1.2.3"
-+| #define PACKAGE_STRING "linux nfs-utils 1.2.3"
-+| #define PACKAGE_BUGREPORT "linux-nfs@vger.kernel.org"
-+| #define PACKAGE_URL ""
-+| #define PACKAGE "nfs-utils"
-+| #define VERSION "1.2.3"
-+| #define START_STATD "/usr/sbin/start-statd"
-+| #define NFS3_SUPPORTED 1
-+| #define NFS4_SUPPORTED 1
-+| #define GSS_SUPPORTED 1
-+| #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 HAVE_LIBTIRPC 1
-+| #define HAVE__HOME_WBX_ADK_OPENADK_TARGET_I686_UCLIBC_USR_INCLUDE_TIRPC_NETCONFIG_H 1
-+| #define _FILE_OFFSET_BITS 64
-+| #define HAVE_DLFCN_H 1
-+| #define LT_OBJDIR ".libs/"
-+| #define STDC_HEADERS 1
-+| #define HAVE_EVENT_H 1
-+| #define HAVE_NFSIDMAP_H 1
-+| #define HAVE_NFS4_SET_DEBUG 1
-+| #define HAVE_NFSIDMAP_H 1
-+| #define HAVE_NFS4_SET_DEBUG 1
-+| #define KRB5_VERSION 181
-+| #define HAVE_KRB5 1
-+| #define HAVE_DECL_AI_ADDRCONFIG 1
-+| #define HAVE_ARPA_INET_H 1
-+| #define HAVE_FCNTL_H 1
-+| #define HAVE_LIBINTL_H 1
-+| #define HAVE_LIMITS_H 1
-+| #define HAVE_MALLOC_H 1
-+| #define HAVE_MEMORY_H 1
-+| #define HAVE_NETDB_H 1
-+| #define HAVE_NETINET_IN_H 1
-+| #define HAVE_PATHS_H 1
-+| #define HAVE_STDLIB_H 1
-+| #define HAVE_STRING_H 1
-+| #define HAVE_SYS_FILE_H 1
-+| #define HAVE_SYS_IOCTL_H 1
-+| #define HAVE_SYS_MOUNT_H 1
-+| #define HAVE_SYS_PARAM_H 1
-+| #define HAVE_SYS_SOCKET_H 1
-+| #define HAVE_SYS_TIME_H 1
-+| #define HAVE_SYS_VFS_H 1
-+| #define HAVE_SYSLOG_H 1
-+| #define HAVE_UNISTD_H 1
-+| #define HAVE_ET_COM_ERR_H 1
-+| #define HAVE_IFADDRS_H 1
-+| #define TIME_WITH_SYS_TIME 1
-+| #define HAVE_ALLOCA_H 1
-+| #define HAVE_ALLOCA 1
-+| #define HAVE_DIRENT_H 1
-+| #define CLOSEDIR_VOID 1
-+| #define HAVE_FORK 1
-+| #define HAVE_VFORK 1
-+| #define HAVE_WORKING_VFORK 1
-+| #define HAVE_WORKING_FORK 1
-+| #define GETGROUPS_T gid_t
-+| #define HAVE_GETMNTENT 1
-+| #define HAVE_LSTAT_EMPTY_STRING_BUG 1
-+| #define HAVE_SYS_SELECT_H 1
-+| #define HAVE_SYS_SOCKET_H 1
-+| #define SELECT_TYPE_ARG1 int
-+| #define SELECT_TYPE_ARG234 (fd_set *)
-+| #define SELECT_TYPE_ARG5 (struct timeval *)
-+| #define RETSIGTYPE void
-+| #define HAVE_STAT_EMPTY_STRING_BUG 1
-+| #define HAVE_VPRINTF 1
-+| #define HAVE_ALARM 1
-+| #define HAVE_ATEXIT 1
-+| #define HAVE_DUP2 1
-+| #define HAVE_FDATASYNC 1
-+| #define HAVE_FTRUNCATE 1
-+| #define HAVE_GETCWD 1
-+| #define HAVE_GETHOSTBYADDR 1
-+| #define HAVE_GETHOSTBYNAME 1
-+| #define HAVE_GETHOSTNAME 1
-+| #define HAVE_GETMNTENT 1
-+| #define HAVE_GETNAMEINFO 1
-+| #define HAVE_GETRPCBYNAME 1
-+| #define HAVE_GETIFADDRS 1
-+| #define HAVE_GETTIMEOFDAY 1
-+| #define HAVE_HASMNTOPT 1
-+| #define HAVE_INET_NTOA 1
-+| /* end confdefs.h. */
-+| /* Define innetgr to an innocuous variant, in case <limits.h> declares innetgr.
-+| For example, HP-UX 11i <limits.h> declares gettimeofday. */
-+| #define innetgr innocuous_innetgr
-+|
-+| /* System header to define __stub macros and hopefully few prototypes,
-+| which can conflict with char innetgr (); 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 innetgr
-+|
-+| /* 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 innetgr ();
-+| /* 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_innetgr || defined __stub___innetgr
-+| choke me
-+| #endif
-+|
-+| int
-+| main ()
-+| {
-+| return innetgr ();
-+| ;
-+| return 0;
-+| }
-+configure:19840: result: no
-+configure:19840: checking for memset
-+configure:19840: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -o conftest -march=pentium-m -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include -D_GNU_SOURCE -Wl,-O2 -Wl,-rpath -Wl,/usr/lib -Wl,-rpath-link -Wl,/home/wbx/adk/openadk/target_i686_uclibc/usr/lib -L/home/wbx/adk/openadk/target_i686_uclibc/lib -L/home/wbx/adk/openadk/target_i686_uclibc/usr/lib conftest.c -ltirpc -lrpcsecgss >&5
-+conftest.c:120:6: warning: conflicting types for built-in function 'memset'
-+/home/wbx/adk/openadk/target_i686_uclibc/usr/lib/libtirpc.so: warning: gethostbyname is obsolescent, use getnameinfo() instead.
-+configure:19840: $? = 0
-+configure:19840: result: yes
-+configure:19840: checking for mkdir
-+configure:19840: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -o conftest -march=pentium-m -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include -D_GNU_SOURCE -Wl,-O2 -Wl,-rpath -Wl,/usr/lib -Wl,-rpath-link -Wl,/home/wbx/adk/openadk/target_i686_uclibc/usr/lib -L/home/wbx/adk/openadk/target_i686_uclibc/lib -L/home/wbx/adk/openadk/target_i686_uclibc/usr/lib conftest.c -ltirpc -lrpcsecgss >&5
-+/home/wbx/adk/openadk/target_i686_uclibc/usr/lib/libtirpc.so: warning: gethostbyname is obsolescent, use getnameinfo() instead.
-+configure:19840: $? = 0
-+configure:19840: result: yes
-+configure:19840: checking for pathconf
-+configure:19840: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -o conftest -march=pentium-m -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include -D_GNU_SOURCE -Wl,-O2 -Wl,-rpath -Wl,/usr/lib -Wl,-rpath-link -Wl,/home/wbx/adk/openadk/target_i686_uclibc/usr/lib -L/home/wbx/adk/openadk/target_i686_uclibc/lib -L/home/wbx/adk/openadk/target_i686_uclibc/usr/lib conftest.c -ltirpc -lrpcsecgss >&5
-+/home/wbx/adk/openadk/target_i686_uclibc/usr/lib/libtirpc.so: warning: gethostbyname is obsolescent, use getnameinfo() instead.
-+configure:19840: $? = 0
-+configure:19840: result: yes
-+configure:19840: checking for realpath
-+configure:19840: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -o conftest -march=pentium-m -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include -D_GNU_SOURCE -Wl,-O2 -Wl,-rpath -Wl,/usr/lib -Wl,-rpath-link -Wl,/home/wbx/adk/openadk/target_i686_uclibc/usr/lib -L/home/wbx/adk/openadk/target_i686_uclibc/lib -L/home/wbx/adk/openadk/target_i686_uclibc/usr/lib conftest.c -ltirpc -lrpcsecgss >&5
-+/home/wbx/adk/openadk/target_i686_uclibc/usr/lib/libtirpc.so: warning: gethostbyname is obsolescent, use getnameinfo() instead.
-+configure:19840: $? = 0
-+configure:19840: result: yes
-+configure:19840: checking for rmdir
-+configure:19840: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -o conftest -march=pentium-m -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include -D_GNU_SOURCE -Wl,-O2 -Wl,-rpath -Wl,/usr/lib -Wl,-rpath-link -Wl,/home/wbx/adk/openadk/target_i686_uclibc/usr/lib -L/home/wbx/adk/openadk/target_i686_uclibc/lib -L/home/wbx/adk/openadk/target_i686_uclibc/usr/lib conftest.c -ltirpc -lrpcsecgss >&5
-+/home/wbx/adk/openadk/target_i686_uclibc/usr/lib/libtirpc.so: warning: gethostbyname is obsolescent, use getnameinfo() instead.
-+configure:19840: $? = 0
-+configure:19840: result: yes
-+configure:19840: checking for select
-+configure:19840: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -o conftest -march=pentium-m -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include -D_GNU_SOURCE -Wl,-O2 -Wl,-rpath -Wl,/usr/lib -Wl,-rpath-link -Wl,/home/wbx/adk/openadk/target_i686_uclibc/usr/lib -L/home/wbx/adk/openadk/target_i686_uclibc/lib -L/home/wbx/adk/openadk/target_i686_uclibc/usr/lib conftest.c -ltirpc -lrpcsecgss >&5
-+/home/wbx/adk/openadk/target_i686_uclibc/usr/lib/libtirpc.so: warning: gethostbyname is obsolescent, use getnameinfo() instead.
-+configure:19840: $? = 0
-+configure:19840: result: yes
-+configure:19840: checking for socket
-+configure:19840: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -o conftest -march=pentium-m -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include -D_GNU_SOURCE -Wl,-O2 -Wl,-rpath -Wl,/usr/lib -Wl,-rpath-link -Wl,/home/wbx/adk/openadk/target_i686_uclibc/usr/lib -L/home/wbx/adk/openadk/target_i686_uclibc/lib -L/home/wbx/adk/openadk/target_i686_uclibc/usr/lib conftest.c -ltirpc -lrpcsecgss >&5
-+/home/wbx/adk/openadk/target_i686_uclibc/usr/lib/libtirpc.so: warning: gethostbyname is obsolescent, use getnameinfo() instead.
-+configure:19840: $? = 0
-+configure:19840: result: yes
-+configure:19840: checking for strcasecmp
-+configure:19840: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -o conftest -march=pentium-m -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include -D_GNU_SOURCE -Wl,-O2 -Wl,-rpath -Wl,/usr/lib -Wl,-rpath-link -Wl,/home/wbx/adk/openadk/target_i686_uclibc/usr/lib -L/home/wbx/adk/openadk/target_i686_uclibc/lib -L/home/wbx/adk/openadk/target_i686_uclibc/usr/lib conftest.c -ltirpc -lrpcsecgss >&5
-+conftest.c:127:6: warning: conflicting types for built-in function 'strcasecmp'
-+/home/wbx/adk/openadk/target_i686_uclibc/usr/lib/libtirpc.so: warning: gethostbyname is obsolescent, use getnameinfo() instead.
-+configure:19840: $? = 0
-+configure:19840: result: yes
-+configure:19840: checking for strchr
-+configure:19840: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -o conftest -march=pentium-m -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include -D_GNU_SOURCE -Wl,-O2 -Wl,-rpath -Wl,/usr/lib -Wl,-rpath-link -Wl,/home/wbx/adk/openadk/target_i686_uclibc/usr/lib -L/home/wbx/adk/openadk/target_i686_uclibc/lib -L/home/wbx/adk/openadk/target_i686_uclibc/usr/lib conftest.c -ltirpc -lrpcsecgss >&5
-+conftest.c:128:6: warning: conflicting types for built-in function 'strchr'
-+/home/wbx/adk/openadk/target_i686_uclibc/usr/lib/libtirpc.so: warning: gethostbyname is obsolescent, use getnameinfo() instead.
-+configure:19840: $? = 0
-+configure:19840: result: yes
-+configure:19840: checking for strdup
-+configure:19840: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -o conftest -march=pentium-m -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include -D_GNU_SOURCE -Wl,-O2 -Wl,-rpath -Wl,/usr/lib -Wl,-rpath-link -Wl,/home/wbx/adk/openadk/target_i686_uclibc/usr/lib -L/home/wbx/adk/openadk/target_i686_uclibc/lib -L/home/wbx/adk/openadk/target_i686_uclibc/usr/lib conftest.c -ltirpc -lrpcsecgss >&5
-+conftest.c:129:6: warning: conflicting types for built-in function 'strdup'
-+/home/wbx/adk/openadk/target_i686_uclibc/usr/lib/libtirpc.so: warning: gethostbyname is obsolescent, use getnameinfo() instead.
-+configure:19840: $? = 0
-+configure:19840: result: yes
-+configure:19840: checking for strerror
-+configure:19840: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -o conftest -march=pentium-m -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include -D_GNU_SOURCE -Wl,-O2 -Wl,-rpath -Wl,/usr/lib -Wl,-rpath-link -Wl,/home/wbx/adk/openadk/target_i686_uclibc/usr/lib -L/home/wbx/adk/openadk/target_i686_uclibc/lib -L/home/wbx/adk/openadk/target_i686_uclibc/usr/lib conftest.c -ltirpc -lrpcsecgss >&5
-+/home/wbx/adk/openadk/target_i686_uclibc/usr/lib/libtirpc.so: warning: gethostbyname is obsolescent, use getnameinfo() instead.
-+configure:19840: $? = 0
-+configure:19840: result: yes
-+configure:19840: checking for strrchr
-+configure:19840: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -o conftest -march=pentium-m -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include -D_GNU_SOURCE -Wl,-O2 -Wl,-rpath -Wl,/usr/lib -Wl,-rpath-link -Wl,/home/wbx/adk/openadk/target_i686_uclibc/usr/lib -L/home/wbx/adk/openadk/target_i686_uclibc/lib -L/home/wbx/adk/openadk/target_i686_uclibc/usr/lib conftest.c -ltirpc -lrpcsecgss >&5
-+conftest.c:131:6: warning: conflicting types for built-in function 'strrchr'
-+/home/wbx/adk/openadk/target_i686_uclibc/usr/lib/libtirpc.so: warning: gethostbyname is obsolescent, use getnameinfo() instead.
-+configure:19840: $? = 0
-+configure:19840: result: yes
-+configure:19840: checking for strtol
-+configure:19840: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -o conftest -march=pentium-m -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include -D_GNU_SOURCE -Wl,-O2 -Wl,-rpath -Wl,/usr/lib -Wl,-rpath-link -Wl,/home/wbx/adk/openadk/target_i686_uclibc/usr/lib -L/home/wbx/adk/openadk/target_i686_uclibc/lib -L/home/wbx/adk/openadk/target_i686_uclibc/usr/lib conftest.c -ltirpc -lrpcsecgss >&5
-+/home/wbx/adk/openadk/target_i686_uclibc/usr/lib/libtirpc.so: warning: gethostbyname is obsolescent, use getnameinfo() instead.
-+configure:19840: $? = 0
-+configure:19840: result: yes
-+configure:19840: checking for strtoul
-+configure:19840: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -o conftest -march=pentium-m -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include -D_GNU_SOURCE -Wl,-O2 -Wl,-rpath -Wl,/usr/lib -Wl,-rpath-link -Wl,/home/wbx/adk/openadk/target_i686_uclibc/usr/lib -L/home/wbx/adk/openadk/target_i686_uclibc/lib -L/home/wbx/adk/openadk/target_i686_uclibc/usr/lib conftest.c -ltirpc -lrpcsecgss >&5
-+/home/wbx/adk/openadk/target_i686_uclibc/usr/lib/libtirpc.so: warning: gethostbyname is obsolescent, use getnameinfo() instead.
-+configure:19840: $? = 0
-+configure:19840: result: yes
-+configure:19840: checking for sigprocmask
-+configure:19840: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -o conftest -march=pentium-m -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include -D_GNU_SOURCE -Wl,-O2 -Wl,-rpath -Wl,/usr/lib -Wl,-rpath-link -Wl,/home/wbx/adk/openadk/target_i686_uclibc/usr/lib -L/home/wbx/adk/openadk/target_i686_uclibc/lib -L/home/wbx/adk/openadk/target_i686_uclibc/usr/lib conftest.c -ltirpc -lrpcsecgss >&5
-+/home/wbx/adk/openadk/target_i686_uclibc/usr/lib/libtirpc.so: warning: gethostbyname is obsolescent, use getnameinfo() instead.
-+configure:19840: $? = 0
-+configure:19840: result: yes
-+configure:19856: checking size of short
-+configure:19861: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -c -march=pentium-m -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include -D_GNU_SOURCE conftest.c >&5
-+configure:19861: $? = 0
-+configure:19861: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -c -march=pentium-m -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include -D_GNU_SOURCE conftest.c >&5
-+conftest.c: In function 'main':
-+conftest.c:148:12: error: size of array 'test_array' is negative
-+configure:19861: $? = 1
-+configure: failed program was:
-+| /* confdefs.h */
-+| #define PACKAGE_NAME "linux nfs-utils"
-+| #define PACKAGE_TARNAME "nfs-utils"
-+| #define PACKAGE_VERSION "1.2.3"
-+| #define PACKAGE_STRING "linux nfs-utils 1.2.3"
-+| #define PACKAGE_BUGREPORT "linux-nfs@vger.kernel.org"
-+| #define PACKAGE_URL ""
-+| #define PACKAGE "nfs-utils"
-+| #define VERSION "1.2.3"
-+| #define START_STATD "/usr/sbin/start-statd"
-+| #define NFS3_SUPPORTED 1
-+| #define NFS4_SUPPORTED 1
-+| #define GSS_SUPPORTED 1
-+| #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 HAVE_LIBTIRPC 1
-+| #define HAVE__HOME_WBX_ADK_OPENADK_TARGET_I686_UCLIBC_USR_INCLUDE_TIRPC_NETCONFIG_H 1
-+| #define _FILE_OFFSET_BITS 64
-+| #define HAVE_DLFCN_H 1
-+| #define LT_OBJDIR ".libs/"
-+| #define STDC_HEADERS 1
-+| #define HAVE_EVENT_H 1
-+| #define HAVE_NFSIDMAP_H 1
-+| #define HAVE_NFS4_SET_DEBUG 1
-+| #define HAVE_NFSIDMAP_H 1
-+| #define HAVE_NFS4_SET_DEBUG 1
-+| #define KRB5_VERSION 181
-+| #define HAVE_KRB5 1
-+| #define HAVE_DECL_AI_ADDRCONFIG 1
-+| #define HAVE_ARPA_INET_H 1
-+| #define HAVE_FCNTL_H 1
-+| #define HAVE_LIBINTL_H 1
-+| #define HAVE_LIMITS_H 1
-+| #define HAVE_MALLOC_H 1
-+| #define HAVE_MEMORY_H 1
-+| #define HAVE_NETDB_H 1
-+| #define HAVE_NETINET_IN_H 1
-+| #define HAVE_PATHS_H 1
-+| #define HAVE_STDLIB_H 1
-+| #define HAVE_STRING_H 1
-+| #define HAVE_SYS_FILE_H 1
-+| #define HAVE_SYS_IOCTL_H 1
-+| #define HAVE_SYS_MOUNT_H 1
-+| #define HAVE_SYS_PARAM_H 1
-+| #define HAVE_SYS_SOCKET_H 1
-+| #define HAVE_SYS_TIME_H 1
-+| #define HAVE_SYS_VFS_H 1
-+| #define HAVE_SYSLOG_H 1
-+| #define HAVE_UNISTD_H 1
-+| #define HAVE_ET_COM_ERR_H 1
-+| #define HAVE_IFADDRS_H 1
-+| #define TIME_WITH_SYS_TIME 1
-+| #define HAVE_ALLOCA_H 1
-+| #define HAVE_ALLOCA 1
-+| #define HAVE_DIRENT_H 1
-+| #define CLOSEDIR_VOID 1
-+| #define HAVE_FORK 1
-+| #define HAVE_VFORK 1
-+| #define HAVE_WORKING_VFORK 1
-+| #define HAVE_WORKING_FORK 1
-+| #define GETGROUPS_T gid_t
-+| #define HAVE_GETMNTENT 1
-+| #define HAVE_LSTAT_EMPTY_STRING_BUG 1
-+| #define HAVE_SYS_SELECT_H 1
-+| #define HAVE_SYS_SOCKET_H 1
-+| #define SELECT_TYPE_ARG1 int
-+| #define SELECT_TYPE_ARG234 (fd_set *)
-+| #define SELECT_TYPE_ARG5 (struct timeval *)
-+| #define RETSIGTYPE void
-+| #define HAVE_STAT_EMPTY_STRING_BUG 1
-+| #define HAVE_VPRINTF 1
-+| #define HAVE_ALARM 1
-+| #define HAVE_ATEXIT 1
-+| #define HAVE_DUP2 1
-+| #define HAVE_FDATASYNC 1
-+| #define HAVE_FTRUNCATE 1
-+| #define HAVE_GETCWD 1
-+| #define HAVE_GETHOSTBYADDR 1
-+| #define HAVE_GETHOSTBYNAME 1
-+| #define HAVE_GETHOSTNAME 1
-+| #define HAVE_GETMNTENT 1
-+| #define HAVE_GETNAMEINFO 1
-+| #define HAVE_GETRPCBYNAME 1
-+| #define HAVE_GETIFADDRS 1
-+| #define HAVE_GETTIMEOFDAY 1
-+| #define HAVE_HASMNTOPT 1
-+| #define HAVE_INET_NTOA 1
-+| #define HAVE_MEMSET 1
-+| #define HAVE_MKDIR 1
-+| #define HAVE_PATHCONF 1
-+| #define HAVE_REALPATH 1
-+| #define HAVE_RMDIR 1
-+| #define HAVE_SELECT 1
-+| #define HAVE_SOCKET 1
-+| #define HAVE_STRCASECMP 1
-+| #define HAVE_STRCHR 1
-+| #define HAVE_STRDUP 1
-+| #define HAVE_STRERROR 1
-+| #define HAVE_STRRCHR 1
-+| #define HAVE_STRTOL 1
-+| #define HAVE_STRTOUL 1
-+| #define HAVE_SIGPROCMASK 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
-+| int
-+| main ()
-+| {
-+| static int test_array [1 - 2 * !(((long int) (sizeof (short))) <= 0)];
-+| test_array [0] = 0
-+|
-+| ;
-+| return 0;
-+| }
-+configure:19861: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -c -march=pentium-m -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include -D_GNU_SOURCE conftest.c >&5
-+conftest.c: In function 'main':
-+conftest.c:148:12: error: size of array 'test_array' is negative
-+configure:19861: $? = 1
-+configure: failed program was:
-+| /* confdefs.h */
-+| #define PACKAGE_NAME "linux nfs-utils"
-+| #define PACKAGE_TARNAME "nfs-utils"
-+| #define PACKAGE_VERSION "1.2.3"
-+| #define PACKAGE_STRING "linux nfs-utils 1.2.3"
-+| #define PACKAGE_BUGREPORT "linux-nfs@vger.kernel.org"
-+| #define PACKAGE_URL ""
-+| #define PACKAGE "nfs-utils"
-+| #define VERSION "1.2.3"
-+| #define START_STATD "/usr/sbin/start-statd"
-+| #define NFS3_SUPPORTED 1
-+| #define NFS4_SUPPORTED 1
-+| #define GSS_SUPPORTED 1
-+| #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 HAVE_LIBTIRPC 1
-+| #define HAVE__HOME_WBX_ADK_OPENADK_TARGET_I686_UCLIBC_USR_INCLUDE_TIRPC_NETCONFIG_H 1
-+| #define _FILE_OFFSET_BITS 64
-+| #define HAVE_DLFCN_H 1
-+| #define LT_OBJDIR ".libs/"
-+| #define STDC_HEADERS 1
-+| #define HAVE_EVENT_H 1
-+| #define HAVE_NFSIDMAP_H 1
-+| #define HAVE_NFS4_SET_DEBUG 1
-+| #define HAVE_NFSIDMAP_H 1
-+| #define HAVE_NFS4_SET_DEBUG 1
-+| #define KRB5_VERSION 181
-+| #define HAVE_KRB5 1
-+| #define HAVE_DECL_AI_ADDRCONFIG 1
-+| #define HAVE_ARPA_INET_H 1
-+| #define HAVE_FCNTL_H 1
-+| #define HAVE_LIBINTL_H 1
-+| #define HAVE_LIMITS_H 1
-+| #define HAVE_MALLOC_H 1
-+| #define HAVE_MEMORY_H 1
-+| #define HAVE_NETDB_H 1
-+| #define HAVE_NETINET_IN_H 1
-+| #define HAVE_PATHS_H 1
-+| #define HAVE_STDLIB_H 1
-+| #define HAVE_STRING_H 1
-+| #define HAVE_SYS_FILE_H 1
-+| #define HAVE_SYS_IOCTL_H 1
-+| #define HAVE_SYS_MOUNT_H 1
-+| #define HAVE_SYS_PARAM_H 1
-+| #define HAVE_SYS_SOCKET_H 1
-+| #define HAVE_SYS_TIME_H 1
-+| #define HAVE_SYS_VFS_H 1
-+| #define HAVE_SYSLOG_H 1
-+| #define HAVE_UNISTD_H 1
-+| #define HAVE_ET_COM_ERR_H 1
-+| #define HAVE_IFADDRS_H 1
-+| #define TIME_WITH_SYS_TIME 1
-+| #define HAVE_ALLOCA_H 1
-+| #define HAVE_ALLOCA 1
-+| #define HAVE_DIRENT_H 1
-+| #define CLOSEDIR_VOID 1
-+| #define HAVE_FORK 1
-+| #define HAVE_VFORK 1
-+| #define HAVE_WORKING_VFORK 1
-+| #define HAVE_WORKING_FORK 1
-+| #define GETGROUPS_T gid_t
-+| #define HAVE_GETMNTENT 1
-+| #define HAVE_LSTAT_EMPTY_STRING_BUG 1
-+| #define HAVE_SYS_SELECT_H 1
-+| #define HAVE_SYS_SOCKET_H 1
-+| #define SELECT_TYPE_ARG1 int
-+| #define SELECT_TYPE_ARG234 (fd_set *)
-+| #define SELECT_TYPE_ARG5 (struct timeval *)
-+| #define RETSIGTYPE void
-+| #define HAVE_STAT_EMPTY_STRING_BUG 1
-+| #define HAVE_VPRINTF 1
-+| #define HAVE_ALARM 1
-+| #define HAVE_ATEXIT 1
-+| #define HAVE_DUP2 1
-+| #define HAVE_FDATASYNC 1
-+| #define HAVE_FTRUNCATE 1
-+| #define HAVE_GETCWD 1
-+| #define HAVE_GETHOSTBYADDR 1
-+| #define HAVE_GETHOSTBYNAME 1
-+| #define HAVE_GETHOSTNAME 1
-+| #define HAVE_GETMNTENT 1
-+| #define HAVE_GETNAMEINFO 1
-+| #define HAVE_GETRPCBYNAME 1
-+| #define HAVE_GETIFADDRS 1
-+| #define HAVE_GETTIMEOFDAY 1
-+| #define HAVE_HASMNTOPT 1
-+| #define HAVE_INET_NTOA 1
-+| #define HAVE_MEMSET 1
-+| #define HAVE_MKDIR 1
-+| #define HAVE_PATHCONF 1
-+| #define HAVE_REALPATH 1
-+| #define HAVE_RMDIR 1
-+| #define HAVE_SELECT 1
-+| #define HAVE_SOCKET 1
-+| #define HAVE_STRCASECMP 1
-+| #define HAVE_STRCHR 1
-+| #define HAVE_STRDUP 1
-+| #define HAVE_STRERROR 1
-+| #define HAVE_STRRCHR 1
-+| #define HAVE_STRTOL 1
-+| #define HAVE_STRTOUL 1
-+| #define HAVE_SIGPROCMASK 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
-+| int
-+| main ()
-+| {
-+| static int test_array [1 - 2 * !(((long int) (sizeof (short))) <= 1)];
-+| test_array [0] = 0
-+|
-+| ;
-+| return 0;
-+| }
-+configure:19861: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -c -march=pentium-m -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include -D_GNU_SOURCE conftest.c >&5
-+configure:19861: $? = 0
-+configure:19861: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -c -march=pentium-m -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include -D_GNU_SOURCE conftest.c >&5
-+configure:19861: $? = 0
-+configure:19876: result: 2
-+configure:19890: checking size of int
-+configure:19895: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -c -march=pentium-m -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include -D_GNU_SOURCE conftest.c >&5
-+configure:19895: $? = 0
-+configure:19895: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -c -march=pentium-m -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include -D_GNU_SOURCE conftest.c >&5
-+conftest.c: In function 'main':
-+conftest.c:149:12: error: size of array 'test_array' is negative
-+configure:19895: $? = 1
-+configure: failed program was:
-+| /* confdefs.h */
-+| #define PACKAGE_NAME "linux nfs-utils"
-+| #define PACKAGE_TARNAME "nfs-utils"
-+| #define PACKAGE_VERSION "1.2.3"
-+| #define PACKAGE_STRING "linux nfs-utils 1.2.3"
-+| #define PACKAGE_BUGREPORT "linux-nfs@vger.kernel.org"
-+| #define PACKAGE_URL ""
-+| #define PACKAGE "nfs-utils"
-+| #define VERSION "1.2.3"
-+| #define START_STATD "/usr/sbin/start-statd"
-+| #define NFS3_SUPPORTED 1
-+| #define NFS4_SUPPORTED 1
-+| #define GSS_SUPPORTED 1
-+| #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 HAVE_LIBTIRPC 1
-+| #define HAVE__HOME_WBX_ADK_OPENADK_TARGET_I686_UCLIBC_USR_INCLUDE_TIRPC_NETCONFIG_H 1
-+| #define _FILE_OFFSET_BITS 64
-+| #define HAVE_DLFCN_H 1
-+| #define LT_OBJDIR ".libs/"
-+| #define STDC_HEADERS 1
-+| #define HAVE_EVENT_H 1
-+| #define HAVE_NFSIDMAP_H 1
-+| #define HAVE_NFS4_SET_DEBUG 1
-+| #define HAVE_NFSIDMAP_H 1
-+| #define HAVE_NFS4_SET_DEBUG 1
-+| #define KRB5_VERSION 181
-+| #define HAVE_KRB5 1
-+| #define HAVE_DECL_AI_ADDRCONFIG 1
-+| #define HAVE_ARPA_INET_H 1
-+| #define HAVE_FCNTL_H 1
-+| #define HAVE_LIBINTL_H 1
-+| #define HAVE_LIMITS_H 1
-+| #define HAVE_MALLOC_H 1
-+| #define HAVE_MEMORY_H 1
-+| #define HAVE_NETDB_H 1
-+| #define HAVE_NETINET_IN_H 1
-+| #define HAVE_PATHS_H 1
-+| #define HAVE_STDLIB_H 1
-+| #define HAVE_STRING_H 1
-+| #define HAVE_SYS_FILE_H 1
-+| #define HAVE_SYS_IOCTL_H 1
-+| #define HAVE_SYS_MOUNT_H 1
-+| #define HAVE_SYS_PARAM_H 1
-+| #define HAVE_SYS_SOCKET_H 1
-+| #define HAVE_SYS_TIME_H 1
-+| #define HAVE_SYS_VFS_H 1
-+| #define HAVE_SYSLOG_H 1
-+| #define HAVE_UNISTD_H 1
-+| #define HAVE_ET_COM_ERR_H 1
-+| #define HAVE_IFADDRS_H 1
-+| #define TIME_WITH_SYS_TIME 1
-+| #define HAVE_ALLOCA_H 1
-+| #define HAVE_ALLOCA 1
-+| #define HAVE_DIRENT_H 1
-+| #define CLOSEDIR_VOID 1
-+| #define HAVE_FORK 1
-+| #define HAVE_VFORK 1
-+| #define HAVE_WORKING_VFORK 1
-+| #define HAVE_WORKING_FORK 1
-+| #define GETGROUPS_T gid_t
-+| #define HAVE_GETMNTENT 1
-+| #define HAVE_LSTAT_EMPTY_STRING_BUG 1
-+| #define HAVE_SYS_SELECT_H 1
-+| #define HAVE_SYS_SOCKET_H 1
-+| #define SELECT_TYPE_ARG1 int
-+| #define SELECT_TYPE_ARG234 (fd_set *)
-+| #define SELECT_TYPE_ARG5 (struct timeval *)
-+| #define RETSIGTYPE void
-+| #define HAVE_STAT_EMPTY_STRING_BUG 1
-+| #define HAVE_VPRINTF 1
-+| #define HAVE_ALARM 1
-+| #define HAVE_ATEXIT 1
-+| #define HAVE_DUP2 1
-+| #define HAVE_FDATASYNC 1
-+| #define HAVE_FTRUNCATE 1
-+| #define HAVE_GETCWD 1
-+| #define HAVE_GETHOSTBYADDR 1
-+| #define HAVE_GETHOSTBYNAME 1
-+| #define HAVE_GETHOSTNAME 1
-+| #define HAVE_GETMNTENT 1
-+| #define HAVE_GETNAMEINFO 1
-+| #define HAVE_GETRPCBYNAME 1
-+| #define HAVE_GETIFADDRS 1
-+| #define HAVE_GETTIMEOFDAY 1
-+| #define HAVE_HASMNTOPT 1
-+| #define HAVE_INET_NTOA 1
-+| #define HAVE_MEMSET 1
-+| #define HAVE_MKDIR 1
-+| #define HAVE_PATHCONF 1
-+| #define HAVE_REALPATH 1
-+| #define HAVE_RMDIR 1
-+| #define HAVE_SELECT 1
-+| #define HAVE_SOCKET 1
-+| #define HAVE_STRCASECMP 1
-+| #define HAVE_STRCHR 1
-+| #define HAVE_STRDUP 1
-+| #define HAVE_STRERROR 1
-+| #define HAVE_STRRCHR 1
-+| #define HAVE_STRTOL 1
-+| #define HAVE_STRTOUL 1
-+| #define HAVE_SIGPROCMASK 1
-+| #define SIZEOF_SHORT 2
-+| /* 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
-+| int
-+| main ()
-+| {
-+| static int test_array [1 - 2 * !(((long int) (sizeof (int))) <= 0)];
-+| test_array [0] = 0
-+|
-+| ;
-+| return 0;
-+| }
-+configure:19895: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -c -march=pentium-m -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include -D_GNU_SOURCE conftest.c >&5
-+conftest.c: In function 'main':
-+conftest.c:149:12: error: size of array 'test_array' is negative
-+configure:19895: $? = 1
-+configure: failed program was:
-+| /* confdefs.h */
-+| #define PACKAGE_NAME "linux nfs-utils"
-+| #define PACKAGE_TARNAME "nfs-utils"
-+| #define PACKAGE_VERSION "1.2.3"
-+| #define PACKAGE_STRING "linux nfs-utils 1.2.3"
-+| #define PACKAGE_BUGREPORT "linux-nfs@vger.kernel.org"
-+| #define PACKAGE_URL ""
-+| #define PACKAGE "nfs-utils"
-+| #define VERSION "1.2.3"
-+| #define START_STATD "/usr/sbin/start-statd"
-+| #define NFS3_SUPPORTED 1
-+| #define NFS4_SUPPORTED 1
-+| #define GSS_SUPPORTED 1
-+| #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 HAVE_LIBTIRPC 1
-+| #define HAVE__HOME_WBX_ADK_OPENADK_TARGET_I686_UCLIBC_USR_INCLUDE_TIRPC_NETCONFIG_H 1
-+| #define _FILE_OFFSET_BITS 64
-+| #define HAVE_DLFCN_H 1
-+| #define LT_OBJDIR ".libs/"
-+| #define STDC_HEADERS 1
-+| #define HAVE_EVENT_H 1
-+| #define HAVE_NFSIDMAP_H 1
-+| #define HAVE_NFS4_SET_DEBUG 1
-+| #define HAVE_NFSIDMAP_H 1
-+| #define HAVE_NFS4_SET_DEBUG 1
-+| #define KRB5_VERSION 181
-+| #define HAVE_KRB5 1
-+| #define HAVE_DECL_AI_ADDRCONFIG 1
-+| #define HAVE_ARPA_INET_H 1
-+| #define HAVE_FCNTL_H 1
-+| #define HAVE_LIBINTL_H 1
-+| #define HAVE_LIMITS_H 1
-+| #define HAVE_MALLOC_H 1
-+| #define HAVE_MEMORY_H 1
-+| #define HAVE_NETDB_H 1
-+| #define HAVE_NETINET_IN_H 1
-+| #define HAVE_PATHS_H 1
-+| #define HAVE_STDLIB_H 1
-+| #define HAVE_STRING_H 1
-+| #define HAVE_SYS_FILE_H 1
-+| #define HAVE_SYS_IOCTL_H 1
-+| #define HAVE_SYS_MOUNT_H 1
-+| #define HAVE_SYS_PARAM_H 1
-+| #define HAVE_SYS_SOCKET_H 1
-+| #define HAVE_SYS_TIME_H 1
-+| #define HAVE_SYS_VFS_H 1
-+| #define HAVE_SYSLOG_H 1
-+| #define HAVE_UNISTD_H 1
-+| #define HAVE_ET_COM_ERR_H 1
-+| #define HAVE_IFADDRS_H 1
-+| #define TIME_WITH_SYS_TIME 1
-+| #define HAVE_ALLOCA_H 1
-+| #define HAVE_ALLOCA 1
-+| #define HAVE_DIRENT_H 1
-+| #define CLOSEDIR_VOID 1
-+| #define HAVE_FORK 1
-+| #define HAVE_VFORK 1
-+| #define HAVE_WORKING_VFORK 1
-+| #define HAVE_WORKING_FORK 1
-+| #define GETGROUPS_T gid_t
-+| #define HAVE_GETMNTENT 1
-+| #define HAVE_LSTAT_EMPTY_STRING_BUG 1
-+| #define HAVE_SYS_SELECT_H 1
-+| #define HAVE_SYS_SOCKET_H 1
-+| #define SELECT_TYPE_ARG1 int
-+| #define SELECT_TYPE_ARG234 (fd_set *)
-+| #define SELECT_TYPE_ARG5 (struct timeval *)
-+| #define RETSIGTYPE void
-+| #define HAVE_STAT_EMPTY_STRING_BUG 1
-+| #define HAVE_VPRINTF 1
-+| #define HAVE_ALARM 1
-+| #define HAVE_ATEXIT 1
-+| #define HAVE_DUP2 1
-+| #define HAVE_FDATASYNC 1
-+| #define HAVE_FTRUNCATE 1
-+| #define HAVE_GETCWD 1
-+| #define HAVE_GETHOSTBYADDR 1
-+| #define HAVE_GETHOSTBYNAME 1
-+| #define HAVE_GETHOSTNAME 1
-+| #define HAVE_GETMNTENT 1
-+| #define HAVE_GETNAMEINFO 1
-+| #define HAVE_GETRPCBYNAME 1
-+| #define HAVE_GETIFADDRS 1
-+| #define HAVE_GETTIMEOFDAY 1
-+| #define HAVE_HASMNTOPT 1
-+| #define HAVE_INET_NTOA 1
-+| #define HAVE_MEMSET 1
-+| #define HAVE_MKDIR 1
-+| #define HAVE_PATHCONF 1
-+| #define HAVE_REALPATH 1
-+| #define HAVE_RMDIR 1
-+| #define HAVE_SELECT 1
-+| #define HAVE_SOCKET 1
-+| #define HAVE_STRCASECMP 1
-+| #define HAVE_STRCHR 1
-+| #define HAVE_STRDUP 1
-+| #define HAVE_STRERROR 1
-+| #define HAVE_STRRCHR 1
-+| #define HAVE_STRTOL 1
-+| #define HAVE_STRTOUL 1
-+| #define HAVE_SIGPROCMASK 1
-+| #define SIZEOF_SHORT 2
-+| /* 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
-+| int
-+| main ()
-+| {
-+| static int test_array [1 - 2 * !(((long int) (sizeof (int))) <= 1)];
-+| test_array [0] = 0
-+|
-+| ;
-+| return 0;
-+| }
-+configure:19895: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -c -march=pentium-m -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include -D_GNU_SOURCE conftest.c >&5
-+conftest.c: In function 'main':
-+conftest.c:149:12: error: size of array 'test_array' is negative
-+configure:19895: $? = 1
-+configure: failed program was:
-+| /* confdefs.h */
-+| #define PACKAGE_NAME "linux nfs-utils"
-+| #define PACKAGE_TARNAME "nfs-utils"
-+| #define PACKAGE_VERSION "1.2.3"
-+| #define PACKAGE_STRING "linux nfs-utils 1.2.3"
-+| #define PACKAGE_BUGREPORT "linux-nfs@vger.kernel.org"
-+| #define PACKAGE_URL ""
-+| #define PACKAGE "nfs-utils"
-+| #define VERSION "1.2.3"
-+| #define START_STATD "/usr/sbin/start-statd"
-+| #define NFS3_SUPPORTED 1
-+| #define NFS4_SUPPORTED 1
-+| #define GSS_SUPPORTED 1
-+| #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 HAVE_LIBTIRPC 1
-+| #define HAVE__HOME_WBX_ADK_OPENADK_TARGET_I686_UCLIBC_USR_INCLUDE_TIRPC_NETCONFIG_H 1
-+| #define _FILE_OFFSET_BITS 64
-+| #define HAVE_DLFCN_H 1
-+| #define LT_OBJDIR ".libs/"
-+| #define STDC_HEADERS 1
-+| #define HAVE_EVENT_H 1
-+| #define HAVE_NFSIDMAP_H 1
-+| #define HAVE_NFS4_SET_DEBUG 1
-+| #define HAVE_NFSIDMAP_H 1
-+| #define HAVE_NFS4_SET_DEBUG 1
-+| #define KRB5_VERSION 181
-+| #define HAVE_KRB5 1
-+| #define HAVE_DECL_AI_ADDRCONFIG 1
-+| #define HAVE_ARPA_INET_H 1
-+| #define HAVE_FCNTL_H 1
-+| #define HAVE_LIBINTL_H 1
-+| #define HAVE_LIMITS_H 1
-+| #define HAVE_MALLOC_H 1
-+| #define HAVE_MEMORY_H 1
-+| #define HAVE_NETDB_H 1
-+| #define HAVE_NETINET_IN_H 1
-+| #define HAVE_PATHS_H 1
-+| #define HAVE_STDLIB_H 1
-+| #define HAVE_STRING_H 1
-+| #define HAVE_SYS_FILE_H 1
-+| #define HAVE_SYS_IOCTL_H 1
-+| #define HAVE_SYS_MOUNT_H 1
-+| #define HAVE_SYS_PARAM_H 1
-+| #define HAVE_SYS_SOCKET_H 1
-+| #define HAVE_SYS_TIME_H 1
-+| #define HAVE_SYS_VFS_H 1
-+| #define HAVE_SYSLOG_H 1
-+| #define HAVE_UNISTD_H 1
-+| #define HAVE_ET_COM_ERR_H 1
-+| #define HAVE_IFADDRS_H 1
-+| #define TIME_WITH_SYS_TIME 1
-+| #define HAVE_ALLOCA_H 1
-+| #define HAVE_ALLOCA 1
-+| #define HAVE_DIRENT_H 1
-+| #define CLOSEDIR_VOID 1
-+| #define HAVE_FORK 1
-+| #define HAVE_VFORK 1
-+| #define HAVE_WORKING_VFORK 1
-+| #define HAVE_WORKING_FORK 1
-+| #define GETGROUPS_T gid_t
-+| #define HAVE_GETMNTENT 1
-+| #define HAVE_LSTAT_EMPTY_STRING_BUG 1
-+| #define HAVE_SYS_SELECT_H 1
-+| #define HAVE_SYS_SOCKET_H 1
-+| #define SELECT_TYPE_ARG1 int
-+| #define SELECT_TYPE_ARG234 (fd_set *)
-+| #define SELECT_TYPE_ARG5 (struct timeval *)
-+| #define RETSIGTYPE void
-+| #define HAVE_STAT_EMPTY_STRING_BUG 1
-+| #define HAVE_VPRINTF 1
-+| #define HAVE_ALARM 1
-+| #define HAVE_ATEXIT 1
-+| #define HAVE_DUP2 1
-+| #define HAVE_FDATASYNC 1
-+| #define HAVE_FTRUNCATE 1
-+| #define HAVE_GETCWD 1
-+| #define HAVE_GETHOSTBYADDR 1
-+| #define HAVE_GETHOSTBYNAME 1
-+| #define HAVE_GETHOSTNAME 1
-+| #define HAVE_GETMNTENT 1
-+| #define HAVE_GETNAMEINFO 1
-+| #define HAVE_GETRPCBYNAME 1
-+| #define HAVE_GETIFADDRS 1
-+| #define HAVE_GETTIMEOFDAY 1
-+| #define HAVE_HASMNTOPT 1
-+| #define HAVE_INET_NTOA 1
-+| #define HAVE_MEMSET 1
-+| #define HAVE_MKDIR 1
-+| #define HAVE_PATHCONF 1
-+| #define HAVE_REALPATH 1
-+| #define HAVE_RMDIR 1
-+| #define HAVE_SELECT 1
-+| #define HAVE_SOCKET 1
-+| #define HAVE_STRCASECMP 1
-+| #define HAVE_STRCHR 1
-+| #define HAVE_STRDUP 1
-+| #define HAVE_STRERROR 1
-+| #define HAVE_STRRCHR 1
-+| #define HAVE_STRTOL 1
-+| #define HAVE_STRTOUL 1
-+| #define HAVE_SIGPROCMASK 1
-+| #define SIZEOF_SHORT 2
-+| /* 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
-+| int
-+| main ()
-+| {
-+| static int test_array [1 - 2 * !(((long int) (sizeof (int))) <= 3)];
-+| test_array [0] = 0
-+|
-+| ;
-+| return 0;
-+| }
-+configure:19895: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -c -march=pentium-m -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include -D_GNU_SOURCE conftest.c >&5
-+configure:19895: $? = 0
-+configure:19895: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -c -march=pentium-m -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include -D_GNU_SOURCE conftest.c >&5
-+configure:19895: $? = 0
-+configure:19895: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -c -march=pentium-m -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include -D_GNU_SOURCE conftest.c >&5
-+configure:19895: $? = 0
-+configure:19910: result: 4
-+configure:19924: checking size of long
-+configure:19929: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -c -march=pentium-m -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include -D_GNU_SOURCE conftest.c >&5
-+configure:19929: $? = 0
-+configure:19929: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -c -march=pentium-m -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include -D_GNU_SOURCE conftest.c >&5
-+conftest.c: In function 'main':
-+conftest.c:150:12: error: size of array 'test_array' is negative
-+configure:19929: $? = 1
-+configure: failed program was:
-+| /* confdefs.h */
-+| #define PACKAGE_NAME "linux nfs-utils"
-+| #define PACKAGE_TARNAME "nfs-utils"
-+| #define PACKAGE_VERSION "1.2.3"
-+| #define PACKAGE_STRING "linux nfs-utils 1.2.3"
-+| #define PACKAGE_BUGREPORT "linux-nfs@vger.kernel.org"
-+| #define PACKAGE_URL ""
-+| #define PACKAGE "nfs-utils"
-+| #define VERSION "1.2.3"
-+| #define START_STATD "/usr/sbin/start-statd"
-+| #define NFS3_SUPPORTED 1
-+| #define NFS4_SUPPORTED 1
-+| #define GSS_SUPPORTED 1
-+| #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 HAVE_LIBTIRPC 1
-+| #define HAVE__HOME_WBX_ADK_OPENADK_TARGET_I686_UCLIBC_USR_INCLUDE_TIRPC_NETCONFIG_H 1
-+| #define _FILE_OFFSET_BITS 64
-+| #define HAVE_DLFCN_H 1
-+| #define LT_OBJDIR ".libs/"
-+| #define STDC_HEADERS 1
-+| #define HAVE_EVENT_H 1
-+| #define HAVE_NFSIDMAP_H 1
-+| #define HAVE_NFS4_SET_DEBUG 1
-+| #define HAVE_NFSIDMAP_H 1
-+| #define HAVE_NFS4_SET_DEBUG 1
-+| #define KRB5_VERSION 181
-+| #define HAVE_KRB5 1
-+| #define HAVE_DECL_AI_ADDRCONFIG 1
-+| #define HAVE_ARPA_INET_H 1
-+| #define HAVE_FCNTL_H 1
-+| #define HAVE_LIBINTL_H 1
-+| #define HAVE_LIMITS_H 1
-+| #define HAVE_MALLOC_H 1
-+| #define HAVE_MEMORY_H 1
-+| #define HAVE_NETDB_H 1
-+| #define HAVE_NETINET_IN_H 1
-+| #define HAVE_PATHS_H 1
-+| #define HAVE_STDLIB_H 1
-+| #define HAVE_STRING_H 1
-+| #define HAVE_SYS_FILE_H 1
-+| #define HAVE_SYS_IOCTL_H 1
-+| #define HAVE_SYS_MOUNT_H 1
-+| #define HAVE_SYS_PARAM_H 1
-+| #define HAVE_SYS_SOCKET_H 1
-+| #define HAVE_SYS_TIME_H 1
-+| #define HAVE_SYS_VFS_H 1
-+| #define HAVE_SYSLOG_H 1
-+| #define HAVE_UNISTD_H 1
-+| #define HAVE_ET_COM_ERR_H 1
-+| #define HAVE_IFADDRS_H 1
-+| #define TIME_WITH_SYS_TIME 1
-+| #define HAVE_ALLOCA_H 1
-+| #define HAVE_ALLOCA 1
-+| #define HAVE_DIRENT_H 1
-+| #define CLOSEDIR_VOID 1
-+| #define HAVE_FORK 1
-+| #define HAVE_VFORK 1
-+| #define HAVE_WORKING_VFORK 1
-+| #define HAVE_WORKING_FORK 1
-+| #define GETGROUPS_T gid_t
-+| #define HAVE_GETMNTENT 1
-+| #define HAVE_LSTAT_EMPTY_STRING_BUG 1
-+| #define HAVE_SYS_SELECT_H 1
-+| #define HAVE_SYS_SOCKET_H 1
-+| #define SELECT_TYPE_ARG1 int
-+| #define SELECT_TYPE_ARG234 (fd_set *)
-+| #define SELECT_TYPE_ARG5 (struct timeval *)
-+| #define RETSIGTYPE void
-+| #define HAVE_STAT_EMPTY_STRING_BUG 1
-+| #define HAVE_VPRINTF 1
-+| #define HAVE_ALARM 1
-+| #define HAVE_ATEXIT 1
-+| #define HAVE_DUP2 1
-+| #define HAVE_FDATASYNC 1
-+| #define HAVE_FTRUNCATE 1
-+| #define HAVE_GETCWD 1
-+| #define HAVE_GETHOSTBYADDR 1
-+| #define HAVE_GETHOSTBYNAME 1
-+| #define HAVE_GETHOSTNAME 1
-+| #define HAVE_GETMNTENT 1
-+| #define HAVE_GETNAMEINFO 1
-+| #define HAVE_GETRPCBYNAME 1
-+| #define HAVE_GETIFADDRS 1
-+| #define HAVE_GETTIMEOFDAY 1
-+| #define HAVE_HASMNTOPT 1
-+| #define HAVE_INET_NTOA 1
-+| #define HAVE_MEMSET 1
-+| #define HAVE_MKDIR 1
-+| #define HAVE_PATHCONF 1
-+| #define HAVE_REALPATH 1
-+| #define HAVE_RMDIR 1
-+| #define HAVE_SELECT 1
-+| #define HAVE_SOCKET 1
-+| #define HAVE_STRCASECMP 1
-+| #define HAVE_STRCHR 1
-+| #define HAVE_STRDUP 1
-+| #define HAVE_STRERROR 1
-+| #define HAVE_STRRCHR 1
-+| #define HAVE_STRTOL 1
-+| #define HAVE_STRTOUL 1
-+| #define HAVE_SIGPROCMASK 1
-+| #define SIZEOF_SHORT 2
-+| #define SIZEOF_INT 4
-+| /* 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
-+| int
-+| main ()
-+| {
-+| static int test_array [1 - 2 * !(((long int) (sizeof (long))) <= 0)];
-+| test_array [0] = 0
-+|
-+| ;
-+| return 0;
-+| }
-+configure:19929: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -c -march=pentium-m -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include -D_GNU_SOURCE conftest.c >&5
-+conftest.c: In function 'main':
-+conftest.c:150:12: error: size of array 'test_array' is negative
-+configure:19929: $? = 1
-+configure: failed program was:
-+| /* confdefs.h */
-+| #define PACKAGE_NAME "linux nfs-utils"
-+| #define PACKAGE_TARNAME "nfs-utils"
-+| #define PACKAGE_VERSION "1.2.3"
-+| #define PACKAGE_STRING "linux nfs-utils 1.2.3"
-+| #define PACKAGE_BUGREPORT "linux-nfs@vger.kernel.org"
-+| #define PACKAGE_URL ""
-+| #define PACKAGE "nfs-utils"
-+| #define VERSION "1.2.3"
-+| #define START_STATD "/usr/sbin/start-statd"
-+| #define NFS3_SUPPORTED 1
-+| #define NFS4_SUPPORTED 1
-+| #define GSS_SUPPORTED 1
-+| #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 HAVE_LIBTIRPC 1
-+| #define HAVE__HOME_WBX_ADK_OPENADK_TARGET_I686_UCLIBC_USR_INCLUDE_TIRPC_NETCONFIG_H 1
-+| #define _FILE_OFFSET_BITS 64
-+| #define HAVE_DLFCN_H 1
-+| #define LT_OBJDIR ".libs/"
-+| #define STDC_HEADERS 1
-+| #define HAVE_EVENT_H 1
-+| #define HAVE_NFSIDMAP_H 1
-+| #define HAVE_NFS4_SET_DEBUG 1
-+| #define HAVE_NFSIDMAP_H 1
-+| #define HAVE_NFS4_SET_DEBUG 1
-+| #define KRB5_VERSION 181
-+| #define HAVE_KRB5 1
-+| #define HAVE_DECL_AI_ADDRCONFIG 1
-+| #define HAVE_ARPA_INET_H 1
-+| #define HAVE_FCNTL_H 1
-+| #define HAVE_LIBINTL_H 1
-+| #define HAVE_LIMITS_H 1
-+| #define HAVE_MALLOC_H 1
-+| #define HAVE_MEMORY_H 1
-+| #define HAVE_NETDB_H 1
-+| #define HAVE_NETINET_IN_H 1
-+| #define HAVE_PATHS_H 1
-+| #define HAVE_STDLIB_H 1
-+| #define HAVE_STRING_H 1
-+| #define HAVE_SYS_FILE_H 1
-+| #define HAVE_SYS_IOCTL_H 1
-+| #define HAVE_SYS_MOUNT_H 1
-+| #define HAVE_SYS_PARAM_H 1
-+| #define HAVE_SYS_SOCKET_H 1
-+| #define HAVE_SYS_TIME_H 1
-+| #define HAVE_SYS_VFS_H 1
-+| #define HAVE_SYSLOG_H 1
-+| #define HAVE_UNISTD_H 1
-+| #define HAVE_ET_COM_ERR_H 1
-+| #define HAVE_IFADDRS_H 1
-+| #define TIME_WITH_SYS_TIME 1
-+| #define HAVE_ALLOCA_H 1
-+| #define HAVE_ALLOCA 1
-+| #define HAVE_DIRENT_H 1
-+| #define CLOSEDIR_VOID 1
-+| #define HAVE_FORK 1
-+| #define HAVE_VFORK 1
-+| #define HAVE_WORKING_VFORK 1
-+| #define HAVE_WORKING_FORK 1
-+| #define GETGROUPS_T gid_t
-+| #define HAVE_GETMNTENT 1
-+| #define HAVE_LSTAT_EMPTY_STRING_BUG 1
-+| #define HAVE_SYS_SELECT_H 1
-+| #define HAVE_SYS_SOCKET_H 1
-+| #define SELECT_TYPE_ARG1 int
-+| #define SELECT_TYPE_ARG234 (fd_set *)
-+| #define SELECT_TYPE_ARG5 (struct timeval *)
-+| #define RETSIGTYPE void
-+| #define HAVE_STAT_EMPTY_STRING_BUG 1
-+| #define HAVE_VPRINTF 1
-+| #define HAVE_ALARM 1
-+| #define HAVE_ATEXIT 1
-+| #define HAVE_DUP2 1
-+| #define HAVE_FDATASYNC 1
-+| #define HAVE_FTRUNCATE 1
-+| #define HAVE_GETCWD 1
-+| #define HAVE_GETHOSTBYADDR 1
-+| #define HAVE_GETHOSTBYNAME 1
-+| #define HAVE_GETHOSTNAME 1
-+| #define HAVE_GETMNTENT 1
-+| #define HAVE_GETNAMEINFO 1
-+| #define HAVE_GETRPCBYNAME 1
-+| #define HAVE_GETIFADDRS 1
-+| #define HAVE_GETTIMEOFDAY 1
-+| #define HAVE_HASMNTOPT 1
-+| #define HAVE_INET_NTOA 1
-+| #define HAVE_MEMSET 1
-+| #define HAVE_MKDIR 1
-+| #define HAVE_PATHCONF 1
-+| #define HAVE_REALPATH 1
-+| #define HAVE_RMDIR 1
-+| #define HAVE_SELECT 1
-+| #define HAVE_SOCKET 1
-+| #define HAVE_STRCASECMP 1
-+| #define HAVE_STRCHR 1
-+| #define HAVE_STRDUP 1
-+| #define HAVE_STRERROR 1
-+| #define HAVE_STRRCHR 1
-+| #define HAVE_STRTOL 1
-+| #define HAVE_STRTOUL 1
-+| #define HAVE_SIGPROCMASK 1
-+| #define SIZEOF_SHORT 2
-+| #define SIZEOF_INT 4
-+| /* 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
-+| int
-+| main ()
-+| {
-+| static int test_array [1 - 2 * !(((long int) (sizeof (long))) <= 1)];
-+| test_array [0] = 0
-+|
-+| ;
-+| return 0;
-+| }
-+configure:19929: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -c -march=pentium-m -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include -D_GNU_SOURCE conftest.c >&5
-+conftest.c: In function 'main':
-+conftest.c:150:12: error: size of array 'test_array' is negative
-+configure:19929: $? = 1
-+configure: failed program was:
-+| /* confdefs.h */
-+| #define PACKAGE_NAME "linux nfs-utils"
-+| #define PACKAGE_TARNAME "nfs-utils"
-+| #define PACKAGE_VERSION "1.2.3"
-+| #define PACKAGE_STRING "linux nfs-utils 1.2.3"
-+| #define PACKAGE_BUGREPORT "linux-nfs@vger.kernel.org"
-+| #define PACKAGE_URL ""
-+| #define PACKAGE "nfs-utils"
-+| #define VERSION "1.2.3"
-+| #define START_STATD "/usr/sbin/start-statd"
-+| #define NFS3_SUPPORTED 1
-+| #define NFS4_SUPPORTED 1
-+| #define GSS_SUPPORTED 1
-+| #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 HAVE_LIBTIRPC 1
-+| #define HAVE__HOME_WBX_ADK_OPENADK_TARGET_I686_UCLIBC_USR_INCLUDE_TIRPC_NETCONFIG_H 1
-+| #define _FILE_OFFSET_BITS 64
-+| #define HAVE_DLFCN_H 1
-+| #define LT_OBJDIR ".libs/"
-+| #define STDC_HEADERS 1
-+| #define HAVE_EVENT_H 1
-+| #define HAVE_NFSIDMAP_H 1
-+| #define HAVE_NFS4_SET_DEBUG 1
-+| #define HAVE_NFSIDMAP_H 1
-+| #define HAVE_NFS4_SET_DEBUG 1
-+| #define KRB5_VERSION 181
-+| #define HAVE_KRB5 1
-+| #define HAVE_DECL_AI_ADDRCONFIG 1
-+| #define HAVE_ARPA_INET_H 1
-+| #define HAVE_FCNTL_H 1
-+| #define HAVE_LIBINTL_H 1
-+| #define HAVE_LIMITS_H 1
-+| #define HAVE_MALLOC_H 1
-+| #define HAVE_MEMORY_H 1
-+| #define HAVE_NETDB_H 1
-+| #define HAVE_NETINET_IN_H 1
-+| #define HAVE_PATHS_H 1
-+| #define HAVE_STDLIB_H 1
-+| #define HAVE_STRING_H 1
-+| #define HAVE_SYS_FILE_H 1
-+| #define HAVE_SYS_IOCTL_H 1
-+| #define HAVE_SYS_MOUNT_H 1
-+| #define HAVE_SYS_PARAM_H 1
-+| #define HAVE_SYS_SOCKET_H 1
-+| #define HAVE_SYS_TIME_H 1
-+| #define HAVE_SYS_VFS_H 1
-+| #define HAVE_SYSLOG_H 1
-+| #define HAVE_UNISTD_H 1
-+| #define HAVE_ET_COM_ERR_H 1
-+| #define HAVE_IFADDRS_H 1
-+| #define TIME_WITH_SYS_TIME 1
-+| #define HAVE_ALLOCA_H 1
-+| #define HAVE_ALLOCA 1
-+| #define HAVE_DIRENT_H 1
-+| #define CLOSEDIR_VOID 1
-+| #define HAVE_FORK 1
-+| #define HAVE_VFORK 1
-+| #define HAVE_WORKING_VFORK 1
-+| #define HAVE_WORKING_FORK 1
-+| #define GETGROUPS_T gid_t
-+| #define HAVE_GETMNTENT 1
-+| #define HAVE_LSTAT_EMPTY_STRING_BUG 1
-+| #define HAVE_SYS_SELECT_H 1
-+| #define HAVE_SYS_SOCKET_H 1
-+| #define SELECT_TYPE_ARG1 int
-+| #define SELECT_TYPE_ARG234 (fd_set *)
-+| #define SELECT_TYPE_ARG5 (struct timeval *)
-+| #define RETSIGTYPE void
-+| #define HAVE_STAT_EMPTY_STRING_BUG 1
-+| #define HAVE_VPRINTF 1
-+| #define HAVE_ALARM 1
-+| #define HAVE_ATEXIT 1
-+| #define HAVE_DUP2 1
-+| #define HAVE_FDATASYNC 1
-+| #define HAVE_FTRUNCATE 1
-+| #define HAVE_GETCWD 1
-+| #define HAVE_GETHOSTBYADDR 1
-+| #define HAVE_GETHOSTBYNAME 1
-+| #define HAVE_GETHOSTNAME 1
-+| #define HAVE_GETMNTENT 1
-+| #define HAVE_GETNAMEINFO 1
-+| #define HAVE_GETRPCBYNAME 1
-+| #define HAVE_GETIFADDRS 1
-+| #define HAVE_GETTIMEOFDAY 1
-+| #define HAVE_HASMNTOPT 1
-+| #define HAVE_INET_NTOA 1
-+| #define HAVE_MEMSET 1
-+| #define HAVE_MKDIR 1
-+| #define HAVE_PATHCONF 1
-+| #define HAVE_REALPATH 1
-+| #define HAVE_RMDIR 1
-+| #define HAVE_SELECT 1
-+| #define HAVE_SOCKET 1
-+| #define HAVE_STRCASECMP 1
-+| #define HAVE_STRCHR 1
-+| #define HAVE_STRDUP 1
-+| #define HAVE_STRERROR 1
-+| #define HAVE_STRRCHR 1
-+| #define HAVE_STRTOL 1
-+| #define HAVE_STRTOUL 1
-+| #define HAVE_SIGPROCMASK 1
-+| #define SIZEOF_SHORT 2
-+| #define SIZEOF_INT 4
-+| /* 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
-+| int
-+| main ()
-+| {
-+| static int test_array [1 - 2 * !(((long int) (sizeof (long))) <= 3)];
-+| test_array [0] = 0
-+|
-+| ;
-+| return 0;
-+| }
-+configure:19929: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -c -march=pentium-m -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include -D_GNU_SOURCE conftest.c >&5
-+configure:19929: $? = 0
-+configure:19929: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -c -march=pentium-m -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include -D_GNU_SOURCE conftest.c >&5
-+configure:19929: $? = 0
-+configure:19929: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -c -march=pentium-m -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include -D_GNU_SOURCE conftest.c >&5
-+configure:19929: $? = 0
-+configure:19944: result: 4
-+configure:19958: checking size of size_t
-+configure:19963: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -c -march=pentium-m -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include -D_GNU_SOURCE conftest.c >&5
-+configure:19963: $? = 0
-+configure:19963: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -c -march=pentium-m -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include -D_GNU_SOURCE conftest.c >&5
-+conftest.c: In function 'main':
-+conftest.c:151:12: error: size of array 'test_array' is negative
-+configure:19963: $? = 1
-+configure: failed program was:
-+| /* confdefs.h */
-+| #define PACKAGE_NAME "linux nfs-utils"
-+| #define PACKAGE_TARNAME "nfs-utils"
-+| #define PACKAGE_VERSION "1.2.3"
-+| #define PACKAGE_STRING "linux nfs-utils 1.2.3"
-+| #define PACKAGE_BUGREPORT "linux-nfs@vger.kernel.org"
-+| #define PACKAGE_URL ""
-+| #define PACKAGE "nfs-utils"
-+| #define VERSION "1.2.3"
-+| #define START_STATD "/usr/sbin/start-statd"
-+| #define NFS3_SUPPORTED 1
-+| #define NFS4_SUPPORTED 1
-+| #define GSS_SUPPORTED 1
-+| #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 HAVE_LIBTIRPC 1
-+| #define HAVE__HOME_WBX_ADK_OPENADK_TARGET_I686_UCLIBC_USR_INCLUDE_TIRPC_NETCONFIG_H 1
-+| #define _FILE_OFFSET_BITS 64
-+| #define HAVE_DLFCN_H 1
-+| #define LT_OBJDIR ".libs/"
-+| #define STDC_HEADERS 1
-+| #define HAVE_EVENT_H 1
-+| #define HAVE_NFSIDMAP_H 1
-+| #define HAVE_NFS4_SET_DEBUG 1
-+| #define HAVE_NFSIDMAP_H 1
-+| #define HAVE_NFS4_SET_DEBUG 1
-+| #define KRB5_VERSION 181
-+| #define HAVE_KRB5 1
-+| #define HAVE_DECL_AI_ADDRCONFIG 1
-+| #define HAVE_ARPA_INET_H 1
-+| #define HAVE_FCNTL_H 1
-+| #define HAVE_LIBINTL_H 1
-+| #define HAVE_LIMITS_H 1
-+| #define HAVE_MALLOC_H 1
-+| #define HAVE_MEMORY_H 1
-+| #define HAVE_NETDB_H 1
-+| #define HAVE_NETINET_IN_H 1
-+| #define HAVE_PATHS_H 1
-+| #define HAVE_STDLIB_H 1
-+| #define HAVE_STRING_H 1
-+| #define HAVE_SYS_FILE_H 1
-+| #define HAVE_SYS_IOCTL_H 1
-+| #define HAVE_SYS_MOUNT_H 1
-+| #define HAVE_SYS_PARAM_H 1
-+| #define HAVE_SYS_SOCKET_H 1
-+| #define HAVE_SYS_TIME_H 1
-+| #define HAVE_SYS_VFS_H 1
-+| #define HAVE_SYSLOG_H 1
-+| #define HAVE_UNISTD_H 1
-+| #define HAVE_ET_COM_ERR_H 1
-+| #define HAVE_IFADDRS_H 1
-+| #define TIME_WITH_SYS_TIME 1
-+| #define HAVE_ALLOCA_H 1
-+| #define HAVE_ALLOCA 1
-+| #define HAVE_DIRENT_H 1
-+| #define CLOSEDIR_VOID 1
-+| #define HAVE_FORK 1
-+| #define HAVE_VFORK 1
-+| #define HAVE_WORKING_VFORK 1
-+| #define HAVE_WORKING_FORK 1
-+| #define GETGROUPS_T gid_t
-+| #define HAVE_GETMNTENT 1
-+| #define HAVE_LSTAT_EMPTY_STRING_BUG 1
-+| #define HAVE_SYS_SELECT_H 1
-+| #define HAVE_SYS_SOCKET_H 1
-+| #define SELECT_TYPE_ARG1 int
-+| #define SELECT_TYPE_ARG234 (fd_set *)
-+| #define SELECT_TYPE_ARG5 (struct timeval *)
-+| #define RETSIGTYPE void
-+| #define HAVE_STAT_EMPTY_STRING_BUG 1
-+| #define HAVE_VPRINTF 1
-+| #define HAVE_ALARM 1
-+| #define HAVE_ATEXIT 1
-+| #define HAVE_DUP2 1
-+| #define HAVE_FDATASYNC 1
-+| #define HAVE_FTRUNCATE 1
-+| #define HAVE_GETCWD 1
-+| #define HAVE_GETHOSTBYADDR 1
-+| #define HAVE_GETHOSTBYNAME 1
-+| #define HAVE_GETHOSTNAME 1
-+| #define HAVE_GETMNTENT 1
-+| #define HAVE_GETNAMEINFO 1
-+| #define HAVE_GETRPCBYNAME 1
-+| #define HAVE_GETIFADDRS 1
-+| #define HAVE_GETTIMEOFDAY 1
-+| #define HAVE_HASMNTOPT 1
-+| #define HAVE_INET_NTOA 1
-+| #define HAVE_MEMSET 1
-+| #define HAVE_MKDIR 1
-+| #define HAVE_PATHCONF 1
-+| #define HAVE_REALPATH 1
-+| #define HAVE_RMDIR 1
-+| #define HAVE_SELECT 1
-+| #define HAVE_SOCKET 1
-+| #define HAVE_STRCASECMP 1
-+| #define HAVE_STRCHR 1
-+| #define HAVE_STRDUP 1
-+| #define HAVE_STRERROR 1
-+| #define HAVE_STRRCHR 1
-+| #define HAVE_STRTOL 1
-+| #define HAVE_STRTOUL 1
-+| #define HAVE_SIGPROCMASK 1
-+| #define SIZEOF_SHORT 2
-+| #define SIZEOF_INT 4
-+| #define SIZEOF_LONG 4
-+| /* 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
-+| int
-+| main ()
-+| {
-+| static int test_array [1 - 2 * !(((long int) (sizeof (size_t))) <= 0)];
-+| test_array [0] = 0
-+|
-+| ;
-+| return 0;
-+| }
-+configure:19963: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -c -march=pentium-m -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include -D_GNU_SOURCE conftest.c >&5
-+conftest.c: In function 'main':
-+conftest.c:151:12: error: size of array 'test_array' is negative
-+configure:19963: $? = 1
-+configure: failed program was:
-+| /* confdefs.h */
-+| #define PACKAGE_NAME "linux nfs-utils"
-+| #define PACKAGE_TARNAME "nfs-utils"
-+| #define PACKAGE_VERSION "1.2.3"
-+| #define PACKAGE_STRING "linux nfs-utils 1.2.3"
-+| #define PACKAGE_BUGREPORT "linux-nfs@vger.kernel.org"
-+| #define PACKAGE_URL ""
-+| #define PACKAGE "nfs-utils"
-+| #define VERSION "1.2.3"
-+| #define START_STATD "/usr/sbin/start-statd"
-+| #define NFS3_SUPPORTED 1
-+| #define NFS4_SUPPORTED 1
-+| #define GSS_SUPPORTED 1
-+| #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 HAVE_LIBTIRPC 1
-+| #define HAVE__HOME_WBX_ADK_OPENADK_TARGET_I686_UCLIBC_USR_INCLUDE_TIRPC_NETCONFIG_H 1
-+| #define _FILE_OFFSET_BITS 64
-+| #define HAVE_DLFCN_H 1
-+| #define LT_OBJDIR ".libs/"
-+| #define STDC_HEADERS 1
-+| #define HAVE_EVENT_H 1
-+| #define HAVE_NFSIDMAP_H 1
-+| #define HAVE_NFS4_SET_DEBUG 1
-+| #define HAVE_NFSIDMAP_H 1
-+| #define HAVE_NFS4_SET_DEBUG 1
-+| #define KRB5_VERSION 181
-+| #define HAVE_KRB5 1
-+| #define HAVE_DECL_AI_ADDRCONFIG 1
-+| #define HAVE_ARPA_INET_H 1
-+| #define HAVE_FCNTL_H 1
-+| #define HAVE_LIBINTL_H 1
-+| #define HAVE_LIMITS_H 1
-+| #define HAVE_MALLOC_H 1
-+| #define HAVE_MEMORY_H 1
-+| #define HAVE_NETDB_H 1
-+| #define HAVE_NETINET_IN_H 1
-+| #define HAVE_PATHS_H 1
-+| #define HAVE_STDLIB_H 1
-+| #define HAVE_STRING_H 1
-+| #define HAVE_SYS_FILE_H 1
-+| #define HAVE_SYS_IOCTL_H 1
-+| #define HAVE_SYS_MOUNT_H 1
-+| #define HAVE_SYS_PARAM_H 1
-+| #define HAVE_SYS_SOCKET_H 1
-+| #define HAVE_SYS_TIME_H 1
-+| #define HAVE_SYS_VFS_H 1
-+| #define HAVE_SYSLOG_H 1
-+| #define HAVE_UNISTD_H 1
-+| #define HAVE_ET_COM_ERR_H 1
-+| #define HAVE_IFADDRS_H 1
-+| #define TIME_WITH_SYS_TIME 1
-+| #define HAVE_ALLOCA_H 1
-+| #define HAVE_ALLOCA 1
-+| #define HAVE_DIRENT_H 1
-+| #define CLOSEDIR_VOID 1
-+| #define HAVE_FORK 1
-+| #define HAVE_VFORK 1
-+| #define HAVE_WORKING_VFORK 1
-+| #define HAVE_WORKING_FORK 1
-+| #define GETGROUPS_T gid_t
-+| #define HAVE_GETMNTENT 1
-+| #define HAVE_LSTAT_EMPTY_STRING_BUG 1
-+| #define HAVE_SYS_SELECT_H 1
-+| #define HAVE_SYS_SOCKET_H 1
-+| #define SELECT_TYPE_ARG1 int
-+| #define SELECT_TYPE_ARG234 (fd_set *)
-+| #define SELECT_TYPE_ARG5 (struct timeval *)
-+| #define RETSIGTYPE void
-+| #define HAVE_STAT_EMPTY_STRING_BUG 1
-+| #define HAVE_VPRINTF 1
-+| #define HAVE_ALARM 1
-+| #define HAVE_ATEXIT 1
-+| #define HAVE_DUP2 1
-+| #define HAVE_FDATASYNC 1
-+| #define HAVE_FTRUNCATE 1
-+| #define HAVE_GETCWD 1
-+| #define HAVE_GETHOSTBYADDR 1
-+| #define HAVE_GETHOSTBYNAME 1
-+| #define HAVE_GETHOSTNAME 1
-+| #define HAVE_GETMNTENT 1
-+| #define HAVE_GETNAMEINFO 1
-+| #define HAVE_GETRPCBYNAME 1
-+| #define HAVE_GETIFADDRS 1
-+| #define HAVE_GETTIMEOFDAY 1
-+| #define HAVE_HASMNTOPT 1
-+| #define HAVE_INET_NTOA 1
-+| #define HAVE_MEMSET 1
-+| #define HAVE_MKDIR 1
-+| #define HAVE_PATHCONF 1
-+| #define HAVE_REALPATH 1
-+| #define HAVE_RMDIR 1
-+| #define HAVE_SELECT 1
-+| #define HAVE_SOCKET 1
-+| #define HAVE_STRCASECMP 1
-+| #define HAVE_STRCHR 1
-+| #define HAVE_STRDUP 1
-+| #define HAVE_STRERROR 1
-+| #define HAVE_STRRCHR 1
-+| #define HAVE_STRTOL 1
-+| #define HAVE_STRTOUL 1
-+| #define HAVE_SIGPROCMASK 1
-+| #define SIZEOF_SHORT 2
-+| #define SIZEOF_INT 4
-+| #define SIZEOF_LONG 4
-+| /* 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
-+| int
-+| main ()
-+| {
-+| static int test_array [1 - 2 * !(((long int) (sizeof (size_t))) <= 1)];
-+| test_array [0] = 0
-+|
-+| ;
-+| return 0;
-+| }
-+configure:19963: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -c -march=pentium-m -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include -D_GNU_SOURCE conftest.c >&5
-+conftest.c: In function 'main':
-+conftest.c:151:12: error: size of array 'test_array' is negative
-+configure:19963: $? = 1
-+configure: failed program was:
-+| /* confdefs.h */
-+| #define PACKAGE_NAME "linux nfs-utils"
-+| #define PACKAGE_TARNAME "nfs-utils"
-+| #define PACKAGE_VERSION "1.2.3"
-+| #define PACKAGE_STRING "linux nfs-utils 1.2.3"
-+| #define PACKAGE_BUGREPORT "linux-nfs@vger.kernel.org"
-+| #define PACKAGE_URL ""
-+| #define PACKAGE "nfs-utils"
-+| #define VERSION "1.2.3"
-+| #define START_STATD "/usr/sbin/start-statd"
-+| #define NFS3_SUPPORTED 1
-+| #define NFS4_SUPPORTED 1
-+| #define GSS_SUPPORTED 1
-+| #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 HAVE_LIBTIRPC 1
-+| #define HAVE__HOME_WBX_ADK_OPENADK_TARGET_I686_UCLIBC_USR_INCLUDE_TIRPC_NETCONFIG_H 1
-+| #define _FILE_OFFSET_BITS 64
-+| #define HAVE_DLFCN_H 1
-+| #define LT_OBJDIR ".libs/"
-+| #define STDC_HEADERS 1
-+| #define HAVE_EVENT_H 1
-+| #define HAVE_NFSIDMAP_H 1
-+| #define HAVE_NFS4_SET_DEBUG 1
-+| #define HAVE_NFSIDMAP_H 1
-+| #define HAVE_NFS4_SET_DEBUG 1
-+| #define KRB5_VERSION 181
-+| #define HAVE_KRB5 1
-+| #define HAVE_DECL_AI_ADDRCONFIG 1
-+| #define HAVE_ARPA_INET_H 1
-+| #define HAVE_FCNTL_H 1
-+| #define HAVE_LIBINTL_H 1
-+| #define HAVE_LIMITS_H 1
-+| #define HAVE_MALLOC_H 1
-+| #define HAVE_MEMORY_H 1
-+| #define HAVE_NETDB_H 1
-+| #define HAVE_NETINET_IN_H 1
-+| #define HAVE_PATHS_H 1
-+| #define HAVE_STDLIB_H 1
-+| #define HAVE_STRING_H 1
-+| #define HAVE_SYS_FILE_H 1
-+| #define HAVE_SYS_IOCTL_H 1
-+| #define HAVE_SYS_MOUNT_H 1
-+| #define HAVE_SYS_PARAM_H 1
-+| #define HAVE_SYS_SOCKET_H 1
-+| #define HAVE_SYS_TIME_H 1
-+| #define HAVE_SYS_VFS_H 1
-+| #define HAVE_SYSLOG_H 1
-+| #define HAVE_UNISTD_H 1
-+| #define HAVE_ET_COM_ERR_H 1
-+| #define HAVE_IFADDRS_H 1
-+| #define TIME_WITH_SYS_TIME 1
-+| #define HAVE_ALLOCA_H 1
-+| #define HAVE_ALLOCA 1
-+| #define HAVE_DIRENT_H 1
-+| #define CLOSEDIR_VOID 1
-+| #define HAVE_FORK 1
-+| #define HAVE_VFORK 1
-+| #define HAVE_WORKING_VFORK 1
-+| #define HAVE_WORKING_FORK 1
-+| #define GETGROUPS_T gid_t
-+| #define HAVE_GETMNTENT 1
-+| #define HAVE_LSTAT_EMPTY_STRING_BUG 1
-+| #define HAVE_SYS_SELECT_H 1
-+| #define HAVE_SYS_SOCKET_H 1
-+| #define SELECT_TYPE_ARG1 int
-+| #define SELECT_TYPE_ARG234 (fd_set *)
-+| #define SELECT_TYPE_ARG5 (struct timeval *)
-+| #define RETSIGTYPE void
-+| #define HAVE_STAT_EMPTY_STRING_BUG 1
-+| #define HAVE_VPRINTF 1
-+| #define HAVE_ALARM 1
-+| #define HAVE_ATEXIT 1
-+| #define HAVE_DUP2 1
-+| #define HAVE_FDATASYNC 1
-+| #define HAVE_FTRUNCATE 1
-+| #define HAVE_GETCWD 1
-+| #define HAVE_GETHOSTBYADDR 1
-+| #define HAVE_GETHOSTBYNAME 1
-+| #define HAVE_GETHOSTNAME 1
-+| #define HAVE_GETMNTENT 1
-+| #define HAVE_GETNAMEINFO 1
-+| #define HAVE_GETRPCBYNAME 1
-+| #define HAVE_GETIFADDRS 1
-+| #define HAVE_GETTIMEOFDAY 1
-+| #define HAVE_HASMNTOPT 1
-+| #define HAVE_INET_NTOA 1
-+| #define HAVE_MEMSET 1
-+| #define HAVE_MKDIR 1
-+| #define HAVE_PATHCONF 1
-+| #define HAVE_REALPATH 1
-+| #define HAVE_RMDIR 1
-+| #define HAVE_SELECT 1
-+| #define HAVE_SOCKET 1
-+| #define HAVE_STRCASECMP 1
-+| #define HAVE_STRCHR 1
-+| #define HAVE_STRDUP 1
-+| #define HAVE_STRERROR 1
-+| #define HAVE_STRRCHR 1
-+| #define HAVE_STRTOL 1
-+| #define HAVE_STRTOUL 1
-+| #define HAVE_SIGPROCMASK 1
-+| #define SIZEOF_SHORT 2
-+| #define SIZEOF_INT 4
-+| #define SIZEOF_LONG 4
-+| /* 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
-+| int
-+| main ()
-+| {
-+| static int test_array [1 - 2 * !(((long int) (sizeof (size_t))) <= 3)];
-+| test_array [0] = 0
-+|
-+| ;
-+| return 0;
-+| }
-+configure:19963: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -c -march=pentium-m -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include -D_GNU_SOURCE conftest.c >&5
-+configure:19963: $? = 0
-+configure:19963: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -c -march=pentium-m -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include -D_GNU_SOURCE conftest.c >&5
-+configure:19963: $? = 0
-+configure:19963: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -c -march=pentium-m -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include -D_GNU_SOURCE conftest.c >&5
-+configure:19963: $? = 0
-+configure:19978: result: 4
-+configure:19992: checking size of socklen_t
-+configure:19997: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -c -march=pentium-m -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include -D_GNU_SOURCE conftest.c >&5
-+configure:19997: $? = 0
-+configure:19997: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -c -march=pentium-m -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include -D_GNU_SOURCE conftest.c >&5
-+conftest.c: In function 'main':
-+conftest.c:152:12: error: size of array 'test_array' is negative
-+configure:19997: $? = 1
-+configure: failed program was:
-+| /* confdefs.h */
-+| #define PACKAGE_NAME "linux nfs-utils"
-+| #define PACKAGE_TARNAME "nfs-utils"
-+| #define PACKAGE_VERSION "1.2.3"
-+| #define PACKAGE_STRING "linux nfs-utils 1.2.3"
-+| #define PACKAGE_BUGREPORT "linux-nfs@vger.kernel.org"
-+| #define PACKAGE_URL ""
-+| #define PACKAGE "nfs-utils"
-+| #define VERSION "1.2.3"
-+| #define START_STATD "/usr/sbin/start-statd"
-+| #define NFS3_SUPPORTED 1
-+| #define NFS4_SUPPORTED 1
-+| #define GSS_SUPPORTED 1
-+| #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 HAVE_LIBTIRPC 1
-+| #define HAVE__HOME_WBX_ADK_OPENADK_TARGET_I686_UCLIBC_USR_INCLUDE_TIRPC_NETCONFIG_H 1
-+| #define _FILE_OFFSET_BITS 64
-+| #define HAVE_DLFCN_H 1
-+| #define LT_OBJDIR ".libs/"
-+| #define STDC_HEADERS 1
-+| #define HAVE_EVENT_H 1
-+| #define HAVE_NFSIDMAP_H 1
-+| #define HAVE_NFS4_SET_DEBUG 1
-+| #define HAVE_NFSIDMAP_H 1
-+| #define HAVE_NFS4_SET_DEBUG 1
-+| #define KRB5_VERSION 181
-+| #define HAVE_KRB5 1
-+| #define HAVE_DECL_AI_ADDRCONFIG 1
-+| #define HAVE_ARPA_INET_H 1
-+| #define HAVE_FCNTL_H 1
-+| #define HAVE_LIBINTL_H 1
-+| #define HAVE_LIMITS_H 1
-+| #define HAVE_MALLOC_H 1
-+| #define HAVE_MEMORY_H 1
-+| #define HAVE_NETDB_H 1
-+| #define HAVE_NETINET_IN_H 1
-+| #define HAVE_PATHS_H 1
-+| #define HAVE_STDLIB_H 1
-+| #define HAVE_STRING_H 1
-+| #define HAVE_SYS_FILE_H 1
-+| #define HAVE_SYS_IOCTL_H 1
-+| #define HAVE_SYS_MOUNT_H 1
-+| #define HAVE_SYS_PARAM_H 1
-+| #define HAVE_SYS_SOCKET_H 1
-+| #define HAVE_SYS_TIME_H 1
-+| #define HAVE_SYS_VFS_H 1
-+| #define HAVE_SYSLOG_H 1
-+| #define HAVE_UNISTD_H 1
-+| #define HAVE_ET_COM_ERR_H 1
-+| #define HAVE_IFADDRS_H 1
-+| #define TIME_WITH_SYS_TIME 1
-+| #define HAVE_ALLOCA_H 1
-+| #define HAVE_ALLOCA 1
-+| #define HAVE_DIRENT_H 1
-+| #define CLOSEDIR_VOID 1
-+| #define HAVE_FORK 1
-+| #define HAVE_VFORK 1
-+| #define HAVE_WORKING_VFORK 1
-+| #define HAVE_WORKING_FORK 1
-+| #define GETGROUPS_T gid_t
-+| #define HAVE_GETMNTENT 1
-+| #define HAVE_LSTAT_EMPTY_STRING_BUG 1
-+| #define HAVE_SYS_SELECT_H 1
-+| #define HAVE_SYS_SOCKET_H 1
-+| #define SELECT_TYPE_ARG1 int
-+| #define SELECT_TYPE_ARG234 (fd_set *)
-+| #define SELECT_TYPE_ARG5 (struct timeval *)
-+| #define RETSIGTYPE void
-+| #define HAVE_STAT_EMPTY_STRING_BUG 1
-+| #define HAVE_VPRINTF 1
-+| #define HAVE_ALARM 1
-+| #define HAVE_ATEXIT 1
-+| #define HAVE_DUP2 1
-+| #define HAVE_FDATASYNC 1
-+| #define HAVE_FTRUNCATE 1
-+| #define HAVE_GETCWD 1
-+| #define HAVE_GETHOSTBYADDR 1
-+| #define HAVE_GETHOSTBYNAME 1
-+| #define HAVE_GETHOSTNAME 1
-+| #define HAVE_GETMNTENT 1
-+| #define HAVE_GETNAMEINFO 1
-+| #define HAVE_GETRPCBYNAME 1
-+| #define HAVE_GETIFADDRS 1
-+| #define HAVE_GETTIMEOFDAY 1
-+| #define HAVE_HASMNTOPT 1
-+| #define HAVE_INET_NTOA 1
-+| #define HAVE_MEMSET 1
-+| #define HAVE_MKDIR 1
-+| #define HAVE_PATHCONF 1
-+| #define HAVE_REALPATH 1
-+| #define HAVE_RMDIR 1
-+| #define HAVE_SELECT 1
-+| #define HAVE_SOCKET 1
-+| #define HAVE_STRCASECMP 1
-+| #define HAVE_STRCHR 1
-+| #define HAVE_STRDUP 1
-+| #define HAVE_STRERROR 1
-+| #define HAVE_STRRCHR 1
-+| #define HAVE_STRTOL 1
-+| #define HAVE_STRTOUL 1
-+| #define HAVE_SIGPROCMASK 1
-+| #define SIZEOF_SHORT 2
-+| #define SIZEOF_INT 4
-+| #define SIZEOF_LONG 4
-+| #define SIZEOF_SIZE_T 4
-+| /* 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
-+| int
-+| main ()
-+| {
-+| static int test_array [1 - 2 * !(((long int) (sizeof (socklen_t))) <= 0)];
-+| test_array [0] = 0
-+|
-+| ;
-+| return 0;
-+| }
-+configure:19997: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -c -march=pentium-m -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include -D_GNU_SOURCE conftest.c >&5
-+conftest.c: In function 'main':
-+conftest.c:152:12: error: size of array 'test_array' is negative
-+configure:19997: $? = 1
-+configure: failed program was:
-+| /* confdefs.h */
-+| #define PACKAGE_NAME "linux nfs-utils"
-+| #define PACKAGE_TARNAME "nfs-utils"
-+| #define PACKAGE_VERSION "1.2.3"
-+| #define PACKAGE_STRING "linux nfs-utils 1.2.3"
-+| #define PACKAGE_BUGREPORT "linux-nfs@vger.kernel.org"
-+| #define PACKAGE_URL ""
-+| #define PACKAGE "nfs-utils"
-+| #define VERSION "1.2.3"
-+| #define START_STATD "/usr/sbin/start-statd"
-+| #define NFS3_SUPPORTED 1
-+| #define NFS4_SUPPORTED 1
-+| #define GSS_SUPPORTED 1
-+| #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 HAVE_LIBTIRPC 1
-+| #define HAVE__HOME_WBX_ADK_OPENADK_TARGET_I686_UCLIBC_USR_INCLUDE_TIRPC_NETCONFIG_H 1
-+| #define _FILE_OFFSET_BITS 64
-+| #define HAVE_DLFCN_H 1
-+| #define LT_OBJDIR ".libs/"
-+| #define STDC_HEADERS 1
-+| #define HAVE_EVENT_H 1
-+| #define HAVE_NFSIDMAP_H 1
-+| #define HAVE_NFS4_SET_DEBUG 1
-+| #define HAVE_NFSIDMAP_H 1
-+| #define HAVE_NFS4_SET_DEBUG 1
-+| #define KRB5_VERSION 181
-+| #define HAVE_KRB5 1
-+| #define HAVE_DECL_AI_ADDRCONFIG 1
-+| #define HAVE_ARPA_INET_H 1
-+| #define HAVE_FCNTL_H 1
-+| #define HAVE_LIBINTL_H 1
-+| #define HAVE_LIMITS_H 1
-+| #define HAVE_MALLOC_H 1
-+| #define HAVE_MEMORY_H 1
-+| #define HAVE_NETDB_H 1
-+| #define HAVE_NETINET_IN_H 1
-+| #define HAVE_PATHS_H 1
-+| #define HAVE_STDLIB_H 1
-+| #define HAVE_STRING_H 1
-+| #define HAVE_SYS_FILE_H 1
-+| #define HAVE_SYS_IOCTL_H 1
-+| #define HAVE_SYS_MOUNT_H 1
-+| #define HAVE_SYS_PARAM_H 1
-+| #define HAVE_SYS_SOCKET_H 1
-+| #define HAVE_SYS_TIME_H 1
-+| #define HAVE_SYS_VFS_H 1
-+| #define HAVE_SYSLOG_H 1
-+| #define HAVE_UNISTD_H 1
-+| #define HAVE_ET_COM_ERR_H 1
-+| #define HAVE_IFADDRS_H 1
-+| #define TIME_WITH_SYS_TIME 1
-+| #define HAVE_ALLOCA_H 1
-+| #define HAVE_ALLOCA 1
-+| #define HAVE_DIRENT_H 1
-+| #define CLOSEDIR_VOID 1
-+| #define HAVE_FORK 1
-+| #define HAVE_VFORK 1
-+| #define HAVE_WORKING_VFORK 1
-+| #define HAVE_WORKING_FORK 1
-+| #define GETGROUPS_T gid_t
-+| #define HAVE_GETMNTENT 1
-+| #define HAVE_LSTAT_EMPTY_STRING_BUG 1
-+| #define HAVE_SYS_SELECT_H 1
-+| #define HAVE_SYS_SOCKET_H 1
-+| #define SELECT_TYPE_ARG1 int
-+| #define SELECT_TYPE_ARG234 (fd_set *)
-+| #define SELECT_TYPE_ARG5 (struct timeval *)
-+| #define RETSIGTYPE void
-+| #define HAVE_STAT_EMPTY_STRING_BUG 1
-+| #define HAVE_VPRINTF 1
-+| #define HAVE_ALARM 1
-+| #define HAVE_ATEXIT 1
-+| #define HAVE_DUP2 1
-+| #define HAVE_FDATASYNC 1
-+| #define HAVE_FTRUNCATE 1
-+| #define HAVE_GETCWD 1
-+| #define HAVE_GETHOSTBYADDR 1
-+| #define HAVE_GETHOSTBYNAME 1
-+| #define HAVE_GETHOSTNAME 1
-+| #define HAVE_GETMNTENT 1
-+| #define HAVE_GETNAMEINFO 1
-+| #define HAVE_GETRPCBYNAME 1
-+| #define HAVE_GETIFADDRS 1
-+| #define HAVE_GETTIMEOFDAY 1
-+| #define HAVE_HASMNTOPT 1
-+| #define HAVE_INET_NTOA 1
-+| #define HAVE_MEMSET 1
-+| #define HAVE_MKDIR 1
-+| #define HAVE_PATHCONF 1
-+| #define HAVE_REALPATH 1
-+| #define HAVE_RMDIR 1
-+| #define HAVE_SELECT 1
-+| #define HAVE_SOCKET 1
-+| #define HAVE_STRCASECMP 1
-+| #define HAVE_STRCHR 1
-+| #define HAVE_STRDUP 1
-+| #define HAVE_STRERROR 1
-+| #define HAVE_STRRCHR 1
-+| #define HAVE_STRTOL 1
-+| #define HAVE_STRTOUL 1
-+| #define HAVE_SIGPROCMASK 1
-+| #define SIZEOF_SHORT 2
-+| #define SIZEOF_INT 4
-+| #define SIZEOF_LONG 4
-+| #define SIZEOF_SIZE_T 4
-+| /* 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
-+| int
-+| main ()
-+| {
-+| static int test_array [1 - 2 * !(((long int) (sizeof (socklen_t))) <= 1)];
-+| test_array [0] = 0
-+|
-+| ;
-+| return 0;
-+| }
-+configure:19997: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -c -march=pentium-m -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include -D_GNU_SOURCE conftest.c >&5
-+conftest.c: In function 'main':
-+conftest.c:152:12: error: size of array 'test_array' is negative
-+configure:19997: $? = 1
-+configure: failed program was:
-+| /* confdefs.h */
-+| #define PACKAGE_NAME "linux nfs-utils"
-+| #define PACKAGE_TARNAME "nfs-utils"
-+| #define PACKAGE_VERSION "1.2.3"
-+| #define PACKAGE_STRING "linux nfs-utils 1.2.3"
-+| #define PACKAGE_BUGREPORT "linux-nfs@vger.kernel.org"
-+| #define PACKAGE_URL ""
-+| #define PACKAGE "nfs-utils"
-+| #define VERSION "1.2.3"
-+| #define START_STATD "/usr/sbin/start-statd"
-+| #define NFS3_SUPPORTED 1
-+| #define NFS4_SUPPORTED 1
-+| #define GSS_SUPPORTED 1
-+| #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 HAVE_LIBTIRPC 1
-+| #define HAVE__HOME_WBX_ADK_OPENADK_TARGET_I686_UCLIBC_USR_INCLUDE_TIRPC_NETCONFIG_H 1
-+| #define _FILE_OFFSET_BITS 64
-+| #define HAVE_DLFCN_H 1
-+| #define LT_OBJDIR ".libs/"
-+| #define STDC_HEADERS 1
-+| #define HAVE_EVENT_H 1
-+| #define HAVE_NFSIDMAP_H 1
-+| #define HAVE_NFS4_SET_DEBUG 1
-+| #define HAVE_NFSIDMAP_H 1
-+| #define HAVE_NFS4_SET_DEBUG 1
-+| #define KRB5_VERSION 181
-+| #define HAVE_KRB5 1
-+| #define HAVE_DECL_AI_ADDRCONFIG 1
-+| #define HAVE_ARPA_INET_H 1
-+| #define HAVE_FCNTL_H 1
-+| #define HAVE_LIBINTL_H 1
-+| #define HAVE_LIMITS_H 1
-+| #define HAVE_MALLOC_H 1
-+| #define HAVE_MEMORY_H 1
-+| #define HAVE_NETDB_H 1
-+| #define HAVE_NETINET_IN_H 1
-+| #define HAVE_PATHS_H 1
-+| #define HAVE_STDLIB_H 1
-+| #define HAVE_STRING_H 1
-+| #define HAVE_SYS_FILE_H 1
-+| #define HAVE_SYS_IOCTL_H 1
-+| #define HAVE_SYS_MOUNT_H 1
-+| #define HAVE_SYS_PARAM_H 1
-+| #define HAVE_SYS_SOCKET_H 1
-+| #define HAVE_SYS_TIME_H 1
-+| #define HAVE_SYS_VFS_H 1
-+| #define HAVE_SYSLOG_H 1
-+| #define HAVE_UNISTD_H 1
-+| #define HAVE_ET_COM_ERR_H 1
-+| #define HAVE_IFADDRS_H 1
-+| #define TIME_WITH_SYS_TIME 1
-+| #define HAVE_ALLOCA_H 1
-+| #define HAVE_ALLOCA 1
-+| #define HAVE_DIRENT_H 1
-+| #define CLOSEDIR_VOID 1
-+| #define HAVE_FORK 1
-+| #define HAVE_VFORK 1
-+| #define HAVE_WORKING_VFORK 1
-+| #define HAVE_WORKING_FORK 1
-+| #define GETGROUPS_T gid_t
-+| #define HAVE_GETMNTENT 1
-+| #define HAVE_LSTAT_EMPTY_STRING_BUG 1
-+| #define HAVE_SYS_SELECT_H 1
-+| #define HAVE_SYS_SOCKET_H 1
-+| #define SELECT_TYPE_ARG1 int
-+| #define SELECT_TYPE_ARG234 (fd_set *)
-+| #define SELECT_TYPE_ARG5 (struct timeval *)
-+| #define RETSIGTYPE void
-+| #define HAVE_STAT_EMPTY_STRING_BUG 1
-+| #define HAVE_VPRINTF 1
-+| #define HAVE_ALARM 1
-+| #define HAVE_ATEXIT 1
-+| #define HAVE_DUP2 1
-+| #define HAVE_FDATASYNC 1
-+| #define HAVE_FTRUNCATE 1
-+| #define HAVE_GETCWD 1
-+| #define HAVE_GETHOSTBYADDR 1
-+| #define HAVE_GETHOSTBYNAME 1
-+| #define HAVE_GETHOSTNAME 1
-+| #define HAVE_GETMNTENT 1
-+| #define HAVE_GETNAMEINFO 1
-+| #define HAVE_GETRPCBYNAME 1
-+| #define HAVE_GETIFADDRS 1
-+| #define HAVE_GETTIMEOFDAY 1
-+| #define HAVE_HASMNTOPT 1
-+| #define HAVE_INET_NTOA 1
-+| #define HAVE_MEMSET 1
-+| #define HAVE_MKDIR 1
-+| #define HAVE_PATHCONF 1
-+| #define HAVE_REALPATH 1
-+| #define HAVE_RMDIR 1
-+| #define HAVE_SELECT 1
-+| #define HAVE_SOCKET 1
-+| #define HAVE_STRCASECMP 1
-+| #define HAVE_STRCHR 1
-+| #define HAVE_STRDUP 1
-+| #define HAVE_STRERROR 1
-+| #define HAVE_STRRCHR 1
-+| #define HAVE_STRTOL 1
-+| #define HAVE_STRTOUL 1
-+| #define HAVE_SIGPROCMASK 1
-+| #define SIZEOF_SHORT 2
-+| #define SIZEOF_INT 4
-+| #define SIZEOF_LONG 4
-+| #define SIZEOF_SIZE_T 4
-+| /* 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
-+| int
-+| main ()
-+| {
-+| static int test_array [1 - 2 * !(((long int) (sizeof (socklen_t))) <= 3)];
-+| test_array [0] = 0
-+|
-+| ;
-+| return 0;
-+| }
-+configure:19997: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -c -march=pentium-m -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include -D_GNU_SOURCE conftest.c >&5
-+configure:19997: $? = 0
-+configure:19997: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -c -march=pentium-m -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include -D_GNU_SOURCE conftest.c >&5
-+configure:19997: $? = 0
-+configure:19997: /home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -c -march=pentium-m -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -I/home/wbx/adk/openadk/target_i686_uclibc/usr/include -D_GNU_SOURCE conftest.c >&5
-+configure:19997: $? = 0
-+configure:20012: result: 4
-+configure:20234: creating ./config.status
-+
-+## ---------------------- ##
-+## Running config.status. ##
-+## ---------------------- ##
-+
-+This file was extended by linux nfs-utils config.status 1.2.3, which was
-+generated by GNU Autoconf 2.65. Invocation command line was
-+
-+ CONFIG_FILES =
-+ CONFIG_HEADERS =
-+ CONFIG_LINKS =
-+ CONFIG_COMMANDS =
-+ $ ./config.status
-+
-+on chrom
-+
-+config.status:1313: creating Makefile
-+config.status:1313: creating linux-nfs/Makefile
-+config.status:1313: creating support/Makefile
-+config.status:1313: creating support/export/Makefile
-+config.status:1313: creating support/include/nfs/Makefile
-+config.status:1313: creating support/include/rpcsvc/Makefile
-+config.status:1313: creating support/include/sys/fs/Makefile
-+config.status:1313: creating support/include/sys/Makefile
-+config.status:1313: creating support/include/Makefile
-+config.status:1313: creating support/misc/Makefile
-+config.status:1313: creating support/nfs/Makefile
-+config.status:1313: creating support/nsm/Makefile
-+config.status:1313: creating tools/Makefile
-+config.status:1313: creating tools/locktest/Makefile
-+config.status:1313: creating tools/nlmtest/Makefile
-+config.status:1313: creating tools/rpcdebug/Makefile
-+config.status:1313: creating tools/rpcgen/Makefile
-+config.status:1313: creating tools/mountstats/Makefile
-+config.status:1313: creating tools/nfs-iostat/Makefile
-+config.status:1313: creating utils/Makefile
-+config.status:1313: creating utils/exportfs/Makefile
-+config.status:1313: creating utils/gssd/Makefile
-+config.status:1313: creating utils/idmapd/Makefile
-+config.status:1313: creating utils/mount/Makefile
-+config.status:1313: creating utils/mountd/Makefile
-+config.status:1313: creating utils/nfsd/Makefile
-+config.status:1313: creating utils/nfsstat/Makefile
-+config.status:1313: creating utils/showmount/Makefile
-+config.status:1313: creating utils/statd/Makefile
-+config.status:1313: creating tests/Makefile
-+config.status:1313: creating tests/nsm_client/Makefile
-+config.status:1313: creating support/include/config.h
-+config.status:1533: executing depfiles commands
-+config.status:1533: executing libtool commands
-+configure:22726: WARNING: unrecognized options: --disable-nls
-
- ## ---------------- ##
- ## Cache variables. ##
- ## ---------------- ##
-
--ac_cv_build=x86_64-unknown-linux-gnu
-+ac_cv_build=x86_64-pc-linux-gnu
- ac_cv_c_compiler_gnu=yes
-+ac_cv_c_const=yes
-+ac_cv_c_inline=inline
-+ac_cv_cxx_compiler_gnu=yes
- ac_cv_env_CCC_set=
- ac_cv_env_CCC_value=
--ac_cv_env_CC_set=
--ac_cv_env_CC_value=
--ac_cv_env_CFLAGS_set=
--ac_cv_env_CFLAGS_value=
--ac_cv_env_CPPFLAGS_set=
--ac_cv_env_CPPFLAGS_value=
-+ac_cv_env_CC_set=set
-+ac_cv_env_CC_value=/home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc
-+ac_cv_env_CFLAGS_set=set
-+ac_cv_env_CFLAGS_value='-march=pentium-m -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe'
-+ac_cv_env_CPPFLAGS_set=set
-+ac_cv_env_CPPFLAGS_value=-I/home/wbx/adk/openadk/target_i686_uclibc/usr/include
- ac_cv_env_CPP_set=
- ac_cv_env_CPP_value=
- ac_cv_env_CXXCPP_set=
- ac_cv_env_CXXCPP_value=
--ac_cv_env_CXXFLAGS_set=
-+ac_cv_env_CXXFLAGS_set=set
- ac_cv_env_CXXFLAGS_value=
--ac_cv_env_CXX_set=
--ac_cv_env_CXX_value=
-+ac_cv_env_CXX_set=set
-+ac_cv_env_CXX_value=/home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-g++
- ac_cv_env_GSSGLUE_CFLAGS_set=
- ac_cv_env_GSSGLUE_CFLAGS_value=
- ac_cv_env_GSSGLUE_LIBS_set=
- ac_cv_env_GSSGLUE_LIBS_value=
--ac_cv_env_LDFLAGS_set=
--ac_cv_env_LDFLAGS_value=
--ac_cv_env_LIBS_set=
--ac_cv_env_LIBS_value=
-+ac_cv_env_LDFLAGS_set=set
-+ac_cv_env_LDFLAGS_value='-Wl,-O2 -Wl,-rpath -Wl,/usr/lib -Wl,-rpath-link -Wl,/home/wbx/adk/openadk/target_i686_uclibc/usr/lib -L/home/wbx/adk/openadk/target_i686_uclibc/lib -L/home/wbx/adk/openadk/target_i686_uclibc/usr/lib'
-+ac_cv_env_LIBS_set=set
-+ac_cv_env_LIBS_value=-lrpcsecgss
- ac_cv_env_PKG_CONFIG_set=
- ac_cv_env_PKG_CONFIG_value=
- ac_cv_env_RPCSECGSS_CFLAGS_set=
- ac_cv_env_RPCSECGSS_CFLAGS_value=
- ac_cv_env_RPCSECGSS_LIBS_set=
- ac_cv_env_RPCSECGSS_LIBS_value=
--ac_cv_env_build_alias_set=
--ac_cv_env_build_alias_value=
--ac_cv_env_host_alias_set=
--ac_cv_env_host_alias_value=
--ac_cv_env_target_alias_set=
--ac_cv_env_target_alias_value=
-+ac_cv_env_build_alias_set=set
-+ac_cv_env_build_alias_value=x86_64-linux-gnu
-+ac_cv_env_host_alias_set=set
-+ac_cv_env_host_alias_value=i686-openadk-linux
-+ac_cv_env_target_alias_set=set
-+ac_cv_env_target_alias_value=i686-openadk-linux
-+ac_cv_func__doprnt=no
-+ac_cv_func_alarm=yes
-+ac_cv_func_alloca_works=yes
-+ac_cv_func_atexit=yes
-+ac_cv_func_closedir_void=yes
-+ac_cv_func_connect=yes
-+ac_cv_func_dup2=yes
-+ac_cv_func_fdatasync=yes
-+ac_cv_func_fork=yes
-+ac_cv_func_fork_works=yes
-+ac_cv_func_ftruncate=yes
-+ac_cv_func_getaddrinfo=yes
-+ac_cv_func_getcwd=yes
-+ac_cv_func_getgroups=yes
-+ac_cv_func_getgroups_works=no
-+ac_cv_func_gethostbyaddr=yes
-+ac_cv_func_gethostbyname=yes
-+ac_cv_func_gethostname=yes
-+ac_cv_func_getifaddrs=yes
-+ac_cv_func_getmntent=yes
-+ac_cv_func_getnameinfo=yes
-+ac_cv_func_getrpcbyname=yes
-+ac_cv_func_getrpcbynumber=yes
-+ac_cv_func_getservbyname=yes
-+ac_cv_func_gettimeofday=yes
-+ac_cv_func_hasmntopt=yes
-+ac_cv_func_inet_ntoa=yes
-+ac_cv_func_innetgr=no
-+ac_cv_func_lstat_dereferences_slashed_symlink=no
-+ac_cv_func_lstat_empty_string_bug=yes
-+ac_cv_func_malloc_0_nonnull=yes
-+ac_cv_func_memcmp_working=no
-+ac_cv_func_memset=yes
-+ac_cv_func_mkdir=yes
-+ac_cv_func_pathconf=yes
-+ac_cv_func_prctl=yes
-+ac_cv_func_realloc_0_nonnull=yes
-+ac_cv_func_realpath=yes
-+ac_cv_func_rmdir=yes
-+ac_cv_func_select=yes
-+ac_cv_func_select_args='int,fd_set *,struct timeval *'
-+ac_cv_func_sigprocmask=yes
-+ac_cv_func_socket=yes
-+ac_cv_func_stat_empty_string_bug=yes
-+ac_cv_func_strcasecmp=yes
-+ac_cv_func_strchr=yes
-+ac_cv_func_strdup=yes
-+ac_cv_func_strerror=yes
-+ac_cv_func_strrchr=yes
-+ac_cv_func_strtol=yes
-+ac_cv_func_strtoul=yes
-+ac_cv_func_vfork=yes
-+ac_cv_func_vfork_works=yes
-+ac_cv_func_vprintf=yes
-+ac_cv_have_decl_AI_ADDRCONFIG=yes
-+ac_cv_header__home_wbx_adk_openadk_target_i686_uclibc_usr_include_tirpc_netconfig_h=yes
-+ac_cv_header_arpa_inet_h=yes
-+ac_cv_header_com_err_h=no
-+ac_cv_header_dirent_dirent_h=yes
-+ac_cv_header_dlfcn_h=yes
-+ac_cv_header_et_com_err_h=yes
-+ac_cv_header_event_h=yes
-+ac_cv_header_fcntl_h=yes
-+ac_cv_header_ifaddrs_h=yes
- ac_cv_header_inttypes_h=yes
-+ac_cv_header_libintl_h=yes
-+ac_cv_header_limits_h=yes
-+ac_cv_header_malloc_h=yes
- ac_cv_header_memory_h=yes
-+ac_cv_header_netdb_h=yes
-+ac_cv_header_netinet_in_h=yes
-+ac_cv_header_nfsidmap_h=yes
-+ac_cv_header_paths_h=yes
-+ac_cv_header_spkm3_h=no
- 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_capability_h=no
-+ac_cv_header_sys_file_h=yes
-+ac_cv_header_sys_ioctl_h=yes
-+ac_cv_header_sys_mount_h=yes
-+ac_cv_header_sys_param_h=yes
-+ac_cv_header_sys_select_h=yes
-+ac_cv_header_sys_socket_h=yes
- ac_cv_header_sys_stat_h=yes
-+ac_cv_header_sys_time_h=yes
- ac_cv_header_sys_types_h=yes
-+ac_cv_header_sys_types_h_makedev=yes
-+ac_cv_header_sys_vfs_h=yes
-+ac_cv_header_syslog_h=yes
-+ac_cv_header_time=yes
- ac_cv_header_unistd_h=yes
--ac_cv_host=x86_64-unknown-linux-gnu
-+ac_cv_header_vfork_h=no
-+ac_cv_host=i686-openadk-linux-gnu
-+ac_cv_lib_cap_cap_get_proc=no
-+ac_cv_lib_crypt_crypt=yes
-+ac_cv_lib_error_at_line=yes
-+ac_cv_lib_event_event_dispatch=yes
-+ac_cv_lib_gssapi_krb5___gss_krb5_ccache_name=no
-+ac_cv_lib_gssapi_krb5___gss_krb5_export_lucid_sec_context=no
-+ac_cv_lib_gssapi_krb5___gss_krb5_set_allowable_enctypes=no
-+ac_cv_lib_gssapi_krb5___krb5_get_error_message=no
-+ac_cv_lib_gssapi_krb5___krb5_get_init_creds_opt_set_addressless=no
-+ac_cv_lib_nfsidmap_nfs4_init_name_mapping=yes
-+ac_cv_lib_nfsidmap_nfs4_set_debug=yes
-+ac_cv_lib_nsl_gethostbyname=no
- ac_cv_lib_tirpc_clnt_tli_create=yes
- 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_install='/usr/bin/install -c'
-+ac_cv_path_SED=/home/wbx/adk/openadk/scripts/sed
-+ac_cv_path_ac_pt_PKG_CONFIG=/usr/bin/pkg-config
-+ac_cv_path_install='/home/wbx/adk/openadk/scripts/install -c'
- ac_cv_path_mkdir=/bin/mkdir
-+ac_cv_prog_AR=/home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-ar
- ac_cv_prog_AWK=gawk
--ac_cv_prog_CPP='gcc -E'
--ac_cv_prog_ac_ct_CC=gcc
-+ac_cv_prog_CC=/home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc
-+ac_cv_prog_CPP='/home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -E'
-+ac_cv_prog_CXXCPP='/home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-g++ -E'
-+ac_cv_prog_LD=/home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-ld
-+ac_cv_prog_OBJDUMP=i686-openadk-linux-objdump
-+ac_cv_prog_RANLIB=/home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-ranlib
-+ac_cv_prog_STRIP=/home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-strip
-+ac_cv_prog_cc__home_wbx_adk_openadk_host_i686_uclibc_bin_i686_openadk_linux_uclibc_gcc_c_o=yes
- ac_cv_prog_cc_c89=
- ac_cv_prog_cc_g=yes
-+ac_cv_prog_cxx_g=yes
-+ac_cv_prog_gcc_traditional=no
- ac_cv_prog_make_make_set=yes
--am_cv_CC_dependencies_compiler_type=gcc3
-+ac_cv_search_getmntent='none required'
-+ac_cv_search_opendir='none required'
-+ac_cv_sizeof_int=4
-+ac_cv_sizeof_long=4
-+ac_cv_sizeof_short=2
-+ac_cv_sizeof_size_t=4
-+ac_cv_sizeof_socklen_t=4
-+ac_cv_struct_tm=time.h
-+ac_cv_sys_file_offset_bits=64
-+ac_cv_sys_largefile_CC=no
-+ac_cv_type_getgroups=gid_t
-+ac_cv_type_off_t=yes
-+ac_cv_type_pid_t=yes
-+ac_cv_type_signal=void
-+ac_cv_type_size_t=yes
-+ac_cv_type_uid_t=yes
-+ac_cv_working_alloca_h=yes
-+am_cv_CC_dependencies_compiler_type=none
-+am_cv_CXX_dependencies_compiler_type=none
-+knfsd_cv_bsd_signals=no
-+knfsd_cv_glibc2=yes
-+lt_cv_deplibs_check_method=pass_all
-+lt_cv_file_magic_cmd='$MAGIC_CMD'
-+lt_cv_file_magic_test_file=
-+lt_cv_ld_reload_flag=-r
-+lt_cv_nm_interface='BSD nm'
-+lt_cv_objdir=.libs
-+lt_cv_path_LD=/home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-ld
-+lt_cv_path_LDCXX=/home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-ld
-+lt_cv_path_NM=/home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-nm
-+lt_cv_prog_compiler_c_o=yes
-+lt_cv_prog_compiler_c_o_CXX=yes
-+lt_cv_prog_compiler_pic_works=yes
-+lt_cv_prog_compiler_pic_works_CXX=yes
-+lt_cv_prog_compiler_rtti_exceptions=no
-+lt_cv_prog_compiler_static_works=yes
-+lt_cv_prog_compiler_static_works_CXX=yes
-+lt_cv_prog_gnu_ld=yes
-+lt_cv_prog_gnu_ldcxx=yes
-+lt_cv_sys_global_symbol_pipe='sed -n -e '\''s/^.*[ ]\([ABCDGIRSTW][ABCDGIRSTW]*\)[ ][ ]*\([_A-Za-z][_A-Za-z0-9]*\)$/\1 \2 \2/p'\'''
-+lt_cv_sys_global_symbol_to_c_name_address='sed -n -e '\''s/^: \([^ ]*\) $/ {\"\1\", (void *) 0},/p'\'' -e '\''s/^[ABCDGIRSTW]* \([^ ]*\) \([^ ]*\)$/ {"\2", (void *) \&\2},/p'\'''
-+lt_cv_sys_global_symbol_to_c_name_address_lib_prefix='sed -n -e '\''s/^: \([^ ]*\) $/ {\"\1\", (void *) 0},/p'\'' -e '\''s/^[ABCDGIRSTW]* \([^ ]*\) \(lib[^ ]*\)$/ {"\2", (void *) \&\2},/p'\'' -e '\''s/^[ABCDGIRSTW]* \([^ ]*\) \([^ ]*\)$/ {"lib\2", (void *) \&\2},/p'\'''
-+lt_cv_sys_global_symbol_to_cdecl='sed -n -e '\''s/^T .* \(.*\)$/extern int \1();/p'\'' -e '\''s/^[ABCDGIRSTW]* .* \(.*\)$/extern char \1;/p'\'''
-+lt_cv_sys_max_cmd_len=3458764513820540925
-+pkg_cv_GSSGLUE_CFLAGS='-I/home/wbx/adk/openadk/target_i686_uclibc/usr/include/gssglue '
-+pkg_cv_GSSGLUE_LIBS='-L/home/wbx/adk/openadk/target_i686_uclibc/usr/lib -lgssglue -ldl '
-
- ## ----------------- ##
- ## Output variables. ##
- ## ----------------- ##
-
--ACLOCAL='${SHELL} /tmp/nfs-utils-1.2.3/missing --run aclocal-1.11'
--ACLOCAL_AMFLAGS=''
-+ACLOCAL='${SHELL} /home/wbx/adk/openadk/build_ibm-x40_i686_uclibc/w-nfs-utils-1.2.3-3/nfs-utils-1.2.3/missing --run aclocal-1.11'
-+ACLOCAL_AMFLAGS='-I $(ACLOCAL_FLAGS)'
- ALLOCA=''
--AMDEPBACKSLASH='\'
--AMDEP_FALSE='#'
--AMDEP_TRUE=''
--AMTAR='${SHELL} /tmp/nfs-utils-1.2.3/missing --run tar'
--AM_CFLAGS=''
--AM_CPPFLAGS=''
--AR=''
--AUTOCONF='${SHELL} /tmp/nfs-utils-1.2.3/missing --run autoconf'
--AUTOHEADER='${SHELL} /tmp/nfs-utils-1.2.3/missing --run autoheader'
--AUTOMAKE='${SHELL} /tmp/nfs-utils-1.2.3/missing --run automake-1.11'
-+AMDEPBACKSLASH=''
-+AMDEP_FALSE=''
-+AMDEP_TRUE='#'
-+AMTAR='${SHELL} /home/wbx/adk/openadk/build_ibm-x40_i686_uclibc/w-nfs-utils-1.2.3-3/nfs-utils-1.2.3/missing --run tar'
-+AM_CFLAGS='-Wall -Wextra -Wstrict-prototypes -pipe'
-+AM_CPPFLAGS='-I/home/wbx/adk/openadk/target_i686_uclibc/usr/include/tirpc'
-+AR='/home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-ar'
-+AUTOCONF='${SHELL} /home/wbx/adk/openadk/build_ibm-x40_i686_uclibc/w-nfs-utils-1.2.3-3/nfs-utils-1.2.3/missing --run autoconf'
-+AUTOHEADER='${SHELL} /home/wbx/adk/openadk/build_ibm-x40_i686_uclibc/w-nfs-utils-1.2.3-3/nfs-utils-1.2.3/missing --run autoheader'
-+AUTOMAKE='${SHELL} /home/wbx/adk/openadk/build_ibm-x40_i686_uclibc/w-nfs-utils-1.2.3-3/nfs-utils-1.2.3/missing --run automake-1.11'
- AWK='gawk'
--CC='gcc'
--CCDEPMODE='depmode=gcc3'
--CC_FOR_BUILD=''
--CFLAGS='-g -O2'
--CFLAGS_FOR_BUILD=''
--CONFIG_GSS_FALSE=''
--CONFIG_GSS_TRUE='#'
-+CC='/home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc'
-+CCDEPMODE='depmode=none'
-+CC_FOR_BUILD='cc'
-+CFLAGS='-march=pentium-m -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe'
-+CFLAGS_FOR_BUILD='-O2 -Wall'
-+CONFIG_GSS_FALSE='#'
-+CONFIG_GSS_TRUE=''
- CONFIG_IPV6_FALSE=''
- CONFIG_IPV6_TRUE='#'
- CONFIG_MOUNT_FALSE='#'
-@@ -329,18 +5407,18 @@ CONFIG_NFSV41_FALSE=''
- CONFIG_NFSV41_TRUE='#'
- CONFIG_NFSV4_FALSE='#'
- CONFIG_NFSV4_TRUE=''
--CONFIG_RPCGEN_FALSE=''
--CONFIG_RPCGEN_TRUE='#'
--CPP='gcc -E'
--CPPFLAGS=''
--CPPFLAGS_FOR_BUILD=''
--CXX=''
--CXXCPP=''
--CXXDEPMODE=''
-+CONFIG_RPCGEN_FALSE='#'
-+CONFIG_RPCGEN_TRUE=''
-+CPP='/home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-gcc -E'
-+CPPFLAGS='-I/home/wbx/adk/openadk/target_i686_uclibc/usr/include -D_GNU_SOURCE'
-+CPPFLAGS_FOR_BUILD=' -D_GNU_SOURCE'
-+CXX='/home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-g++'
-+CXXCPP='/home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-g++ -E'
-+CXXDEPMODE='depmode=none'
- CXXFLAGS=''
- CXXFLAGS_FOR_BUILD=''
- CYGPATH_W='echo'
--DEFS=''
-+DEFS='-DHAVE_CONFIG_H'
- DEPDIR='.deps'
- DSYMUTIL=''
- DUMPBIN=''
-@@ -349,11 +5427,11 @@ ECHO_N='-n'
- ECHO_T=''
- EGREP='/bin/grep -E'
- EXEEXT=''
--FGREP=''
-+FGREP='/bin/grep -F'
- GREP='/bin/grep'
--GSSD=''
--GSSGLUE_CFLAGS=''
--GSSGLUE_LIBS=''
-+GSSD='gssd'
-+GSSGLUE_CFLAGS='-I/home/wbx/adk/openadk/target_i686_uclibc/usr/include/gssglue '
-+GSSGLUE_LIBS='-L/home/wbx/adk/openadk/target_i686_uclibc/usr/lib -lgssglue -ldl '
- HAVE_LIBWRAP=''
- HAVE_TCP_WRAPPER=''
- IDMAPD='idmapd'
-@@ -361,37 +5439,37 @@ INSTALL_DATA='${INSTALL} -m 644'
- INSTALL_PROGRAM='${INSTALL}'
- INSTALL_SCRIPT='${INSTALL}'
- INSTALL_STRIP_PROGRAM='$(install_sh) -c -s'
--K5VERS=''
--KRBCFLAGS=''
--KRBDIR=''
--KRBLDFLAGS=''
--KRBLIBS=''
--LD=''
--LDFLAGS=''
-+K5VERS='181'
-+KRBCFLAGS='-I/home/wbx/adk/openadk/target_i686_uclibc/usr/include'
-+KRBDIR='/home/wbx/adk/openadk/target_i686_uclibc/usr/'
-+KRBLDFLAGS='-Wl,-rpath=/home/wbx/adk/openadk/target_i686_uclibc/usr//lib'
-+KRBLIBS='-L/home/wbx/adk/openadk/target_i686_uclibc/usr/lib $(PROG_RPATH_FLAGS) -march=pentium-m -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -Wl,-O2 -Wl,-rpath -Wl,/usr/lib -Wl,-rpath-link -Wl,/home/wbx/adk/openadk/target_i686_uclibc/usr/lib -L/home/wbx/adk/openadk/target_i686_uclibc/lib -L/home/wbx/adk/openadk/target_i686_uclibc/usr/lib -lgssapi_krb5 -lkrb5 -lk5crypto -lcom_err -lresolv -ldl'
-+LD='/home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-ld'
-+LDFLAGS='-Wl,-O2 -Wl,-rpath -Wl,/usr/lib -Wl,-rpath-link -Wl,/home/wbx/adk/openadk/target_i686_uclibc/usr/lib -L/home/wbx/adk/openadk/target_i686_uclibc/lib -L/home/wbx/adk/openadk/target_i686_uclibc/usr/lib'
- LDFLAGS_FOR_BUILD=''
- LIBBLKID=''
- LIBBSD=''
- LIBCAP=''
--LIBCRYPT=''
-+LIBCRYPT='-lcrypt'
- LIBNSL=''
--LIBOBJS=''
--LIBS='-ltirpc '
-+LIBOBJS=' ${LIBOBJDIR}lstat$U.o ${LIBOBJDIR}memcmp$U.o ${LIBOBJDIR}stat$U.o'
-+LIBS='-ltirpc -lrpcsecgss'
- LIBSOCKET=''
--LIBTOOL=''
-+LIBTOOL='$(SHELL) $(top_builddir)/libtool'
- LIBWRAP=''
- LIPO=''
--LN_S=''
--LTLIBOBJS=''
-+LN_S='ln -s'
-+LTLIBOBJS=' ${LIBOBJDIR}lstat$U.lo ${LIBOBJDIR}memcmp$U.lo ${LIBOBJDIR}stat$U.lo'
- MAINT='#'
- MAINTAINER_MODE_FALSE=''
- MAINTAINER_MODE_TRUE='#'
--MAKEINFO='${SHELL} /tmp/nfs-utils-1.2.3/missing --run makeinfo'
-+MAKEINFO='${SHELL} /home/wbx/adk/openadk/build_ibm-x40_i686_uclibc/w-nfs-utils-1.2.3-3/nfs-utils-1.2.3/missing --run makeinfo'
- MKDIR_P='/bin/mkdir -p'
- MOUNT_CONFIG_FALSE=''
- MOUNT_CONFIG_TRUE='#'
--NM=''
-+NM='/home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-nm'
- NMEDIT=''
--OBJDUMP=''
-+OBJDUMP='i686-openadk-linux-objdump'
- OBJEXT='o'
- OTOOL64=''
- OTOOL=''
-@@ -403,80 +5481,80 @@ PACKAGE_TARNAME='nfs-utils'
- PACKAGE_URL=''
- PACKAGE_VERSION='1.2.3'
- PATH_SEPARATOR=':'
--PKG_CONFIG=''
--RANLIB=''
-+PKG_CONFIG='/usr/bin/pkg-config'
-+RANLIB='/home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-ranlib'
- RELEASE='1'
--RPCGEN_PATH='/usr/bin/rpcgen'
-+RPCGEN_PATH=''
- RPCSECGSS_CFLAGS=''
- RPCSECGSS_LIBS=''
--SED=''
-+SED='/home/wbx/adk/openadk/scripts/sed'
- SET_MAKE=''
--SHELL='/bin/sh'
--STRIP=''
--SVCGSSD=''
-+SHELL='/bin/bash'
-+STRIP='/home/wbx/adk/openadk/host_i686_uclibc/bin/i686-openadk-linux-uclibc-strip'
-+SVCGSSD='svcgssd'
- VERSION='1.2.3'
--ac_ct_CC='gcc'
-+ac_ct_CC=''
- ac_ct_CXX=''
- ac_ct_DUMPBIN=''
- am__EXEEXT_FALSE=''
--am__EXEEXT_TRUE=''
--am__fastdepCC_FALSE='#'
--am__fastdepCC_TRUE=''
-+am__EXEEXT_TRUE='#'
-+am__fastdepCC_FALSE=''
-+am__fastdepCC_TRUE='#'
- am__fastdepCXX_FALSE=''
--am__fastdepCXX_TRUE=''
-+am__fastdepCXX_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='x86_64-unknown-linux-gnu'
--build_alias=''
-+bindir='/usr/bin'
-+build='x86_64-pc-linux-gnu'
-+build_alias='x86_64-linux-gnu'
- build_cpu='x86_64'
- build_os='linux-gnu'
--build_vendor='unknown'
--datadir='${datarootdir}'
-+build_vendor='pc'
-+datadir='/usr/share'
- datarootdir='${prefix}/share'
- docdir='${datarootdir}/doc/${PACKAGE_TARNAME}'
- dvidir='${docdir}'
--enable_gss=''
-+enable_gss='yes'
- enable_ipv6=''
- enable_mountconfig=''
- enable_nfsv3='yes'
- enable_nfsv41=''
- enable_nfsv4='yes'
--exec_prefix='NONE'
--host='x86_64-unknown-linux-gnu'
--host_alias=''
--host_cpu='x86_64'
-+exec_prefix='${prefix}'
-+host='i686-openadk-linux-gnu'
-+host_alias='i686-openadk-linux'
-+host_cpu='i686'
- host_os='linux-gnu'
--host_vendor='unknown'
-+host_vendor='openadk'
- htmldir='${docdir}'
- includedir='${prefix}/include'
- infodir='${datarootdir}/info'
--install_sh='${SHELL} /tmp/nfs-utils-1.2.3/install-sh'
-+install_sh='${SHELL} /home/wbx/adk/openadk/build_ibm-x40_i686_uclibc/w-nfs-utils-1.2.3-3/nfs-utils-1.2.3/install-sh'
- kprefix=''
- libdir='${exec_prefix}/lib'
--libexecdir='${exec_prefix}/libexec'
-+libexecdir='/usr/libexec'
- localedir='${datarootdir}/locale'
--localstatedir='${prefix}/var'
-+localstatedir='/var'
- lt_ECHO='echo'
--mandir='${datarootdir}/man'
-+mandir='/usr/share/man'
- mkdir_p='/bin/mkdir -p'
- mountfile=''
- oldincludedir='/usr/include'
- pdfdir='${docdir}'
--prefix='NONE'
--program_transform_name='s,x,x,'
-+prefix='/usr'
-+program_transform_name='s&$$&&;s&^&&'
- psdir='${docdir}'
- sbindir='${exec_prefix}/sbin'
- sharedstatedir='${prefix}/com'
- startstatd='/usr/sbin/start-statd'
--statduser='rpcuser'
-+statduser='nobody'
- statedir='/var/lib/nfs'
--sysconfdir='${prefix}/etc'
--target_alias=''
-+sysconfdir='/etc'
-+target_alias='i686-openadk-linux'
-
- ## ----------- ##
- ## confdefs.h. ##
-@@ -494,6 +5572,7 @@ target_alias=''
- #define START_STATD "/usr/sbin/start-statd"
- #define NFS3_SUPPORTED 1
- #define NFS4_SUPPORTED 1
-+#define GSS_SUPPORTED 1
- #define STDC_HEADERS 1
- #define HAVE_SYS_TYPES_H 1
- #define HAVE_SYS_STAT_H 1
-@@ -505,6 +5584,97 @@ target_alias=''
- #define HAVE_STDINT_H 1
- #define HAVE_UNISTD_H 1
- #define HAVE_LIBTIRPC 1
-+#define HAVE__HOME_WBX_ADK_OPENADK_TARGET_I686_UCLIBC_USR_INCLUDE_TIRPC_NETCONFIG_H 1
-+#define _FILE_OFFSET_BITS 64
-+#define HAVE_DLFCN_H 1
-+#define LT_OBJDIR ".libs/"
-+#define STDC_HEADERS 1
-+#define HAVE_EVENT_H 1
-+#define HAVE_NFSIDMAP_H 1
-+#define HAVE_NFS4_SET_DEBUG 1
-+#define HAVE_NFSIDMAP_H 1
-+#define HAVE_NFS4_SET_DEBUG 1
-+#define KRB5_VERSION 181
-+#define HAVE_KRB5 1
-+#define HAVE_DECL_AI_ADDRCONFIG 1
-+#define HAVE_ARPA_INET_H 1
-+#define HAVE_FCNTL_H 1
-+#define HAVE_LIBINTL_H 1
-+#define HAVE_LIMITS_H 1
-+#define HAVE_MALLOC_H 1
-+#define HAVE_MEMORY_H 1
-+#define HAVE_NETDB_H 1
-+#define HAVE_NETINET_IN_H 1
-+#define HAVE_PATHS_H 1
-+#define HAVE_STDLIB_H 1
-+#define HAVE_STRING_H 1
-+#define HAVE_SYS_FILE_H 1
-+#define HAVE_SYS_IOCTL_H 1
-+#define HAVE_SYS_MOUNT_H 1
-+#define HAVE_SYS_PARAM_H 1
-+#define HAVE_SYS_SOCKET_H 1
-+#define HAVE_SYS_TIME_H 1
-+#define HAVE_SYS_VFS_H 1
-+#define HAVE_SYSLOG_H 1
-+#define HAVE_UNISTD_H 1
-+#define HAVE_ET_COM_ERR_H 1
-+#define HAVE_IFADDRS_H 1
-+#define TIME_WITH_SYS_TIME 1
-+#define HAVE_ALLOCA_H 1
-+#define HAVE_ALLOCA 1
-+#define HAVE_DIRENT_H 1
-+#define CLOSEDIR_VOID 1
-+#define HAVE_FORK 1
-+#define HAVE_VFORK 1
-+#define HAVE_WORKING_VFORK 1
-+#define HAVE_WORKING_FORK 1
-+#define GETGROUPS_T gid_t
-+#define HAVE_GETMNTENT 1
-+#define HAVE_LSTAT_EMPTY_STRING_BUG 1
-+#define HAVE_SYS_SELECT_H 1
-+#define HAVE_SYS_SOCKET_H 1
-+#define SELECT_TYPE_ARG1 int
-+#define SELECT_TYPE_ARG234 (fd_set *)
-+#define SELECT_TYPE_ARG5 (struct timeval *)
-+#define RETSIGTYPE void
-+#define HAVE_STAT_EMPTY_STRING_BUG 1
-+#define HAVE_VPRINTF 1
-+#define HAVE_ALARM 1
-+#define HAVE_ATEXIT 1
-+#define HAVE_DUP2 1
-+#define HAVE_FDATASYNC 1
-+#define HAVE_FTRUNCATE 1
-+#define HAVE_GETCWD 1
-+#define HAVE_GETHOSTBYADDR 1
-+#define HAVE_GETHOSTBYNAME 1
-+#define HAVE_GETHOSTNAME 1
-+#define HAVE_GETMNTENT 1
-+#define HAVE_GETNAMEINFO 1
-+#define HAVE_GETRPCBYNAME 1
-+#define HAVE_GETIFADDRS 1
-+#define HAVE_GETTIMEOFDAY 1
-+#define HAVE_HASMNTOPT 1
-+#define HAVE_INET_NTOA 1
-+#define HAVE_MEMSET 1
-+#define HAVE_MKDIR 1
-+#define HAVE_PATHCONF 1
-+#define HAVE_REALPATH 1
-+#define HAVE_RMDIR 1
-+#define HAVE_SELECT 1
-+#define HAVE_SOCKET 1
-+#define HAVE_STRCASECMP 1
-+#define HAVE_STRCHR 1
-+#define HAVE_STRDUP 1
-+#define HAVE_STRERROR 1
-+#define HAVE_STRRCHR 1
-+#define HAVE_STRTOL 1
-+#define HAVE_STRTOUL 1
-+#define HAVE_SIGPROCMASK 1
-+#define SIZEOF_SHORT 2
-+#define SIZEOF_INT 4
-+#define SIZEOF_LONG 4
-+#define SIZEOF_SIZE_T 4
-+#define SIZEOF_SOCKLEN_T 4
-+#define NFS_STATEDIR "/var/lib/nfs"
-
--configure: caught signal 2
--configure: exit 1
-+configure: exit 0
diff --git a/package/nfs-utils/patches/patch-tools_rpcgen_Makefile_in b/package/nfs-utils/patches/patch-tools_rpcgen_Makefile_in
index 8216aa35e..eae3c5041 100644
--- a/package/nfs-utils/patches/patch-tools_rpcgen_Makefile_in
+++ b/package/nfs-utils/patches/patch-tools_rpcgen_Makefile_in
@@ -1,5 +1,5 @@
--- nfs-utils-1.2.3.orig/tools/rpcgen/Makefile.in 2010-09-28 14:32:33.000000000 +0200
-+++ nfs-utils-1.2.3/tools/rpcgen/Makefile.in 2010-12-25 00:45:58.000000000 +0100
++++ nfs-utils-1.2.3/tools/rpcgen/Makefile.in 2011-02-06 16:48:47.000000000 +0100
@@ -72,21 +72,21 @@ am_rpcgen_OBJECTS = rpcgen-rpc_clntout.$
rpcgen_OBJECTS = $(am_rpcgen_OBJECTS)
rpcgen_LDADD = $(LDADD)
@@ -15,7 +15,7 @@
-COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \
- $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
+COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \
-+ $(AM_CFLAGS) $(HOSTCFLAGS)
++ $(AM_CFLAGS) $(CFLAGS_FOR_BUILD)
LTCOMPILE = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \
--mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \
- $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
@@ -24,7 +24,7 @@
LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \
- --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) \
- $(LDFLAGS) -o $@
-+ --mode=link $(CCLD) $(AM_CFLAGS) $(HOSTCFLAGS) \
++ --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS_FOR_BUILD) \
+ -o $@
SOURCES = $(rpcgen_SOURCES)
DIST_SOURCES = $(rpcgen_SOURCES)