All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 0/1] Fix for build failure of xserver on mpc build
@ 2011-05-27 21:09 Saul Wold
  2011-05-27 21:09 ` [PATCH 1/1] xserver: force to use libdl Saul Wold
  0 siblings, 1 reply; 9+ messages in thread
From: Saul Wold @ 2011-05-27 21:09 UTC (permalink / raw)
  To: openembedded-core

This fixes a problem with the MPC building the xserver-xf86-lite

The following changes since commit 4786ecdf7cd427089464dcb62579110d494e7cd7:

  License Field Cleanup: Non-standard field names (2011-05-27 18:27:04 +0100)

are available in the git repository at:
  git://git.openembedded.org/openembedded-core-contrib sgw/dlfix
  http://cgit.openembedded.org/cgit.cgi/openembedded-core-contrib/log/?h=sgw/dlfix

Yu Ke (1):
  xserver: force to use libdl

 .../xorg-xserver/files/force-libdl.patch           |   19 +++++++++++++++++++
 .../xorg-xserver/xserver-xf86-lite_1.10.1.bb       |    5 +++--
 2 files changed, 22 insertions(+), 2 deletions(-)
 create mode 100644 meta/recipes-graphics/xorg-xserver/files/force-libdl.patch

-- 
1.7.3.4




^ permalink raw reply	[flat|nested] 9+ messages in thread

* [PATCH 1/1] xserver: force to use libdl
  2011-05-27 21:09 [PATCH 0/1] Fix for build failure of xserver on mpc build Saul Wold
@ 2011-05-27 21:09 ` Saul Wold
  2011-05-27 21:24   ` Phil Blundell
  0 siblings, 1 reply; 9+ messages in thread
From: Saul Wold @ 2011-05-27 21:09 UTC (permalink / raw)
  To: openembedded-core

From: Yu Ke <ke.yu@intel.com>

[YOCTO #737]

The AC_CHECK_FUNC([dlopen], [], AC_CHECK_LIB([dl], [dlopen], DLOPEN_LIBS="-ldl"))
macro seems not work well in ppc arch, so this patch force the DLOPEN_LIBS="-ldl"

Signed-off-by: Yu Ke <ke.yu@intel.com>

Added Bug info

Signed-off-by: Saul Wold <sgw@linux.intel.com>
---
 .../xorg-xserver/files/force-libdl.patch           |   19 +++++++++++++++++++
 .../xorg-xserver/xserver-xf86-lite_1.10.1.bb       |    5 +++--
 2 files changed, 22 insertions(+), 2 deletions(-)
 create mode 100644 meta/recipes-graphics/xorg-xserver/files/force-libdl.patch

diff --git a/meta/recipes-graphics/xorg-xserver/files/force-libdl.patch b/meta/recipes-graphics/xorg-xserver/files/force-libdl.patch
new file mode 100644
index 0000000..87814c8
--- /dev/null
+++ b/meta/recipes-graphics/xorg-xserver/files/force-libdl.patch
@@ -0,0 +1,19 @@
+configure.ac: force to use DLOPEN_LIBS="-ldl"
+
+The AC_CHECK_FUNC([dlopen], [], AC_CHECK_LIB([dl], [dlopen], DLOPEN_LIBS="-ldl"))
+macro seems not work well in ppc arch, so this patch force the DLOPEN_LIBS="-ldl"
+
+Signed-off-by: Yu Ke <ke.yu@intel.com>
+
+diff --git a/configure.ac b/configure.ac
+index 61caaed..46e68d2 100644
+--- a/configure.ac
++++ b/configure.ac
+@@ -203,6 +203,7 @@ dnl Check to see if dlopen is in default libraries (like Solaris, which
+ dnl has it in libc), or if libdl is needed to get it.
+ AC_CHECK_FUNC([dlopen], [],
+ 	AC_CHECK_LIB([dl], [dlopen], DLOPEN_LIBS="-ldl"))
++DLOPEN_LIBS="-ldl"
+ AC_SUBST(DLOPEN_LIBS)
+ 
+ dnl Checks for library functions.
diff --git a/meta/recipes-graphics/xorg-xserver/xserver-xf86-lite_1.10.1.bb b/meta/recipes-graphics/xorg-xserver/xserver-xf86-lite_1.10.1.bb
index f9b3a64..c84478a 100644
--- a/meta/recipes-graphics/xorg-xserver/xserver-xf86-lite_1.10.1.bb
+++ b/meta/recipes-graphics/xorg-xserver/xserver-xf86-lite_1.10.1.bb
@@ -2,11 +2,12 @@ require xserver-xf86-lite.inc
 
 LIC_FILES_CHKSUM = "file://COPYING;md5=74df27b6254cc88d2799b5f4f5949c00"
 
-PR = "r0"
+PR = "r1"
 
 DEPENDS += "font-util"
 
-SRC_URI += "file://crosscompile.patch"
+SRC_URI += "file://crosscompile.patch \
+            file://force-libdl.patch "
 
 # Misc build failure for master HEAD
 SRC_URI += "file://fix_open_max_preprocessor_error.patch;"
-- 
1.7.3.4




^ permalink raw reply related	[flat|nested] 9+ messages in thread

* Re: [PATCH 1/1] xserver: force to use libdl
  2011-05-27 21:09 ` [PATCH 1/1] xserver: force to use libdl Saul Wold
@ 2011-05-27 21:24   ` Phil Blundell
  2011-05-27 22:23     ` Richard Purdie
  0 siblings, 1 reply; 9+ messages in thread
From: Phil Blundell @ 2011-05-27 21:24 UTC (permalink / raw)
  To: Patches and discussions about the oe-core layer

On Fri, 2011-05-27 at 14:09 -0700, Saul Wold wrote:
> From: Yu Ke <ke.yu@intel.com>
> 
> [YOCTO #737]
> 
> The AC_CHECK_FUNC([dlopen], [], AC_CHECK_LIB([dl], [dlopen], DLOPEN_LIBS="-ldl"))
> macro seems not work well in ppc arch, so this patch force the DLOPEN_LIBS="-ldl"
> 

That's a bit of a weird report.  Do we know why it doesn't work?  I
guess we don't care all that much about Solaris targets, but equally I
can't think of any reason why ppc should be special.

p.





^ permalink raw reply	[flat|nested] 9+ messages in thread

* Re: [PATCH 1/1] xserver: force to use libdl
  2011-05-27 21:24   ` Phil Blundell
@ 2011-05-27 22:23     ` Richard Purdie
  2011-05-27 22:35       ` Koen Kooi
  2011-05-28  4:45       ` Yu Ke
  0 siblings, 2 replies; 9+ messages in thread
From: Richard Purdie @ 2011-05-27 22:23 UTC (permalink / raw)
  To: Patches and discussions about the oe-core layer

On Fri, 2011-05-27 at 22:24 +0100, Phil Blundell wrote:
> On Fri, 2011-05-27 at 14:09 -0700, Saul Wold wrote:
> > From: Yu Ke <ke.yu@intel.com>
> > 
> > [YOCTO #737]
> > 
> > The AC_CHECK_FUNC([dlopen], [], AC_CHECK_LIB([dl], [dlopen], DLOPEN_LIBS="-ldl"))
> > macro seems not work well in ppc arch, so this patch force the DLOPEN_LIBS="-ldl"
> > 
> 
> That's a bit of a weird report.  Do we know why it doesn't work?  I
> guess we don't care all that much about Solaris targets, but equally I
> can't think of any reason why ppc should be special.

Seconded. I'd like to see the config.log of that failing on ppc...

Cheers,

Richard




^ permalink raw reply	[flat|nested] 9+ messages in thread

* Re: [PATCH 1/1] xserver: force to use libdl
  2011-05-27 22:23     ` Richard Purdie
@ 2011-05-27 22:35       ` Koen Kooi
  2011-05-30  7:35         ` Richard Purdie
  2011-05-28  4:45       ` Yu Ke
  1 sibling, 1 reply; 9+ messages in thread
From: Koen Kooi @ 2011-05-27 22:35 UTC (permalink / raw)
  To: Patches and discussions about the oe-core layer


Op 28 mei 2011, om 00:23 heeft Richard Purdie het volgende geschreven:

> On Fri, 2011-05-27 at 22:24 +0100, Phil Blundell wrote:
>> On Fri, 2011-05-27 at 14:09 -0700, Saul Wold wrote:
>>> From: Yu Ke <ke.yu@intel.com>
>>> 
>>> [YOCTO #737]
>>> 
>>> The AC_CHECK_FUNC([dlopen], [], AC_CHECK_LIB([dl], [dlopen], DLOPEN_LIBS="-ldl"))
>>> macro seems not work well in ppc arch, so this patch force the DLOPEN_LIBS="-ldl"
>>> 
>> 
>> That's a bit of a weird report.  Do we know why it doesn't work?  I
>> guess we don't care all that much about Solaris targets, but equally I
>> can't think of any reason why ppc should be special.
> 
> Seconded. I'd like to see the config.log of that failing on ppc...

That reminds me of http://cgit.openembedded.org/cgit.cgi/openembedded/commit/?id=87d9fca0fc4112b5ca07d92af10a2e9ef1bf8d0b which I still can't really explain....


^ permalink raw reply	[flat|nested] 9+ messages in thread

* Re: [PATCH 1/1] xserver: force to use libdl
  2011-05-27 22:23     ` Richard Purdie
  2011-05-27 22:35       ` Koen Kooi
@ 2011-05-28  4:45       ` Yu Ke
  2011-05-28  8:07         ` Richard Purdie
  1 sibling, 1 reply; 9+ messages in thread
From: Yu Ke @ 2011-05-28  4:45 UTC (permalink / raw)
  To: Patches and discussions about the oe-core layer; +Cc: Koen Kooi

[-- Attachment #1: Type: text/plain, Size: 4751 bytes --]

on 2011-5-28 6:23, Richard Purdie wrote:
> On Fri, 2011-05-27 at 22:24 +0100, Phil Blundell wrote:
>> On Fri, 2011-05-27 at 14:09 -0700, Saul Wold wrote:
>>> From: Yu Ke<ke.yu@intel.com>
>>>
>>> [YOCTO #737]
>>>
>>> The AC_CHECK_FUNC([dlopen], [], AC_CHECK_LIB([dl], [dlopen], DLOPEN_LIBS="-ldl"))
>>> macro seems not work well in ppc arch, so this patch force the DLOPEN_LIBS="-ldl"
>>>
>>
>> That's a bit of a weird report.  Do we know why it doesn't work?  I
>> guess we don't care all that much about Solaris targets, but equally I
>> can't think of any reason why ppc should be special.
>
> Seconded. I'd like to see the config.log of that failing on ppc...
>
> Cheers,
>
> Richard
>

The marco in question is in xorg-server-1.10.1/configure.ac
"
AC_CHECK_FUNC([dlopen], [],
     AC_CHECK_LIB([dl], [dlopen], DLOPEN_LIBS="-ldl"))
AC_SUBST(DLOPEN_LIBS)
"

Ideally, the dlopen test should fail since dlopen is not available in 
libc, and then DLOPEN_LIBS="-ldl" is executed. In this case, the later 
build will correctly link libdl. qemux86 fall into this case.

But in ppc case, the dlopen test unfortunately pass, and DLOPEN_LIBS 
become "", which caused later linker error of unresolved dlopen 
reference. but I did not yet understand why ppc is so special.

For detail, I've attached two config.log, one for ppc, one for qemux86.
in ppc,
configure:15235: checking for dlopen
configure:15235: result: yes

in qemux86:
configure:15235: checking for dlopen
configure:15235: i586-poky-linux-gcc -march=i586 
--sysroot=/home/kyu3/sdb/test/tmp/sysroots/qemux86 -std=gnu99 -o 
conftest -O2 -pipe -g -feliminate-unused-debug-types  -Wl,-O1 
-Wl,--as-needed conftest.c  >&5
/tmp/ccaQGSPX.o: In function `main':
/home/kyu3/sdb/test/tmp/work/i586-poky-linux/xserver-xf86-lite-1.10.1-r0/xorg-server-1.10.1/conftest.c:74: 
undefined reference to `dlopen'
collect2: ld returned 1 exit status
configure:15235: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "xorg-server"
| #define PACKAGE_TARNAME "xorg-server"
| #define PACKAGE_VERSION "1.10.1"
| #define PACKAGE_STRING "xorg-server 1.10.1"
| #define PACKAGE_BUGREPORT 
"https://bugs.freedesktop.org/enter_bug.cgi?product=xorg"
| #define PACKAGE_URL ""
| #define PACKAGE "xorg-server"
| #define VERSION "1.10.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 PACKAGE_VERSION_MAJOR 1
| #define PACKAGE_VERSION_MINOR 10
| #define PACKAGE_VERSION_PATCHLEVEL 1
| #define HAVE_DLFCN_H 1
| #define LT_OBJDIR ".libs/"
| #define YYTEXT_POINTER 1
| #define _FILE_OFFSET_BITS 64
| #define HAVE_DIRENT_H 1
| #define STDC_HEADERS 1
| #define HAVE_FCNTL_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_DLFCN_H 1
| #define HAVE_STROPTS_H 1
| #define HAVE_FNMATCH_H 1
| #define HAVE_SYS_UTSNAME_H 1
| #define SIZEOF_UNSIGNED_LONG 4
| #define HAVE_BYTESWAP_H 1
| /* end confdefs.h.  */
| /* Define dlopen to an innocuous variant, in case <limits.h> declares 
dlopen.
|    For example, HP-UX 11i <limits.h> declares gettimeofday.  */
| #define dlopen innocuous_dlopen
|
| /* System header to define __stub macros and hopefully few prototypes,
|     which can conflict with char dlopen (); 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 dlopen
|
| /* 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 dlopen ();
| /* 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_dlopen || defined __stub___dlopen
| choke me
| #endif
|
| int
| main ()
| {
| return dlopen ();
|   ;
|   return 0;
| }
configure:15235: result: no
configure:15239: checking for dlopen in -ldl
configure:15264: i586-poky-linux-gcc -march=i586 
--sysroot=/home/kyu3/sdb/test/tmp/sysroots/qemux86 -std=gnu99 -o 
conftest -O2 -pipe -g -feliminate-unused-debug-types  -Wl,-O1 
-Wl,--as-needed conftest.c -ldl   >&5
configure:15264: $? = 0
configure:15273: result: yes

[-- Attachment #2: xserver-ppc-config.log --]
[-- Type: text/plain, Size: 351470 bytes --]

This file contains any messages produced by compilers while
running configure, to aid debugging if configure makes a mistake.

It was created by xorg-server configure 1.10.1, which was
generated by GNU Autoconf 2.65.  Invocation command line was

  $ /home/kyu3/sdb/test/tmp/work/ppc603e-poky-linux/xserver-xf86-lite-1.10.1-r0/xorg-server-1.10.1/configure --build=x86_64-linux --host=powerpc-poky-linux --target=powerpc-poky-linux --prefix=/usr --exec_prefix=/usr --bindir=/usr/bin --sbindir=/usr/sbin --libexecdir=/usr/libexec --datadir=/usr/share --sysconfdir=/etc --sharedstatedir=/com --localstatedir=/var --libdir=/usr/lib --includedir=/usr/include --oldincludedir=/usr/include --infodir=/usr/share/info --mandir=/usr/share/man --disable-silent-rules --with-libtool-sysroot=/home/kyu3/sdb/test/tmp/sysroots/qemuppc --with-fop=no --disable-static --disable-acfb --disable-ccfb --disable-mcfb --disable-dga --disable-xinerama --disable-xf86misc --disable-xorgcfg --disable-record --disable-dmx --disable-xnest --disable-xvfb --enable-composite --disable-dri --disable-glx --sysconfdir=/etc/X11 --localstatedir=/var --with-fontdir=/usr/share/fonts/X11 --with-xkb-output=/var/lib/xkb ac_cv_file__usr_share_sgml_X11_defs_ent=no

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

hostname = kyu3-ubuntu
uname -m = x86_64
uname -r = 2.6.35-25-server
uname -s = Linux
uname -v = #44~lucid1-Ubuntu SMP Tue Jan 25 19:34:09 UTC 2011

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

/bin/arch              = unknown
/usr/bin/arch -k       = unknown
/usr/convex/getsysinfo = unknown
/usr/bin/hostinfo      = unknown
/bin/machine           = unknown
/usr/bin/oslevel       = unknown
/bin/universe          = unknown

PATH: /home/kyu3/sdb/test/tmp/sysroots/x86_64-linux/usr/bin/ppc603e-poky-linux
PATH: /home/kyu3/sdb/test/tmp/sysroots/qemuppc/usr/bin/crossscripts
PATH: /home/kyu3/sdb/test/tmp/sysroots/x86_64-linux/usr/sbin
PATH: /home/kyu3/sdb/test/tmp/sysroots/x86_64-linux/usr/bin
PATH: /home/kyu3/sdb/test/tmp/sysroots/x86_64-linux/sbin
PATH: /home/kyu3/sdb/test/tmp/sysroots/x86_64-linux//bin
PATH: /home/kyu3/src/poky/scripts
PATH: /home/kyu3/src/poky/bitbake/bin/
PATH: /usr/local/sbin
PATH: /usr/local/bin
PATH: /usr/sbin
PATH: /usr/bin
PATH: /sbin
PATH: /bin
PATH: /usr/games
PATH: /home/kyu3/bin
PATH: /home/kyu3/src/poky/scripts


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

configure:3349: loading site script /home/kyu3/src/poky/meta/site/endian-big
| ac_cv_c_littleendian=${ac_cv_c_littleendian=no}
| ac_cv_c_bigendian=${ac_cv_c_bigendian=yes}
| 
| # libnet
| ac_cv_libnet_endianess=${ac_cv_libnet_endianess=big}
configure:3349: loading site script /home/kyu3/src/poky/meta/site/common-glibc
| # general
| ac_cv_have_decl_sys_siglist=${ac_cv_have_decl_sys_siglist=yes}
| ac_cv_func_malloc_0_nonnull=${ac_cv_func_malloc_0_nonnull=yes}
| ac_cv_func_memcmp_working=${ac_cv_func_memcmp_working=yes}
| ac_cv_type_uid_t={ac_cv_type_uid_t=yes}
| 
| # bash
| bash_cv_under_sys_siglist=${bash_cv_under_sys_siglist=yes}
| bash_cv_sys_siglist=${bash_cv_sys_siglist=yes}
| 
| # clamav
| clamav_av_func_working_snprintf_long=${clamav_av_func_working_snprintf_long=yes}
| clamav_av_have_in_port_t=${clamav_av_have_in_port_t=yes}
| clamav_av_have_in_addr_t=${clamav_av_have_in_addr_t=yes}
| ac_cv_func_mmap_fixed_mapped=${ac_cv_func_mmap_fixed_mapped=yes}
| 
| # glib
| glib_cv_strlcpy=${glib_cv_strlcpy=no}
| ac_cv_func_printf_unix98=${ac_cv_func_printf_unix98=yes}
| ac_cv_func_snprintf_c99=${ac_cv_func_snprintf_c99=yes}
| ac_cv_func_vsnprintf_c99=${ac_cv_func_vsnprintf_c99=yes}
| glib_cv_compliant_posix_memalign=${glib_cv_compliant_posix_memalign=1}
| glib_cv_long_long_format=${glib_cv_long_long_format=ll}
| 
| #dbus-glib
| ac_cv_have_abstract_sockets=${ac_cv_have_abstract_sockets=yes}
| 
| # gnucash
| am_cv_scanf_lld=${am_cv_scanf_lld=yes}
| 
| # mono
| mono_cv_uscore=${mono_cv_uscore=no}
| 
| # guile
| ac_cv_func_pthread_attr_getstack=${ac_cv_func_pthread_attr_getstack=yes}
| 
| #gcc-zlib
| ac_cv_func_getpagesize=${ac_cv_func_getpagesize=yes}
| ac_cv_func_memcpy=${ac_cv_func_memcpy=yes}
| ac_cv_func_strerror=${ac_cv_func_strerror=yes}
| 
| # squid
| ac_cv_af_unix_large_dgram=${ac_cv_af_unix_large_dgram=yes}
| ac_cv_func_setresuid=${ac_cv_func_setresuid=yes}
| ac_cv_func_va_copy=${ac_cv_func_va_copy=yes}
| ac_cv_func___va_copy=${ac_cv_func___va_copy=yes}
| ac_cv_epoll_works=${ac_cv_epoll_works=yes}
| 
| ac_cv_check_sjlj=ssjlj
| 
| # m4
| gt_cv_locale_fr=${gt_cv_locale_fr=fr_FR}
| gl_cv_func_btowc_eof=${gl_cv_func_btowc_eof=yes}
| gl_cv_func_wcrtomb_retval=${gl_cv_func_wcrtomb_retval=yes}
| gl_cv_func_wctob_works=${gl_cv_func_wctob_works=yes}
| gl_cv_func_mbrtowc_incomplete_state=${gl_cv_func_mbrtowc_incomplete_state=yes}
| gl_cv_func_mbrtowc_sanitycheck=${gl_cv_func_mbrtowc_sanitycheck=yes}
| gl_cv_func_mbrtowc_null_arg=${gl_cv_func_mbrtowc_null_arg=yes}
| gl_cv_func_mbrtowc_retval=${gl_cv_func_mbrtowc_retval=yes}
| gl_cv_func_mbrtowc_nul_retval=${gl_cv_func_mbrtowc_nul_retval=yes}
| 
configure:3349: loading site script /home/kyu3/src/poky/meta/site/powerpc-common
| ac_cv_func_getpgrp_void=yes
| ac_cv_func_setpgrp_void=yes
| ac_cv_func_setgrent_void=yes
| ac_cv_func_malloc_0_nonnull=yes
| ac_cv_func_malloc_works=yes
| ac_cv_func_posix_getgrgid_r=${ac_cv_func_posix_getgrgid_r=yes}
| ac_cv_func_posix_getpwuid_r=${ac_cv_func_posix_getpwuid_r=yes}
| ac_cv_func_setvbuf_reversed=no
| ac_cv_sizeof___int64=${ac_cv_sizeof___int64=0}
| ac_cv_sizeof_bool=${ac_cv_sizeof_bool=1}
| ac_cv_sizeof_char=${ac_cv_sizeof_char=1}
| ac_cv_sizeof_double=${ac_cv_sizeof_double=8}
| ac_cv_sizeof_int=${ac_cv_sizeof_int=4}
| ac_cv_sizeof_int_p=${ac_cv_sizeof_int_p=4}
| ac_cv_sizeof_float=${ac_cv_sizeof_float=4}
| ac_cv_sizeof_long=${ac_cv_sizeof_long=4}
| ac_cv_sizeof_long_int=${ac_cv_sizeof_long_int=4}
| ac_cv_sizeof_long_long=${ac_cv_sizeof_long_long=8}
| ac_cv_sizeof_short=${ac_cv_sizeof_short=2}
| ac_cv_sizeof_unsigned_char=${ac_cv_sizeof_unsigned_char=1}
| ac_cv_sizeof_short_int=${ac_cv_sizeof_short_int=2}
| ac_cv_sizeof_size_t=${ac_cv_sizeof_size_t=4}
| ac_cv_sizeof_void_p=${ac_cv_sizeof_void_p=4}
| ac_cv_sizeof_long_p=${ac_cv_sizeof_long_p=4}
| ac_cv_sizeof_wchar_t=${ac_cv_sizeof_wchar_t=4}
| ac_cv_sizeof_long_double=${ac_cv_sizeof_long_double=8}
| ac_cv_sys_restartable_syscalls=yes
| ac_cv_type___int64=${ac_cv_type___int64=no}
| ac_cv_type_size_t=${ac_cv_type_size_t=yes}
| ac_cv_type_void_p=${ac_cv_type_void_p=yes}
| ac_cv_uchar=${ac_cv_uchar=no}
| ac_cv_uint=${ac_cv_uint=yes}
| ac_cv_ulong=${ac_cv_ulong=yes}
| ac_cv_ushort=${ac_cv_ushort=yes}
| ac_cv_time_r_type=${ac_cv_time_r_type=POSIX}
| cookie_io_functions_use_off64_t=${cookie_io_functions_use_off64_t=yes}
| 
| 
| # apache
| ac_cv_func_pthread_key_delete=${ac_cv_func_pthread_key_delete=yes}
| apr_cv_process_shared_works=${apr_cv_process_shared_works=no}
| ac_cv_sizeof_ssize_t=${ac_cv_sizeof_ssize_t=4}
| 
| ac_cv_header_netinet_sctp_h=${ac_cv_header_netinet_sctp_h=no}
| ac_cv_header_netinet_sctp_uio_h=${ac_cv_header_netinet_sctp_uio_h=no}
| ac_cv_sctp=${ac_cv_sctp=no}
| 
| # ssh
| ac_cv_have_space_d_name_in_struct_dirent=${ac_cv_dirent_have_space_d_name=yes}
| ac_cv_have_broken_snprintf=${ac_cv_have_broken_snprintf=no}
| ac_cv_have_accrights_in_msghdr=${ac_cv_have_accrights_in_msghdr=no}
| ac_cv_have_control_in_msghdr=${ac_cv_have_control_in_msghdr=yes}
| ac_cv_type_struct_timespec=${ac_cv_type_struct_timespec=yes}
| ac_cv_have_openpty_ctty_bug=${ac_cv_have_openpty_ctty_bug=yes}
| 
| # coreutils
| utils_cv_sys_open_max=${utils_cv_sys_open_max=1019}
| 
| # libpcap
| ac_cv_linux_vers=${ac_cv_linux_vers=2}
| 
| # nano
| ac_cv_regexec_segfault_emptystr=${ac_cv_regexec_segfault_emptystr=no}
| nano_cv_func_regexec_segv_emptystr=${nano_cv_func_regexec_segv_emptystr=no}
| 
| 
| # libnet
| ac_libnet_have_packet_socket=${ac_libnet_have_packet_socket=yes}
| 
| # screen
| screen_cv_sys_bcopy_overlap=${screen_cv_sys_bcopy_overlap=no}
| screen_cv_sys_memcpy_overlap=${screen_cv_sys_memcpy_overlap=no}
| screen_cv_sys_memmove_overlap=${screen_cv_sys_memmove_overlap=no}
| screen_cv_sys_fifo_broken_impl=${screen_cv_sys_fifo_broken_impl=yes}
| screen_cv_sys_fifo_usable=${screen_cv_sys_fifo_usable=yes}
| screen_cv_sys_select_broken_retval=${screen_cv_sys_select_broken_retval=no}
| screen_cv_sys_sockets_nofs=${screen_cv_sys_sockets_nofs=no}
| screen_cv_sys_sockets_usable=${screen_cv_sys_sockets_usable=yes}
| screen_cv_sys_terminfo_used=${screen_cv_sys_terminfo_used=yes}
| 
| ac_cv_func_lstat_dereferences_slashed_symlink=${ac_cv_func_lstat_dereferences_slashed_symlink=yes}
| ac_cv_func_lstat_empty_string_bug=${ac_cv_func_lstat_empty_string_bug=no}
| ac_cv_func_stat_empty_string_bug=${ac_cv_func_stat_empty_string_bug=no}
| ac_cv_func_stat_ignores_trailing_slash=${ac_cv_func_stat_ignores_trailing_slash=no}
| 
| # socat
| ac_cv_ispeed_offset=${ac_cv_ispeed_offset=13}
| sc_cv_termios_ispeed=${sc_cv_termios_ispeed=yes}
| 
| # links
| ac_cv_lib_png_png_create_info_struct=${ac_cv_lib_png_png_create_info_struct=yes}
| 
| # sleepycat db
| db_cv_fcntl_f_setfd=${db_cv_fcntl_f_setfd=yes}
| db_cv_sprintf_count=${db_cv_sprintf_count=yes}
| db_cv_path_ar=${db_cv_path_ar=/usr/bin/ar}
| db_cv_path_chmod=${db_cv_path_chmod=/bin/chmod}
| db_cv_path_cp=${db_cv_path_cp=/bin/cp}
| db_cv_path_ln=${db_cv_path_ln=/bin/ln}
| db_cv_path_mkdir=${db_cv_path_mkdir=/bin/mkdir}
| db_cv_path_ranlib=${db_cv_path_ranlib=/usr/bin/ranlib}
| db_cv_path_rm=${db_cv_path_rm=/bin/rm}
| db_cv_path_sh=${db_cv_path_sh=/bin/sh}
| db_cv_path_strip=${db_cv_path_strip=/usr/bin/strip}
| db_cv_align_t=${db_cv_align_t='unsigned long long'}
| db_cv_alignp_t=${db_cv_alignp_t='unsigned long'}
| db_cv_mutex=${db_cv_mutex=no}
| db_cv_posixmutexes=${db_cv_posixmutexes=no}
| db_cv_uimutexes=${db_cv_uimutexes=no}
| 
| # php
| ac_cv_pread=${ac_cv_pread=no}
| ac_cv_pwrite=${ac_cv_pwrite=no}
| php_cv_lib_cookie_io_functions_use_off64_t=${php_cv_lib_cookie_io_functions_use_off64_t=yes}
| 
| # gettext
| am_cv_func_working_getline=${am_cv_func_working_getline=yes}
| 
| # glib
| glib_cv_sizeof_gmutex=${glib_cv_sizeof_gmutex=24}
| glib_cv_sizeof_system_thread=${glib_cv_sizeof_system_thread=4}
| glib_cv_stack_grows=${glib_cv_stack_grows=no}
| glib_cv_uscore=${glib_cv_uscore=no}
| glib_cv_use_pid_surrogate=${glib_cv_use_pid_surrogate=yes}
| glib_cv_has__inline=${glib_cv_has__inline=yes}
| glib_cv_has__inline__=${glib_cv_has__inline__=yes}
| glib_cv_hasinline=${glib_cv_hasinline=yes}
| glib_cv_sane_realloc=${glib_cv_sane_realloc=yes}
| glib_cv_sizeof_gmutex=${glib_cv_sizeof_gmutex=24}
| glib_cv_uscore=${glib_cv_uscore=no}
| glib_cv_va_copy=${glib_cv_va_copy=no}
| glib_cv_va_val_copy=${glib_cv_va_val_copy=yes}
| glib_cv___va_copy=${glib_cv___va_copy=yes}
| glib_cv_rtldglobal_broken=${glib_cv_rtldglobal_broken=no}
| ac_cv_func_getpwuid_r=${ac_cv_func_getpwuid_r=yes}
| glib_cv_sys_pthread_mutex_trylock_posix=${glib_cv_sys_pthread_mutex_trylock_posix=yes}
| glib_cv_sys_pthread_getspecific_posix=${glib_cv_sys_pthread_getspecific_posix=yes}
| glib_cv_sys_pthread_cond_timedwait_posix=${glib_cv_sys_pthread_cond_timedwait_posix=yes}
| 
| # ettercap
| ettercap_cv_type_socklen_t=${ettercap_cv_type_socklen_t=yes}
| 
| # libesmtp
| acx_working_snprintf=${acx_working_snprintf=yes}
| 
| # D-BUS
| ac_cv_func_posix_getpwnam_r=${ac_cv_func_posix_getpwnam_r=yes}
| 
| # glib 2.0
| glib_cv_long_long_format=${glib_cv_long_long_format=ll}
| glib_cv_sizeof_gmutex=${glib_cv_sizeof_gmutex=24}
| glib_cv_sizeof_intmax_t=${glib_cv_sizeof_intmax_t=8}
| glib_cv_sizeof_ptrdiff_t=${glib_cv_sizeof_ptrdiff_t=4}
| glib_cv_sizeof_size_t=${glib_cv_sizeof_size_t=4}
| glib_cv_sizeof_system_thread=${glib_cv_sizeof_system_thread=4}
| glib_cv_sys_use_pid_niceness_surrogate=${glib_cv_sys_use_pid_niceness_surrogate=yes}
| 
| glib_cv_strlcpy=${glib_cv_strlcpy=no}
| 
| # httppc
| ac_cv_strerror_r_SUSv3=${ac_cv_strerror_r_SUSv3=no}
| 
| # lftp
| ac_cv_need_trio=${ac_cv_need_trio=no}
| lftp_cv_va_copy=${lftp_cv_va_copy=no}
| lftp_cv_va_val_copy=${lftp_cv_va_val_copy=yes}
| lftp_cv___va_copy=${lftp_cv___va_copy=yes}
| 
| # edb
| db_cv_spinlocks=${db_cv_spinlocks=no}
| 
| # fget
| compat_cv_func_snprintf_works=${compat_cv_func_snprintf_works=yes}
| compat_cv_func_basename_works=${compat_cv_func_basename_works=no}
| compat_cv_func_dirname_works=${compat_cv_func_dirname_works=no}
| 
| # slrn
| slrn_cv___va_copy=${slrn_cv___va_copy=yes}
| slrn_cv_va_copy=${slrn_cv_va_copy=no}
| slrn_cv_va_val_copy=${slrn_cv_va_val_copy=yes}
| ac_cv_func_realloc_works=${ac_cv_func_realloc_works=yes}
| ac_cv_func_realloc_0_nonnull=${ac_cv_func_realloc_0_nonnull=yes}
| ac_cv_func_malloc_works=${ac_cv_func_malloc_works=yes}
| ac_cv_func_malloc_0_nonnull=${ac_cv_func_malloc_0_nonnull=yes}
| 
| # startup-notification
| lf_cv_sane_realloc=yes
| 
| # libidl
| libIDL_cv_long_long_format=${libIDL_cv_long_long_format=ll}
| 
| # ORBit2
| ac_cv_alignof_CORBA_boolean=1
| ac_cv_alignof_CORBA_char=1
| ac_cv_alignof_CORBA_double=4
| ac_cv_alignof_CORBA_float=4
| ac_cv_alignof_CORBA_long=4
| ac_cv_alignof_CORBA_long_double=4
| ac_cv_alignof_CORBA_long_long=4
| ac_cv_alignof_CORBA_octet=1
| ac_cv_alignof_CORBA_pointer=4
| ac_cv_alignof_CORBA_short=2
| ac_cv_alignof_CORBA_struct=4
| ac_cv_alignof_CORBA_wchar=2
| ac_cv_func_getaddrinfo=${ac_cv_func_getaddrinfo=yes}
| 
| # cvs
| cvs_cv_func_printf_ptr=${cvs_cv_func_printf_ptr=yes}
| 
| # bash
| ac_cv_c_long_double=${ac_cv_c_long_double=yes}
| bash_cv_have_mbstate_t=${bash_cv_have_mbstate_t=yes}
| bash_cv_func_sigsetjmp=${bash_cv_func_sigsetjmp=missing}
| bash_cv_must_reinstall_sighandlers=${bash_cv_must_reinstall_sighandlers=no}
| bash_cv_func_strcoll_broken=${bash_cv_func_strcoll_broken=no}
| bash_cv_dup2_broken=${bash_cv_dup2_broken=no}
| bash_cv_opendir_not_robust=${bash_cv_opendir_not_robust=no}
| bash_cv_type_rlimit=${bash_cv_type_rlimit=rlim_t}
| bash_cv_getenv_redef=${bash_cv_getenv_redef=yes}
| bash_cv_ulimit_maxfds=${bash_cv_ulimit_maxfds=yes}
| bash_cv_getcwd_calls_popen=${bash_cv_getcwd_calls_popen=no}
| bash_cv_printf_a_format=${bash_cv_printf_a_format=yes}
| bash_cv_pgrp_pipe=${bash_cv_pgrp_pipe=no}
| bash_cv_job_control_missing=${bash_cv_job_control_missing=present}
| bash_cv_sys_named_pipes=${bash_cv_sys_named_pipes=present}
| bash_cv_unusable_rtsigs=${bash_cv_unusable_rtsigs=no}
| 
| # openssh
| ac_cv_have_broken_dirname=${ac_cv_have_broken_dirname='yes'}
| ac_cv_have_space_d_name_in_struct_dirent=${ac_cv_have_space_d_name_in_struct_dirent='no'}
| ac_cv_have_broken_snprintf=${ac_cv_have_broken_snprintf='no'}
| ac_cv_have_openpty_ctty_bug=${ac_cv_have_openpty_ctty_bug='yes'}
| ac_cv_have_accrights_in_msghdr=${ac_cv_have_accrights_in_msghdr='no'}
| ac_cv_have_control_in_msghdr=${ac_cv_have_control_in_msghdr='yes'}
| 
| # vim
| ac_cv_sizeof_int=${ac_cv_sizeof_int='4'}
| 
| #modphp 
| ac_cv_c_bigendian_php=${ac_cv_c_bigendian_php=yes}
| ac_cv_sizeof_ptrdiff_t=${ac_cv_sizeof_ptrdiff_t=4}
| ac_cv_func_dlopen=${ac_cv_func_dlopen=yes}
| lt_cv_dlopen_self=${lt_cv_dlopen_self=yes}
| 
| # apache2 (note other apache stanza in this file)
| ap_void_ptr_lt_long=${ap_void_ptr_lt_long=no}
| apr_cv_use_lfs64=${apr_cv_use_lfs64=yes}
| apr_cv_epoll=${apr_cv_epoll=yes}
| apr_cv_pthreads_cflags=${apr_cv_pthreads_cflags=-pthread}
| apr_cv_pthreads_lib=${apr_cv_pthreads_lib=-lpthread}
| apr_cv_mutex_recursive=${apr_cv_mutex_recursive=yes}
| ac_cv_func_mmap=${ac_cv_func_mmap=yes}
| ac_cv_file__dev_zero=${ac_cv_file__dev_zero=yes}
| ac_cv_sizeof_off_t=${ac_cv_sizeof_off_t=4}
| ac_cv_sizeof_pid_t=${ac_cv_sizeof_pid_t=4}
| ac_cv_socklen_t=${ac_cv_socklen_t=yes}
| ac_cv_struct_rlimit=${ac_cv_struct_rlimit=yes}
| ac_cv_negative_eai=${ac_cv_negative_eai=yes}
| apr_cv_gai_addrconfig=${apr_cv_gai_addrconfig=no}
| ac_cv_o_nonblock_inherited=${ac_cv_o_nonblock_inherited=no}
| apr_cv_tcp_nodelay_with_cork=${apr_cv_tcp_nodelay_with_cork=yes}
| 
| # binutils (libiberty)
| ac_cv_sizeof_int=${ac_cv_sizeof_int=4}
| ac_cv_type_int=${ac_cv_type_int=yes}
| ac_cv_type_uintptr_t=${ac_cv_type_uintptr_t=yes}
| liberty_cv_uint64=${liberty_cv_uint64=uint64_t}
| 
| #samba
| ac_cv_func_memcmp_working=${ac_cv_func_memcmp_working=yes}
| fu_cv_sys_stat_statvfs64=${fu_cv_sys_stat_statvfs64=yes}
| samba_cv_HAVE_BROKEN_FCNTL64_LOCKS=${samba_cv_HAVE_BROKEN_FCNTL64_LOCKS=no}
| samba_cv_HAVE_BROKEN_GETGROUPS=${samba_cv_HAVE_BROKEN_GETGROUPS=no}
| samba_cv_HAVE_BROKEN_READDIR=${samba_cv_HAVE_BROKEN_READDIR=yes}
| samba_cv_HAVE_BROKEN_READDIR_NAME=${samba_cv_HAVE_BROKEN_READDIR_NAME=no}
| samba_cv_HAVE_C99_VSNPRINTF=${samba_cv_HAVE_C99_VSNPRINTF=yes}
| samba_cv_HAVE_DEV64_T=${samba_cv_HAVE_DEV64_T=no}
| samba_cv_HAVE_DEVICE_MAJOR_FN=${samba_cv_HAVE_DEVICE_MAJOR_FN=yes}
| samba_cv_HAVE_DEVICE_MINOR_FN=${samba_cv_HAVE_DEVICE_MINOR_FN=yes}
| samba_cv_HAVE_FCNTL_LOCK=${samba_cv_HAVE_FCNTL_LOCK=yes}
| samba_cv_HAVE_FTRUNCATE_EXTEND=${samba_cv_HAVE_FTRUNCATE_EXTEND=yes}
| samba_cv_HAVE_GETTIMEOFDAY_TZ=${samba_cv_HAVE_GETTIMEOFDAY_TZ=yes}
| samba_cv_HAVE_IFACE_AIX=${samba_cv_HAVE_IFACE_AIX=no}
| samba_cv_HAVE_IFACE_IFCONF=${samba_cv_HAVE_IFACE_IFCONF=yes}
| samba_cv_HAVE_IFACE_IFREQ=${samba_cv_HAVE_IFACE_IFREQ=yes}
| samba_cv_HAVE_INO64_T=${samba_cv_HAVE_INO64_T=no}
| samba_cv_HAVE_KERNEL_CHANGE_NOTIFY=${samba_cv_HAVE_KERNEL_CHANGE_NOTIFY=yes}
| samba_cv_HAVE_KERNEL_OPLOCKS_LINUX=${samba_cv_HAVE_KERNEL_OPLOCKS_LINUX=yes}
| samba_cv_HAVE_KERNEL_SHARE_MODES=${samba_cv_HAVE_KERNEL_SHARE_MODES=yes}
| samba_cv_HAVE_MAKEDEV=${samba_cv_HAVE_MAKEDEV=yes}
| samba_cv_HAVE_MMAP=${samba_cv_HAVE_MMAP=yes}
| samba_cv_HAVE_OFF64_T=${samba_cv_HAVE_OFF64_T=no}
| samba_cv_HAVE_SECURE_MKSTEMP=${samba_cv_HAVE_SECURE_MKSTEMP=yes}
| samba_cv_HAVE_SENDFILE64=${samba_cv_HAVE_SENDFILE64=yes}
| samba_cv_HAVE_SENDFILE=${samba_cv_HAVE_SENDFILE=yes}
| samba_cv_HAVE_STRUCT_FLOCK64=${samba_cv_HAVE_STRUCT_FLOCK64=yes}
| samba_cv_HAVE_TRUNCATED_SALT=${samba_cv_HAVE_TRUNCATED_SALT=no}
| samba_cv_HAVE_UNSIGNED_CHAR=${samba_cv_HAVE_UNSIGNED_CHAR=yes}
| samba_cv_HAVE_WORKING_AF_LOCAL=${samba_cv_HAVE_WORKING_AF_LOCAL=yes}
| samba_cv_LINUX_LFS_SUPPORT=${samba_cv_LINUX_LFS_SUPPORT=yes}
| samba_cv_REALPATH_TAKES_NULL=${samba_cv_REALPATH_TAKES_NULL=yes}
| samba_cv_REPLACE_INET_NTOA=${samba_cv_REPLACE_INET_NTOA=no}
| samba_cv_REPLACE_READDIR=${samba_cv_REPLACE_READDIR=no}
| samba_cv_SIZEOF_DEV_T=${samba_cv_SIZEOF_DEV_T=yes}
| samba_cv_SIZEOF_INO_T=${samba_cv_SIZEOF_INO_T=yes}
| samba_cv_SIZEOF_OFF_T=${samba_cv_SIZEOF_OFF_T=yes}
| samba_cv_STAT_STATVFS64=${samba_cv_STAT_STATVFS64=yes}
| samba_cv_USE_SETEUID=${samba_cv_USE_SETEUID=yes}
| samba_cv_USE_SETRESUID=${samba_cv_USE_SETRESUID=yes}
| samba_cv_USE_SETREUID=${samba_cv_USE_SETREUID=yes}
| samba_cv_USE_SETUIDX=${samba_cv_USE_SETUIDX=yes}
| samba_cv_have_longlong=${samba_cv_have_longlong=yes}
| samba_cv_have_setresgid=${samba_cv_have_setresgid=yes}
| samba_cv_have_setresuid=${samba_cv_have_setresuid=yes}
| 
| #monotone
| ac_cv_sync_with_stdio=${ac_cv_sync_with_stdio=yes} 
| ac_cv_sync_with_stdio_2=${ac_cv_sync_with_stdio_2=yes}
| 
| # mysql
| mysql_cv_func_atomic_sub=${mysql_cv_func_atomic_sub=no}
| mysql_cv_func_atomic_add=${mysql_cv_func_atomic_add=no}
| ac_cv_conv_longlong_to_float=${ac_cv_conv_longlong_to_float=yes}
| 
| # sudo
| sudo_cv_uid_t_len=${sudo_cv_uid_t_len=10}
| 
| # dpkg
| dpkg_cv_va_copy=${ac_cv_va_copy=yes}
| dpkg_cv___va_copy=${ac_cv___va_copy=yes}
configure:3349: loading site script /home/kyu3/src/poky/meta/site/powerpc-linux
| # libc
| libc_cv_ppc_machine=${libc_cv_ppc_machine=yes}
| libc_cv_mlong_double_128ibm=${libc_cv_mlong_double_128ibm=yes}
| libc_cv_mabi_ibmlongdouble=${libc_cv_mabi_ibmlongdouble=yes}
| libc_cv_mlong_double_128=${libc_cv_mlong_double_128=yes}
| 
| # popt
| ac_cv_va_copy=${ac_cv_va_copy=yes}
| ac_cv___va_copy=${ac_cv___va_copy=yes}
configure:3349: loading site script /home/kyu3/src/poky/meta/site/common
| # libelf
| mr_cv_target_elf=${mr_cv_target_elf=yes}
| 
| # Normally kernels have /dev/random enabled
| ac_cv_file__dev_random=${ac_cv_file__dev_random=yes}
| 
| # Avoid sudo to assume void for unsetenv in cross environment, or else it conflicts with
| # target stdlib.h prototype which follows POSIX compiliance. Mark for upstream.
| sudo_cv_func_unsetenv_void=no
| 
| # shadow dir info, to avoid searching build system
| shadow_cv_maildir=${localstatedir}/spool/mail
| shadow_cv_mailfile=Mailbox
| shadow_cv_utmpdir=${localstatedir}/run
| shadow_cv_logdir=${localstatedir}/log
| shadow_cv_passwd_dir=${bindir}
| 
configure:3349: loading site script /home/kyu3/sdb/test/tmp/sysroots/qemuppc/usr/share/powerpc-poky-linux_config_site.d/zlib_config
| ac_cv_header_inttypes_h=${ac_cv_header_inttypes_h=yes}
| ac_cv_header_memory_h=${ac_cv_header_memory_h=yes}
| ac_cv_header_stdc=${ac_cv_header_stdc=yes}
| ac_cv_header_stdint_h=${ac_cv_header_stdint_h=yes}
| ac_cv_header_stdlib_h=${ac_cv_header_stdlib_h=yes}
| ac_cv_header_string_h=${ac_cv_header_string_h=yes}
| ac_cv_header_strings_h=${ac_cv_header_strings_h=yes}
| ac_cv_header_sys_stat_h=${ac_cv_header_sys_stat_h=yes}
| ac_cv_header_sys_types_h=${ac_cv_header_sys_types_h=yes}
| ac_cv_header_unistd_h=${ac_cv_header_unistd_h=yes}
| ac_cv_header_zlib_h=${ac_cv_header_zlib_h=yes}
configure:3349: loading site script /home/kyu3/sdb/test/tmp/sysroots/qemuppc/usr/share/powerpc-poky-linux_config_site.d/eglibc_config
| ac_cv_func___adjtimex=${ac_cv_func___adjtimex=yes}
| ac_cv_func___argz_count=${ac_cv_func___argz_count=yes}
| ac_cv_func___argz_next=${ac_cv_func___argz_next=yes}
| ac_cv_func___argz_stringify=${ac_cv_func___argz_stringify=yes}
| ac_cv_func___fpending=${ac_cv_func___fpending=yes}
| ac_cv_func___fsetlocking=${ac_cv_func___fsetlocking=yes}
| ac_cv_func___progname=${ac_cv_func___progname=yes}
| ac_cv_func___secure_getenv=${ac_cv_func___secure_getenv=yes}
| ac_cv_func__obstack_free=${ac_cv_func__obstack_free=yes}
| ac_cv_func__setjmp=${ac_cv_func__setjmp=yes}
| ac_cv_func__sys_siglist=${ac_cv_func__sys_siglist=yes}
| ac_cv_func_a64l=${ac_cv_func_a64l=yes}
| ac_cv_func_abs=${ac_cv_func_abs=yes}
| ac_cv_func_access=${ac_cv_func_access=yes}
| ac_cv_func_alarm=${ac_cv_func_alarm=yes}
| ac_cv_func_alphasort=${ac_cv_func_alphasort=yes}
| ac_cv_func_argz_append=${ac_cv_func_argz_append=yes}
| ac_cv_func_argz_create_sep=${ac_cv_func_argz_create_sep=yes}
| ac_cv_func_argz_insert=${ac_cv_func_argz_insert=yes}
| ac_cv_func_argz_next=${ac_cv_func_argz_next=yes}
| ac_cv_func_argz_stringify=${ac_cv_func_argz_stringify=yes}
| ac_cv_func_asprintf=${ac_cv_func_asprintf=yes}
| ac_cv_func_atexit=${ac_cv_func_atexit=yes}
| ac_cv_func_atof=${ac_cv_func_atof=yes}
| ac_cv_func_atoi=${ac_cv_func_atoi=yes}
| ac_cv_func_bcmp=${ac_cv_func_bcmp=yes}
| ac_cv_func_bcopy=${ac_cv_func_bcopy=yes}
| ac_cv_func_bind_textdomain_codeset=${ac_cv_func_bind_textdomain_codeset=yes}
| ac_cv_func_bindresvport=${ac_cv_func_bindresvport=yes}
| ac_cv_func_btowc=${ac_cv_func_btowc=yes}
| ac_cv_func_bzero=${ac_cv_func_bzero=yes}
| ac_cv_func_calloc=${ac_cv_func_calloc=yes}
| ac_cv_func_canonicalize_file_name=${ac_cv_func_canonicalize_file_name=yes}
| ac_cv_func_catgets=${ac_cv_func_catgets=yes}
| ac_cv_func_cfgetospeed=${ac_cv_func_cfgetospeed=yes}
| ac_cv_func_cfsetispeed=${ac_cv_func_cfsetispeed=yes}
| ac_cv_func_cfsetspeed=${ac_cv_func_cfsetspeed=yes}
| ac_cv_func_chmod=${ac_cv_func_chmod=yes}
| ac_cv_func_chown=${ac_cv_func_chown=yes}
| ac_cv_func_chroot=${ac_cv_func_chroot=yes}
| ac_cv_func_clock=${ac_cv_func_clock=yes}
| ac_cv_func_close=${ac_cv_func_close=yes}
| ac_cv_func_closedir=${ac_cv_func_closedir=yes}
| ac_cv_func_closelog=${ac_cv_func_closelog=yes}
| ac_cv_func_confstr=${ac_cv_func_confstr=yes}
| ac_cv_func_connect=${ac_cv_func_connect=yes}
| ac_cv_func_daemon=${ac_cv_func_daemon=yes}
| ac_cv_func_dcgettext=${ac_cv_func_dcgettext=yes}
| ac_cv_func_difftime=${ac_cv_func_difftime=yes}
| ac_cv_func_dirfd=${ac_cv_func_dirfd=yes}
| ac_cv_func_dirname=${ac_cv_func_dirname=yes}
| ac_cv_func_dngettext=${ac_cv_func_dngettext=yes}
| ac_cv_func_dup2=${ac_cv_func_dup2=yes}
| ac_cv_func_ecvt=${ac_cv_func_ecvt=yes}
| ac_cv_func_endgrent=${ac_cv_func_endgrent=yes}
| ac_cv_func_endmntent=${ac_cv_func_endmntent=yes}
| ac_cv_func_endpwent=${ac_cv_func_endpwent=yes}
| ac_cv_func_endutent=${ac_cv_func_endutent=yes}
| ac_cv_func_endutxent=${ac_cv_func_endutxent=yes}
| ac_cv_func_epoll_ctl=${ac_cv_func_epoll_ctl=yes}
| ac_cv_func_err=${ac_cv_func_err=yes}
| ac_cv_func_ether_hostton=${ac_cv_func_ether_hostton=yes}
| ac_cv_func_ether_ntohost=${ac_cv_func_ether_ntohost=yes}
| ac_cv_func_euidaccess=${ac_cv_func_euidaccess=yes}
| ac_cv_func_execv=${ac_cv_func_execv=yes}
| ac_cv_func_fchdir=${ac_cv_func_fchdir=yes}
| ac_cv_func_fchmod=${ac_cv_func_fchmod=yes}
| ac_cv_func_fchmodat=${ac_cv_func_fchmodat=yes}
| ac_cv_func_fchown=${ac_cv_func_fchown=yes}
| ac_cv_func_fchownat=${ac_cv_func_fchownat=yes}
| ac_cv_func_fcntl=${ac_cv_func_fcntl=yes}
| ac_cv_func_fcvt=${ac_cv_func_fcvt=yes}
| ac_cv_func_fdatasync=${ac_cv_func_fdatasync=yes}
| ac_cv_func_fdopendir=${ac_cv_func_fdopendir=yes}
| ac_cv_func_feof_unlocked=${ac_cv_func_feof_unlocked=yes}
| ac_cv_func_fgets_unlocked=${ac_cv_func_fgets_unlocked=yes}
| ac_cv_func_fgetxattr=${ac_cv_func_fgetxattr=yes}
| ac_cv_func_finite=${ac_cv_func_finite=yes}
| ac_cv_func_flistxattr=${ac_cv_func_flistxattr=yes}
| ac_cv_func_flock=${ac_cv_func_flock=yes}
| ac_cv_func_flockfile=${ac_cv_func_flockfile=yes}
| ac_cv_func_fnmatch=${ac_cv_func_fnmatch=yes}
| ac_cv_func_fork=${ac_cv_func_fork=yes}
| ac_cv_func_fpathconf=${ac_cv_func_fpathconf=yes}
| ac_cv_func_fprintf=${ac_cv_func_fprintf=yes}
| ac_cv_func_free=${ac_cv_func_free=yes}
| ac_cv_func_freeaddrinfo=${ac_cv_func_freeaddrinfo=yes}
| ac_cv_func_freeifaddrs=${ac_cv_func_freeifaddrs=yes}
| ac_cv_func_fseeko=${ac_cv_func_fseeko=yes}
| ac_cv_func_fsetxattr=${ac_cv_func_fsetxattr=yes}
| ac_cv_func_fstat64=${ac_cv_func_fstat64=yes}
| ac_cv_func_fstat=${ac_cv_func_fstat=yes}
| ac_cv_func_fstatfs=${ac_cv_func_fstatfs=yes}
| ac_cv_func_fsync=${ac_cv_func_fsync=yes}
| ac_cv_func_ftello=${ac_cv_func_ftello=yes}
| ac_cv_func_ftime=${ac_cv_func_ftime=yes}
| ac_cv_func_ftruncate=${ac_cv_func_ftruncate=yes}
| ac_cv_func_funlockfile=${ac_cv_func_funlockfile=yes}
| ac_cv_func_futimes=${ac_cv_func_futimes=yes}
| ac_cv_func_futimesat=${ac_cv_func_futimesat=yes}
| ac_cv_func_gai_strerror=${ac_cv_func_gai_strerror=yes}
| ac_cv_func_gcvt=${ac_cv_func_gcvt=yes}
| ac_cv_func_getaddrinfo=${ac_cv_func_getaddrinfo=yes}
| ac_cv_func_getc_unlocked=${ac_cv_func_getc_unlocked=yes}
| ac_cv_func_getcwd=${ac_cv_func_getcwd=yes}
| ac_cv_func_getdelim=${ac_cv_func_getdelim=yes}
| ac_cv_func_getdomainname=${ac_cv_func_getdomainname=yes}
| ac_cv_func_getdtablesize=${ac_cv_func_getdtablesize=yes}
| ac_cv_func_getegid=${ac_cv_func_getegid=yes}
| ac_cv_func_getenv=${ac_cv_func_getenv=yes}
| ac_cv_func_geteuid=${ac_cv_func_geteuid=yes}
| ac_cv_func_getgid=${ac_cv_func_getgid=yes}
| ac_cv_func_getgrent=${ac_cv_func_getgrent=yes}
| ac_cv_func_getgrent_r=${ac_cv_func_getgrent_r=yes}
| ac_cv_func_getgrgid_r=${ac_cv_func_getgrgid_r=yes}
| ac_cv_func_getgrnam=${ac_cv_func_getgrnam=yes}
| ac_cv_func_getgrnam_r=${ac_cv_func_getgrnam_r=yes}
| ac_cv_func_getgrouplist=${ac_cv_func_getgrouplist=yes}
| ac_cv_func_getgroups=${ac_cv_func_getgroups=yes}
| ac_cv_func_gethostbyaddr_r=${ac_cv_func_gethostbyaddr_r=yes}
| ac_cv_func_gethostbyname2=${ac_cv_func_gethostbyname2=yes}
| ac_cv_func_gethostbyname=${ac_cv_func_gethostbyname=yes}
| ac_cv_func_gethostbyname_r=${ac_cv_func_gethostbyname_r=yes}
| ac_cv_func_gethostent=${ac_cv_func_gethostent=yes}
| ac_cv_func_gethostid=${ac_cv_func_gethostid=yes}
| ac_cv_func_gethostname=${ac_cv_func_gethostname=yes}
| ac_cv_func_getifaddrs=${ac_cv_func_getifaddrs=yes}
| ac_cv_func_getline=${ac_cv_func_getline=yes}
| ac_cv_func_getloadavg=${ac_cv_func_getloadavg=yes}
| ac_cv_func_getmntent=${ac_cv_func_getmntent=yes}
| ac_cv_func_getmsg=${ac_cv_func_getmsg=yes}
| ac_cv_func_getnameinfo=${ac_cv_func_getnameinfo=yes}
| ac_cv_func_getnetbyaddr_r=${ac_cv_func_getnetbyaddr_r=yes}
| ac_cv_func_getnetgrent_r=${ac_cv_func_getnetgrent_r=yes}
| ac_cv_func_getopt=${ac_cv_func_getopt=yes}
| ac_cv_func_getopt_long=${ac_cv_func_getopt_long=yes}
| ac_cv_func_getopt_long_only=${ac_cv_func_getopt_long_only=yes}
| ac_cv_func_getpagesize=${ac_cv_func_getpagesize=yes}
| ac_cv_func_getpass=${ac_cv_func_getpass=yes}
| ac_cv_func_getpeername=${ac_cv_func_getpeername=yes}
| ac_cv_func_getpgrp=${ac_cv_func_getpgrp=yes}
| ac_cv_func_getpid=${ac_cv_func_getpid=yes}
| ac_cv_func_getppid=${ac_cv_func_getppid=yes}
| ac_cv_func_getprotoent_r=${ac_cv_func_getprotoent_r=yes}
| ac_cv_func_getpwent=${ac_cv_func_getpwent=yes}
| ac_cv_func_getpwent_r=${ac_cv_func_getpwent_r=yes}
| ac_cv_func_getpwnam=${ac_cv_func_getpwnam=yes}
| ac_cv_func_getpwnam_r=${ac_cv_func_getpwnam_r=yes}
| ac_cv_func_getpwuid=${ac_cv_func_getpwuid=yes}
| ac_cv_func_getpwuid_r=${ac_cv_func_getpwuid_r=yes}
| ac_cv_func_getresuid=${ac_cv_func_getresuid=yes}
| ac_cv_func_getrlimit=${ac_cv_func_getrlimit=yes}
| ac_cv_func_getrusage=${ac_cv_func_getrusage=yes}
| ac_cv_func_getservbyname=${ac_cv_func_getservbyname=yes}
| ac_cv_func_getservbyname_r=${ac_cv_func_getservbyname_r=yes}
| ac_cv_func_getservbyport_r=${ac_cv_func_getservbyport_r=yes}
| ac_cv_func_getservent=${ac_cv_func_getservent=yes}
| ac_cv_func_getservent_r=${ac_cv_func_getservent_r=yes}
| ac_cv_func_getspnam=${ac_cv_func_getspnam=yes}
| ac_cv_func_getspnam_r=${ac_cv_func_getspnam_r=yes}
| ac_cv_func_gettimeofday=${ac_cv_func_gettimeofday=yes}
| ac_cv_func_getttyent=${ac_cv_func_getttyent=yes}
| ac_cv_func_getttynam=${ac_cv_func_getttynam=yes}
| ac_cv_func_getuid=${ac_cv_func_getuid=yes}
| ac_cv_func_getusershell=${ac_cv_func_getusershell=yes}
| ac_cv_func_getutent=${ac_cv_func_getutent=yes}
| ac_cv_func_getutid=${ac_cv_func_getutid=yes}
| ac_cv_func_getutline=${ac_cv_func_getutline=yes}
| ac_cv_func_getutmp=${ac_cv_func_getutmp=yes}
| ac_cv_func_getutmpx=${ac_cv_func_getutmpx=yes}
| ac_cv_func_getutxent=${ac_cv_func_getutxent=yes}
| ac_cv_func_getutxid=${ac_cv_func_getutxid=yes}
| ac_cv_func_getutxline=${ac_cv_func_getutxline=yes}
| ac_cv_func_getwd=${ac_cv_func_getwd=yes}
| ac_cv_func_getxattr=${ac_cv_func_getxattr=yes}
| ac_cv_func_glob=${ac_cv_func_glob=yes}
| ac_cv_func_gmtime=${ac_cv_func_gmtime=yes}
| ac_cv_func_gmtime_r=${ac_cv_func_gmtime_r=yes}
| ac_cv_func_grantpt=${ac_cv_func_grantpt=yes}
| ac_cv_func_group_member=${ac_cv_func_group_member=yes}
| ac_cv_func_herror=${ac_cv_func_herror=yes}
| ac_cv_func_hstrerror=${ac_cv_func_hstrerror=yes}
| ac_cv_func_iconv=${ac_cv_func_iconv=yes}
| ac_cv_func_iconv_open=${ac_cv_func_iconv_open=yes}
| ac_cv_func_if_freenameindex=${ac_cv_func_if_freenameindex=yes}
| ac_cv_func_if_indextoname=${ac_cv_func_if_indextoname=yes}
| ac_cv_func_if_nameindex=${ac_cv_func_if_nameindex=yes}
| ac_cv_func_if_nametoindex=${ac_cv_func_if_nametoindex=yes}
| ac_cv_func_index=${ac_cv_func_index=yes}
| ac_cv_func_inet_addr=${ac_cv_func_inet_addr=yes}
| ac_cv_func_inet_aton=${ac_cv_func_inet_aton=yes}
| ac_cv_func_inet_ntoa=${ac_cv_func_inet_ntoa=yes}
| ac_cv_func_inet_ntop=${ac_cv_func_inet_ntop=yes}
| ac_cv_func_inet_pton=${ac_cv_func_inet_pton=yes}
| ac_cv_func_initgroups=${ac_cv_func_initgroups=yes}
| ac_cv_func_innetgr=${ac_cv_func_innetgr=yes}
| ac_cv_func_iruserok=${ac_cv_func_iruserok=yes}
| ac_cv_func_isascii=${ac_cv_func_isascii=yes}
| ac_cv_func_isatty=${ac_cv_func_isatty=yes}
| ac_cv_func_isblank=${ac_cv_func_isblank=yes}
| ac_cv_func_isgraph=${ac_cv_func_isgraph=yes}
| ac_cv_func_isinf=${ac_cv_func_isinf=yes}
| ac_cv_func_isnan=${ac_cv_func_isnan=yes}
| ac_cv_func_isprint=${ac_cv_func_isprint=yes}
| ac_cv_func_isspace=${ac_cv_func_isspace=yes}
| ac_cv_func_iswalnum=${ac_cv_func_iswalnum=yes}
| ac_cv_func_iswcntrl=${ac_cv_func_iswcntrl=yes}
| ac_cv_func_iswctype=${ac_cv_func_iswctype=yes}
| ac_cv_func_iswprint=${ac_cv_func_iswprint=yes}
| ac_cv_func_iswspace=${ac_cv_func_iswspace=yes}
| ac_cv_func_iswupper=${ac_cv_func_iswupper=yes}
| ac_cv_func_isxdigit=${ac_cv_func_isxdigit=yes}
| ac_cv_func_kill=${ac_cv_func_kill=yes}
| ac_cv_func_killpg=${ac_cv_func_killpg=yes}
| ac_cv_func_lchown=${ac_cv_func_lchown=yes}
| ac_cv_func_lckpwdf=${ac_cv_func_lckpwdf=yes}
| ac_cv_func_lgetxattr=${ac_cv_func_lgetxattr=yes}
| ac_cv_func_link=${ac_cv_func_link=yes}
| ac_cv_func_listxattr=${ac_cv_func_listxattr=yes}
| ac_cv_func_llistxattr=${ac_cv_func_llistxattr=yes}
| ac_cv_func_localtime=${ac_cv_func_localtime=yes}
| ac_cv_func_localtime_r=${ac_cv_func_localtime_r=yes}
| ac_cv_func_lockf=${ac_cv_func_lockf=yes}
| ac_cv_func_lrand48=${ac_cv_func_lrand48=yes}
| ac_cv_func_lsearch=${ac_cv_func_lsearch=yes}
| ac_cv_func_lseek64=${ac_cv_func_lseek64=yes}
| ac_cv_func_lsetxattr=${ac_cv_func_lsetxattr=yes}
| ac_cv_func_lstat=${ac_cv_func_lstat=yes}
| ac_cv_func_mallinfo=${ac_cv_func_mallinfo=yes}
| ac_cv_func_malloc=${ac_cv_func_malloc=yes}
| ac_cv_func_mblen=${ac_cv_func_mblen=yes}
| ac_cv_func_mbrlen=${ac_cv_func_mbrlen=yes}
| ac_cv_func_mbrtowc=${ac_cv_func_mbrtowc=yes}
| ac_cv_func_mbsinit=${ac_cv_func_mbsinit=yes}
| ac_cv_func_mbsrtowcs=${ac_cv_func_mbsrtowcs=yes}
| ac_cv_func_mbtowc=${ac_cv_func_mbtowc=yes}
| ac_cv_func_memalign=${ac_cv_func_memalign=yes}
| ac_cv_func_memchr=${ac_cv_func_memchr=yes}
| ac_cv_func_memcmp=${ac_cv_func_memcmp=yes}
| ac_cv_func_memcpy=${ac_cv_func_memcpy=yes}
| ac_cv_func_memmove=${ac_cv_func_memmove=yes}
| ac_cv_func_mempcpy=${ac_cv_func_mempcpy=yes}
| ac_cv_func_memrchr=${ac_cv_func_memrchr=yes}
| ac_cv_func_memset=${ac_cv_func_memset=yes}
| ac_cv_func_mkdir=${ac_cv_func_mkdir=yes}
| ac_cv_func_mkdirat=${ac_cv_func_mkdirat=yes}
| ac_cv_func_mkdtemp=${ac_cv_func_mkdtemp=yes}
| ac_cv_func_mkfifo=${ac_cv_func_mkfifo=yes}
| ac_cv_func_mknod=${ac_cv_func_mknod=yes}
| ac_cv_func_mkstemp64=${ac_cv_func_mkstemp64=yes}
| ac_cv_func_mkstemp=${ac_cv_func_mkstemp=yes}
| ac_cv_func_mktime=${ac_cv_func_mktime=yes}
| ac_cv_func_mlock=${ac_cv_func_mlock=yes}
| ac_cv_func_mmap=${ac_cv_func_mmap=yes}
| ac_cv_func_mtrace=${ac_cv_func_mtrace=yes}
| ac_cv_func_munlock=${ac_cv_func_munlock=yes}
| ac_cv_func_munmap=${ac_cv_func_munmap=yes}
| ac_cv_func_nanosleep=${ac_cv_func_nanosleep=yes}
| ac_cv_func_nice=${ac_cv_func_nice=yes}
| ac_cv_func_nl_langinfo=${ac_cv_func_nl_langinfo=yes}
| ac_cv_func_ntp_adjtime=${ac_cv_func_ntp_adjtime=yes}
| ac_cv_func_ntp_gettime=${ac_cv_func_ntp_gettime=yes}
| ac_cv_func_on_exit=${ac_cv_func_on_exit=yes}
| ac_cv_func_open64=${ac_cv_func_open64=yes}
| ac_cv_func_open=${ac_cv_func_open=yes}
| ac_cv_func_openat=${ac_cv_func_openat=yes}
| ac_cv_func_opendir=${ac_cv_func_opendir=yes}
| ac_cv_func_openlog=${ac_cv_func_openlog=yes}
| ac_cv_func_pathconf=${ac_cv_func_pathconf=yes}
| ac_cv_func_pipe=${ac_cv_func_pipe=yes}
| ac_cv_func_poll=${ac_cv_func_poll=yes}
| ac_cv_func_popen=${ac_cv_func_popen=yes}
| ac_cv_func_posix_memalign=${ac_cv_func_posix_memalign=yes}
| ac_cv_func_prctl=${ac_cv_func_prctl=yes}
| ac_cv_func_pread=${ac_cv_func_pread=yes}
| ac_cv_func_printf=${ac_cv_func_printf=yes}
| ac_cv_func_pselect=${ac_cv_func_pselect=yes}
| ac_cv_func_pthread_mutex_lock=${ac_cv_func_pthread_mutex_lock=yes}
| ac_cv_func_ptsname=${ac_cv_func_ptsname=yes}
| ac_cv_func_putenv=${ac_cv_func_putenv=yes}
| ac_cv_func_putgrent=${ac_cv_func_putgrent=yes}
| ac_cv_func_putpwent=${ac_cv_func_putpwent=yes}
| ac_cv_func_putspent=${ac_cv_func_putspent=yes}
| ac_cv_func_pututline=${ac_cv_func_pututline=yes}
| ac_cv_func_pututxline=${ac_cv_func_pututxline=yes}
| ac_cv_func_putwc=${ac_cv_func_putwc=yes}
| ac_cv_func_pwrite=${ac_cv_func_pwrite=yes}
| ac_cv_func_qsort=${ac_cv_func_qsort=yes}
| ac_cv_func_raise=${ac_cv_func_raise=yes}
| ac_cv_func_rand=${ac_cv_func_rand=yes}
| ac_cv_func_rand_r=${ac_cv_func_rand_r=yes}
| ac_cv_func_random=${ac_cv_func_random=yes}
| ac_cv_func_re_comp=${ac_cv_func_re_comp=yes}
| ac_cv_func_re_exec=${ac_cv_func_re_exec=yes}
| ac_cv_func_re_search=${ac_cv_func_re_search=yes}
| ac_cv_func_read=${ac_cv_func_read=yes}
| ac_cv_func_readdir=${ac_cv_func_readdir=yes}
| ac_cv_func_readdir_r=${ac_cv_func_readdir_r=yes}
| ac_cv_func_readlink=${ac_cv_func_readlink=yes}
| ac_cv_func_realloc=${ac_cv_func_realloc=yes}
| ac_cv_func_realpath=${ac_cv_func_realpath=yes}
| ac_cv_func_recvmsg=${ac_cv_func_recvmsg=yes}
| ac_cv_func_regcomp=${ac_cv_func_regcomp=yes}
| ac_cv_func_regexec=${ac_cv_func_regexec=yes}
| ac_cv_func_remove=${ac_cv_func_remove=yes}
| ac_cv_func_rename=${ac_cv_func_rename=yes}
| ac_cv_func_rmdir=${ac_cv_func_rmdir=yes}
| ac_cv_func_rpmatch=${ac_cv_func_rpmatch=yes}
| ac_cv_func_rresvport_af=${ac_cv_func_rresvport_af=yes}
| ac_cv_func_ruserok=${ac_cv_func_ruserok=yes}
| ac_cv_func_ruserok_af=${ac_cv_func_ruserok_af=yes}
| ac_cv_func_sbrk=${ac_cv_func_sbrk=yes}
| ac_cv_func_scandir=${ac_cv_func_scandir=yes}
| ac_cv_func_sched_setscheduler=${ac_cv_func_sched_setscheduler=yes}
| ac_cv_func_sched_yield=${ac_cv_func_sched_yield=yes}
| ac_cv_func_select=${ac_cv_func_select=yes}
| ac_cv_func_semctl=${ac_cv_func_semctl=yes}
| ac_cv_func_semget=${ac_cv_func_semget=yes}
| ac_cv_func_sendmsg=${ac_cv_func_sendmsg=yes}
| ac_cv_func_setbuf=${ac_cv_func_setbuf=yes}
| ac_cv_func_setbuffer=${ac_cv_func_setbuffer=yes}
| ac_cv_func_setegid=${ac_cv_func_setegid=yes}
| ac_cv_func_setenv=${ac_cv_func_setenv=yes}
| ac_cv_func_seteuid=${ac_cv_func_seteuid=yes}
| ac_cv_func_setgid=${ac_cv_func_setgid=yes}
| ac_cv_func_setgroups=${ac_cv_func_setgroups=yes}
| ac_cv_func_sethostname=${ac_cv_func_sethostname=yes}
| ac_cv_func_setitimer=${ac_cv_func_setitimer=yes}
| ac_cv_func_setjmp=${ac_cv_func_setjmp=yes}
| ac_cv_func_setlinebuf=${ac_cv_func_setlinebuf=yes}
| ac_cv_func_setlocale=${ac_cv_func_setlocale=yes}
| ac_cv_func_setmntent=${ac_cv_func_setmntent=yes}
| ac_cv_func_setpgid=${ac_cv_func_setpgid=yes}
| ac_cv_func_setpgrp=${ac_cv_func_setpgrp=yes}
| ac_cv_func_setpriority=${ac_cv_func_setpriority=yes}
| ac_cv_func_setregid=${ac_cv_func_setregid=yes}
| ac_cv_func_setresgid=${ac_cv_func_setresgid=yes}
| ac_cv_func_setresuid=${ac_cv_func_setresuid=yes}
| ac_cv_func_setreuid=${ac_cv_func_setreuid=yes}
| ac_cv_func_setrlimit=${ac_cv_func_setrlimit=yes}
| ac_cv_func_setsid=${ac_cv_func_setsid=yes}
| ac_cv_func_setsockopt=${ac_cv_func_setsockopt=yes}
| ac_cv_func_settimeofday=${ac_cv_func_settimeofday=yes}
| ac_cv_func_setuid=${ac_cv_func_setuid=yes}
| ac_cv_func_setutent=${ac_cv_func_setutent=yes}
| ac_cv_func_setutxent=${ac_cv_func_setutxent=yes}
| ac_cv_func_setvbuf=${ac_cv_func_setvbuf=yes}
| ac_cv_func_setxattr=${ac_cv_func_setxattr=yes}
| ac_cv_func_sgetspent=${ac_cv_func_sgetspent=yes}
| ac_cv_func_shmat=${ac_cv_func_shmat=yes}
| ac_cv_func_shmctl=${ac_cv_func_shmctl=yes}
| ac_cv_func_shmdt=${ac_cv_func_shmdt=yes}
| ac_cv_func_shmget=${ac_cv_func_shmget=yes}
| ac_cv_func_shutdown=${ac_cv_func_shutdown=yes}
| ac_cv_func_sigaction=${ac_cv_func_sigaction=yes}
| ac_cv_func_sigaddset=${ac_cv_func_sigaddset=yes}
| ac_cv_func_sigaltstack=${ac_cv_func_sigaltstack=yes}
| ac_cv_func_sigblock=${ac_cv_func_sigblock=yes}
| ac_cv_func_sigemptyset=${ac_cv_func_sigemptyset=yes}
| ac_cv_func_sighold=${ac_cv_func_sighold=yes}
| ac_cv_func_siginterrupt=${ac_cv_func_siginterrupt=yes}
| ac_cv_func_signal=${ac_cv_func_signal=yes}
| ac_cv_func_sigprocmask=${ac_cv_func_sigprocmask=yes}
| ac_cv_func_sigset=${ac_cv_func_sigset=yes}
| ac_cv_func_sigsetmask=${ac_cv_func_sigsetmask=yes}
| ac_cv_func_sigstack=${ac_cv_func_sigstack=yes}
| ac_cv_func_sigsuspend=${ac_cv_func_sigsuspend=yes}
| ac_cv_func_sigvec=${ac_cv_func_sigvec=yes}
| ac_cv_func_snprintf=${ac_cv_func_snprintf=yes}
| ac_cv_func_socket=${ac_cv_func_socket=yes}
| ac_cv_func_socketpair=${ac_cv_func_socketpair=yes}
| ac_cv_func_sprintf=${ac_cv_func_sprintf=yes}
| ac_cv_func_srand48=${ac_cv_func_srand48=yes}
| ac_cv_func_srand=${ac_cv_func_srand=yes}
| ac_cv_func_srandom=${ac_cv_func_srandom=yes}
| ac_cv_func_sscanf=${ac_cv_func_sscanf=yes}
| ac_cv_func_stat=${ac_cv_func_stat=yes}
| ac_cv_func_statfs=${ac_cv_func_statfs=yes}
| ac_cv_func_statvfs=${ac_cv_func_statvfs=yes}
| ac_cv_func_stime=${ac_cv_func_stime=yes}
| ac_cv_func_stpcpy=${ac_cv_func_stpcpy=yes}
| ac_cv_func_strcasecmp=${ac_cv_func_strcasecmp=yes}
| ac_cv_func_strcasestr=${ac_cv_func_strcasestr=yes}
| ac_cv_func_strchr=${ac_cv_func_strchr=yes}
| ac_cv_func_strchrnul=${ac_cv_func_strchrnul=yes}
| ac_cv_func_strcmp=${ac_cv_func_strcmp=yes}
| ac_cv_func_strcspn=${ac_cv_func_strcspn=yes}
| ac_cv_func_strdup=${ac_cv_func_strdup=yes}
| ac_cv_func_strerror=${ac_cv_func_strerror=yes}
| ac_cv_func_strerror_r=${ac_cv_func_strerror_r=yes}
| ac_cv_func_strftime=${ac_cv_func_strftime=yes}
| ac_cv_func_strlen=${ac_cv_func_strlen=yes}
| ac_cv_func_strncasecmp=${ac_cv_func_strncasecmp=yes}
| ac_cv_func_strncmp=${ac_cv_func_strncmp=yes}
| ac_cv_func_strndup=${ac_cv_func_strndup=yes}
| ac_cv_func_strnlen=${ac_cv_func_strnlen=yes}
| ac_cv_func_strpbrk=${ac_cv_func_strpbrk=yes}
| ac_cv_func_strptime=${ac_cv_func_strptime=yes}
| ac_cv_func_strrchr=${ac_cv_func_strrchr=yes}
| ac_cv_func_strsep=${ac_cv_func_strsep=yes}
| ac_cv_func_strsignal=${ac_cv_func_strsignal=yes}
| ac_cv_func_strspn=${ac_cv_func_strspn=yes}
| ac_cv_func_strstr=${ac_cv_func_strstr=yes}
| ac_cv_func_strtod=${ac_cv_func_strtod=yes}
| ac_cv_func_strtoimax=${ac_cv_func_strtoimax=yes}
| ac_cv_func_strtok_r=${ac_cv_func_strtok_r=yes}
| ac_cv_func_strtol=${ac_cv_func_strtol=yes}
| ac_cv_func_strtoll=${ac_cv_func_strtoll=yes}
| ac_cv_func_strtoul=${ac_cv_func_strtoul=yes}
| ac_cv_func_strtoull=${ac_cv_func_strtoull=yes}
| ac_cv_func_strtoumax=${ac_cv_func_strtoumax=yes}
| ac_cv_func_strverscmp=${ac_cv_func_strverscmp=yes}
| ac_cv_func_strxfrm=${ac_cv_func_strxfrm=yes}
| ac_cv_func_symlink=${ac_cv_func_symlink=yes}
| ac_cv_func_sync=${ac_cv_func_sync=yes}
| ac_cv_func_sys_siglist=${ac_cv_func_sys_siglist=yes}
| ac_cv_func_sysconf=${ac_cv_func_sysconf=yes}
| ac_cv_func_sysctl=${ac_cv_func_sysctl=yes}
| ac_cv_func_sysinfo=${ac_cv_func_sysinfo=yes}
| ac_cv_func_syslog=${ac_cv_func_syslog=yes}
| ac_cv_func_system=${ac_cv_func_system=yes}
| ac_cv_func_tcgetattr=${ac_cv_func_tcgetattr=yes}
| ac_cv_func_tcgetpgrp=${ac_cv_func_tcgetpgrp=yes}
| ac_cv_func_tcsetattr=${ac_cv_func_tcsetattr=yes}
| ac_cv_func_tcsetpgrp=${ac_cv_func_tcsetpgrp=yes}
| ac_cv_func_time=${ac_cv_func_time=yes}
| ac_cv_func_timegm=${ac_cv_func_timegm=yes}
| ac_cv_func_times=${ac_cv_func_times=yes}
| ac_cv_func_timezone=${ac_cv_func_timezone=yes}
| ac_cv_func_tmpnam=${ac_cv_func_tmpnam=yes}
| ac_cv_func_towlower=${ac_cv_func_towlower=yes}
| ac_cv_func_towupper=${ac_cv_func_towupper=yes}
| ac_cv_func_truncate=${ac_cv_func_truncate=yes}
| ac_cv_func_tsearch=${ac_cv_func_tsearch=yes}
| ac_cv_func_ttyname=${ac_cv_func_ttyname=yes}
| ac_cv_func_tzset=${ac_cv_func_tzset=yes}
| ac_cv_func_ulimit=${ac_cv_func_ulimit=yes}
| ac_cv_func_umask=${ac_cv_func_umask=yes}
| ac_cv_func_uname=${ac_cv_func_uname=yes}
| ac_cv_func_unlink=${ac_cv_func_unlink=yes}
| ac_cv_func_unsetenv=${ac_cv_func_unsetenv=yes}
| ac_cv_func_unshare=${ac_cv_func_unshare=yes}
| ac_cv_func_updwtmp=${ac_cv_func_updwtmp=yes}
| ac_cv_func_updwtmpx=${ac_cv_func_updwtmpx=yes}
| ac_cv_func_usleep=${ac_cv_func_usleep=yes}
| ac_cv_func_ustat=${ac_cv_func_ustat=yes}
| ac_cv_func_utime=${ac_cv_func_utime=yes}
| ac_cv_func_utimes=${ac_cv_func_utimes=yes}
| ac_cv_func_utmpname=${ac_cv_func_utmpname=yes}
| ac_cv_func_utmpxname=${ac_cv_func_utmpxname=yes}
| ac_cv_func_valloc=${ac_cv_func_valloc=yes}
| ac_cv_func_vasprintf=${ac_cv_func_vasprintf=yes}
| ac_cv_func_verrx=${ac_cv_func_verrx=yes}
| ac_cv_func_vfork=${ac_cv_func_vfork=yes}
| ac_cv_func_vfprintf=${ac_cv_func_vfprintf=yes}
| ac_cv_func_vfscanf=${ac_cv_func_vfscanf=yes}
| ac_cv_func_vhangup=${ac_cv_func_vhangup=yes}
| ac_cv_func_vprintf=${ac_cv_func_vprintf=yes}
| ac_cv_func_vsnprintf=${ac_cv_func_vsnprintf=yes}
| ac_cv_func_vsprintf=${ac_cv_func_vsprintf=yes}
| ac_cv_func_wait3=${ac_cv_func_wait3=yes}
| ac_cv_func_wait4=${ac_cv_func_wait4=yes}
| ac_cv_func_waitpid=${ac_cv_func_waitpid=yes}
| ac_cv_func_wcrtomb=${ac_cv_func_wcrtomb=yes}
| ac_cv_func_wcscoll=${ac_cv_func_wcscoll=yes}
| ac_cv_func_wcsdup=${ac_cv_func_wcsdup=yes}
| ac_cv_func_wcslen=${ac_cv_func_wcslen=yes}
| ac_cv_func_wctob=${ac_cv_func_wctob=yes}
| ac_cv_func_wctomb=${ac_cv_func_wctomb=yes}
| ac_cv_func_wctype=${ac_cv_func_wctype=yes}
| ac_cv_func_wcwidth=${ac_cv_func_wcwidth=yes}
| ac_cv_func_wmemchr=${ac_cv_func_wmemchr=yes}
| ac_cv_func_wmemcpy=${ac_cv_func_wmemcpy=yes}
| ac_cv_func_wmempcpy=${ac_cv_func_wmempcpy=yes}
| ac_cv_header_aio_h=${ac_cv_header_aio_h=yes}
| ac_cv_header_alloca_h=${ac_cv_header_alloca_h=yes}
| ac_cv_header_argz_h=${ac_cv_header_argz_h=yes}
| ac_cv_header_arpa_inet_h=${ac_cv_header_arpa_inet_h=yes}
| ac_cv_header_arpa_nameser_h=${ac_cv_header_arpa_nameser_h=yes}
| ac_cv_header_asm_byteorder_h=${ac_cv_header_asm_byteorder_h=yes}
| ac_cv_header_asm_ioctls_h=${ac_cv_header_asm_ioctls_h=yes}
| ac_cv_header_asm_page_h=${ac_cv_header_asm_page_h=no}
| ac_cv_header_asm_types_h=${ac_cv_header_asm_types_h=yes}
| ac_cv_header_assert_h=${ac_cv_header_assert_h=yes}
| ac_cv_header_byteswap_h=${ac_cv_header_byteswap_h=yes}
| ac_cv_header_crypt_h=${ac_cv_header_crypt_h=yes}
| ac_cv_header_ctype_h=${ac_cv_header_ctype_h=yes}
| ac_cv_header_dirent_h=${ac_cv_header_dirent_h=yes}
| ac_cv_header_dlfcn_h=${ac_cv_header_dlfcn_h=yes}
| ac_cv_header_elf_h=${ac_cv_header_elf_h=yes}
| ac_cv_header_endian_h=${ac_cv_header_endian_h=yes}
| ac_cv_header_err_h=${ac_cv_header_err_h=yes}
| ac_cv_header_errno_h=${ac_cv_header_errno_h=yes}
| ac_cv_header_execinfo_h=${ac_cv_header_execinfo_h=yes}
| ac_cv_header_fcntl_h=${ac_cv_header_fcntl_h=yes}
| ac_cv_header_features_h=${ac_cv_header_features_h=yes}
| ac_cv_header_float_h=${ac_cv_header_float_h=yes}
| ac_cv_header_fstab_h=${ac_cv_header_fstab_h=yes}
| ac_cv_header_ftw_h=${ac_cv_header_ftw_h=yes}
| ac_cv_header_getopt_h=${ac_cv_header_getopt_h=yes}
| ac_cv_header_glob_h=${ac_cv_header_glob_h=yes}
| ac_cv_header_grp_h=${ac_cv_header_grp_h=yes}
| ac_cv_header_iconv_h=${ac_cv_header_iconv_h=yes}
| ac_cv_header_ifaddrs_h=${ac_cv_header_ifaddrs_h=yes}
| ac_cv_header_inttypes_h=${ac_cv_header_inttypes_h=yes}
| ac_cv_header_langinfo_h=${ac_cv_header_langinfo_h=yes}
| ac_cv_header_lastlog_h=${ac_cv_header_lastlog_h=yes}
| ac_cv_header_libgen_h=${ac_cv_header_libgen_h=yes}
| ac_cv_header_libintl_h=${ac_cv_header_libintl_h=yes}
| ac_cv_header_limits_h=${ac_cv_header_limits_h=yes}
| ac_cv_header_linux_capability_h=${ac_cv_header_linux_capability_h=yes}
| ac_cv_header_linux_fd_h=${ac_cv_header_linux_fd_h=yes}
| ac_cv_header_linux_fs_h=${ac_cv_header_linux_fs_h=yes}
| ac_cv_header_linux_hayesesp_h=${ac_cv_header_linux_hayesesp_h=no}
| ac_cv_header_linux_hdreg_h=${ac_cv_header_linux_hdreg_h=yes}
| ac_cv_header_linux_icmp_h=${ac_cv_header_linux_icmp_h=yes}
| ac_cv_header_linux_in6_h=${ac_cv_header_linux_in6_h=yes}
| ac_cv_header_linux_joystick_h=${ac_cv_header_linux_joystick_h=yes}
| ac_cv_header_linux_ptrace_h=${ac_cv_header_linux_ptrace_h=yes}
| ac_cv_header_linux_serial_h=${ac_cv_header_linux_serial_h=yes}
| ac_cv_header_linux_sonypi_h=${ac_cv_header_linux_sonypi_h=yes}
| ac_cv_header_linux_unistd_h=${ac_cv_header_linux_unistd_h=yes}
| ac_cv_header_linux_utsname_h=${ac_cv_header_linux_utsname_h=yes}
| ac_cv_header_linux_version_h=${ac_cv_header_linux_version_h=yes}
| ac_cv_header_locale_h=${ac_cv_header_locale_h=yes}
| ac_cv_header_malloc_h=${ac_cv_header_malloc_h=yes}
| ac_cv_header_math_h=${ac_cv_header_math_h=yes}
| ac_cv_header_mcheck_h=${ac_cv_header_mcheck_h=yes}
| ac_cv_header_memory_h=${ac_cv_header_memory_h=yes}
| ac_cv_header_mntent_h=${ac_cv_header_mntent_h=yes}
| ac_cv_header_mqueue_h=${ac_cv_header_mqueue_h=yes}
| ac_cv_header_net_if_h=${ac_cv_header_net_if_h=yes}
| ac_cv_header_net_route_h=${ac_cv_header_net_route_h=yes}
| ac_cv_header_netdb_h=${ac_cv_header_netdb_h=yes}
| ac_cv_header_netinet_ether_h=${ac_cv_header_netinet_ether_h=yes}
| ac_cv_header_netinet_in_h=${ac_cv_header_netinet_in_h=yes}
| ac_cv_header_netinet_ip6_h=${ac_cv_header_netinet_ip6_h=yes}
| ac_cv_header_netinet_ip_h=${ac_cv_header_netinet_ip_h=yes}
| ac_cv_header_netinet_tcp_h=${ac_cv_header_netinet_tcp_h=yes}
| ac_cv_header_netinet_udp_h=${ac_cv_header_netinet_udp_h=yes}
| ac_cv_header_netipx_ipx_h=${ac_cv_header_netipx_ipx_h=yes}
| ac_cv_header_paths_h=${ac_cv_header_paths_h=yes}
| ac_cv_header_poll_h=${ac_cv_header_poll_h=yes}
| ac_cv_header_pthread_h=${ac_cv_header_pthread_h=yes}
| ac_cv_header_pty_h=${ac_cv_header_pty_h=yes}
| ac_cv_header_pwd_h=${ac_cv_header_pwd_h=yes}
| ac_cv_header_regex_h=${ac_cv_header_regex_h=yes}
| ac_cv_header_resolv_h=${ac_cv_header_resolv_h=yes}
| ac_cv_header_rpc_rpc_h=${ac_cv_header_rpc_rpc_h=yes}
| ac_cv_header_rpc_types_h=${ac_cv_header_rpc_types_h=yes}
| ac_cv_header_sched_h=${ac_cv_header_sched_h=yes}
| ac_cv_header_scsi_scsi_h=${ac_cv_header_scsi_scsi_h=yes}
| ac_cv_header_search_h=${ac_cv_header_search_h=yes}
| ac_cv_header_semaphore_h=${ac_cv_header_semaphore_h=yes}
| ac_cv_header_setjmp_h=${ac_cv_header_setjmp_h=yes}
| ac_cv_header_sgtty_h=${ac_cv_header_sgtty_h=yes}
| ac_cv_header_shadow_h=${ac_cv_header_shadow_h=yes}
| ac_cv_header_signal_h=${ac_cv_header_signal_h=yes}
| ac_cv_header_stdarg_h=${ac_cv_header_stdarg_h=yes}
| ac_cv_header_stdbool_h=${ac_cv_header_stdbool_h=yes}
| ac_cv_header_stdc=${ac_cv_header_stdc=yes}
| ac_cv_header_stddef_h=${ac_cv_header_stddef_h=yes}
| ac_cv_header_stdint_h=${ac_cv_header_stdint_h=yes}
| ac_cv_header_stdio_h=${ac_cv_header_stdio_h=yes}
| ac_cv_header_stdlib_h=${ac_cv_header_stdlib_h=yes}
| ac_cv_header_string_h=${ac_cv_header_string_h=yes}
| ac_cv_header_strings_h=${ac_cv_header_strings_h=yes}
| ac_cv_header_stropts_h=${ac_cv_header_stropts_h=yes}
| ac_cv_header_sys_bitypes_h=${ac_cv_header_sys_bitypes_h=yes}
| ac_cv_header_sys_cdefs_h=${ac_cv_header_sys_cdefs_h=yes}
| ac_cv_header_sys_dir_h=${ac_cv_header_sys_dir_h=yes}
| ac_cv_header_sys_epoll_h=${ac_cv_header_sys_epoll_h=yes}
| ac_cv_header_sys_fcntl_h=${ac_cv_header_sys_fcntl_h=yes}
| ac_cv_header_sys_file_h=${ac_cv_header_sys_file_h=yes}
| ac_cv_header_sys_fsuid_h=${ac_cv_header_sys_fsuid_h=yes}
| ac_cv_header_sys_ioctl_h=${ac_cv_header_sys_ioctl_h=yes}
| ac_cv_header_sys_ipc_h=${ac_cv_header_sys_ipc_h=yes}
| ac_cv_header_sys_mman_h=${ac_cv_header_sys_mman_h=yes}
| ac_cv_header_sys_mount_h=${ac_cv_header_sys_mount_h=yes}
| ac_cv_header_sys_mtio_h=${ac_cv_header_sys_mtio_h=yes}
| ac_cv_header_sys_param_h=${ac_cv_header_sys_param_h=yes}
| ac_cv_header_sys_poll_h=${ac_cv_header_sys_poll_h=yes}
| ac_cv_header_sys_prctl_h=${ac_cv_header_sys_prctl_h=yes}
| ac_cv_header_sys_ptrace_h=${ac_cv_header_sys_ptrace_h=yes}
| ac_cv_header_sys_queue_h=${ac_cv_header_sys_queue_h=yes}
| ac_cv_header_sys_reg_h=${ac_cv_header_sys_reg_h=no}
| ac_cv_header_sys_resource_h=${ac_cv_header_sys_resource_h=yes}
| ac_cv_header_sys_select_h=${ac_cv_header_sys_select_h=yes}
| ac_cv_header_sys_sem_h=${ac_cv_header_sys_sem_h=yes}
| ac_cv_header_sys_shm_h=${ac_cv_header_sys_shm_h=yes}
| ac_cv_header_sys_signal_h=${ac_cv_header_sys_signal_h=yes}
| ac_cv_header_sys_socket_h=${ac_cv_header_sys_socket_h=yes}
| ac_cv_header_sys_socketvar_h=${ac_cv_header_sys_socketvar_h=yes}
| ac_cv_header_sys_soundcard_h=${ac_cv_header_sys_soundcard_h=yes}
| ac_cv_header_sys_stat_h=${ac_cv_header_sys_stat_h=yes}
| ac_cv_header_sys_statfs_h=${ac_cv_header_sys_statfs_h=yes}
| ac_cv_header_sys_statvfs_h=${ac_cv_header_sys_statvfs_h=yes}
| ac_cv_header_sys_stropts_h=${ac_cv_header_sys_stropts_h=yes}
| ac_cv_header_sys_swap_h=${ac_cv_header_sys_swap_h=yes}
| ac_cv_header_sys_sysctl_h=${ac_cv_header_sys_sysctl_h=yes}
| ac_cv_header_sys_sysinfo_h=${ac_cv_header_sys_sysinfo_h=yes}
| ac_cv_header_sys_sysmacros_h=${ac_cv_header_sys_sysmacros_h=yes}
| ac_cv_header_sys_termios_h=${ac_cv_header_sys_termios_h=yes}
| ac_cv_header_sys_time_h=${ac_cv_header_sys_time_h=yes}
| ac_cv_header_sys_timeb_h=${ac_cv_header_sys_timeb_h=yes}
| ac_cv_header_sys_times_h=${ac_cv_header_sys_times_h=yes}
| ac_cv_header_sys_timex_h=${ac_cv_header_sys_timex_h=yes}
| ac_cv_header_sys_types_h=${ac_cv_header_sys_types_h=yes}
| ac_cv_header_sys_uio_h=${ac_cv_header_sys_uio_h=yes}
| ac_cv_header_sys_un_h=${ac_cv_header_sys_un_h=yes}
| ac_cv_header_sys_unistd_h=${ac_cv_header_sys_unistd_h=yes}
| ac_cv_header_sys_user_h=${ac_cv_header_sys_user_h=yes}
| ac_cv_header_sys_utsname_h=${ac_cv_header_sys_utsname_h=yes}
| ac_cv_header_sys_vfs_h=${ac_cv_header_sys_vfs_h=yes}
| ac_cv_header_sys_wait_h=${ac_cv_header_sys_wait_h=yes}
| ac_cv_header_sysexits_h=${ac_cv_header_sysexits_h=yes}
| ac_cv_header_syslog_h=${ac_cv_header_syslog_h=yes}
| ac_cv_header_termio_h=${ac_cv_header_termio_h=yes}
| ac_cv_header_termios_h=${ac_cv_header_termios_h=yes}
| ac_cv_header_time_h=${ac_cv_header_time_h=yes}
| ac_cv_header_ttyent_h=${ac_cv_header_ttyent_h=yes}
| ac_cv_header_ulimit_h=${ac_cv_header_ulimit_h=yes}
| ac_cv_header_unistd_h=${ac_cv_header_unistd_h=yes}
| ac_cv_header_ustat_h=${ac_cv_header_ustat_h=yes}
| ac_cv_header_utime_h=${ac_cv_header_utime_h=yes}
| ac_cv_header_utmp_h=${ac_cv_header_utmp_h=yes}
| ac_cv_header_utmpx_h=${ac_cv_header_utmpx_h=yes}
| ac_cv_header_values_h=${ac_cv_header_values_h=yes}
| ac_cv_header_wchar_h=${ac_cv_header_wchar_h=yes}
| ac_cv_header_wctype_h=${ac_cv_header_wctype_h=yes}
| ac_cv_sizeof_char=${ac_cv_sizeof_char=1}
| ac_cv_sizeof_char_p=${ac_cv_sizeof_char_p=4}
| ac_cv_sizeof_double=${ac_cv_sizeof_double=8}
| ac_cv_sizeof_float=${ac_cv_sizeof_float=4}
| ac_cv_sizeof_int=${ac_cv_sizeof_int=4}
| ac_cv_sizeof_long=${ac_cv_sizeof_long=4}
| ac_cv_sizeof_long_double=${ac_cv_sizeof_long_double=16}
| ac_cv_sizeof_long_int=${ac_cv_sizeof_long_int=4}
| ac_cv_sizeof_long_long=${ac_cv_sizeof_long_long=8}
| ac_cv_sizeof_long_long_int=${ac_cv_sizeof_long_long_int=8}
| ac_cv_sizeof_short=${ac_cv_sizeof_short=2}
| ac_cv_sizeof_short_int=${ac_cv_sizeof_short_int=2}
| ac_cv_sizeof_signed_char=${ac_cv_sizeof_signed_char=1}
| ac_cv_sizeof_unsigned_char=${ac_cv_sizeof_unsigned_char=1}
| ac_cv_sizeof_unsigned_int=${ac_cv_sizeof_unsigned_int=4}
| ac_cv_sizeof_unsigned_long=${ac_cv_sizeof_unsigned_long=4}
| ac_cv_sizeof_unsigned_long_int=${ac_cv_sizeof_unsigned_long_int=4}
| ac_cv_sizeof_unsigned_long_long_int=${ac_cv_sizeof_unsigned_long_long_int=8}
| ac_cv_sizeof_unsigned_short=${ac_cv_sizeof_unsigned_short=2}
| ac_cv_sizeof_unsigned_short_int=${ac_cv_sizeof_unsigned_short_int=2}
| ac_cv_sizeof_void_p=${ac_cv_sizeof_void_p=4}
configure:3482: checking for a BSD-compatible install
configure:3550: result: /usr/bin/install -c
configure:3561: checking whether build environment is sane
configure:3611: result: yes
configure:3660: checking for powerpc-poky-linux-strip
configure:3687: result: powerpc-poky-linux-strip
configure:3752: checking for a thread-safe mkdir -p
configure:3791: result: /bin/mkdir -p
configure:3804: checking for gawk
configure:3820: found /usr/bin/gawk
configure:3831: result: gawk
configure:3842: checking whether make sets $(MAKE)
configure:3864: result: yes
configure:3945: checking whether to enable maintainer-specific portions of Makefiles
configure:3954: result: no
configure:3992: checking for style of include used by make
configure:4020: result: GNU
configure:4050: checking for powerpc-poky-linux-gcc
configure:4077: result: powerpc-poky-linux-gcc -mcpu=603e  -mhard-float --sysroot=/home/kyu3/sdb/test/tmp/sysroots/qemuppc
configure:4346: checking for C compiler version
configure:4355: powerpc-poky-linux-gcc -mcpu=603e  -mhard-float --sysroot=/home/kyu3/sdb/test/tmp/sysroots/qemuppc --version >&5
powerpc-poky-linux-gcc (GCC) 4.6.0
Copyright (C) 2011 Free Software Foundation, Inc.
This is free software; see the source for copying conditions.  There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.

configure:4366: $? = 0
configure:4355: powerpc-poky-linux-gcc -mcpu=603e  -mhard-float --sysroot=/home/kyu3/sdb/test/tmp/sysroots/qemuppc -v >&5
Using built-in specs.
COLLECT_GCC=powerpc-poky-linux-gcc
COLLECT_LTO_WRAPPER=/home/kyu3/sdb/test/tmp/sysroots/x86_64-linux/usr/libexec/ppc603e-poky-linux/gcc/powerpc-poky-linux/4.6.0/lto-wrapper
Target: powerpc-poky-linux
Configured with: /home/kyu3/sdb/test/tmp/work/ppc603e-poky-linux/gcc-cross-4.6.0-r2/gcc-4.6.0/configure --build=x86_64-linux --host=x86_64-linux --target=powerpc-poky-linux --prefix=/home/kyu3/sdb/test/tmp/sysroots/x86_64-linux/usr --exec_prefix=/home/kyu3/sdb/test/tmp/sysroots/x86_64-linux/usr --bindir=/home/kyu3/sdb/test/tmp/sysroots/x86_64-linux/usr/bin/ppc603e-poky-linux --sbindir=/home/kyu3/sdb/test/tmp/sysroots/x86_64-linux/usr/bin/ppc603e-poky-linux --libexecdir=/home/kyu3/sdb/test/tmp/sysroots/x86_64-linux/usr/libexec/ppc603e-poky-linux --datadir=/home/kyu3/sdb/test/tmp/sysroots/x86_64-linux/usr/share --sysconfdir=/home/kyu3/sdb/test/tmp/sysroots/x86_64-linux/etc --sharedstatedir=/home/kyu3/sdb/test/tmp/sysroots/x86_64-linux/com --localstatedir=/home/kyu3/sdb/test/tmp/sysroots/x86_64-linux/var --libdir=/home/kyu3/sdb/test/tmp/sysroots/x86_64-linux/usr/lib/ppc603e-poky-linux --includedir=/home/kyu3/sdb/test/tmp/sysroots/x86_64-linux/usr/include --oldincludedir=/home/kyu3/sdb/test/tmp/sysroots/x86_64-linux/usr/include --infodir=/home/kyu3/sdb/test/tmp/sysroots/x86_64-linux/usr/share/info --mandir=/home/kyu3/sdb/test/tmp/sysroots/x86_64-linux/usr/share/man --disable-silent-rules --with-libtool-sysroot=/home/kyu3/sdb/test/tmp/sysroots/x86_64-linux --with-gnu-ld --enable-shared --enable-languages=c,c++ --enable-threads=posix --disable-multilib --enable-c99 --enable-long-long --enable-symvers=gnu --enable-libstdcxx-pch --program-prefix=powerpc-poky-linux- --enable-lto --enable-libssp --disable-bootstrap --disable-libgomp --disable-libmudflap --enable-cheaders=c_global --with-local-prefix=/home/kyu3/sdb/test/tmp/sysroots/qemuppc/usr --with-gxx-include-dir=/usr/include/c++ --with-sysroot=/home/kyu3/sdb/test/tmp/sysroots/qemuppc --with-build-sysroot=/home/kyu3/sdb/test/tmp/sysroots/qemuppc --enable-poison-system-directories --disable-libunwind-exceptions --with-mpfr=/home/kyu3/sdb/test/tmp/sysroots/x86_64-linux/usr --with-system-zlib --enable-nls --enable-__cxa_atexit
Thread model: posix
gcc version 4.6.0 (GCC) 
configure:4366: $? = 0
configure:4355: powerpc-poky-linux-gcc -mcpu=603e  -mhard-float --sysroot=/home/kyu3/sdb/test/tmp/sysroots/qemuppc -V >&5
powerpc-poky-linux-gcc: error: unrecognized option '-V'
powerpc-poky-linux-gcc: fatal error: no input files
compilation terminated.
configure:4366: $? = 1
configure:4355: powerpc-poky-linux-gcc -mcpu=603e  -mhard-float --sysroot=/home/kyu3/sdb/test/tmp/sysroots/qemuppc -qversion >&5
powerpc-poky-linux-gcc: error: unrecognized option '-qversion'
powerpc-poky-linux-gcc: fatal error: no input files
compilation terminated.
configure:4366: $? = 1
configure:4386: checking whether the C compiler works
configure:4408: powerpc-poky-linux-gcc -mcpu=603e  -mhard-float --sysroot=/home/kyu3/sdb/test/tmp/sysroots/qemuppc -O2 -pipe -g -feliminate-unused-debug-types  -Wl,-O1  -Wl,--as-needed conftest.c  >&5
configure:4412: $? = 0
configure:4461: result: yes
configure:4464: checking for C compiler default output file name
configure:4466: result: a.out
configure:4472: checking for suffix of executables
configure:4479: powerpc-poky-linux-gcc -mcpu=603e  -mhard-float --sysroot=/home/kyu3/sdb/test/tmp/sysroots/qemuppc -o conftest -O2 -pipe -g -feliminate-unused-debug-types  -Wl,-O1  -Wl,--as-needed conftest.c  >&5
configure:4483: $? = 0
configure:4505: result: 
configure:4527: checking whether we are cross compiling
configure:4565: result: yes
configure:4570: checking for suffix of object files
configure:4592: powerpc-poky-linux-gcc -mcpu=603e  -mhard-float --sysroot=/home/kyu3/sdb/test/tmp/sysroots/qemuppc -c -O2 -pipe -g -feliminate-unused-debug-types  conftest.c >&5
configure:4596: $? = 0
configure:4617: result: o
configure:4621: checking whether we are using the GNU C compiler
configure:4640: powerpc-poky-linux-gcc -mcpu=603e  -mhard-float --sysroot=/home/kyu3/sdb/test/tmp/sysroots/qemuppc -c -O2 -pipe -g -feliminate-unused-debug-types  conftest.c >&5
configure:4640: $? = 0
configure:4649: result: yes
configure:4658: checking whether powerpc-poky-linux-gcc -mcpu=603e  -mhard-float --sysroot=/home/kyu3/sdb/test/tmp/sysroots/qemuppc accepts -g
configure:4678: powerpc-poky-linux-gcc -mcpu=603e  -mhard-float --sysroot=/home/kyu3/sdb/test/tmp/sysroots/qemuppc -c -g  conftest.c >&5
configure:4678: $? = 0
configure:4719: result: yes
configure:4736: checking for powerpc-poky-linux-gcc -mcpu=603e  -mhard-float --sysroot=/home/kyu3/sdb/test/tmp/sysroots/qemuppc option to accept ISO C89
configure:4800: powerpc-poky-linux-gcc -mcpu=603e  -mhard-float --sysroot=/home/kyu3/sdb/test/tmp/sysroots/qemuppc  -c -O2 -pipe -g -feliminate-unused-debug-types  conftest.c >&5
configure:4800: $? = 0
configure:4813: result: none needed
configure:4835: checking dependency style of powerpc-poky-linux-gcc -mcpu=603e  -mhard-float --sysroot=/home/kyu3/sdb/test/tmp/sysroots/qemuppc
configure:4945: result: gcc3
configure:4960: checking for powerpc-poky-linux-gcc -mcpu=603e  -mhard-float --sysroot=/home/kyu3/sdb/test/tmp/sysroots/qemuppc option to accept ISO C99
configure:5109: powerpc-poky-linux-gcc -mcpu=603e  -mhard-float --sysroot=/home/kyu3/sdb/test/tmp/sysroots/qemuppc  -c -O2 -pipe -g -feliminate-unused-debug-types  conftest.c >&5
conftest.c:61:29: error: expected ';', ',' or ')' before 'text'
conftest.c: In function 'main':
conftest.c:115:18: error: expected '=', ',', ';', 'asm' or '__attribute__' before 'newvar'
conftest.c:115:18: error: 'newvar' undeclared (first use in this function)
conftest.c:115:18: note: each undeclared identifier is reported only once for each function it appears in
conftest.c:125:3: error: 'for' loop initial declarations are only allowed in C99 mode
conftest.c:125:3: note: use option -std=c99 or -std=gnu99 to compile your code
configure:5109: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "xorg-server"
| #define PACKAGE_TARNAME "xorg-server"
| #define PACKAGE_VERSION "1.10.1"
| #define PACKAGE_STRING "xorg-server 1.10.1"
| #define PACKAGE_BUGREPORT "https://bugs.freedesktop.org/enter_bug.cgi?product=xorg"
| #define PACKAGE_URL ""
| #define PACKAGE "xorg-server"
| #define VERSION "1.10.1"
| /* end confdefs.h.  */
| #include <stdarg.h>
| #include <stdbool.h>
| #include <stdlib.h>
| #include <wchar.h>
| #include <stdio.h>
| 
| // Check varargs macros.  These examples are taken from C99 6.10.3.5.
| #define debug(...) fprintf (stderr, __VA_ARGS__)
| #define showlist(...) puts (#__VA_ARGS__)
| #define report(test,...) ((test) ? puts (#test) : printf (__VA_ARGS__))
| static void
| test_varargs_macros (void)
| {
|   int x = 1234;
|   int y = 5678;
|   debug ("Flag");
|   debug ("X = %d\n", x);
|   showlist (The first, second, and third items.);
|   report (x>y, "x is %d but y is %d", x, y);
| }
| 
| // Check long long types.
| #define BIG64 18446744073709551615ull
| #define BIG32 4294967295ul
| #define BIG_OK (BIG64 / BIG32 == 4294967297ull && BIG64 % BIG32 == 0)
| #if !BIG_OK
|   your preprocessor is broken;
| #endif
| #if BIG_OK
| #else
|   your preprocessor is broken;
| #endif
| static long long int bignum = -9223372036854775807LL;
| static unsigned long long int ubignum = BIG64;
| 
| struct incomplete_array
| {
|   int datasize;
|   double data[];
| };
| 
| struct named_init {
|   int number;
|   const wchar_t *name;
|   double average;
| };
| 
| typedef const char *ccp;
| 
| static inline int
| test_restrict (ccp restrict text)
| {
|   // See if C++-style comments work.
|   // Iterate through items via the restricted pointer.
|   // Also check for declarations in for loops.
|   for (unsigned int i = 0; *(text+i) != '\0'; ++i)
|     continue;
|   return 0;
| }
| 
| // Check varargs and va_copy.
| static void
| test_varargs (const char *format, ...)
| {
|   va_list args;
|   va_start (args, format);
|   va_list args_copy;
|   va_copy (args_copy, args);
| 
|   const char *str;
|   int number;
|   float fnumber;
| 
|   while (*format)
|     {
|       switch (*format++)
| 	{
| 	case 's': // string
| 	  str = va_arg (args_copy, const char *);
| 	  break;
| 	case 'd': // int
| 	  number = va_arg (args_copy, int);
| 	  break;
| 	case 'f': // float
| 	  fnumber = va_arg (args_copy, double);
| 	  break;
| 	default:
| 	  break;
| 	}
|     }
|   va_end (args_copy);
|   va_end (args);
| }
| 
| int
| main ()
| {
| 
|   // Check bool.
|   _Bool success = false;
| 
|   // Check restrict.
|   if (test_restrict ("String literal") == 0)
|     success = true;
|   char *restrict newvar = "Another string";
| 
|   // Check varargs.
|   test_varargs ("s, d' f .", "string", 65, 34.234);
|   test_varargs_macros ();
| 
|   // Check flexible array members.
|   struct incomplete_array *ia =
|     malloc (sizeof (struct incomplete_array) + (sizeof (double) * 10));
|   ia->datasize = 10;
|   for (int i = 0; i < ia->datasize; ++i)
|     ia->data[i] = i * 1.234;
| 
|   // Check named initializers.
|   struct named_init ni = {
|     .number = 34,
|     .name = L"Test wide string",
|     .average = 543.34343,
|   };
| 
|   ni.number = 58;
| 
|   int dynamic_array[ni.number];
|   dynamic_array[ni.number - 1] = 543;
| 
|   // work around unused variable warnings
|   return (!success || bignum == 0LL || ubignum == 0uLL || newvar[0] == 'x'
| 	  || dynamic_array[ni.number - 1] != 543);
| 
|   ;
|   return 0;
| }
configure:5109: powerpc-poky-linux-gcc -mcpu=603e  -mhard-float --sysroot=/home/kyu3/sdb/test/tmp/sysroots/qemuppc -std=gnu99 -c -O2 -pipe -g -feliminate-unused-debug-types  conftest.c >&5
configure:5109: $? = 0
configure:5129: result: -std=gnu99
configure:5143: checking how to run the C preprocessor
configure:5213: result: powerpc-poky-linux-gcc -E --sysroot=/home/kyu3/sdb/test/tmp/sysroots/qemuppc
configure:5233: powerpc-poky-linux-gcc -E --sysroot=/home/kyu3/sdb/test/tmp/sysroots/qemuppc  conftest.c
configure:5233: $? = 0
configure:5247: powerpc-poky-linux-gcc -E --sysroot=/home/kyu3/sdb/test/tmp/sysroots/qemuppc  conftest.c
conftest.c:11:28: fatal error: ac_nonexistent.h: No such file or directory
compilation terminated.
configure:5247: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "xorg-server"
| #define PACKAGE_TARNAME "xorg-server"
| #define PACKAGE_VERSION "1.10.1"
| #define PACKAGE_STRING "xorg-server 1.10.1"
| #define PACKAGE_BUGREPORT "https://bugs.freedesktop.org/enter_bug.cgi?product=xorg"
| #define PACKAGE_URL ""
| #define PACKAGE "xorg-server"
| #define VERSION "1.10.1"
| /* end confdefs.h.  */
| #include <ac_nonexistent.h>
configure:5276: checking for grep that handles long lines and -e
configure:5334: result: /bin/grep
configure:5339: checking for egrep
configure:5401: result: /bin/grep -E
configure:5406: checking for ANSI C header files
configure:5510: result: yes
configure:5523: checking for sys/types.h
configure:5523: result: yes
configure:5523: checking for sys/stat.h
configure:5523: result: yes
configure:5523: checking for stdlib.h
configure:5523: result: yes
configure:5523: checking for string.h
configure:5523: result: yes
configure:5523: checking for memory.h
configure:5523: result: yes
configure:5523: checking for strings.h
configure:5523: result: yes
configure:5523: checking for inttypes.h
configure:5523: result: yes
configure:5523: checking for stdint.h
configure:5523: result: yes
configure:5523: checking for unistd.h
configure:5523: result: yes
configure:5546: checking for powerpc-poky-linux-pkg-config
configure:5579: result: no
configure:5589: checking for pkg-config
configure:5607: found /home/kyu3/sdb/test/tmp/sysroots/x86_64-linux/usr/bin/pkg-config
configure:5619: result: /home/kyu3/sdb/test/tmp/sysroots/x86_64-linux/usr/bin/pkg-config
configure:5631: WARNING: using cross tools not prefixed with host triplet
configure:5644: checking pkg-config is at least version 0.9.0
configure:5647: result: yes
configure:5659: checking build system type
configure:5673: result: x86_64-pc-linux-gnu
configure:5693: checking host system type
configure:5706: result: powerpc-poky-linux-gnu
configure:5726: checking for a sed that does not truncate output
configure:5790: result: /bin/sed
configure:6020: checking for doxygen
configure:6053: result: no
configure:6059: WARNING: doxygen not found - documentation targets will be skipped
configure:6156: checking for X.Org SGML entities >= 1.5
configure:6160: $PKG_CONFIG --exists --print-errors "xorg-sgml-doctools >= 1.5"
Package xorg-sgml-doctools was not found in the pkg-config search path.
Perhaps you should add the directory containing `xorg-sgml-doctools.pc'
to the PKG_CONFIG_PATH environment variable
No package 'xorg-sgml-doctools' found
configure:6163: $? = 1
configure:6179: result: no
configure:6234: checking dependency style of powerpc-poky-linux-gcc -mcpu=603e  -mhard-float --sysroot=/home/kyu3/sdb/test/tmp/sysroots/qemuppc -std=gnu99
configure:6342: result: gcc3
configure:6357: checking whether ln -s works
configure:6361: result: yes
configure:6748: checking how to print strings
configure:6775: result: printf
configure:6796: checking for a sed that does not truncate output
configure:6860: result: /bin/sed
configure:6878: checking for fgrep
configure:6940: result: /bin/grep -F
configure:6975: checking for ld used by powerpc-poky-linux-gcc -mcpu=603e  -mhard-float --sysroot=/home/kyu3/sdb/test/tmp/sysroots/qemuppc -std=gnu99
configure:7042: result: powerpc-poky-linux-ld --sysroot=/home/kyu3/sdb/test/tmp/sysroots/qemuppc
configure:7049: checking if the linker (powerpc-poky-linux-ld --sysroot=/home/kyu3/sdb/test/tmp/sysroots/qemuppc) is GNU ld
configure:7064: result: yes
configure:7076: checking for BSD- or MS-compatible name lister (nm)
configure:7125: result: powerpc-poky-linux-nm
configure:7255: checking the name lister (powerpc-poky-linux-nm) interface
configure:7262: powerpc-poky-linux-gcc -mcpu=603e  -mhard-float --sysroot=/home/kyu3/sdb/test/tmp/sysroots/qemuppc -std=gnu99 -c -O2 -pipe -g -feliminate-unused-debug-types  conftest.c >&5
configure:7265: powerpc-poky-linux-nm "conftest.o"
configure:7268: output
00000000 S some_variable
configure:7275: result: BSD nm
configure:7279: checking the maximum length of command line arguments
configure:7404: result: 1572864
configure:7421: checking whether the shell understands some XSI constructs
configure:7431: result: yes
configure:7435: checking whether the shell understands "+="
configure:7441: result: yes
configure:7476: checking how to convert x86_64-pc-linux-gnu file names to powerpc-poky-linux-gnu format
configure:7516: result: func_convert_file_noop
configure:7523: checking how to convert x86_64-pc-linux-gnu file names to toolchain format
configure:7543: result: func_convert_file_noop
configure:7550: checking for powerpc-poky-linux-ld --sysroot=/home/kyu3/sdb/test/tmp/sysroots/qemuppc option to reload object files
configure:7557: result: -r
configure:7591: checking for powerpc-poky-linux-objdump
configure:7618: result: powerpc-poky-linux-objdump
configure:7687: checking how to recognize dependent libraries
configure:7889: result: pass_all
configure:7934: checking for powerpc-poky-linux-dlltool
configure:7961: result: dlltool
configure:8031: checking how to associate runtime and link libraries
configure:8058: result: printf %s\n
configure:8074: checking for powerpc-poky-linux-ar
configure:8101: result: powerpc-poky-linux-ar
configure:8182: checking for archiver @FILE support
configure:8199: powerpc-poky-linux-gcc -mcpu=603e  -mhard-float --sysroot=/home/kyu3/sdb/test/tmp/sysroots/qemuppc -std=gnu99 -c -O2 -pipe -g -feliminate-unused-debug-types  conftest.c >&5
configure:8199: $? = 0
configure:8202: powerpc-poky-linux-ar cru libconftest.a @conftest.lst >&5
configure:8205: $? = 0
configure:8210: powerpc-poky-linux-ar cru libconftest.a @conftest.lst >&5
powerpc-poky-linux-ar: conftest.o: No such file or directory
configure:8213: $? = 1
configure:8225: result: @
configure:8243: checking for powerpc-poky-linux-strip
configure:8270: result: powerpc-poky-linux-strip
configure:8342: checking for powerpc-poky-linux-ranlib
configure:8369: result: powerpc-poky-linux-ranlib
configure:8511: checking command to parse powerpc-poky-linux-nm output from powerpc-poky-linux-gcc -mcpu=603e  -mhard-float --sysroot=/home/kyu3/sdb/test/tmp/sysroots/qemuppc -std=gnu99 object
configure:8630: powerpc-poky-linux-gcc -mcpu=603e  -mhard-float --sysroot=/home/kyu3/sdb/test/tmp/sysroots/qemuppc -std=gnu99 -c -O2 -pipe -g -feliminate-unused-debug-types  conftest.c >&5
configure:8633: $? = 0
configure:8637: powerpc-poky-linux-nm conftest.o \| sed -n -e 's/^.*[ ]\([ABCDGIRSTW][ABCDGIRSTW]*\)[ ][ ]*\([_A-Za-z][_A-Za-z0-9]*\)$/\1 \2 \2/p' | sed '/ __gnu_lto/d' \> conftest.nm
configure:8640: $? = 0
configure:8706: powerpc-poky-linux-gcc -mcpu=603e  -mhard-float --sysroot=/home/kyu3/sdb/test/tmp/sysroots/qemuppc -std=gnu99 -o conftest -O2 -pipe -g -feliminate-unused-debug-types  -Wl,-O1  -Wl,--as-needed conftest.c conftstm.o >&5
configure:8709: $? = 0
configure:8747: result: ok
configure:8784: checking for sysroot
configure:8814: result: /home/kyu3/sdb/test/tmp/sysroots/qemuppc
configure:8891: powerpc-poky-linux-gcc -mcpu=603e  -mhard-float --sysroot=/home/kyu3/sdb/test/tmp/sysroots/qemuppc -std=gnu99 -c -O2 -pipe -g -feliminate-unused-debug-types  conftest.c >&5
configure:8894: $? = 0
configure:9017: checking for powerpc-poky-linux-mt
configure:9047: result: no
configure:9057: checking for mt
configure:9073: found /bin/mt
configure:9084: result: mt
configure:9107: checking if mt is a manifest tool
configure:9113: mt '-?'
mt: invalid option -- ?
configure:9121: result: no
configure:9750: checking for dlfcn.h
configure:9750: result: yes
configure:9906: checking for objdir
configure:9921: result: .libs
configure:10188: checking if powerpc-poky-linux-gcc -mcpu=603e  -mhard-float --sysroot=/home/kyu3/sdb/test/tmp/sysroots/qemuppc -std=gnu99 supports -fno-rtti -fno-exceptions
configure:10206: powerpc-poky-linux-gcc -mcpu=603e  -mhard-float --sysroot=/home/kyu3/sdb/test/tmp/sysroots/qemuppc -std=gnu99 -c -O2 -pipe -g -feliminate-unused-debug-types  -fno-rtti -fno-exceptions conftest.c >&5
cc1: warning: command line option '-fno-rtti' is valid for C++/ObjC++ but not for C [enabled by default]
configure:10210: $? = 0
configure:10223: result: no
configure:10533: checking for powerpc-poky-linux-gcc -mcpu=603e  -mhard-float --sysroot=/home/kyu3/sdb/test/tmp/sysroots/qemuppc -std=gnu99 option to produce PIC
configure:10540: result: -fPIC -DPIC
configure:10548: checking if powerpc-poky-linux-gcc -mcpu=603e  -mhard-float --sysroot=/home/kyu3/sdb/test/tmp/sysroots/qemuppc -std=gnu99 PIC flag -fPIC -DPIC works
configure:10566: powerpc-poky-linux-gcc -mcpu=603e  -mhard-float --sysroot=/home/kyu3/sdb/test/tmp/sysroots/qemuppc -std=gnu99 -c -O2 -pipe -g -feliminate-unused-debug-types  -fPIC -DPIC -DPIC conftest.c >&5
configure:10570: $? = 0
configure:10583: result: yes
configure:10612: checking if powerpc-poky-linux-gcc -mcpu=603e  -mhard-float --sysroot=/home/kyu3/sdb/test/tmp/sysroots/qemuppc -std=gnu99 static flag -static works
configure:10640: result: yes
configure:10655: checking if powerpc-poky-linux-gcc -mcpu=603e  -mhard-float --sysroot=/home/kyu3/sdb/test/tmp/sysroots/qemuppc -std=gnu99 supports -c -o file.o
configure:10676: powerpc-poky-linux-gcc -mcpu=603e  -mhard-float --sysroot=/home/kyu3/sdb/test/tmp/sysroots/qemuppc -std=gnu99 -c -O2 -pipe -g -feliminate-unused-debug-types  -o out/conftest2.o conftest.c >&5
configure:10680: $? = 0
configure:10702: result: yes
configure:10710: checking if powerpc-poky-linux-gcc -mcpu=603e  -mhard-float --sysroot=/home/kyu3/sdb/test/tmp/sysroots/qemuppc -std=gnu99 supports -c -o file.o
configure:10757: result: yes
configure:10790: checking whether the powerpc-poky-linux-gcc -mcpu=603e  -mhard-float --sysroot=/home/kyu3/sdb/test/tmp/sysroots/qemuppc -std=gnu99 linker (powerpc-poky-linux-ld --sysroot=/home/kyu3/sdb/test/tmp/sysroots/qemuppc) supports shared libraries
configure:11948: result: yes
configure:11985: checking whether -lc should be explicitly linked in
configure:11993: powerpc-poky-linux-gcc -mcpu=603e  -mhard-float --sysroot=/home/kyu3/sdb/test/tmp/sysroots/qemuppc -std=gnu99 -c -O2 -pipe -g -feliminate-unused-debug-types  conftest.c >&5
configure:11996: $? = 0
configure:12011: powerpc-poky-linux-gcc -mcpu=603e  -mhard-float --sysroot=/home/kyu3/sdb/test/tmp/sysroots/qemuppc -std=gnu99 -shared  -fPIC -DPIC conftest.o  -v -Wl,-soname -Wl,conftest -o conftest 2\>\&1 \| /bin/grep  -lc  \>/dev/null 2\>\&1
configure:12014: $? = 0
configure:12028: result: no
configure:12193: checking dynamic linker characteristics
configure:12707: powerpc-poky-linux-gcc -mcpu=603e  -mhard-float --sysroot=/home/kyu3/sdb/test/tmp/sysroots/qemuppc -std=gnu99 -o conftest -O2 -pipe -g -feliminate-unused-debug-types  -Wl,-O1  -Wl,--as-needed -Wl,-rpath -Wl,/foo conftest.c  >&5
configure:12707: $? = 0
configure:12929: result: GNU/Linux ld.so
configure:13036: checking how to hardcode library paths into programs
configure:13061: result: immediate
configure:13601: checking whether stripping libraries is possible
configure:13606: result: yes
configure:13641: checking if libtool supports shared libraries
configure:13643: result: yes
configure:13646: checking whether to build shared libraries
configure:13667: result: yes
configure:13670: checking whether to build static libraries
configure:13674: result: no
configure:13709: checking whether make sets $(MAKE)
configure:13731: result: yes
configure:13750: checking for powerpc-poky-linux-pkg-config
configure:13780: result: /home/kyu3/sdb/test/tmp/sysroots/x86_64-linux/usr/bin/pkg-config
configure:13848: checking pkg-config is at least version 0.9.0
configure:13851: result: yes
configure:13863: checking for flex
configure:13879: found /home/kyu3/sdb/test/tmp/sysroots/x86_64-linux/usr/bin/flex
configure:13890: result: flex
configure:13927: flex conftest.l
configure:13931: $? = 0
configure:13933: checking lex output file root
configure:13947: result: lex.yy
configure:13952: checking lex library
configure:13966: powerpc-poky-linux-gcc -mcpu=603e  -mhard-float --sysroot=/home/kyu3/sdb/test/tmp/sysroots/qemuppc -std=gnu99 -o conftest -O2 -pipe -g -feliminate-unused-debug-types  -Wl,-O1  -Wl,--as-needed conftest.c   >&5
/tmp/ccUXiqbu.o: In function `input':
/home/kyu3/sdb/test/tmp/work/ppc603e-poky-linux/xserver-xf86-lite-1.10.1-r0/xorg-server-1.10.1/lex.yy.c:1168: undefined reference to `yywrap'
/tmp/ccUXiqbu.o: In function `yylex':
/home/kyu3/sdb/test/tmp/work/ppc603e-poky-linux/xserver-xf86-lite-1.10.1-r0/xorg-server-1.10.1/lex.yy.c:867: undefined reference to `yywrap'
/tmp/ccUXiqbu.o: In function `main':
/home/kyu3/sdb/test/tmp/work/ppc603e-poky-linux/xserver-xf86-lite-1.10.1-r0/xorg-server-1.10.1/conftest.l:17: undefined reference to `yywrap'
collect2: ld returned 1 exit status
configure:13966: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "xorg-server"
| #define PACKAGE_TARNAME "xorg-server"
| #define PACKAGE_VERSION "1.10.1"
| #define PACKAGE_STRING "xorg-server 1.10.1"
| #define PACKAGE_BUGREPORT "https://bugs.freedesktop.org/enter_bug.cgi?product=xorg"
| #define PACKAGE_URL ""
| #define PACKAGE "xorg-server"
| #define VERSION "1.10.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 PACKAGE_VERSION_MAJOR 1
| #define PACKAGE_VERSION_MINOR 10
| #define PACKAGE_VERSION_PATCHLEVEL 1
| #define HAVE_DLFCN_H 1
| #define LT_OBJDIR ".libs/"
| /* end confdefs.h.  */
| 
| #line 3 "lex.yy.c"
| 
| #define  YY_INT_ALIGNED short int
| 
| /* A lexical scanner generated by flex */
| 
| #define FLEX_SCANNER
| #define YY_FLEX_MAJOR_VERSION 2
| #define YY_FLEX_MINOR_VERSION 5
| #define YY_FLEX_SUBMINOR_VERSION 35
| #if YY_FLEX_SUBMINOR_VERSION > 0
| #define FLEX_BETA
| #endif
| 
| /* First, we deal with  platform-specific or compiler-specific issues. */
| 
| /* begin standard C headers. */
| #include <stdio.h>
| #include <string.h>
| #include <errno.h>
| #include <stdlib.h>
| 
| /* end standard C headers. */
| 
| /* flex integer type definitions */
| 
| #ifndef FLEXINT_H
| #define FLEXINT_H
| 
| /* C99 systems have <inttypes.h>. Non-C99 systems may or may not. */
| 
| #if defined (__STDC_VERSION__) && __STDC_VERSION__ >= 199901L
| 
| /* C99 says to define __STDC_LIMIT_MACROS before including stdint.h,
|  * if you want the limit (max/min) macros for int types. 
|  */
| #ifndef __STDC_LIMIT_MACROS
| #define __STDC_LIMIT_MACROS 1
| #endif
| 
| #include <inttypes.h>
| typedef int8_t flex_int8_t;
| typedef uint8_t flex_uint8_t;
| typedef int16_t flex_int16_t;
| typedef uint16_t flex_uint16_t;
| typedef int32_t flex_int32_t;
| typedef uint32_t flex_uint32_t;
| #else
| typedef signed char flex_int8_t;
| typedef short int flex_int16_t;
| typedef int flex_int32_t;
| typedef unsigned char flex_uint8_t; 
| typedef unsigned short int flex_uint16_t;
| typedef unsigned int flex_uint32_t;
| #endif /* ! C99 */
| 
| /* Limits of integral types. */
| #ifndef INT8_MIN
| #define INT8_MIN               (-128)
| #endif
| #ifndef INT16_MIN
| #define INT16_MIN              (-32767-1)
| #endif
| #ifndef INT32_MIN
| #define INT32_MIN              (-2147483647-1)
| #endif
| #ifndef INT8_MAX
| #define INT8_MAX               (127)
| #endif
| #ifndef INT16_MAX
| #define INT16_MAX              (32767)
| #endif
| #ifndef INT32_MAX
| #define INT32_MAX              (2147483647)
| #endif
| #ifndef UINT8_MAX
| #define UINT8_MAX              (255U)
| #endif
| #ifndef UINT16_MAX
| #define UINT16_MAX             (65535U)
| #endif
| #ifndef UINT32_MAX
| #define UINT32_MAX             (4294967295U)
| #endif
| 
| #endif /* ! FLEXINT_H */
| 
| #ifdef __cplusplus
| 
| /* The "const" storage-class-modifier is valid. */
| #define YY_USE_CONST
| 
| #else	/* ! __cplusplus */
| 
| /* C99 requires __STDC__ to be defined as 1. */
| #if defined (__STDC__)
| 
| #define YY_USE_CONST
| 
| #endif	/* defined (__STDC__) */
| #endif	/* ! __cplusplus */
| 
| #ifdef YY_USE_CONST
| #define yyconst const
| #else
| #define yyconst
| #endif
| 
| /* Returned upon end-of-file. */
| #define YY_NULL 0
| 
| /* Promotes a possibly negative, possibly signed char to an unsigned
|  * integer for use as an array index.  If the signed char is negative,
|  * we want to instead treat it as an 8-bit unsigned char, hence the
|  * double cast.
|  */
| #define YY_SC_TO_UI(c) ((unsigned int) (unsigned char) c)
| 
| /* Enter a start condition.  This macro really ought to take a parameter,
|  * but we do it the disgusting crufty way forced on us by the ()-less
|  * definition of BEGIN.
|  */
| #define BEGIN (yy_start) = 1 + 2 *
| 
| /* Translate the current start state into a value that can be later handed
|  * to BEGIN to return to the state.  The YYSTATE alias is for lex
|  * compatibility.
|  */
| #define YY_START (((yy_start) - 1) / 2)
| #define YYSTATE YY_START
| 
| /* Action number for EOF rule of a given start state. */
| #define YY_STATE_EOF(state) (YY_END_OF_BUFFER + state + 1)
| 
| /* Special action meaning "start processing a new file". */
| #define YY_NEW_FILE yyrestart(yyin  )
| 
| #define YY_END_OF_BUFFER_CHAR 0
| 
| /* Size of default input buffer. */
| #ifndef YY_BUF_SIZE
| #define YY_BUF_SIZE 16384
| #endif
| 
| /* The state buf must be large enough to hold one state per character in the main buffer.
|  */
| #define YY_STATE_BUF_SIZE   ((YY_BUF_SIZE + 2) * sizeof(yy_state_type))
| 
| #ifndef YY_TYPEDEF_YY_BUFFER_STATE
| #define YY_TYPEDEF_YY_BUFFER_STATE
| typedef struct yy_buffer_state *YY_BUFFER_STATE;
| #endif
| 
| extern int yyleng;
| 
| extern FILE *yyin, *yyout;
| 
| #define EOB_ACT_CONTINUE_SCAN 0
| #define EOB_ACT_END_OF_FILE 1
| #define EOB_ACT_LAST_MATCH 2
| 
|     #define YY_LESS_LINENO(n)
|     
| /* Return all but the first "n" matched characters back to the input stream. */
| #define yyless(n) \
| 	do \
| 		{ \
| 		/* Undo effects of setting up yytext. */ \
|         int yyless_macro_arg = (n); \
|         YY_LESS_LINENO(yyless_macro_arg);\
| 		*yy_cp = (yy_hold_char); \
| 		YY_RESTORE_YY_MORE_OFFSET \
| 		(yy_c_buf_p) = yy_cp = yy_bp + yyless_macro_arg - YY_MORE_ADJ; \
| 		YY_DO_BEFORE_ACTION; /* set up yytext again */ \
| 		} \
| 	while ( 0 )
| 
| #define unput(c) yyunput( c, (yytext_ptr)  )
| 
| #ifndef YY_TYPEDEF_YY_SIZE_T
| #define YY_TYPEDEF_YY_SIZE_T
| typedef size_t yy_size_t;
| #endif
| 
| #ifndef YY_STRUCT_YY_BUFFER_STATE
| #define YY_STRUCT_YY_BUFFER_STATE
| struct yy_buffer_state
| 	{
| 	FILE *yy_input_file;
| 
| 	char *yy_ch_buf;		/* input buffer */
| 	char *yy_buf_pos;		/* current position in input buffer */
| 
| 	/* Size of input buffer in bytes, not including room for EOB
| 	 * characters.
| 	 */
| 	yy_size_t yy_buf_size;
| 
| 	/* Number of characters read into yy_ch_buf, not including EOB
| 	 * characters.
| 	 */
| 	int yy_n_chars;
| 
| 	/* Whether we "own" the buffer - i.e., we know we created it,
| 	 * and can realloc() it to grow it, and should free() it to
| 	 * delete it.
| 	 */
| 	int yy_is_our_buffer;
| 
| 	/* Whether this is an "interactive" input source; if so, and
| 	 * if we're using stdio for input, then we want to use getc()
| 	 * instead of fread(), to make sure we stop fetching input after
| 	 * each newline.
| 	 */
| 	int yy_is_interactive;
| 
| 	/* Whether we're considered to be at the beginning of a line.
| 	 * If so, '^' rules will be active on the next match, otherwise
| 	 * not.
| 	 */
| 	int yy_at_bol;
| 
|     int yy_bs_lineno; /**< The line count. */
|     int yy_bs_column; /**< The column count. */
|     
| 	/* Whether to try to fill the input buffer when we reach the
| 	 * end of it.
| 	 */
| 	int yy_fill_buffer;
| 
| 	int yy_buffer_status;
| 
| #define YY_BUFFER_NEW 0
| #define YY_BUFFER_NORMAL 1
| 	/* When an EOF's been seen but there's still some text to process
| 	 * then we mark the buffer as YY_EOF_PENDING, to indicate that we
| 	 * shouldn't try reading from the input source any more.  We might
| 	 * still have a bunch of tokens to match, though, because of
| 	 * possible backing-up.
| 	 *
| 	 * When we actually see the EOF, we change the status to "new"
| 	 * (via yyrestart()), so that the user can continue scanning by
| 	 * just pointing yyin at a new input file.
| 	 */
| #define YY_BUFFER_EOF_PENDING 2
| 
| 	};
| #endif /* !YY_STRUCT_YY_BUFFER_STATE */
| 
| /* Stack of input buffers. */
| static size_t yy_buffer_stack_top = 0; /**< index of top of stack. */
| static size_t yy_buffer_stack_max = 0; /**< capacity of stack. */
| static YY_BUFFER_STATE * yy_buffer_stack = 0; /**< Stack as an array. */
| 
| /* We provide macros for accessing buffer states in case in the
|  * future we want to put the buffer states in a more general
|  * "scanner state".
|  *
|  * Returns the top of the stack, or NULL.
|  */
| #define YY_CURRENT_BUFFER ( (yy_buffer_stack) \
|                           ? (yy_buffer_stack)[(yy_buffer_stack_top)] \
|                           : NULL)
| 
| /* Same as previous macro, but useful when we know that the buffer stack is not
|  * NULL or when we need an lvalue. For internal use only.
|  */
| #define YY_CURRENT_BUFFER_LVALUE (yy_buffer_stack)[(yy_buffer_stack_top)]
| 
| /* yy_hold_char holds the character lost when yytext is formed. */
| static char yy_hold_char;
| static int yy_n_chars;		/* number of characters read into yy_ch_buf */
| int yyleng;
| 
| /* Points to current character in buffer. */
| static char *yy_c_buf_p = (char *) 0;
| static int yy_init = 0;		/* whether we need to initialize */
| static int yy_start = 0;	/* start state number */
| 
| /* Flag which is used to allow yywrap()'s to do buffer switches
|  * instead of setting up a fresh yyin.  A bit of a hack ...
|  */
| static int yy_did_buffer_switch_on_eof;
| 
| void yyrestart (FILE *input_file  );
| void yy_switch_to_buffer (YY_BUFFER_STATE new_buffer  );
| YY_BUFFER_STATE yy_create_buffer (FILE *file,int size  );
| void yy_delete_buffer (YY_BUFFER_STATE b  );
| void yy_flush_buffer (YY_BUFFER_STATE b  );
| void yypush_buffer_state (YY_BUFFER_STATE new_buffer  );
| void yypop_buffer_state (void );
| 
| static void yyensure_buffer_stack (void );
| static void yy_load_buffer_state (void );
| static void yy_init_buffer (YY_BUFFER_STATE b,FILE *file  );
| 
| #define YY_FLUSH_BUFFER yy_flush_buffer(YY_CURRENT_BUFFER )
| 
| YY_BUFFER_STATE yy_scan_buffer (char *base,yy_size_t size  );
| YY_BUFFER_STATE yy_scan_string (yyconst char *yy_str  );
| YY_BUFFER_STATE yy_scan_bytes (yyconst char *bytes,int len  );
| 
| void *yyalloc (yy_size_t  );
| void *yyrealloc (void *,yy_size_t  );
| void yyfree (void *  );
| 
| #define yy_new_buffer yy_create_buffer
| 
| #define yy_set_interactive(is_interactive) \
| 	{ \
| 	if ( ! YY_CURRENT_BUFFER ){ \
|         yyensure_buffer_stack (); \
| 		YY_CURRENT_BUFFER_LVALUE =    \
|             yy_create_buffer(yyin,YY_BUF_SIZE ); \
| 	} \
| 	YY_CURRENT_BUFFER_LVALUE->yy_is_interactive = is_interactive; \
| 	}
| 
| #define yy_set_bol(at_bol) \
| 	{ \
| 	if ( ! YY_CURRENT_BUFFER ){\
|         yyensure_buffer_stack (); \
| 		YY_CURRENT_BUFFER_LVALUE =    \
|             yy_create_buffer(yyin,YY_BUF_SIZE ); \
| 	} \
| 	YY_CURRENT_BUFFER_LVALUE->yy_at_bol = at_bol; \
| 	}
| 
| #define YY_AT_BOL() (YY_CURRENT_BUFFER_LVALUE->yy_at_bol)
| 
| /* Begin user sect3 */
| 
| typedef unsigned char YY_CHAR;
| 
| FILE *yyin = (FILE *) 0, *yyout = (FILE *) 0;
| 
| typedef int yy_state_type;
| 
| extern int yylineno;
| 
| int yylineno = 1;
| 
| extern char *yytext;
| #define yytext_ptr yytext
| 
| static yy_state_type yy_get_previous_state (void );
| static yy_state_type yy_try_NUL_trans (yy_state_type current_state  );
| static int yy_get_next_buffer (void );
| static void yy_fatal_error (yyconst char msg[]  );
| 
| /* Done after the current pattern has been matched and before the
|  * corresponding action - sets up yytext.
|  */
| #define YY_DO_BEFORE_ACTION \
| 	(yytext_ptr) = yy_bp; \
| 	(yytext_ptr) -= (yy_more_len); \
| 	yyleng = (size_t) (yy_cp - (yytext_ptr)); \
| 	(yy_hold_char) = *yy_cp; \
| 	*yy_cp = '\0'; \
| 	(yy_c_buf_p) = yy_cp;
| 
| #define YY_NUM_RULES 8
| #define YY_END_OF_BUFFER 9
| /* This struct is not used in this scanner,
|    but its presence is necessary. */
| struct yy_trans_info
| 	{
| 	flex_int32_t yy_verify;
| 	flex_int32_t yy_nxt;
| 	};
| static yyconst flex_int16_t yy_acclist[23] =
|     {   0,
|         9,    7,    8,    8,    1,    7,    8,    2,    7,    8,
|         3,    7,    8,    4,    7,    8,    5,    7,    8,    6,
|         7,    8
|     } ;
| 
| static yyconst flex_int16_t yy_accept[14] =
|     {   0,
|         1,    1,    1,    2,    4,    5,    8,   11,   14,   17,
|        20,   23,   23
|     } ;
| 
| static yyconst flex_int32_t yy_ec[256] =
|     {   0,
|         1,    1,    1,    1,    1,    1,    1,    1,    1,    2,
|         1,    1,    1,    1,    1,    1,    1,    1,    1,    1,
|         1,    1,    1,    1,    1,    1,    1,    1,    1,    1,
|         1,    1,    1,    1,    1,    1,    1,    1,    1,    1,
|         1,    1,    1,    1,    1,    1,    1,    1,    1,    1,
|         1,    1,    1,    1,    1,    1,    1,    1,    1,    1,
|         1,    1,    1,    1,    1,    1,    1,    1,    1,    1,
|         1,    1,    1,    1,    1,    1,    1,    1,    1,    1,
|         1,    1,    1,    1,    1,    1,    1,    1,    1,    1,
|         1,    1,    1,    1,    1,    1,    3,    4,    5,    6,
| 
|         7,    8,    1,    1,    1,    1,    1,    1,    1,    1,
|         1,    1,    1,    1,    1,    1,    1,    1,    1,    1,
|         1,    1,    1,    1,    1,    1,    1,    1,    1,    1,
|         1,    1,    1,    1,    1,    1,    1,    1,    1,    1,
|         1,    1,    1,    1,    1,    1,    1,    1,    1,    1,
|         1,    1,    1,    1,    1,    1,    1,    1,    1,    1,
|         1,    1,    1,    1,    1,    1,    1,    1,    1,    1,
|         1,    1,    1,    1,    1,    1,    1,    1,    1,    1,
|         1,    1,    1,    1,    1,    1,    1,    1,    1,    1,
|         1,    1,    1,    1,    1,    1,    1,    1,    1,    1,
| 
|         1,    1,    1,    1,    1,    1,    1,    1,    1,    1,
|         1,    1,    1,    1,    1,    1,    1,    1,    1,    1,
|         1,    1,    1,    1,    1,    1,    1,    1,    1,    1,
|         1,    1,    1,    1,    1,    1,    1,    1,    1,    1,
|         1,    1,    1,    1,    1,    1,    1,    1,    1,    1,
|         1,    1,    1,    1,    1
|     } ;
| 
| static yyconst flex_int32_t yy_meta[9] =
|     {   0,
|         1,    1,    1,    1,    1,    1,    1,    1
|     } ;
| 
| static yyconst flex_int16_t yy_base[13] =
|     {   0,
|         0,    0,    9,   10,   10,   10,   10,   10,   10,   10,
|        10,   10
|     } ;
| 
| static yyconst flex_int16_t yy_def[13] =
|     {   0,
|        12,    1,   12,   12,   12,   12,   12,   12,   12,   12,
|        12,    0
|     } ;
| 
| static yyconst flex_int16_t yy_nxt[19] =
|     {   0,
|         4,    5,    6,    7,    8,    9,   10,   11,   12,    3,
|        12,   12,   12,   12,   12,   12,   12,   12
|     } ;
| 
| static yyconst flex_int16_t yy_chk[19] =
|     {   0,
|         1,    1,    1,    1,    1,    1,    1,    1,    3,   12,
|        12,   12,   12,   12,   12,   12,   12,   12
|     } ;
| 
| extern int yy_flex_debug;
| int yy_flex_debug = 0;
| 
| static yy_state_type *yy_state_buf=0, *yy_state_ptr=0;
| static char *yy_full_match;
| static int yy_lp;
| #define REJECT \
| { \
| *yy_cp = (yy_hold_char); /* undo effects of setting up yytext */ \
| yy_cp = (yy_full_match); /* restore poss. backed-over text */ \
| ++(yy_lp); \
| goto find_rule; \
| }
| 
| static int yy_more_flag = 0;
| static int yy_more_len = 0;
| #define yymore() ((yy_more_flag) = 1)
| #define YY_MORE_ADJ (yy_more_len)
| #define YY_RESTORE_YY_MORE_OFFSET
| char *yytext;
| #line 1 "conftest.l"
| #line 468 "lex.yy.c"
| 
| #define INITIAL 0
| 
| #ifndef YY_NO_UNISTD_H
| /* Special case for "unistd.h", since it is non-ANSI. We include it way
|  * down here because we want the user's section 1 to have been scanned first.
|  * The user has a chance to override it with an option.
|  */
| #include <unistd.h>
| #endif
| 
| #ifndef YY_EXTRA_TYPE
| #define YY_EXTRA_TYPE void *
| #endif
| 
| static int yy_init_globals (void );
| 
| /* Accessor methods to globals.
|    These are made visible to non-reentrant scanners for convenience. */
| 
| int yylex_destroy (void );
| 
| int yyget_debug (void );
| 
| void yyset_debug (int debug_flag  );
| 
| YY_EXTRA_TYPE yyget_extra (void );
| 
| void yyset_extra (YY_EXTRA_TYPE user_defined  );
| 
| FILE *yyget_in (void );
| 
| void yyset_in  (FILE * in_str  );
| 
| FILE *yyget_out (void );
| 
| void yyset_out  (FILE * out_str  );
| 
| int yyget_leng (void );
| 
| char *yyget_text (void );
| 
| int yyget_lineno (void );
| 
| void yyset_lineno (int line_number  );
| 
| /* Macros after this point can all be overridden by user definitions in
|  * section 1.
|  */
| 
| #ifndef YY_SKIP_YYWRAP
| #ifdef __cplusplus
| extern "C" int yywrap (void );
| #else
| extern int yywrap (void );
| #endif
| #endif
| 
|     static void yyunput (int c,char *buf_ptr  );
|     
| #ifndef yytext_ptr
| static void yy_flex_strncpy (char *,yyconst char *,int );
| #endif
| 
| #ifdef YY_NEED_STRLEN
| static int yy_flex_strlen (yyconst char * );
| #endif
| 
| #ifndef YY_NO_INPUT
| 
| #ifdef __cplusplus
| static int yyinput (void );
| #else
| static int input (void );
| #endif
| 
| #endif
| 
| /* Amount of stuff to slurp up with each read. */
| #ifndef YY_READ_BUF_SIZE
| #define YY_READ_BUF_SIZE 8192
| #endif
| 
| /* Copy whatever the last rule matched to the standard output. */
| #ifndef ECHO
| /* This used to be an fputs(), but since the string might contain NUL's,
|  * we now use fwrite().
|  */
| #define ECHO fwrite( yytext, yyleng, 1, yyout )
| #endif
| 
| /* Gets input and stuffs it into "buf".  number of characters read, or YY_NULL,
|  * is returned in "result".
|  */
| #ifndef YY_INPUT
| #define YY_INPUT(buf,result,max_size) \
| 	if ( YY_CURRENT_BUFFER_LVALUE->yy_is_interactive ) \
| 		{ \
| 		int c = '*'; \
| 		int n; \
| 		for ( n = 0; n < max_size && \
| 			     (c = getc( yyin )) != EOF && c != '\n'; ++n ) \
| 			buf[n] = (char) c; \
| 		if ( c == '\n' ) \
| 			buf[n++] = (char) c; \
| 		if ( c == EOF && ferror( yyin ) ) \
| 			YY_FATAL_ERROR( "input in flex scanner failed" ); \
| 		result = n; \
| 		} \
| 	else \
| 		{ \
| 		errno=0; \
| 		while ( (result = fread(buf, 1, max_size, yyin))==0 && ferror(yyin)) \
| 			{ \
| 			if( errno != EINTR) \
| 				{ \
| 				YY_FATAL_ERROR( "input in flex scanner failed" ); \
| 				break; \
| 				} \
| 			errno=0; \
| 			clearerr(yyin); \
| 			} \
| 		}\
| \
| 
| #endif
| 
| /* No semi-colon after return; correct usage is to write "yyterminate();" -
|  * we don't want an extra ';' after the "return" because that will cause
|  * some compilers to complain about unreachable statements.
|  */
| #ifndef yyterminate
| #define yyterminate() return YY_NULL
| #endif
| 
| /* Number of entries by which start-condition stack grows. */
| #ifndef YY_START_STACK_INCR
| #define YY_START_STACK_INCR 25
| #endif
| 
| /* Report a fatal error. */
| #ifndef YY_FATAL_ERROR
| #define YY_FATAL_ERROR(msg) yy_fatal_error( msg )
| #endif
| 
| /* end tables serialization structures and prototypes */
| 
| /* Default declaration of generated scanner - a define so the user can
|  * easily add parameters.
|  */
| #ifndef YY_DECL
| #define YY_DECL_IS_OURS 1
| 
| extern int yylex (void);
| 
| #define YY_DECL int yylex (void)
| #endif /* !YY_DECL */
| 
| /* Code executed at the beginning of each rule, after yytext and yyleng
|  * have been set up.
|  */
| #ifndef YY_USER_ACTION
| #define YY_USER_ACTION
| #endif
| 
| /* Code executed at the end of each rule. */
| #ifndef YY_BREAK
| #define YY_BREAK break;
| #endif
| 
| #define YY_RULE_SETUP \
| 	YY_USER_ACTION
| 
| /** The main scanner function which does all the work.
|  */
| YY_DECL
| {
| 	register yy_state_type yy_current_state;
| 	register char *yy_cp, *yy_bp;
| 	register int yy_act;
|     
| #line 1 "conftest.l"
| 
| #line 652 "lex.yy.c"
| 
| 	if ( !(yy_init) )
| 		{
| 		(yy_init) = 1;
| 
| #ifdef YY_USER_INIT
| 		YY_USER_INIT;
| #endif
| 
|         /* Create the reject buffer large enough to save one state per allowed character. */
|         if ( ! (yy_state_buf) )
|             (yy_state_buf) = (yy_state_type *)yyalloc(YY_STATE_BUF_SIZE  );
|             if ( ! (yy_state_buf) )
|                 YY_FATAL_ERROR( "out of dynamic memory in yylex()" );
| 
| 		if ( ! (yy_start) )
| 			(yy_start) = 1;	/* first start state */
| 
| 		if ( ! yyin )
| 			yyin = stdin;
| 
| 		if ( ! yyout )
| 			yyout = stdout;
| 
| 		if ( ! YY_CURRENT_BUFFER ) {
| 			yyensure_buffer_stack ();
| 			YY_CURRENT_BUFFER_LVALUE =
| 				yy_create_buffer(yyin,YY_BUF_SIZE );
| 		}
| 
| 		yy_load_buffer_state( );
| 		}
| 
| 	while ( 1 )		/* loops until end-of-file is reached */
| 		{
| 		(yy_more_len) = 0;
| 		if ( (yy_more_flag) )
| 			{
| 			(yy_more_len) = (yy_c_buf_p) - (yytext_ptr);
| 			(yy_more_flag) = 0;
| 			}
| 		yy_cp = (yy_c_buf_p);
| 
| 		/* Support of yytext. */
| 		*yy_cp = (yy_hold_char);
| 
| 		/* yy_bp points to the position in yy_ch_buf of the start of
| 		 * the current run.
| 		 */
| 		yy_bp = yy_cp;
| 
| 		yy_current_state = (yy_start);
| 
| 		(yy_state_ptr) = (yy_state_buf);
| 		*(yy_state_ptr)++ = yy_current_state;
| 
| yy_match:
| 		do
| 			{
| 			register YY_CHAR yy_c = yy_ec[YY_SC_TO_UI(*yy_cp)];
| 			while ( yy_chk[yy_base[yy_current_state] + yy_c] != yy_current_state )
| 				{
| 				yy_current_state = (int) yy_def[yy_current_state];
| 				if ( yy_current_state >= 13 )
| 					yy_c = yy_meta[(unsigned int) yy_c];
| 				}
| 			yy_current_state = yy_nxt[yy_base[yy_current_state] + (unsigned int) yy_c];
| 			*(yy_state_ptr)++ = yy_current_state;
| 			++yy_cp;
| 			}
| 		while ( yy_base[yy_current_state] != 10 );
| 
| yy_find_action:
| 		yy_current_state = *--(yy_state_ptr);
| 		(yy_lp) = yy_accept[yy_current_state];
| find_rule: /* we branch to this label when backing up */
| 		for ( ; ; ) /* until we find what rule we matched */
| 			{
| 			if ( (yy_lp) && (yy_lp) < yy_accept[yy_current_state + 1] )
| 				{
| 				yy_act = yy_acclist[(yy_lp)];
| 					{
| 					(yy_full_match) = yy_cp;
| 					break;
| 					}
| 				}
| 			--yy_cp;
| 			yy_current_state = *--(yy_state_ptr);
| 			(yy_lp) = yy_accept[yy_current_state];
| 			}
| 
| 		YY_DO_BEFORE_ACTION;
| 
| do_action:	/* This label is used only to access EOF actions. */
| 
| 		switch ( yy_act )
| 	{ /* beginning of action switch */
| case 1:
| YY_RULE_SETUP
| #line 2 "conftest.l"
| { ECHO; }
| 	YY_BREAK
| case 2:
| YY_RULE_SETUP
| #line 3 "conftest.l"
| { REJECT; }
| 	YY_BREAK
| case 3:
| YY_RULE_SETUP
| #line 4 "conftest.l"
| { yymore (); }
| 	YY_BREAK
| case 4:
| YY_RULE_SETUP
| #line 5 "conftest.l"
| { yyless (1); }
| 	YY_BREAK
| case 5:
| YY_RULE_SETUP
| #line 6 "conftest.l"
| { yyless (input () != 0); }
| 	YY_BREAK
| case 6:
| YY_RULE_SETUP
| #line 7 "conftest.l"
| { unput (yytext[0]); }
| 	YY_BREAK
| case 7:
| YY_RULE_SETUP
| #line 8 "conftest.l"
| { BEGIN INITIAL; }
| 	YY_BREAK
| case 8:
| YY_RULE_SETUP
| #line 9 "conftest.l"
| ECHO;
| 	YY_BREAK
| #line 790 "lex.yy.c"
| 			case YY_STATE_EOF(INITIAL):
| 				yyterminate();
| 
| 	case YY_END_OF_BUFFER:
| 		{
| 		/* Amount of text matched not including the EOB char. */
| 		int yy_amount_of_matched_text = (int) (yy_cp - (yytext_ptr)) - 1;
| 
| 		/* Undo the effects of YY_DO_BEFORE_ACTION. */
| 		*yy_cp = (yy_hold_char);
| 		YY_RESTORE_YY_MORE_OFFSET
| 
| 		if ( YY_CURRENT_BUFFER_LVALUE->yy_buffer_status == YY_BUFFER_NEW )
| 			{
| 			/* We're scanning a new file or input source.  It's
| 			 * possible that this happened because the user
| 			 * just pointed yyin at a new source and called
| 			 * yylex().  If so, then we have to assure
| 			 * consistency between YY_CURRENT_BUFFER and our
| 			 * globals.  Here is the right place to do so, because
| 			 * this is the first action (other than possibly a
| 			 * back-up) that will match for the new input source.
| 			 */
| 			(yy_n_chars) = YY_CURRENT_BUFFER_LVALUE->yy_n_chars;
| 			YY_CURRENT_BUFFER_LVALUE->yy_input_file = yyin;
| 			YY_CURRENT_BUFFER_LVALUE->yy_buffer_status = YY_BUFFER_NORMAL;
| 			}
| 
| 		/* Note that here we test for yy_c_buf_p "<=" to the position
| 		 * of the first EOB in the buffer, since yy_c_buf_p will
| 		 * already have been incremented past the NUL character
| 		 * (since all states make transitions on EOB to the
| 		 * end-of-buffer state).  Contrast this with the test
| 		 * in input().
| 		 */
| 		if ( (yy_c_buf_p) <= &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[(yy_n_chars)] )
| 			{ /* This was really a NUL. */
| 			yy_state_type yy_next_state;
| 
| 			(yy_c_buf_p) = (yytext_ptr) + yy_amount_of_matched_text;
| 
| 			yy_current_state = yy_get_previous_state(  );
| 
| 			/* Okay, we're now positioned to make the NUL
| 			 * transition.  We couldn't have
| 			 * yy_get_previous_state() go ahead and do it
| 			 * for us because it doesn't know how to deal
| 			 * with the possibility of jamming (and we don't
| 			 * want to build jamming into it because then it
| 			 * will run more slowly).
| 			 */
| 
| 			yy_next_state = yy_try_NUL_trans( yy_current_state );
| 
| 			yy_bp = (yytext_ptr) + YY_MORE_ADJ;
| 
| 			if ( yy_next_state )
| 				{
| 				/* Consume the NUL. */
| 				yy_cp = ++(yy_c_buf_p);
| 				yy_current_state = yy_next_state;
| 				goto yy_match;
| 				}
| 
| 			else
| 				{
| 				yy_cp = (yy_c_buf_p);
| 				goto yy_find_action;
| 				}
| 			}
| 
| 		else switch ( yy_get_next_buffer(  ) )
| 			{
| 			case EOB_ACT_END_OF_FILE:
| 				{
| 				(yy_did_buffer_switch_on_eof) = 0;
| 
| 				if ( yywrap( ) )
| 					{
| 					/* Note: because we've taken care in
| 					 * yy_get_next_buffer() to have set up
| 					 * yytext, we can now set up
| 					 * yy_c_buf_p so that if some total
| 					 * hoser (like flex itself) wants to
| 					 * call the scanner after we return the
| 					 * YY_NULL, it'll still work - another
| 					 * YY_NULL will get returned.
| 					 */
| 					(yy_c_buf_p) = (yytext_ptr) + YY_MORE_ADJ;
| 
| 					yy_act = YY_STATE_EOF(YY_START);
| 					goto do_action;
| 					}
| 
| 				else
| 					{
| 					if ( ! (yy_did_buffer_switch_on_eof) )
| 						YY_NEW_FILE;
| 					}
| 				break;
| 				}
| 
| 			case EOB_ACT_CONTINUE_SCAN:
| 				(yy_c_buf_p) =
| 					(yytext_ptr) + yy_amount_of_matched_text;
| 
| 				yy_current_state = yy_get_previous_state(  );
| 
| 				yy_cp = (yy_c_buf_p);
| 				yy_bp = (yytext_ptr) + YY_MORE_ADJ;
| 				goto yy_match;
| 
| 			case EOB_ACT_LAST_MATCH:
| 				(yy_c_buf_p) =
| 				&YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[(yy_n_chars)];
| 
| 				yy_current_state = yy_get_previous_state(  );
| 
| 				yy_cp = (yy_c_buf_p);
| 				yy_bp = (yytext_ptr) + YY_MORE_ADJ;
| 				goto yy_find_action;
| 			}
| 		break;
| 		}
| 
| 	default:
| 		YY_FATAL_ERROR(
| 			"fatal flex scanner internal error--no action found" );
| 	} /* end of action switch */
| 		} /* end of scanning one token */
| } /* end of yylex */
| 
| /* yy_get_next_buffer - try to read in a new buffer
|  *
|  * Returns a code representing an action:
|  *	EOB_ACT_LAST_MATCH -
|  *	EOB_ACT_CONTINUE_SCAN - continue scanning from current position
|  *	EOB_ACT_END_OF_FILE - end of file
|  */
| static int yy_get_next_buffer (void)
| {
|     	register char *dest = YY_CURRENT_BUFFER_LVALUE->yy_ch_buf;
| 	register char *source = (yytext_ptr);
| 	register int number_to_move, i;
| 	int ret_val;
| 
| 	if ( (yy_c_buf_p) > &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[(yy_n_chars) + 1] )
| 		YY_FATAL_ERROR(
| 		"fatal flex scanner internal error--end of buffer missed" );
| 
| 	if ( YY_CURRENT_BUFFER_LVALUE->yy_fill_buffer == 0 )
| 		{ /* Don't try to fill the buffer, so this is an EOF. */
| 		if ( (yy_c_buf_p) - (yytext_ptr) - YY_MORE_ADJ == 1 )
| 			{
| 			/* We matched a single character, the EOB, so
| 			 * treat this as a final EOF.
| 			 */
| 			return EOB_ACT_END_OF_FILE;
| 			}
| 
| 		else
| 			{
| 			/* We matched some text prior to the EOB, first
| 			 * process it.
| 			 */
| 			return EOB_ACT_LAST_MATCH;
| 			}
| 		}
| 
| 	/* Try to read more data. */
| 
| 	/* First move last chars to start of buffer. */
| 	number_to_move = (int) ((yy_c_buf_p) - (yytext_ptr)) - 1;
| 
| 	for ( i = 0; i < number_to_move; ++i )
| 		*(dest++) = *(source++);
| 
| 	if ( YY_CURRENT_BUFFER_LVALUE->yy_buffer_status == YY_BUFFER_EOF_PENDING )
| 		/* don't do the read, it's not guaranteed to return an EOF,
| 		 * just force an EOF
| 		 */
| 		YY_CURRENT_BUFFER_LVALUE->yy_n_chars = (yy_n_chars) = 0;
| 
| 	else
| 		{
| 			int num_to_read =
| 			YY_CURRENT_BUFFER_LVALUE->yy_buf_size - number_to_move - 1;
| 
| 		while ( num_to_read <= 0 )
| 			{ /* Not enough room in the buffer - grow it. */
| 
| 			YY_FATAL_ERROR(
| "input buffer overflow, can't enlarge buffer because scanner uses REJECT" );
| 
| 			}
| 
| 		if ( num_to_read > YY_READ_BUF_SIZE )
| 			num_to_read = YY_READ_BUF_SIZE;
| 
| 		/* Read in more data. */
| 		YY_INPUT( (&YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[number_to_move]),
| 			(yy_n_chars), (size_t) num_to_read );
| 
| 		YY_CURRENT_BUFFER_LVALUE->yy_n_chars = (yy_n_chars);
| 		}
| 
| 	if ( (yy_n_chars) == 0 )
| 		{
| 		if ( number_to_move == YY_MORE_ADJ )
| 			{
| 			ret_val = EOB_ACT_END_OF_FILE;
| 			yyrestart(yyin  );
| 			}
| 
| 		else
| 			{
| 			ret_val = EOB_ACT_LAST_MATCH;
| 			YY_CURRENT_BUFFER_LVALUE->yy_buffer_status =
| 				YY_BUFFER_EOF_PENDING;
| 			}
| 		}
| 
| 	else
| 		ret_val = EOB_ACT_CONTINUE_SCAN;
| 
| 	if ((yy_size_t) ((yy_n_chars) + number_to_move) > YY_CURRENT_BUFFER_LVALUE->yy_buf_size) {
| 		/* Extend the array by 50%, plus the number we really need. */
| 		yy_size_t new_size = (yy_n_chars) + number_to_move + ((yy_n_chars) >> 1);
| 		YY_CURRENT_BUFFER_LVALUE->yy_ch_buf = (char *) yyrealloc((void *) YY_CURRENT_BUFFER_LVALUE->yy_ch_buf,new_size  );
| 		if ( ! YY_CURRENT_BUFFER_LVALUE->yy_ch_buf )
| 			YY_FATAL_ERROR( "out of dynamic memory in yy_get_next_buffer()" );
| 	}
| 
| 	(yy_n_chars) += number_to_move;
| 	YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[(yy_n_chars)] = YY_END_OF_BUFFER_CHAR;
| 	YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[(yy_n_chars) + 1] = YY_END_OF_BUFFER_CHAR;
| 
| 	(yytext_ptr) = &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[0];
| 
| 	return ret_val;
| }
| 
| /* yy_get_previous_state - get the state just before the EOB char was reached */
| 
|     static yy_state_type yy_get_previous_state (void)
| {
| 	register yy_state_type yy_current_state;
| 	register char *yy_cp;
|     
| 	yy_current_state = (yy_start);
| 
| 	(yy_state_ptr) = (yy_state_buf);
| 	*(yy_state_ptr)++ = yy_current_state;
| 
| 	for ( yy_cp = (yytext_ptr) + YY_MORE_ADJ; yy_cp < (yy_c_buf_p); ++yy_cp )
| 		{
| 		register YY_CHAR yy_c = (*yy_cp ? yy_ec[YY_SC_TO_UI(*yy_cp)] : 1);
| 		while ( yy_chk[yy_base[yy_current_state] + yy_c] != yy_current_state )
| 			{
| 			yy_current_state = (int) yy_def[yy_current_state];
| 			if ( yy_current_state >= 13 )
| 				yy_c = yy_meta[(unsigned int) yy_c];
| 			}
| 		yy_current_state = yy_nxt[yy_base[yy_current_state] + (unsigned int) yy_c];
| 		*(yy_state_ptr)++ = yy_current_state;
| 		}
| 
| 	return yy_current_state;
| }
| 
| /* yy_try_NUL_trans - try to make a transition on the NUL character
|  *
|  * synopsis
|  *	next_state = yy_try_NUL_trans( current_state );
|  */
|     static yy_state_type yy_try_NUL_trans  (yy_state_type yy_current_state )
| {
| 	register int yy_is_jam;
|     
| 	register YY_CHAR yy_c = 1;
| 	while ( yy_chk[yy_base[yy_current_state] + yy_c] != yy_current_state )
| 		{
| 		yy_current_state = (int) yy_def[yy_current_state];
| 		if ( yy_current_state >= 13 )
| 			yy_c = yy_meta[(unsigned int) yy_c];
| 		}
| 	yy_current_state = yy_nxt[yy_base[yy_current_state] + (unsigned int) yy_c];
| 	yy_is_jam = (yy_current_state == 12);
| 	if ( ! yy_is_jam )
| 		*(yy_state_ptr)++ = yy_current_state;
| 
| 	return yy_is_jam ? 0 : yy_current_state;
| }
| 
|     static void yyunput (int c, register char * yy_bp )
| {
| 	register char *yy_cp;
|     
|     yy_cp = (yy_c_buf_p);
| 
| 	/* undo effects of setting up yytext */
| 	*yy_cp = (yy_hold_char);
| 
| 	if ( yy_cp < YY_CURRENT_BUFFER_LVALUE->yy_ch_buf + 2 )
| 		{ /* need to shift things up to make room */
| 		/* +2 for EOB chars. */
| 		register int number_to_move = (yy_n_chars) + 2;
| 		register char *dest = &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[
| 					YY_CURRENT_BUFFER_LVALUE->yy_buf_size + 2];
| 		register char *source =
| 				&YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[number_to_move];
| 
| 		while ( source > YY_CURRENT_BUFFER_LVALUE->yy_ch_buf )
| 			*--dest = *--source;
| 
| 		yy_cp += (int) (dest - source);
| 		yy_bp += (int) (dest - source);
| 		YY_CURRENT_BUFFER_LVALUE->yy_n_chars =
| 			(yy_n_chars) = YY_CURRENT_BUFFER_LVALUE->yy_buf_size;
| 
| 		if ( yy_cp < YY_CURRENT_BUFFER_LVALUE->yy_ch_buf + 2 )
| 			YY_FATAL_ERROR( "flex scanner push-back overflow" );
| 		}
| 
| 	*--yy_cp = (char) c;
| 
| 	(yytext_ptr) = yy_bp;
| 	(yy_hold_char) = *yy_cp;
| 	(yy_c_buf_p) = yy_cp;
| }
| 
| #ifndef YY_NO_INPUT
| #ifdef __cplusplus
|     static int yyinput (void)
| #else
|     static int input  (void)
| #endif
| 
| {
| 	int c;
|     
| 	*(yy_c_buf_p) = (yy_hold_char);
| 
| 	if ( *(yy_c_buf_p) == YY_END_OF_BUFFER_CHAR )
| 		{
| 		/* yy_c_buf_p now points to the character we want to return.
| 		 * If this occurs *before* the EOB characters, then it's a
| 		 * valid NUL; if not, then we've hit the end of the buffer.
| 		 */
| 		if ( (yy_c_buf_p) < &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[(yy_n_chars)] )
| 			/* This was really a NUL. */
| 			*(yy_c_buf_p) = '\0';
| 
| 		else
| 			{ /* need more input */
| 			int offset = (yy_c_buf_p) - (yytext_ptr);
| 			++(yy_c_buf_p);
| 
| 			switch ( yy_get_next_buffer(  ) )
| 				{
| 				case EOB_ACT_LAST_MATCH:
| 					/* This happens because yy_g_n_b()
| 					 * sees that we've accumulated a
| 					 * token and flags that we need to
| 					 * try matching the token before
| 					 * proceeding.  But for input(),
| 					 * there's no matching to consider.
| 					 * So convert the EOB_ACT_LAST_MATCH
| 					 * to EOB_ACT_END_OF_FILE.
| 					 */
| 
| 					/* Reset buffer status. */
| 					yyrestart(yyin );
| 
| 					/*FALLTHROUGH*/
| 
| 				case EOB_ACT_END_OF_FILE:
| 					{
| 					if ( yywrap( ) )
| 						return EOF;
| 
| 					if ( ! (yy_did_buffer_switch_on_eof) )
| 						YY_NEW_FILE;
| #ifdef __cplusplus
| 					return yyinput();
| #else
| 					return input();
| #endif
| 					}
| 
| 				case EOB_ACT_CONTINUE_SCAN:
| 					(yy_c_buf_p) = (yytext_ptr) + offset;
| 					break;
| 				}
| 			}
| 		}
| 
| 	c = *(unsigned char *) (yy_c_buf_p);	/* cast for 8-bit char's */
| 	*(yy_c_buf_p) = '\0';	/* preserve yytext */
| 	(yy_hold_char) = *++(yy_c_buf_p);
| 
| 	return c;
| }
| #endif	/* ifndef YY_NO_INPUT */
| 
| /** Immediately switch to a different input stream.
|  * @param input_file A readable stream.
|  * 
|  * @note This function does not reset the start condition to @c INITIAL .
|  */
|     void yyrestart  (FILE * input_file )
| {
|     
| 	if ( ! YY_CURRENT_BUFFER ){
|         yyensure_buffer_stack ();
| 		YY_CURRENT_BUFFER_LVALUE =
|             yy_create_buffer(yyin,YY_BUF_SIZE );
| 	}
| 
| 	yy_init_buffer(YY_CURRENT_BUFFER,input_file );
| 	yy_load_buffer_state( );
| }
| 
| /** Switch to a different input buffer.
|  * @param new_buffer The new input buffer.
|  * 
|  */
|     void yy_switch_to_buffer  (YY_BUFFER_STATE  new_buffer )
| {
|     
| 	/* TODO. We should be able to replace this entire function body
| 	 * with
| 	 *		yypop_buffer_state();
| 	 *		yypush_buffer_state(new_buffer);
|      */
| 	yyensure_buffer_stack ();
| 	if ( YY_CURRENT_BUFFER == new_buffer )
| 		return;
| 
| 	if ( YY_CURRENT_BUFFER )
| 		{
| 		/* Flush out information for old buffer. */
| 		*(yy_c_buf_p) = (yy_hold_char);
| 		YY_CURRENT_BUFFER_LVALUE->yy_buf_pos = (yy_c_buf_p);
| 		YY_CURRENT_BUFFER_LVALUE->yy_n_chars = (yy_n_chars);
| 		}
| 
| 	YY_CURRENT_BUFFER_LVALUE = new_buffer;
| 	yy_load_buffer_state( );
| 
| 	/* We don't actually know whether we did this switch during
| 	 * EOF (yywrap()) processing, but the only time this flag
| 	 * is looked at is after yywrap() is called, so it's safe
| 	 * to go ahead and always set it.
| 	 */
| 	(yy_did_buffer_switch_on_eof) = 1;
| }
| 
| static void yy_load_buffer_state  (void)
| {
|     	(yy_n_chars) = YY_CURRENT_BUFFER_LVALUE->yy_n_chars;
| 	(yytext_ptr) = (yy_c_buf_p) = YY_CURRENT_BUFFER_LVALUE->yy_buf_pos;
| 	yyin = YY_CURRENT_BUFFER_LVALUE->yy_input_file;
| 	(yy_hold_char) = *(yy_c_buf_p);
| }
| 
| /** Allocate and initialize an input buffer state.
|  * @param file A readable stream.
|  * @param size The character buffer size in bytes. When in doubt, use @c YY_BUF_SIZE.
|  * 
|  * @return the allocated buffer state.
|  */
|     YY_BUFFER_STATE yy_create_buffer  (FILE * file, int  size )
| {
| 	YY_BUFFER_STATE b;
|     
| 	b = (YY_BUFFER_STATE) yyalloc(sizeof( struct yy_buffer_state )  );
| 	if ( ! b )
| 		YY_FATAL_ERROR( "out of dynamic memory in yy_create_buffer()" );
| 
| 	b->yy_buf_size = size;
| 
| 	/* yy_ch_buf has to be 2 characters longer than the size given because
| 	 * we need to put in 2 end-of-buffer characters.
| 	 */
| 	b->yy_ch_buf = (char *) yyalloc(b->yy_buf_size + 2  );
| 	if ( ! b->yy_ch_buf )
| 		YY_FATAL_ERROR( "out of dynamic memory in yy_create_buffer()" );
| 
| 	b->yy_is_our_buffer = 1;
| 
| 	yy_init_buffer(b,file );
| 
| 	return b;
| }
| 
| /** Destroy the buffer.
|  * @param b a buffer created with yy_create_buffer()
|  * 
|  */
|     void yy_delete_buffer (YY_BUFFER_STATE  b )
| {
|     
| 	if ( ! b )
| 		return;
| 
| 	if ( b == YY_CURRENT_BUFFER ) /* Not sure if we should pop here. */
| 		YY_CURRENT_BUFFER_LVALUE = (YY_BUFFER_STATE) 0;
| 
| 	if ( b->yy_is_our_buffer )
| 		yyfree((void *) b->yy_ch_buf  );
| 
| 	yyfree((void *) b  );
| }
| 
| #ifndef __cplusplus
| extern int isatty (int );
| #endif /* __cplusplus */
|     
| /* Initializes or reinitializes a buffer.
|  * This function is sometimes called more than once on the same buffer,
|  * such as during a yyrestart() or at EOF.
|  */
|     static void yy_init_buffer  (YY_BUFFER_STATE  b, FILE * file )
| 
| {
| 	int oerrno = errno;
|     
| 	yy_flush_buffer(b );
| 
| 	b->yy_input_file = file;
| 	b->yy_fill_buffer = 1;
| 
|     /* If b is the current buffer, then yy_init_buffer was _probably_
|      * called from yyrestart() or through yy_get_next_buffer.
|      * In that case, we don't want to reset the lineno or column.
|      */
|     if (b != YY_CURRENT_BUFFER){
|         b->yy_bs_lineno = 1;
|         b->yy_bs_column = 0;
|     }
| 
|         b->yy_is_interactive = file ? (isatty( fileno(file) ) > 0) : 0;
|     
| 	errno = oerrno;
| }
| 
| /** Discard all buffered characters. On the next scan, YY_INPUT will be called.
|  * @param b the buffer state to be flushed, usually @c YY_CURRENT_BUFFER.
|  * 
|  */
|     void yy_flush_buffer (YY_BUFFER_STATE  b )
| {
|     	if ( ! b )
| 		return;
| 
| 	b->yy_n_chars = 0;
| 
| 	/* We always need two end-of-buffer characters.  The first causes
| 	 * a transition to the end-of-buffer state.  The second causes
| 	 * a jam in that state.
| 	 */
| 	b->yy_ch_buf[0] = YY_END_OF_BUFFER_CHAR;
| 	b->yy_ch_buf[1] = YY_END_OF_BUFFER_CHAR;
| 
| 	b->yy_buf_pos = &b->yy_ch_buf[0];
| 
| 	b->yy_at_bol = 1;
| 	b->yy_buffer_status = YY_BUFFER_NEW;
| 
| 	if ( b == YY_CURRENT_BUFFER )
| 		yy_load_buffer_state( );
| }
| 
| /** Pushes the new state onto the stack. The new state becomes
|  *  the current state. This function will allocate the stack
|  *  if necessary.
|  *  @param new_buffer The new state.
|  *  
|  */
| void yypush_buffer_state (YY_BUFFER_STATE new_buffer )
| {
|     	if (new_buffer == NULL)
| 		return;
| 
| 	yyensure_buffer_stack();
| 
| 	/* This block is copied from yy_switch_to_buffer. */
| 	if ( YY_CURRENT_BUFFER )
| 		{
| 		/* Flush out information for old buffer. */
| 		*(yy_c_buf_p) = (yy_hold_char);
| 		YY_CURRENT_BUFFER_LVALUE->yy_buf_pos = (yy_c_buf_p);
| 		YY_CURRENT_BUFFER_LVALUE->yy_n_chars = (yy_n_chars);
| 		}
| 
| 	/* Only push if top exists. Otherwise, replace top. */
| 	if (YY_CURRENT_BUFFER)
| 		(yy_buffer_stack_top)++;
| 	YY_CURRENT_BUFFER_LVALUE = new_buffer;
| 
| 	/* copied from yy_switch_to_buffer. */
| 	yy_load_buffer_state( );
| 	(yy_did_buffer_switch_on_eof) = 1;
| }
| 
| /** Removes and deletes the top of the stack, if present.
|  *  The next element becomes the new top.
|  *  
|  */
| void yypop_buffer_state (void)
| {
|     	if (!YY_CURRENT_BUFFER)
| 		return;
| 
| 	yy_delete_buffer(YY_CURRENT_BUFFER );
| 	YY_CURRENT_BUFFER_LVALUE = NULL;
| 	if ((yy_buffer_stack_top) > 0)
| 		--(yy_buffer_stack_top);
| 
| 	if (YY_CURRENT_BUFFER) {
| 		yy_load_buffer_state( );
| 		(yy_did_buffer_switch_on_eof) = 1;
| 	}
| }
| 
| /* Allocates the stack if it does not exist.
|  *  Guarantees space for at least one push.
|  */
| static void yyensure_buffer_stack (void)
| {
| 	int num_to_alloc;
|     
| 	if (!(yy_buffer_stack)) {
| 
| 		/* First allocation is just for 2 elements, since we don't know if this
| 		 * scanner will even need a stack. We use 2 instead of 1 to avoid an
| 		 * immediate realloc on the next call.
|          */
| 		num_to_alloc = 1;
| 		(yy_buffer_stack) = (struct yy_buffer_state**)yyalloc
| 								(num_to_alloc * sizeof(struct yy_buffer_state*)
| 								);
| 		if ( ! (yy_buffer_stack) )
| 			YY_FATAL_ERROR( "out of dynamic memory in yyensure_buffer_stack()" );
| 								  
| 		memset((yy_buffer_stack), 0, num_to_alloc * sizeof(struct yy_buffer_state*));
| 				
| 		(yy_buffer_stack_max) = num_to_alloc;
| 		(yy_buffer_stack_top) = 0;
| 		return;
| 	}
| 
| 	if ((yy_buffer_stack_top) >= ((yy_buffer_stack_max)) - 1){
| 
| 		/* Increase the buffer to prepare for a possible push. */
| 		int grow_size = 8 /* arbitrary grow size */;
| 
| 		num_to_alloc = (yy_buffer_stack_max) + grow_size;
| 		(yy_buffer_stack) = (struct yy_buffer_state**)yyrealloc
| 								((yy_buffer_stack),
| 								num_to_alloc * sizeof(struct yy_buffer_state*)
| 								);
| 		if ( ! (yy_buffer_stack) )
| 			YY_FATAL_ERROR( "out of dynamic memory in yyensure_buffer_stack()" );
| 
| 		/* zero only the new slots.*/
| 		memset((yy_buffer_stack) + (yy_buffer_stack_max), 0, grow_size * sizeof(struct yy_buffer_state*));
| 		(yy_buffer_stack_max) = num_to_alloc;
| 	}
| }
| 
| /** Setup the input buffer state to scan directly from a user-specified character buffer.
|  * @param base the character buffer
|  * @param size the size in bytes of the character buffer
|  * 
|  * @return the newly allocated buffer state object. 
|  */
| YY_BUFFER_STATE yy_scan_buffer  (char * base, yy_size_t  size )
| {
| 	YY_BUFFER_STATE b;
|     
| 	if ( size < 2 ||
| 	     base[size-2] != YY_END_OF_BUFFER_CHAR ||
| 	     base[size-1] != YY_END_OF_BUFFER_CHAR )
| 		/* They forgot to leave room for the EOB's. */
| 		return 0;
| 
| 	b = (YY_BUFFER_STATE) yyalloc(sizeof( struct yy_buffer_state )  );
| 	if ( ! b )
| 		YY_FATAL_ERROR( "out of dynamic memory in yy_scan_buffer()" );
| 
| 	b->yy_buf_size = size - 2;	/* "- 2" to take care of EOB's */
| 	b->yy_buf_pos = b->yy_ch_buf = base;
| 	b->yy_is_our_buffer = 0;
| 	b->yy_input_file = 0;
| 	b->yy_n_chars = b->yy_buf_size;
| 	b->yy_is_interactive = 0;
| 	b->yy_at_bol = 1;
| 	b->yy_fill_buffer = 0;
| 	b->yy_buffer_status = YY_BUFFER_NEW;
| 
| 	yy_switch_to_buffer(b  );
| 
| 	return b;
| }
| 
| /** Setup the input buffer state to scan a string. The next call to yylex() will
|  * scan from a @e copy of @a str.
|  * @param yystr a NUL-terminated string to scan
|  * 
|  * @return the newly allocated buffer state object.
|  * @note If you want to scan bytes that may contain NUL values, then use
|  *       yy_scan_bytes() instead.
|  */
| YY_BUFFER_STATE yy_scan_string (yyconst char * yystr )
| {
|     
| 	return yy_scan_bytes(yystr,strlen(yystr) );
| }
| 
| /** Setup the input buffer state to scan the given bytes. The next call to yylex() will
|  * scan from a @e copy of @a bytes.
|  * @param bytes the byte buffer to scan
|  * @param len the number of bytes in the buffer pointed to by @a bytes.
|  * 
|  * @return the newly allocated buffer state object.
|  */
| YY_BUFFER_STATE yy_scan_bytes  (yyconst char * yybytes, int  _yybytes_len )
| {
| 	YY_BUFFER_STATE b;
| 	char *buf;
| 	yy_size_t n;
| 	int i;
|     
| 	/* Get memory for full buffer, including space for trailing EOB's. */
| 	n = _yybytes_len + 2;
| 	buf = (char *) yyalloc(n  );
| 	if ( ! buf )
| 		YY_FATAL_ERROR( "out of dynamic memory in yy_scan_bytes()" );
| 
| 	for ( i = 0; i < _yybytes_len; ++i )
| 		buf[i] = yybytes[i];
| 
| 	buf[_yybytes_len] = buf[_yybytes_len+1] = YY_END_OF_BUFFER_CHAR;
| 
| 	b = yy_scan_buffer(buf,n );
| 	if ( ! b )
| 		YY_FATAL_ERROR( "bad buffer in yy_scan_bytes()" );
| 
| 	/* It's okay to grow etc. this buffer, and we should throw it
| 	 * away when we're done.
| 	 */
| 	b->yy_is_our_buffer = 1;
| 
| 	return b;
| }
| 
| #ifndef YY_EXIT_FAILURE
| #define YY_EXIT_FAILURE 2
| #endif
| 
| static void yy_fatal_error (yyconst char* msg )
| {
|     	(void) fprintf( stderr, "%s\n", msg );
| 	exit( YY_EXIT_FAILURE );
| }
| 
| /* Redefine yyless() so it works in section 3 code. */
| 
| #undef yyless
| #define yyless(n) \
| 	do \
| 		{ \
| 		/* Undo effects of setting up yytext. */ \
|         int yyless_macro_arg = (n); \
|         YY_LESS_LINENO(yyless_macro_arg);\
| 		yytext[yyleng] = (yy_hold_char); \
| 		(yy_c_buf_p) = yytext + yyless_macro_arg; \
| 		(yy_hold_char) = *(yy_c_buf_p); \
| 		*(yy_c_buf_p) = '\0'; \
| 		yyleng = yyless_macro_arg; \
| 		} \
| 	while ( 0 )
| 
| /* Accessor  methods (get/set functions) to struct members. */
| 
| /** Get the current line number.
|  * 
|  */
| int yyget_lineno  (void)
| {
|         
|     return yylineno;
| }
| 
| /** Get the input stream.
|  * 
|  */
| FILE *yyget_in  (void)
| {
|         return yyin;
| }
| 
| /** Get the output stream.
|  * 
|  */
| FILE *yyget_out  (void)
| {
|         return yyout;
| }
| 
| /** Get the length of the current token.
|  * 
|  */
| int yyget_leng  (void)
| {
|         return yyleng;
| }
| 
| /** Get the current token.
|  * 
|  */
| 
| char *yyget_text  (void)
| {
|         return yytext;
| }
| 
| /** Set the current line number.
|  * @param line_number
|  * 
|  */
| void yyset_lineno (int  line_number )
| {
|     
|     yylineno = line_number;
| }
| 
| /** Set the input stream. This does not discard the current
|  * input buffer.
|  * @param in_str A readable stream.
|  * 
|  * @see yy_switch_to_buffer
|  */
| void yyset_in (FILE *  in_str )
| {
|         yyin = in_str ;
| }
| 
| void yyset_out (FILE *  out_str )
| {
|         yyout = out_str ;
| }
| 
| int yyget_debug  (void)
| {
|         return yy_flex_debug;
| }
| 
| void yyset_debug (int  bdebug )
| {
|         yy_flex_debug = bdebug ;
| }
| 
| static int yy_init_globals (void)
| {
|         /* Initialization is the same as for the non-reentrant scanner.
|      * This function is called from yylex_destroy(), so don't allocate here.
|      */
| 
|     (yy_buffer_stack) = 0;
|     (yy_buffer_stack_top) = 0;
|     (yy_buffer_stack_max) = 0;
|     (yy_c_buf_p) = (char *) 0;
|     (yy_init) = 0;
|     (yy_start) = 0;
| 
|     (yy_state_buf) = 0;
|     (yy_state_ptr) = 0;
|     (yy_full_match) = 0;
|     (yy_lp) = 0;
| 
| /* Defined in main.c */
| #ifdef YY_STDINIT
|     yyin = stdin;
|     yyout = stdout;
| #else
|     yyin = (FILE *) 0;
|     yyout = (FILE *) 0;
| #endif
| 
|     /* For future reference: Set errno on error, since we are called by
|      * yylex_init()
|      */
|     return 0;
| }
| 
| /* yylex_destroy is for both reentrant and non-reentrant scanners. */
| int yylex_destroy  (void)
| {
|     
|     /* Pop the buffer stack, destroying each element. */
| 	while(YY_CURRENT_BUFFER){
| 		yy_delete_buffer(YY_CURRENT_BUFFER  );
| 		YY_CURRENT_BUFFER_LVALUE = NULL;
| 		yypop_buffer_state();
| 	}
| 
| 	/* Destroy the stack itself. */
| 	yyfree((yy_buffer_stack) );
| 	(yy_buffer_stack) = NULL;
| 
|     yyfree ( (yy_state_buf) );
|     (yy_state_buf)  = NULL;
| 
|     /* Reset the globals. This is important in a non-reentrant scanner so the next time
|      * yylex() is called, initialization will occur. */
|     yy_init_globals( );
| 
|     return 0;
| }
| 
| /*
|  * Internal utility routines.
|  */
| 
| #ifndef yytext_ptr
| static void yy_flex_strncpy (char* s1, yyconst char * s2, int n )
| {
| 	register int i;
| 	for ( i = 0; i < n; ++i )
| 		s1[i] = s2[i];
| }
| #endif
| 
| #ifdef YY_NEED_STRLEN
| static int yy_flex_strlen (yyconst char * s )
| {
| 	register int n;
| 	for ( n = 0; s[n]; ++n )
| 		;
| 
| 	return n;
| }
| #endif
| 
| void *yyalloc (yy_size_t  size )
| {
| 	return (void *) malloc( size );
| }
| 
| void *yyrealloc  (void * ptr, yy_size_t  size )
| {
| 	/* The cast to (char *) in the following accommodates both
| 	 * implementations that use char* generic pointers, and those
| 	 * that use void* generic pointers.  It works with the latter
| 	 * because both ANSI C and C++ allow castless assignment from
| 	 * any pointer type to void*, and deal with argument conversions
| 	 * as though doing an assignment.
| 	 */
| 	return (void *) realloc( (char *) ptr, size );
| }
| 
| void yyfree (void * ptr )
| {
| 	free( (char *) ptr );	/* see yyrealloc() for (char *) cast */
| }
| 
| #define YYTABLES_NAME "yytables"
| 
| #line 9 "conftest.l"
| 
| 
| #ifdef YYTEXT_POINTER
| extern char *yytext;
| #endif
| int
| main (void)
| {
|   return ! yylex () + ! yywrap ();
| }
configure:13966: powerpc-poky-linux-gcc -mcpu=603e  -mhard-float --sysroot=/home/kyu3/sdb/test/tmp/sysroots/qemuppc -std=gnu99 -o conftest -O2 -pipe -g -feliminate-unused-debug-types  -Wl,-O1  -Wl,--as-needed conftest.c -lfl  >&5
configure:13966: $? = 0
configure:13976: result: -lfl
configure:13982: checking whether yytext is a pointer
configure:13998: powerpc-poky-linux-gcc -mcpu=603e  -mhard-float --sysroot=/home/kyu3/sdb/test/tmp/sysroots/qemuppc -std=gnu99 -o conftest -O2 -pipe -g -feliminate-unused-debug-types  -Wl,-O1  -Wl,--as-needed conftest.c -lfl  >&5
configure:13998: $? = 0
configure:14006: result: yes
configure:14020: checking for bison
configure:14036: found /home/kyu3/sdb/test/tmp/sysroots/x86_64-linux/usr/bin/bison
configure:14047: result: bison -y
configure:14066: checking for special C compiler options needed for large files
configure:14111: result: no
configure:14117: checking for _FILE_OFFSET_BITS value needed for large files
configure:14142: powerpc-poky-linux-gcc -mcpu=603e  -mhard-float --sysroot=/home/kyu3/sdb/test/tmp/sysroots/qemuppc -std=gnu99 -c -O2 -pipe -g -feliminate-unused-debug-types  conftest.c >&5
conftest.c:33:3: warning: left shift count >= width of type [enabled by default]
conftest.c:33:3: warning: left shift count >= width of type [enabled by default]
conftest.c:34:10: warning: left shift count >= width of type [enabled by default]
conftest.c:34:10: warning: left shift count >= width of type [enabled by default]
conftest.c:33:7: error: size of array 'off_t_is_large' is negative
conftest.c:35:9: warning: variably modified 'off_t_is_large' at file scope [enabled by default]
configure:14142: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "xorg-server"
| #define PACKAGE_TARNAME "xorg-server"
| #define PACKAGE_VERSION "1.10.1"
| #define PACKAGE_STRING "xorg-server 1.10.1"
| #define PACKAGE_BUGREPORT "https://bugs.freedesktop.org/enter_bug.cgi?product=xorg"
| #define PACKAGE_URL ""
| #define PACKAGE "xorg-server"
| #define VERSION "1.10.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 PACKAGE_VERSION_MAJOR 1
| #define PACKAGE_VERSION_MINOR 10
| #define PACKAGE_VERSION_PATCHLEVEL 1
| #define HAVE_DLFCN_H 1
| #define LT_OBJDIR ".libs/"
| #define YYTEXT_POINTER 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:14166: powerpc-poky-linux-gcc -mcpu=603e  -mhard-float --sysroot=/home/kyu3/sdb/test/tmp/sysroots/qemuppc -std=gnu99 -c -O2 -pipe -g -feliminate-unused-debug-types  conftest.c >&5
configure:14166: $? = 0
configure:14174: result: 64
configure:14263: checking for cpp
configure:14282: found /usr/bin/cpp
configure:14294: result: /usr/bin/cpp
configure:14310: checking if /usr/bin/cpp requires -undef
configure:14322: result: yes
configure:14335: checking if /usr/bin/cpp requires -traditional
configure:14347: result: yes
configure:14372: checking for dtrace
configure:14404: result: not_found
configure:14470: checking for dirent.h that defines DIR
configure:14489: powerpc-poky-linux-gcc -mcpu=603e  -mhard-float --sysroot=/home/kyu3/sdb/test/tmp/sysroots/qemuppc -std=gnu99 -c -O2 -pipe -g -feliminate-unused-debug-types  conftest.c >&5
configure:14489: $? = 0
configure:14497: result: yes
configure:14511: checking for library containing opendir
configure:14542: powerpc-poky-linux-gcc -mcpu=603e  -mhard-float --sysroot=/home/kyu3/sdb/test/tmp/sysroots/qemuppc -std=gnu99 -o conftest -O2 -pipe -g -feliminate-unused-debug-types  -Wl,-O1  -Wl,--as-needed conftest.c  >&5
configure:14542: $? = 0
configure:14559: result: none required
configure:14626: checking for ANSI C header files
configure:14730: result: yes
configure:14741: checking for fcntl.h
configure:14741: result: yes
configure:14741: checking for stdlib.h
configure:14741: result: yes
configure:14741: checking for string.h
configure:14741: result: yes
configure:14741: checking for unistd.h
configure:14741: result: yes
configure:14741: checking for dlfcn.h
configure:14741: result: yes
configure:14741: checking for stropts.h
configure:14741: result: yes
configure:14741: checking fnmatch.h usability
configure:14741: powerpc-poky-linux-gcc -mcpu=603e  -mhard-float --sysroot=/home/kyu3/sdb/test/tmp/sysroots/qemuppc -std=gnu99 -c -O2 -pipe -g -feliminate-unused-debug-types  conftest.c >&5
configure:14741: $? = 0
configure:14741: result: yes
configure:14741: checking fnmatch.h presence
configure:14741: powerpc-poky-linux-gcc -E --sysroot=/home/kyu3/sdb/test/tmp/sysroots/qemuppc  conftest.c
configure:14741: $? = 0
configure:14741: result: yes
configure:14741: checking for fnmatch.h
configure:14741: result: yes
configure:14741: checking for sys/utsname.h
configure:14741: result: yes
configure:14753: checking for an ANSI C-conforming const
configure:14818: powerpc-poky-linux-gcc -mcpu=603e  -mhard-float --sysroot=/home/kyu3/sdb/test/tmp/sysroots/qemuppc -std=gnu99 -c -O2 -pipe -g -feliminate-unused-debug-types  conftest.c >&5
configure:14818: $? = 0
configure:14825: result: yes
configure:14833: checking whether byte ordering is bigendian
configure:15039: result: yes
configure:15061: checking size of unsigned long
configure:15081: result: 4
configure:15097: checking for pid_t
configure:15097: powerpc-poky-linux-gcc -mcpu=603e  -mhard-float --sysroot=/home/kyu3/sdb/test/tmp/sysroots/qemuppc -std=gnu99 -c -O2 -pipe -g -feliminate-unused-debug-types  conftest.c >&5
configure:15097: $? = 0
configure:15097: powerpc-poky-linux-gcc -mcpu=603e  -mhard-float --sysroot=/home/kyu3/sdb/test/tmp/sysroots/qemuppc -std=gnu99 -c -O2 -pipe -g -feliminate-unused-debug-types  conftest.c >&5
conftest.c: In function 'main':
conftest.c:75:20: error: expected expression before ')' token
configure:15097: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "xorg-server"
| #define PACKAGE_TARNAME "xorg-server"
| #define PACKAGE_VERSION "1.10.1"
| #define PACKAGE_STRING "xorg-server 1.10.1"
| #define PACKAGE_BUGREPORT "https://bugs.freedesktop.org/enter_bug.cgi?product=xorg"
| #define PACKAGE_URL ""
| #define PACKAGE "xorg-server"
| #define VERSION "1.10.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 PACKAGE_VERSION_MAJOR 1
| #define PACKAGE_VERSION_MINOR 10
| #define PACKAGE_VERSION_PATCHLEVEL 1
| #define HAVE_DLFCN_H 1
| #define LT_OBJDIR ".libs/"
| #define YYTEXT_POINTER 1
| #define _FILE_OFFSET_BITS 64
| #define HAVE_DIRENT_H 1
| #define STDC_HEADERS 1
| #define HAVE_FCNTL_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_DLFCN_H 1
| #define HAVE_STROPTS_H 1
| #define HAVE_FNMATCH_H 1
| #define HAVE_SYS_UTSNAME_H 1
| #define SIZEOF_UNSIGNED_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 ()
| {
| if (sizeof ((pid_t)))
| 	    return 0;
|   ;
|   return 0;
| }
configure:15097: result: yes
configure:15119: checking for byteswap.h
configure:15119: result: yes
configure:15131: checking sys/endian.h usability
configure:15131: powerpc-poky-linux-gcc -mcpu=603e  -mhard-float --sysroot=/home/kyu3/sdb/test/tmp/sysroots/qemuppc -std=gnu99 -c -O2 -pipe -g -feliminate-unused-debug-types  conftest.c >&5
conftest.c:73:24: fatal error: sys/endian.h: No such file or directory
compilation terminated.
configure:15131: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "xorg-server"
| #define PACKAGE_TARNAME "xorg-server"
| #define PACKAGE_VERSION "1.10.1"
| #define PACKAGE_STRING "xorg-server 1.10.1"
| #define PACKAGE_BUGREPORT "https://bugs.freedesktop.org/enter_bug.cgi?product=xorg"
| #define PACKAGE_URL ""
| #define PACKAGE "xorg-server"
| #define VERSION "1.10.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 PACKAGE_VERSION_MAJOR 1
| #define PACKAGE_VERSION_MINOR 10
| #define PACKAGE_VERSION_PATCHLEVEL 1
| #define HAVE_DLFCN_H 1
| #define LT_OBJDIR ".libs/"
| #define YYTEXT_POINTER 1
| #define _FILE_OFFSET_BITS 64
| #define HAVE_DIRENT_H 1
| #define STDC_HEADERS 1
| #define HAVE_FCNTL_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_DLFCN_H 1
| #define HAVE_STROPTS_H 1
| #define HAVE_FNMATCH_H 1
| #define HAVE_SYS_UTSNAME_H 1
| #define SIZEOF_UNSIGNED_LONG 4
| #define HAVE_BYTESWAP_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/endian.h>
configure:15131: result: no
configure:15131: checking sys/endian.h presence
configure:15131: powerpc-poky-linux-gcc -E --sysroot=/home/kyu3/sdb/test/tmp/sysroots/qemuppc  conftest.c
conftest.c:40:24: fatal error: sys/endian.h: No such file or directory
compilation terminated.
configure:15131: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "xorg-server"
| #define PACKAGE_TARNAME "xorg-server"
| #define PACKAGE_VERSION "1.10.1"
| #define PACKAGE_STRING "xorg-server 1.10.1"
| #define PACKAGE_BUGREPORT "https://bugs.freedesktop.org/enter_bug.cgi?product=xorg"
| #define PACKAGE_URL ""
| #define PACKAGE "xorg-server"
| #define VERSION "1.10.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 PACKAGE_VERSION_MAJOR 1
| #define PACKAGE_VERSION_MINOR 10
| #define PACKAGE_VERSION_PATCHLEVEL 1
| #define HAVE_DLFCN_H 1
| #define LT_OBJDIR ".libs/"
| #define YYTEXT_POINTER 1
| #define _FILE_OFFSET_BITS 64
| #define HAVE_DIRENT_H 1
| #define STDC_HEADERS 1
| #define HAVE_FCNTL_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_DLFCN_H 1
| #define HAVE_STROPTS_H 1
| #define HAVE_FNMATCH_H 1
| #define HAVE_SYS_UTSNAME_H 1
| #define SIZEOF_UNSIGNED_LONG 4
| #define HAVE_BYTESWAP_H 1
| /* end confdefs.h.  */
| #include <sys/endian.h>
configure:15131: result: no
configure:15131: checking for sys/endian.h
configure:15131: result: no
configure:15235: checking for dlopen
configure:15235: result: yes
configure:15285: checking for vprintf
configure:15285: result: yes
configure:15291: checking for _doprnt
configure:15291: powerpc-poky-linux-gcc -mcpu=603e  -mhard-float --sysroot=/home/kyu3/sdb/test/tmp/sysroots/qemuppc -std=gnu99 -o conftest -O2 -pipe -g -feliminate-unused-debug-types  -Wl,-O1  -Wl,--as-needed conftest.c  >&5
/tmp/ccBQkkuG.o: In function `main':
/home/kyu3/sdb/test/tmp/work/ppc603e-poky-linux/xserver-xf86-lite-1.10.1-r0/xorg-server-1.10.1/conftest.c:75: undefined reference to `_doprnt'
collect2: ld returned 1 exit status
configure:15291: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "xorg-server"
| #define PACKAGE_TARNAME "xorg-server"
| #define PACKAGE_VERSION "1.10.1"
| #define PACKAGE_STRING "xorg-server 1.10.1"
| #define PACKAGE_BUGREPORT "https://bugs.freedesktop.org/enter_bug.cgi?product=xorg"
| #define PACKAGE_URL ""
| #define PACKAGE "xorg-server"
| #define VERSION "1.10.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 PACKAGE_VERSION_MAJOR 1
| #define PACKAGE_VERSION_MINOR 10
| #define PACKAGE_VERSION_PATCHLEVEL 1
| #define HAVE_DLFCN_H 1
| #define LT_OBJDIR ".libs/"
| #define YYTEXT_POINTER 1
| #define _FILE_OFFSET_BITS 64
| #define HAVE_DIRENT_H 1
| #define STDC_HEADERS 1
| #define HAVE_FCNTL_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_DLFCN_H 1
| #define HAVE_STROPTS_H 1
| #define HAVE_FNMATCH_H 1
| #define HAVE_SYS_UTSNAME_H 1
| #define SIZEOF_UNSIGNED_LONG 4
| #define HAVE_BYTESWAP_H 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:15291: result: no
configure:15307: checking for geteuid
configure:15307: result: yes
configure:15307: checking for getuid
configure:15307: result: yes
configure:15307: checking for link
configure:15307: result: yes
configure:15307: checking for memmove
configure:15307: result: yes
configure:15307: checking for memset
configure:15307: result: yes
configure:15307: checking for mkstemp
configure:15307: result: yes
configure:15307: checking for strchr
configure:15307: result: yes
configure:15307: checking for strrchr
configure:15307: result: yes
configure:15307: checking for strtol
configure:15307: result: yes
configure:15307: checking for getopt
configure:15307: result: yes
configure:15307: checking for getopt_long
configure:15307: result: yes
configure:15307: checking for vsnprintf
configure:15307: result: yes
configure:15307: checking for walkcontext
configure:15307: powerpc-poky-linux-gcc -mcpu=603e  -mhard-float --sysroot=/home/kyu3/sdb/test/tmp/sysroots/qemuppc -std=gnu99 -o conftest -O2 -pipe -g -feliminate-unused-debug-types  -Wl,-O1  -Wl,--as-needed conftest.c  >&5
/tmp/ccvd3Q7P.o: In function `main':
/home/kyu3/sdb/test/tmp/work/ppc603e-poky-linux/xserver-xf86-lite-1.10.1-r0/xorg-server-1.10.1/conftest.c:87: undefined reference to `walkcontext'
collect2: ld returned 1 exit status
configure:15307: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "xorg-server"
| #define PACKAGE_TARNAME "xorg-server"
| #define PACKAGE_VERSION "1.10.1"
| #define PACKAGE_STRING "xorg-server 1.10.1"
| #define PACKAGE_BUGREPORT "https://bugs.freedesktop.org/enter_bug.cgi?product=xorg"
| #define PACKAGE_URL ""
| #define PACKAGE "xorg-server"
| #define VERSION "1.10.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 PACKAGE_VERSION_MAJOR 1
| #define PACKAGE_VERSION_MINOR 10
| #define PACKAGE_VERSION_PATCHLEVEL 1
| #define HAVE_DLFCN_H 1
| #define LT_OBJDIR ".libs/"
| #define YYTEXT_POINTER 1
| #define _FILE_OFFSET_BITS 64
| #define HAVE_DIRENT_H 1
| #define STDC_HEADERS 1
| #define HAVE_FCNTL_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_DLFCN_H 1
| #define HAVE_STROPTS_H 1
| #define HAVE_FNMATCH_H 1
| #define HAVE_SYS_UTSNAME_H 1
| #define SIZEOF_UNSIGNED_LONG 4
| #define HAVE_BYTESWAP_H 1
| #define HAVE_VPRINTF 1
| #define HAVE_GETEUID 1
| #define HAVE_GETUID 1
| #define HAVE_LINK 1
| #define HAVE_MEMMOVE 1
| #define HAVE_MEMSET 1
| #define HAVE_MKSTEMP 1
| #define HAVE_STRCHR 1
| #define HAVE_STRRCHR 1
| #define HAVE_STRTOL 1
| #define HAVE_GETOPT 1
| #define HAVE_GETOPT_LONG 1
| #define HAVE_VSNPRINTF 1
| /* end confdefs.h.  */
| /* Define walkcontext to an innocuous variant, in case <limits.h> declares walkcontext.
|    For example, HP-UX 11i <limits.h> declares gettimeofday.  */
| #define walkcontext innocuous_walkcontext
| 
| /* System header to define __stub macros and hopefully few prototypes,
|     which can conflict with char walkcontext (); 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 walkcontext
| 
| /* 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 walkcontext ();
| /* 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_walkcontext || defined __stub___walkcontext
| choke me
| #endif
| 
| int
| main ()
| {
| return walkcontext ();
|   ;
|   return 0;
| }
configure:15307: result: no
configure:15307: checking for backtrace
configure:15307: powerpc-poky-linux-gcc -mcpu=603e  -mhard-float --sysroot=/home/kyu3/sdb/test/tmp/sysroots/qemuppc -std=gnu99 -o conftest -O2 -pipe -g -feliminate-unused-debug-types  -Wl,-O1  -Wl,--as-needed conftest.c  >&5
configure:15307: $? = 0
configure:15307: result: yes
configure:15307: checking for getisax
configure:15307: powerpc-poky-linux-gcc -mcpu=603e  -mhard-float --sysroot=/home/kyu3/sdb/test/tmp/sysroots/qemuppc -std=gnu99 -o conftest -O2 -pipe -g -feliminate-unused-debug-types  -Wl,-O1  -Wl,--as-needed conftest.c  >&5
/tmp/ccRHIKWT.o: In function `main':
/home/kyu3/sdb/test/tmp/work/ppc603e-poky-linux/xserver-xf86-lite-1.10.1-r0/xorg-server-1.10.1/conftest.c:88: undefined reference to `getisax'
collect2: ld returned 1 exit status
configure:15307: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "xorg-server"
| #define PACKAGE_TARNAME "xorg-server"
| #define PACKAGE_VERSION "1.10.1"
| #define PACKAGE_STRING "xorg-server 1.10.1"
| #define PACKAGE_BUGREPORT "https://bugs.freedesktop.org/enter_bug.cgi?product=xorg"
| #define PACKAGE_URL ""
| #define PACKAGE "xorg-server"
| #define VERSION "1.10.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 PACKAGE_VERSION_MAJOR 1
| #define PACKAGE_VERSION_MINOR 10
| #define PACKAGE_VERSION_PATCHLEVEL 1
| #define HAVE_DLFCN_H 1
| #define LT_OBJDIR ".libs/"
| #define YYTEXT_POINTER 1
| #define _FILE_OFFSET_BITS 64
| #define HAVE_DIRENT_H 1
| #define STDC_HEADERS 1
| #define HAVE_FCNTL_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_DLFCN_H 1
| #define HAVE_STROPTS_H 1
| #define HAVE_FNMATCH_H 1
| #define HAVE_SYS_UTSNAME_H 1
| #define SIZEOF_UNSIGNED_LONG 4
| #define HAVE_BYTESWAP_H 1
| #define HAVE_VPRINTF 1
| #define HAVE_GETEUID 1
| #define HAVE_GETUID 1
| #define HAVE_LINK 1
| #define HAVE_MEMMOVE 1
| #define HAVE_MEMSET 1
| #define HAVE_MKSTEMP 1
| #define HAVE_STRCHR 1
| #define HAVE_STRRCHR 1
| #define HAVE_STRTOL 1
| #define HAVE_GETOPT 1
| #define HAVE_GETOPT_LONG 1
| #define HAVE_VSNPRINTF 1
| #define HAVE_BACKTRACE 1
| /* end confdefs.h.  */
| /* Define getisax to an innocuous variant, in case <limits.h> declares getisax.
|    For example, HP-UX 11i <limits.h> declares gettimeofday.  */
| #define getisax innocuous_getisax
| 
| /* System header to define __stub macros and hopefully few prototypes,
|     which can conflict with char getisax (); 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 getisax
| 
| /* 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 getisax ();
| /* 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_getisax || defined __stub___getisax
| choke me
| #endif
| 
| int
| main ()
| {
| return getisax ();
|   ;
|   return 0;
| }
configure:15307: result: no
configure:15307: checking for getzoneid
configure:15307: powerpc-poky-linux-gcc -mcpu=603e  -mhard-float --sysroot=/home/kyu3/sdb/test/tmp/sysroots/qemuppc -std=gnu99 -o conftest -O2 -pipe -g -feliminate-unused-debug-types  -Wl,-O1  -Wl,--as-needed conftest.c  >&5
/tmp/ccRinmSW.o: In function `main':
/home/kyu3/sdb/test/tmp/work/ppc603e-poky-linux/xserver-xf86-lite-1.10.1-r0/xorg-server-1.10.1/conftest.c:88: undefined reference to `getzoneid'
collect2: ld returned 1 exit status
configure:15307: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "xorg-server"
| #define PACKAGE_TARNAME "xorg-server"
| #define PACKAGE_VERSION "1.10.1"
| #define PACKAGE_STRING "xorg-server 1.10.1"
| #define PACKAGE_BUGREPORT "https://bugs.freedesktop.org/enter_bug.cgi?product=xorg"
| #define PACKAGE_URL ""
| #define PACKAGE "xorg-server"
| #define VERSION "1.10.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 PACKAGE_VERSION_MAJOR 1
| #define PACKAGE_VERSION_MINOR 10
| #define PACKAGE_VERSION_PATCHLEVEL 1
| #define HAVE_DLFCN_H 1
| #define LT_OBJDIR ".libs/"
| #define YYTEXT_POINTER 1
| #define _FILE_OFFSET_BITS 64
| #define HAVE_DIRENT_H 1
| #define STDC_HEADERS 1
| #define HAVE_FCNTL_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_DLFCN_H 1
| #define HAVE_STROPTS_H 1
| #define HAVE_FNMATCH_H 1
| #define HAVE_SYS_UTSNAME_H 1
| #define SIZEOF_UNSIGNED_LONG 4
| #define HAVE_BYTESWAP_H 1
| #define HAVE_VPRINTF 1
| #define HAVE_GETEUID 1
| #define HAVE_GETUID 1
| #define HAVE_LINK 1
| #define HAVE_MEMMOVE 1
| #define HAVE_MEMSET 1
| #define HAVE_MKSTEMP 1
| #define HAVE_STRCHR 1
| #define HAVE_STRRCHR 1
| #define HAVE_STRTOL 1
| #define HAVE_GETOPT 1
| #define HAVE_GETOPT_LONG 1
| #define HAVE_VSNPRINTF 1
| #define HAVE_BACKTRACE 1
| /* end confdefs.h.  */
| /* Define getzoneid to an innocuous variant, in case <limits.h> declares getzoneid.
|    For example, HP-UX 11i <limits.h> declares gettimeofday.  */
| #define getzoneid innocuous_getzoneid
| 
| /* System header to define __stub macros and hopefully few prototypes,
|     which can conflict with char getzoneid (); 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 getzoneid
| 
| /* 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 getzoneid ();
| /* 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_getzoneid || defined __stub___getzoneid
| choke me
| #endif
| 
| int
| main ()
| {
| return getzoneid ();
|   ;
|   return 0;
| }
configure:15307: result: no
configure:15307: checking for shmctl64
configure:15307: powerpc-poky-linux-gcc -mcpu=603e  -mhard-float --sysroot=/home/kyu3/sdb/test/tmp/sysroots/qemuppc -std=gnu99 -o conftest -O2 -pipe -g -feliminate-unused-debug-types  -Wl,-O1  -Wl,--as-needed conftest.c  >&5
/tmp/ccRPn9c2.o: In function `main':
/home/kyu3/sdb/test/tmp/work/ppc603e-poky-linux/xserver-xf86-lite-1.10.1-r0/xorg-server-1.10.1/conftest.c:88: undefined reference to `shmctl64'
collect2: ld returned 1 exit status
configure:15307: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "xorg-server"
| #define PACKAGE_TARNAME "xorg-server"
| #define PACKAGE_VERSION "1.10.1"
| #define PACKAGE_STRING "xorg-server 1.10.1"
| #define PACKAGE_BUGREPORT "https://bugs.freedesktop.org/enter_bug.cgi?product=xorg"
| #define PACKAGE_URL ""
| #define PACKAGE "xorg-server"
| #define VERSION "1.10.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 PACKAGE_VERSION_MAJOR 1
| #define PACKAGE_VERSION_MINOR 10
| #define PACKAGE_VERSION_PATCHLEVEL 1
| #define HAVE_DLFCN_H 1
| #define LT_OBJDIR ".libs/"
| #define YYTEXT_POINTER 1
| #define _FILE_OFFSET_BITS 64
| #define HAVE_DIRENT_H 1
| #define STDC_HEADERS 1
| #define HAVE_FCNTL_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_DLFCN_H 1
| #define HAVE_STROPTS_H 1
| #define HAVE_FNMATCH_H 1
| #define HAVE_SYS_UTSNAME_H 1
| #define SIZEOF_UNSIGNED_LONG 4
| #define HAVE_BYTESWAP_H 1
| #define HAVE_VPRINTF 1
| #define HAVE_GETEUID 1
| #define HAVE_GETUID 1
| #define HAVE_LINK 1
| #define HAVE_MEMMOVE 1
| #define HAVE_MEMSET 1
| #define HAVE_MKSTEMP 1
| #define HAVE_STRCHR 1
| #define HAVE_STRRCHR 1
| #define HAVE_STRTOL 1
| #define HAVE_GETOPT 1
| #define HAVE_GETOPT_LONG 1
| #define HAVE_VSNPRINTF 1
| #define HAVE_BACKTRACE 1
| /* end confdefs.h.  */
| /* Define shmctl64 to an innocuous variant, in case <limits.h> declares shmctl64.
|    For example, HP-UX 11i <limits.h> declares gettimeofday.  */
| #define shmctl64 innocuous_shmctl64
| 
| /* System header to define __stub macros and hopefully few prototypes,
|     which can conflict with char shmctl64 (); 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 shmctl64
| 
| /* 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 shmctl64 ();
| /* 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_shmctl64 || defined __stub___shmctl64
| choke me
| #endif
| 
| int
| main ()
| {
| return shmctl64 ();
|   ;
|   return 0;
| }
configure:15307: result: no
configure:15307: checking for strcasestr
configure:15307: result: yes
configure:15307: checking for ffs
configure:15307: powerpc-poky-linux-gcc -mcpu=603e  -mhard-float --sysroot=/home/kyu3/sdb/test/tmp/sysroots/qemuppc -std=gnu99 -o conftest -O2 -pipe -g -feliminate-unused-debug-types  -Wl,-O1  -Wl,--as-needed conftest.c  >&5
conftest.c:78:6: warning: conflicting types for built-in function 'ffs' [enabled by default]
configure:15307: $? = 0
configure:15307: result: yes
configure:15307: checking for vasprintf
configure:15307: result: yes
configure:15319: checking for working alloca.h
configure:15336: powerpc-poky-linux-gcc -mcpu=603e  -mhard-float --sysroot=/home/kyu3/sdb/test/tmp/sysroots/qemuppc -std=gnu99 -o conftest -O2 -pipe -g -feliminate-unused-debug-types  -Wl,-O1  -Wl,--as-needed conftest.c  >&5
configure:15336: $? = 0
configure:15344: result: yes
configure:15352: checking for alloca
configure:15389: powerpc-poky-linux-gcc -mcpu=603e  -mhard-float --sysroot=/home/kyu3/sdb/test/tmp/sysroots/qemuppc -std=gnu99 -o conftest -O2 -pipe -g -feliminate-unused-debug-types  -Wl,-O1  -Wl,--as-needed conftest.c  >&5
configure:15389: $? = 0
configure:15397: result: yes
configure:15507: checking for getdtablesize
configure:15507: result: yes
configure:15514: checking for getifaddrs
configure:15514: result: yes
configure:15521: checking for getpeereid
configure:15521: powerpc-poky-linux-gcc -mcpu=603e  -mhard-float --sysroot=/home/kyu3/sdb/test/tmp/sysroots/qemuppc -std=gnu99 -o conftest -O2 -pipe -g -feliminate-unused-debug-types  -Wl,-O1  -Wl,--as-needed conftest.c  >&5
/tmp/cc9jYJQe.o: In function `main':
/home/kyu3/sdb/test/tmp/work/ppc603e-poky-linux/xserver-xf86-lite-1.10.1-r0/xorg-server-1.10.1/conftest.c:95: undefined reference to `getpeereid'
collect2: ld returned 1 exit status
configure:15521: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "xorg-server"
| #define PACKAGE_TARNAME "xorg-server"
| #define PACKAGE_VERSION "1.10.1"
| #define PACKAGE_STRING "xorg-server 1.10.1"
| #define PACKAGE_BUGREPORT "https://bugs.freedesktop.org/enter_bug.cgi?product=xorg"
| #define PACKAGE_URL ""
| #define PACKAGE "xorg-server"
| #define VERSION "1.10.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 PACKAGE_VERSION_MAJOR 1
| #define PACKAGE_VERSION_MINOR 10
| #define PACKAGE_VERSION_PATCHLEVEL 1
| #define HAVE_DLFCN_H 1
| #define LT_OBJDIR ".libs/"
| #define YYTEXT_POINTER 1
| #define _FILE_OFFSET_BITS 64
| #define HAVE_DIRENT_H 1
| #define STDC_HEADERS 1
| #define HAVE_FCNTL_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_DLFCN_H 1
| #define HAVE_STROPTS_H 1
| #define HAVE_FNMATCH_H 1
| #define HAVE_SYS_UTSNAME_H 1
| #define SIZEOF_UNSIGNED_LONG 4
| #define HAVE_BYTESWAP_H 1
| #define HAVE_VPRINTF 1
| #define HAVE_GETEUID 1
| #define HAVE_GETUID 1
| #define HAVE_LINK 1
| #define HAVE_MEMMOVE 1
| #define HAVE_MEMSET 1
| #define HAVE_MKSTEMP 1
| #define HAVE_STRCHR 1
| #define HAVE_STRRCHR 1
| #define HAVE_STRTOL 1
| #define HAVE_GETOPT 1
| #define HAVE_GETOPT_LONG 1
| #define HAVE_VSNPRINTF 1
| #define HAVE_BACKTRACE 1
| #define HAVE_STRCASESTR 1
| #define HAVE_FFS 1
| #define HAVE_VASPRINTF 1
| #define HAVE_ALLOCA_H 1
| #define HAVE_ALLOCA 1
| #define HAS_GETDTABLESIZE 1
| #define HAS_GETIFADDRS 1
| /* end confdefs.h.  */
| /* Define getpeereid to an innocuous variant, in case <limits.h> declares getpeereid.
|    For example, HP-UX 11i <limits.h> declares gettimeofday.  */
| #define getpeereid innocuous_getpeereid
| 
| /* System header to define __stub macros and hopefully few prototypes,
|     which can conflict with char getpeereid (); 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 getpeereid
| 
| /* 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 getpeereid ();
| /* 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_getpeereid || defined __stub___getpeereid
| choke me
| #endif
| 
| int
| main ()
| {
| return getpeereid ();
|   ;
|   return 0;
| }
configure:15521: result: no
configure:15528: checking for getpeerucred
configure:15528: powerpc-poky-linux-gcc -mcpu=603e  -mhard-float --sysroot=/home/kyu3/sdb/test/tmp/sysroots/qemuppc -std=gnu99 -o conftest -O2 -pipe -g -feliminate-unused-debug-types  -Wl,-O1  -Wl,--as-needed conftest.c  >&5
/tmp/cc5Jpqvh.o: In function `main':
/home/kyu3/sdb/test/tmp/work/ppc603e-poky-linux/xserver-xf86-lite-1.10.1-r0/xorg-server-1.10.1/conftest.c:95: undefined reference to `getpeerucred'
collect2: ld returned 1 exit status
configure:15528: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "xorg-server"
| #define PACKAGE_TARNAME "xorg-server"
| #define PACKAGE_VERSION "1.10.1"
| #define PACKAGE_STRING "xorg-server 1.10.1"
| #define PACKAGE_BUGREPORT "https://bugs.freedesktop.org/enter_bug.cgi?product=xorg"
| #define PACKAGE_URL ""
| #define PACKAGE "xorg-server"
| #define VERSION "1.10.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 PACKAGE_VERSION_MAJOR 1
| #define PACKAGE_VERSION_MINOR 10
| #define PACKAGE_VERSION_PATCHLEVEL 1
| #define HAVE_DLFCN_H 1
| #define LT_OBJDIR ".libs/"
| #define YYTEXT_POINTER 1
| #define _FILE_OFFSET_BITS 64
| #define HAVE_DIRENT_H 1
| #define STDC_HEADERS 1
| #define HAVE_FCNTL_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_DLFCN_H 1
| #define HAVE_STROPTS_H 1
| #define HAVE_FNMATCH_H 1
| #define HAVE_SYS_UTSNAME_H 1
| #define SIZEOF_UNSIGNED_LONG 4
| #define HAVE_BYTESWAP_H 1
| #define HAVE_VPRINTF 1
| #define HAVE_GETEUID 1
| #define HAVE_GETUID 1
| #define HAVE_LINK 1
| #define HAVE_MEMMOVE 1
| #define HAVE_MEMSET 1
| #define HAVE_MKSTEMP 1
| #define HAVE_STRCHR 1
| #define HAVE_STRRCHR 1
| #define HAVE_STRTOL 1
| #define HAVE_GETOPT 1
| #define HAVE_GETOPT_LONG 1
| #define HAVE_VSNPRINTF 1
| #define HAVE_BACKTRACE 1
| #define HAVE_STRCASESTR 1
| #define HAVE_FFS 1
| #define HAVE_VASPRINTF 1
| #define HAVE_ALLOCA_H 1
| #define HAVE_ALLOCA 1
| #define HAS_GETDTABLESIZE 1
| #define HAS_GETIFADDRS 1
| /* end confdefs.h.  */
| /* Define getpeerucred to an innocuous variant, in case <limits.h> declares getpeerucred.
|    For example, HP-UX 11i <limits.h> declares gettimeofday.  */
| #define getpeerucred innocuous_getpeerucred
| 
| /* System header to define __stub macros and hopefully few prototypes,
|     which can conflict with char getpeerucred (); 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 getpeerucred
| 
| /* 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 getpeerucred ();
| /* 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_getpeerucred || defined __stub___getpeerucred
| choke me
| #endif
| 
| int
| main ()
| {
| return getpeerucred ();
|   ;
|   return 0;
| }
configure:15528: result: no
configure:15535: checking for strlcat
configure:15535: powerpc-poky-linux-gcc -mcpu=603e  -mhard-float --sysroot=/home/kyu3/sdb/test/tmp/sysroots/qemuppc -std=gnu99 -o conftest -O2 -pipe -g -feliminate-unused-debug-types  -Wl,-O1  -Wl,--as-needed conftest.c  >&5
/tmp/ccrnWdgi.o: In function `main':
/home/kyu3/sdb/test/tmp/work/ppc603e-poky-linux/xserver-xf86-lite-1.10.1-r0/xorg-server-1.10.1/conftest.c:95: undefined reference to `strlcat'
collect2: ld returned 1 exit status
configure:15535: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "xorg-server"
| #define PACKAGE_TARNAME "xorg-server"
| #define PACKAGE_VERSION "1.10.1"
| #define PACKAGE_STRING "xorg-server 1.10.1"
| #define PACKAGE_BUGREPORT "https://bugs.freedesktop.org/enter_bug.cgi?product=xorg"
| #define PACKAGE_URL ""
| #define PACKAGE "xorg-server"
| #define VERSION "1.10.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 PACKAGE_VERSION_MAJOR 1
| #define PACKAGE_VERSION_MINOR 10
| #define PACKAGE_VERSION_PATCHLEVEL 1
| #define HAVE_DLFCN_H 1
| #define LT_OBJDIR ".libs/"
| #define YYTEXT_POINTER 1
| #define _FILE_OFFSET_BITS 64
| #define HAVE_DIRENT_H 1
| #define STDC_HEADERS 1
| #define HAVE_FCNTL_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_DLFCN_H 1
| #define HAVE_STROPTS_H 1
| #define HAVE_FNMATCH_H 1
| #define HAVE_SYS_UTSNAME_H 1
| #define SIZEOF_UNSIGNED_LONG 4
| #define HAVE_BYTESWAP_H 1
| #define HAVE_VPRINTF 1
| #define HAVE_GETEUID 1
| #define HAVE_GETUID 1
| #define HAVE_LINK 1
| #define HAVE_MEMMOVE 1
| #define HAVE_MEMSET 1
| #define HAVE_MKSTEMP 1
| #define HAVE_STRCHR 1
| #define HAVE_STRRCHR 1
| #define HAVE_STRTOL 1
| #define HAVE_GETOPT 1
| #define HAVE_GETOPT_LONG 1
| #define HAVE_VSNPRINTF 1
| #define HAVE_BACKTRACE 1
| #define HAVE_STRCASESTR 1
| #define HAVE_FFS 1
| #define HAVE_VASPRINTF 1
| #define HAVE_ALLOCA_H 1
| #define HAVE_ALLOCA 1
| #define HAS_GETDTABLESIZE 1
| #define HAS_GETIFADDRS 1
| /* end confdefs.h.  */
| /* Define strlcat to an innocuous variant, in case <limits.h> declares strlcat.
|    For example, HP-UX 11i <limits.h> declares gettimeofday.  */
| #define strlcat innocuous_strlcat
| 
| /* System header to define __stub macros and hopefully few prototypes,
|     which can conflict with char strlcat (); 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 strlcat
| 
| /* 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 strlcat ();
| /* 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_strlcat || defined __stub___strlcat
| choke me
| #endif
| 
| int
| main ()
| {
| return strlcat ();
|   ;
|   return 0;
| }
configure:15535: result: no
configure:15550: checking for strlcpy
configure:15550: powerpc-poky-linux-gcc -mcpu=603e  -mhard-float --sysroot=/home/kyu3/sdb/test/tmp/sysroots/qemuppc -std=gnu99 -o conftest -O2 -pipe -g -feliminate-unused-debug-types  -Wl,-O1  -Wl,--as-needed conftest.c  >&5
/tmp/ccC9QJrl.o: In function `main':
/home/kyu3/sdb/test/tmp/work/ppc603e-poky-linux/xserver-xf86-lite-1.10.1-r0/xorg-server-1.10.1/conftest.c:95: undefined reference to `strlcpy'
collect2: ld returned 1 exit status
configure:15550: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "xorg-server"
| #define PACKAGE_TARNAME "xorg-server"
| #define PACKAGE_VERSION "1.10.1"
| #define PACKAGE_STRING "xorg-server 1.10.1"
| #define PACKAGE_BUGREPORT "https://bugs.freedesktop.org/enter_bug.cgi?product=xorg"
| #define PACKAGE_URL ""
| #define PACKAGE "xorg-server"
| #define VERSION "1.10.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 PACKAGE_VERSION_MAJOR 1
| #define PACKAGE_VERSION_MINOR 10
| #define PACKAGE_VERSION_PATCHLEVEL 1
| #define HAVE_DLFCN_H 1
| #define LT_OBJDIR ".libs/"
| #define YYTEXT_POINTER 1
| #define _FILE_OFFSET_BITS 64
| #define HAVE_DIRENT_H 1
| #define STDC_HEADERS 1
| #define HAVE_FCNTL_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_DLFCN_H 1
| #define HAVE_STROPTS_H 1
| #define HAVE_FNMATCH_H 1
| #define HAVE_SYS_UTSNAME_H 1
| #define SIZEOF_UNSIGNED_LONG 4
| #define HAVE_BYTESWAP_H 1
| #define HAVE_VPRINTF 1
| #define HAVE_GETEUID 1
| #define HAVE_GETUID 1
| #define HAVE_LINK 1
| #define HAVE_MEMMOVE 1
| #define HAVE_MEMSET 1
| #define HAVE_MKSTEMP 1
| #define HAVE_STRCHR 1
| #define HAVE_STRRCHR 1
| #define HAVE_STRTOL 1
| #define HAVE_GETOPT 1
| #define HAVE_GETOPT_LONG 1
| #define HAVE_VSNPRINTF 1
| #define HAVE_BACKTRACE 1
| #define HAVE_STRCASESTR 1
| #define HAVE_FFS 1
| #define HAVE_VASPRINTF 1
| #define HAVE_ALLOCA_H 1
| #define HAVE_ALLOCA 1
| #define HAS_GETDTABLESIZE 1
| #define HAS_GETIFADDRS 1
| /* end confdefs.h.  */
| /* Define strlcpy to an innocuous variant, in case <limits.h> declares strlcpy.
|    For example, HP-UX 11i <limits.h> declares gettimeofday.  */
| #define strlcpy innocuous_strlcpy
| 
| /* System header to define __stub macros and hopefully few prototypes,
|     which can conflict with char strlcpy (); 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 strlcpy
| 
| /* 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 strlcpy ();
| /* 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_strlcpy || defined __stub___strlcpy
| choke me
| #endif
| 
| int
| main ()
| {
| return strlcpy ();
|   ;
|   return 0;
| }
configure:15550: result: no
configure:15567: checking for mmap
configure:15567: result: yes
configure:15575: checking for sqrt in -lm
configure:15600: powerpc-poky-linux-gcc -mcpu=603e  -mhard-float --sysroot=/home/kyu3/sdb/test/tmp/sysroots/qemuppc -std=gnu99 -o conftest -O2 -pipe -g -feliminate-unused-debug-types  -Wl,-O1  -Wl,--as-needed conftest.c -lm   >&5
conftest.c:69:6: warning: conflicting types for built-in function 'sqrt' [enabled by default]
configure:15600: $? = 0
configure:15609: result: yes
configure:15620: checking for cbrt in -lm
configure:15645: powerpc-poky-linux-gcc -mcpu=603e  -mhard-float --sysroot=/home/kyu3/sdb/test/tmp/sysroots/qemuppc -std=gnu99 -o conftest -O2 -pipe -g -feliminate-unused-debug-types  -Wl,-O1  -Wl,--as-needed conftest.c -lm  -lm  >&5
conftest.c:70:6: warning: conflicting types for built-in function 'cbrt' [enabled by default]
configure:15645: $? = 0
configure:15654: result: yes
configure:15666: checking ndbm.h usability
configure:15666: powerpc-poky-linux-gcc -mcpu=603e  -mhard-float --sysroot=/home/kyu3/sdb/test/tmp/sysroots/qemuppc -std=gnu99 -c -O2 -pipe -g -feliminate-unused-debug-types  conftest.c >&5
conftest.c:97:18: fatal error: ndbm.h: No such file or directory
compilation terminated.
configure:15666: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "xorg-server"
| #define PACKAGE_TARNAME "xorg-server"
| #define PACKAGE_VERSION "1.10.1"
| #define PACKAGE_STRING "xorg-server 1.10.1"
| #define PACKAGE_BUGREPORT "https://bugs.freedesktop.org/enter_bug.cgi?product=xorg"
| #define PACKAGE_URL ""
| #define PACKAGE "xorg-server"
| #define VERSION "1.10.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 PACKAGE_VERSION_MAJOR 1
| #define PACKAGE_VERSION_MINOR 10
| #define PACKAGE_VERSION_PATCHLEVEL 1
| #define HAVE_DLFCN_H 1
| #define LT_OBJDIR ".libs/"
| #define YYTEXT_POINTER 1
| #define _FILE_OFFSET_BITS 64
| #define HAVE_DIRENT_H 1
| #define STDC_HEADERS 1
| #define HAVE_FCNTL_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_DLFCN_H 1
| #define HAVE_STROPTS_H 1
| #define HAVE_FNMATCH_H 1
| #define HAVE_SYS_UTSNAME_H 1
| #define SIZEOF_UNSIGNED_LONG 4
| #define HAVE_BYTESWAP_H 1
| #define HAVE_VPRINTF 1
| #define HAVE_GETEUID 1
| #define HAVE_GETUID 1
| #define HAVE_LINK 1
| #define HAVE_MEMMOVE 1
| #define HAVE_MEMSET 1
| #define HAVE_MKSTEMP 1
| #define HAVE_STRCHR 1
| #define HAVE_STRRCHR 1
| #define HAVE_STRTOL 1
| #define HAVE_GETOPT 1
| #define HAVE_GETOPT_LONG 1
| #define HAVE_VSNPRINTF 1
| #define HAVE_BACKTRACE 1
| #define HAVE_STRCASESTR 1
| #define HAVE_FFS 1
| #define HAVE_VASPRINTF 1
| #define HAVE_ALLOCA_H 1
| #define HAVE_ALLOCA 1
| #define HAS_GETDTABLESIZE 1
| #define HAS_GETIFADDRS 1
| #define HAS_MMAP 1
| #define HAVE_LIBM 1
| #define HAVE_CBRT 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 <ndbm.h>
configure:15666: result: no
configure:15666: checking ndbm.h presence
configure:15666: powerpc-poky-linux-gcc -E --sysroot=/home/kyu3/sdb/test/tmp/sysroots/qemuppc  conftest.c
conftest.c:64:18: fatal error: ndbm.h: No such file or directory
compilation terminated.
configure:15666: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "xorg-server"
| #define PACKAGE_TARNAME "xorg-server"
| #define PACKAGE_VERSION "1.10.1"
| #define PACKAGE_STRING "xorg-server 1.10.1"
| #define PACKAGE_BUGREPORT "https://bugs.freedesktop.org/enter_bug.cgi?product=xorg"
| #define PACKAGE_URL ""
| #define PACKAGE "xorg-server"
| #define VERSION "1.10.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 PACKAGE_VERSION_MAJOR 1
| #define PACKAGE_VERSION_MINOR 10
| #define PACKAGE_VERSION_PATCHLEVEL 1
| #define HAVE_DLFCN_H 1
| #define LT_OBJDIR ".libs/"
| #define YYTEXT_POINTER 1
| #define _FILE_OFFSET_BITS 64
| #define HAVE_DIRENT_H 1
| #define STDC_HEADERS 1
| #define HAVE_FCNTL_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_DLFCN_H 1
| #define HAVE_STROPTS_H 1
| #define HAVE_FNMATCH_H 1
| #define HAVE_SYS_UTSNAME_H 1
| #define SIZEOF_UNSIGNED_LONG 4
| #define HAVE_BYTESWAP_H 1
| #define HAVE_VPRINTF 1
| #define HAVE_GETEUID 1
| #define HAVE_GETUID 1
| #define HAVE_LINK 1
| #define HAVE_MEMMOVE 1
| #define HAVE_MEMSET 1
| #define HAVE_MKSTEMP 1
| #define HAVE_STRCHR 1
| #define HAVE_STRRCHR 1
| #define HAVE_STRTOL 1
| #define HAVE_GETOPT 1
| #define HAVE_GETOPT_LONG 1
| #define HAVE_VSNPRINTF 1
| #define HAVE_BACKTRACE 1
| #define HAVE_STRCASESTR 1
| #define HAVE_FFS 1
| #define HAVE_VASPRINTF 1
| #define HAVE_ALLOCA_H 1
| #define HAVE_ALLOCA 1
| #define HAS_GETDTABLESIZE 1
| #define HAS_GETIFADDRS 1
| #define HAS_MMAP 1
| #define HAVE_LIBM 1
| #define HAVE_CBRT 1
| /* end confdefs.h.  */
| #include <ndbm.h>
configure:15666: result: no
configure:15666: checking for ndbm.h
configure:15666: result: no
configure:15666: checking dbm.h usability
configure:15666: powerpc-poky-linux-gcc -mcpu=603e  -mhard-float --sysroot=/home/kyu3/sdb/test/tmp/sysroots/qemuppc -std=gnu99 -c -O2 -pipe -g -feliminate-unused-debug-types  conftest.c >&5
conftest.c:97:17: fatal error: dbm.h: No such file or directory
compilation terminated.
configure:15666: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "xorg-server"
| #define PACKAGE_TARNAME "xorg-server"
| #define PACKAGE_VERSION "1.10.1"
| #define PACKAGE_STRING "xorg-server 1.10.1"
| #define PACKAGE_BUGREPORT "https://bugs.freedesktop.org/enter_bug.cgi?product=xorg"
| #define PACKAGE_URL ""
| #define PACKAGE "xorg-server"
| #define VERSION "1.10.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 PACKAGE_VERSION_MAJOR 1
| #define PACKAGE_VERSION_MINOR 10
| #define PACKAGE_VERSION_PATCHLEVEL 1
| #define HAVE_DLFCN_H 1
| #define LT_OBJDIR ".libs/"
| #define YYTEXT_POINTER 1
| #define _FILE_OFFSET_BITS 64
| #define HAVE_DIRENT_H 1
| #define STDC_HEADERS 1
| #define HAVE_FCNTL_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_DLFCN_H 1
| #define HAVE_STROPTS_H 1
| #define HAVE_FNMATCH_H 1
| #define HAVE_SYS_UTSNAME_H 1
| #define SIZEOF_UNSIGNED_LONG 4
| #define HAVE_BYTESWAP_H 1
| #define HAVE_VPRINTF 1
| #define HAVE_GETEUID 1
| #define HAVE_GETUID 1
| #define HAVE_LINK 1
| #define HAVE_MEMMOVE 1
| #define HAVE_MEMSET 1
| #define HAVE_MKSTEMP 1
| #define HAVE_STRCHR 1
| #define HAVE_STRRCHR 1
| #define HAVE_STRTOL 1
| #define HAVE_GETOPT 1
| #define HAVE_GETOPT_LONG 1
| #define HAVE_VSNPRINTF 1
| #define HAVE_BACKTRACE 1
| #define HAVE_STRCASESTR 1
| #define HAVE_FFS 1
| #define HAVE_VASPRINTF 1
| #define HAVE_ALLOCA_H 1
| #define HAVE_ALLOCA 1
| #define HAS_GETDTABLESIZE 1
| #define HAS_GETIFADDRS 1
| #define HAS_MMAP 1
| #define HAVE_LIBM 1
| #define HAVE_CBRT 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 <dbm.h>
configure:15666: result: no
configure:15666: checking dbm.h presence
configure:15666: powerpc-poky-linux-gcc -E --sysroot=/home/kyu3/sdb/test/tmp/sysroots/qemuppc  conftest.c
conftest.c:64:17: fatal error: dbm.h: No such file or directory
compilation terminated.
configure:15666: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "xorg-server"
| #define PACKAGE_TARNAME "xorg-server"
| #define PACKAGE_VERSION "1.10.1"
| #define PACKAGE_STRING "xorg-server 1.10.1"
| #define PACKAGE_BUGREPORT "https://bugs.freedesktop.org/enter_bug.cgi?product=xorg"
| #define PACKAGE_URL ""
| #define PACKAGE "xorg-server"
| #define VERSION "1.10.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 PACKAGE_VERSION_MAJOR 1
| #define PACKAGE_VERSION_MINOR 10
| #define PACKAGE_VERSION_PATCHLEVEL 1
| #define HAVE_DLFCN_H 1
| #define LT_OBJDIR ".libs/"
| #define YYTEXT_POINTER 1
| #define _FILE_OFFSET_BITS 64
| #define HAVE_DIRENT_H 1
| #define STDC_HEADERS 1
| #define HAVE_FCNTL_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_DLFCN_H 1
| #define HAVE_STROPTS_H 1
| #define HAVE_FNMATCH_H 1
| #define HAVE_SYS_UTSNAME_H 1
| #define SIZEOF_UNSIGNED_LONG 4
| #define HAVE_BYTESWAP_H 1
| #define HAVE_VPRINTF 1
| #define HAVE_GETEUID 1
| #define HAVE_GETUID 1
| #define HAVE_LINK 1
| #define HAVE_MEMMOVE 1
| #define HAVE_MEMSET 1
| #define HAVE_MKSTEMP 1
| #define HAVE_STRCHR 1
| #define HAVE_STRRCHR 1
| #define HAVE_STRTOL 1
| #define HAVE_GETOPT 1
| #define HAVE_GETOPT_LONG 1
| #define HAVE_VSNPRINTF 1
| #define HAVE_BACKTRACE 1
| #define HAVE_STRCASESTR 1
| #define HAVE_FFS 1
| #define HAVE_VASPRINTF 1
| #define HAVE_ALLOCA_H 1
| #define HAVE_ALLOCA 1
| #define HAS_GETDTABLESIZE 1
| #define HAS_GETIFADDRS 1
| #define HAS_MMAP 1
| #define HAVE_LIBM 1
| #define HAVE_CBRT 1
| /* end confdefs.h.  */
| #include <dbm.h>
configure:15666: result: no
configure:15666: checking for dbm.h
configure:15666: result: no
configure:15666: checking rpcsvc/dbm.h usability
configure:15666: powerpc-poky-linux-gcc -mcpu=603e  -mhard-float --sysroot=/home/kyu3/sdb/test/tmp/sysroots/qemuppc -std=gnu99 -c -O2 -pipe -g -feliminate-unused-debug-types  conftest.c >&5
conftest.c:97:24: fatal error: rpcsvc/dbm.h: No such file or directory
compilation terminated.
configure:15666: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "xorg-server"
| #define PACKAGE_TARNAME "xorg-server"
| #define PACKAGE_VERSION "1.10.1"
| #define PACKAGE_STRING "xorg-server 1.10.1"
| #define PACKAGE_BUGREPORT "https://bugs.freedesktop.org/enter_bug.cgi?product=xorg"
| #define PACKAGE_URL ""
| #define PACKAGE "xorg-server"
| #define VERSION "1.10.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 PACKAGE_VERSION_MAJOR 1
| #define PACKAGE_VERSION_MINOR 10
| #define PACKAGE_VERSION_PATCHLEVEL 1
| #define HAVE_DLFCN_H 1
| #define LT_OBJDIR ".libs/"
| #define YYTEXT_POINTER 1
| #define _FILE_OFFSET_BITS 64
| #define HAVE_DIRENT_H 1
| #define STDC_HEADERS 1
| #define HAVE_FCNTL_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_DLFCN_H 1
| #define HAVE_STROPTS_H 1
| #define HAVE_FNMATCH_H 1
| #define HAVE_SYS_UTSNAME_H 1
| #define SIZEOF_UNSIGNED_LONG 4
| #define HAVE_BYTESWAP_H 1
| #define HAVE_VPRINTF 1
| #define HAVE_GETEUID 1
| #define HAVE_GETUID 1
| #define HAVE_LINK 1
| #define HAVE_MEMMOVE 1
| #define HAVE_MEMSET 1
| #define HAVE_MKSTEMP 1
| #define HAVE_STRCHR 1
| #define HAVE_STRRCHR 1
| #define HAVE_STRTOL 1
| #define HAVE_GETOPT 1
| #define HAVE_GETOPT_LONG 1
| #define HAVE_VSNPRINTF 1
| #define HAVE_BACKTRACE 1
| #define HAVE_STRCASESTR 1
| #define HAVE_FFS 1
| #define HAVE_VASPRINTF 1
| #define HAVE_ALLOCA_H 1
| #define HAVE_ALLOCA 1
| #define HAS_GETDTABLESIZE 1
| #define HAS_GETIFADDRS 1
| #define HAS_MMAP 1
| #define HAVE_LIBM 1
| #define HAVE_CBRT 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 <rpcsvc/dbm.h>
configure:15666: result: no
configure:15666: checking rpcsvc/dbm.h presence
configure:15666: powerpc-poky-linux-gcc -E --sysroot=/home/kyu3/sdb/test/tmp/sysroots/qemuppc  conftest.c
conftest.c:64:24: fatal error: rpcsvc/dbm.h: No such file or directory
compilation terminated.
configure:15666: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "xorg-server"
| #define PACKAGE_TARNAME "xorg-server"
| #define PACKAGE_VERSION "1.10.1"
| #define PACKAGE_STRING "xorg-server 1.10.1"
| #define PACKAGE_BUGREPORT "https://bugs.freedesktop.org/enter_bug.cgi?product=xorg"
| #define PACKAGE_URL ""
| #define PACKAGE "xorg-server"
| #define VERSION "1.10.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 PACKAGE_VERSION_MAJOR 1
| #define PACKAGE_VERSION_MINOR 10
| #define PACKAGE_VERSION_PATCHLEVEL 1
| #define HAVE_DLFCN_H 1
| #define LT_OBJDIR ".libs/"
| #define YYTEXT_POINTER 1
| #define _FILE_OFFSET_BITS 64
| #define HAVE_DIRENT_H 1
| #define STDC_HEADERS 1
| #define HAVE_FCNTL_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_DLFCN_H 1
| #define HAVE_STROPTS_H 1
| #define HAVE_FNMATCH_H 1
| #define HAVE_SYS_UTSNAME_H 1
| #define SIZEOF_UNSIGNED_LONG 4
| #define HAVE_BYTESWAP_H 1
| #define HAVE_VPRINTF 1
| #define HAVE_GETEUID 1
| #define HAVE_GETUID 1
| #define HAVE_LINK 1
| #define HAVE_MEMMOVE 1
| #define HAVE_MEMSET 1
| #define HAVE_MKSTEMP 1
| #define HAVE_STRCHR 1
| #define HAVE_STRRCHR 1
| #define HAVE_STRTOL 1
| #define HAVE_GETOPT 1
| #define HAVE_GETOPT_LONG 1
| #define HAVE_VSNPRINTF 1
| #define HAVE_BACKTRACE 1
| #define HAVE_STRCASESTR 1
| #define HAVE_FFS 1
| #define HAVE_VASPRINTF 1
| #define HAVE_ALLOCA_H 1
| #define HAVE_ALLOCA 1
| #define HAS_GETDTABLESIZE 1
| #define HAS_GETIFADDRS 1
| #define HAS_MMAP 1
| #define HAVE_LIBM 1
| #define HAVE_CBRT 1
| /* end confdefs.h.  */
| #include <rpcsvc/dbm.h>
configure:15666: result: no
configure:15666: checking for rpcsvc/dbm.h
configure:15666: result: no
configure:15681: checking linux/agpgart.h usability
configure:15681: powerpc-poky-linux-gcc -mcpu=603e  -mhard-float --sysroot=/home/kyu3/sdb/test/tmp/sysroots/qemuppc -std=gnu99 -c -O2 -pipe -g -feliminate-unused-debug-types  conftest.c >&5
configure:15681: $? = 0
configure:15681: result: yes
configure:15681: checking linux/agpgart.h presence
configure:15681: powerpc-poky-linux-gcc -E --sysroot=/home/kyu3/sdb/test/tmp/sysroots/qemuppc  conftest.c
configure:15681: $? = 0
configure:15681: result: yes
configure:15681: checking for linux/agpgart.h
configure:15681: result: yes
configure:15681: checking sys/agpio.h usability
configure:15681: powerpc-poky-linux-gcc -mcpu=603e  -mhard-float --sysroot=/home/kyu3/sdb/test/tmp/sysroots/qemuppc -std=gnu99 -c -O2 -pipe -g -feliminate-unused-debug-types  conftest.c >&5
conftest.c:98:23: fatal error: sys/agpio.h: No such file or directory
compilation terminated.
configure:15681: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "xorg-server"
| #define PACKAGE_TARNAME "xorg-server"
| #define PACKAGE_VERSION "1.10.1"
| #define PACKAGE_STRING "xorg-server 1.10.1"
| #define PACKAGE_BUGREPORT "https://bugs.freedesktop.org/enter_bug.cgi?product=xorg"
| #define PACKAGE_URL ""
| #define PACKAGE "xorg-server"
| #define VERSION "1.10.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 PACKAGE_VERSION_MAJOR 1
| #define PACKAGE_VERSION_MINOR 10
| #define PACKAGE_VERSION_PATCHLEVEL 1
| #define HAVE_DLFCN_H 1
| #define LT_OBJDIR ".libs/"
| #define YYTEXT_POINTER 1
| #define _FILE_OFFSET_BITS 64
| #define HAVE_DIRENT_H 1
| #define STDC_HEADERS 1
| #define HAVE_FCNTL_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_DLFCN_H 1
| #define HAVE_STROPTS_H 1
| #define HAVE_FNMATCH_H 1
| #define HAVE_SYS_UTSNAME_H 1
| #define SIZEOF_UNSIGNED_LONG 4
| #define HAVE_BYTESWAP_H 1
| #define HAVE_VPRINTF 1
| #define HAVE_GETEUID 1
| #define HAVE_GETUID 1
| #define HAVE_LINK 1
| #define HAVE_MEMMOVE 1
| #define HAVE_MEMSET 1
| #define HAVE_MKSTEMP 1
| #define HAVE_STRCHR 1
| #define HAVE_STRRCHR 1
| #define HAVE_STRTOL 1
| #define HAVE_GETOPT 1
| #define HAVE_GETOPT_LONG 1
| #define HAVE_VSNPRINTF 1
| #define HAVE_BACKTRACE 1
| #define HAVE_STRCASESTR 1
| #define HAVE_FFS 1
| #define HAVE_VASPRINTF 1
| #define HAVE_ALLOCA_H 1
| #define HAVE_ALLOCA 1
| #define HAS_GETDTABLESIZE 1
| #define HAS_GETIFADDRS 1
| #define HAS_MMAP 1
| #define HAVE_LIBM 1
| #define HAVE_CBRT 1
| #define HAVE_LINUX_AGPGART_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/agpio.h>
configure:15681: result: no
configure:15681: checking sys/agpio.h presence
configure:15681: powerpc-poky-linux-gcc -E --sysroot=/home/kyu3/sdb/test/tmp/sysroots/qemuppc  conftest.c
conftest.c:65:23: fatal error: sys/agpio.h: No such file or directory
compilation terminated.
configure:15681: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "xorg-server"
| #define PACKAGE_TARNAME "xorg-server"
| #define PACKAGE_VERSION "1.10.1"
| #define PACKAGE_STRING "xorg-server 1.10.1"
| #define PACKAGE_BUGREPORT "https://bugs.freedesktop.org/enter_bug.cgi?product=xorg"
| #define PACKAGE_URL ""
| #define PACKAGE "xorg-server"
| #define VERSION "1.10.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 PACKAGE_VERSION_MAJOR 1
| #define PACKAGE_VERSION_MINOR 10
| #define PACKAGE_VERSION_PATCHLEVEL 1
| #define HAVE_DLFCN_H 1
| #define LT_OBJDIR ".libs/"
| #define YYTEXT_POINTER 1
| #define _FILE_OFFSET_BITS 64
| #define HAVE_DIRENT_H 1
| #define STDC_HEADERS 1
| #define HAVE_FCNTL_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_DLFCN_H 1
| #define HAVE_STROPTS_H 1
| #define HAVE_FNMATCH_H 1
| #define HAVE_SYS_UTSNAME_H 1
| #define SIZEOF_UNSIGNED_LONG 4
| #define HAVE_BYTESWAP_H 1
| #define HAVE_VPRINTF 1
| #define HAVE_GETEUID 1
| #define HAVE_GETUID 1
| #define HAVE_LINK 1
| #define HAVE_MEMMOVE 1
| #define HAVE_MEMSET 1
| #define HAVE_MKSTEMP 1
| #define HAVE_STRCHR 1
| #define HAVE_STRRCHR 1
| #define HAVE_STRTOL 1
| #define HAVE_GETOPT 1
| #define HAVE_GETOPT_LONG 1
| #define HAVE_VSNPRINTF 1
| #define HAVE_BACKTRACE 1
| #define HAVE_STRCASESTR 1
| #define HAVE_FFS 1
| #define HAVE_VASPRINTF 1
| #define HAVE_ALLOCA_H 1
| #define HAVE_ALLOCA 1
| #define HAS_GETDTABLESIZE 1
| #define HAS_GETIFADDRS 1
| #define HAS_MMAP 1
| #define HAVE_LIBM 1
| #define HAVE_CBRT 1
| #define HAVE_LINUX_AGPGART_H 1
| /* end confdefs.h.  */
| #include <sys/agpio.h>
configure:15681: result: no
configure:15681: checking for sys/agpio.h
configure:15681: result: no
configure:15681: checking sys/agpgart.h usability
configure:15681: powerpc-poky-linux-gcc -mcpu=603e  -mhard-float --sysroot=/home/kyu3/sdb/test/tmp/sysroots/qemuppc -std=gnu99 -c -O2 -pipe -g -feliminate-unused-debug-types  conftest.c >&5
conftest.c:98:25: fatal error: sys/agpgart.h: No such file or directory
compilation terminated.
configure:15681: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "xorg-server"
| #define PACKAGE_TARNAME "xorg-server"
| #define PACKAGE_VERSION "1.10.1"
| #define PACKAGE_STRING "xorg-server 1.10.1"
| #define PACKAGE_BUGREPORT "https://bugs.freedesktop.org/enter_bug.cgi?product=xorg"
| #define PACKAGE_URL ""
| #define PACKAGE "xorg-server"
| #define VERSION "1.10.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 PACKAGE_VERSION_MAJOR 1
| #define PACKAGE_VERSION_MINOR 10
| #define PACKAGE_VERSION_PATCHLEVEL 1
| #define HAVE_DLFCN_H 1
| #define LT_OBJDIR ".libs/"
| #define YYTEXT_POINTER 1
| #define _FILE_OFFSET_BITS 64
| #define HAVE_DIRENT_H 1
| #define STDC_HEADERS 1
| #define HAVE_FCNTL_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_DLFCN_H 1
| #define HAVE_STROPTS_H 1
| #define HAVE_FNMATCH_H 1
| #define HAVE_SYS_UTSNAME_H 1
| #define SIZEOF_UNSIGNED_LONG 4
| #define HAVE_BYTESWAP_H 1
| #define HAVE_VPRINTF 1
| #define HAVE_GETEUID 1
| #define HAVE_GETUID 1
| #define HAVE_LINK 1
| #define HAVE_MEMMOVE 1
| #define HAVE_MEMSET 1
| #define HAVE_MKSTEMP 1
| #define HAVE_STRCHR 1
| #define HAVE_STRRCHR 1
| #define HAVE_STRTOL 1
| #define HAVE_GETOPT 1
| #define HAVE_GETOPT_LONG 1
| #define HAVE_VSNPRINTF 1
| #define HAVE_BACKTRACE 1
| #define HAVE_STRCASESTR 1
| #define HAVE_FFS 1
| #define HAVE_VASPRINTF 1
| #define HAVE_ALLOCA_H 1
| #define HAVE_ALLOCA 1
| #define HAS_GETDTABLESIZE 1
| #define HAS_GETIFADDRS 1
| #define HAS_MMAP 1
| #define HAVE_LIBM 1
| #define HAVE_CBRT 1
| #define HAVE_LINUX_AGPGART_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/agpgart.h>
configure:15681: result: no
configure:15681: checking sys/agpgart.h presence
configure:15681: powerpc-poky-linux-gcc -E --sysroot=/home/kyu3/sdb/test/tmp/sysroots/qemuppc  conftest.c
conftest.c:65:25: fatal error: sys/agpgart.h: No such file or directory
compilation terminated.
configure:15681: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "xorg-server"
| #define PACKAGE_TARNAME "xorg-server"
| #define PACKAGE_VERSION "1.10.1"
| #define PACKAGE_STRING "xorg-server 1.10.1"
| #define PACKAGE_BUGREPORT "https://bugs.freedesktop.org/enter_bug.cgi?product=xorg"
| #define PACKAGE_URL ""
| #define PACKAGE "xorg-server"
| #define VERSION "1.10.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 PACKAGE_VERSION_MAJOR 1
| #define PACKAGE_VERSION_MINOR 10
| #define PACKAGE_VERSION_PATCHLEVEL 1
| #define HAVE_DLFCN_H 1
| #define LT_OBJDIR ".libs/"
| #define YYTEXT_POINTER 1
| #define _FILE_OFFSET_BITS 64
| #define HAVE_DIRENT_H 1
| #define STDC_HEADERS 1
| #define HAVE_FCNTL_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_DLFCN_H 1
| #define HAVE_STROPTS_H 1
| #define HAVE_FNMATCH_H 1
| #define HAVE_SYS_UTSNAME_H 1
| #define SIZEOF_UNSIGNED_LONG 4
| #define HAVE_BYTESWAP_H 1
| #define HAVE_VPRINTF 1
| #define HAVE_GETEUID 1
| #define HAVE_GETUID 1
| #define HAVE_LINK 1
| #define HAVE_MEMMOVE 1
| #define HAVE_MEMSET 1
| #define HAVE_MKSTEMP 1
| #define HAVE_STRCHR 1
| #define HAVE_STRRCHR 1
| #define HAVE_STRTOL 1
| #define HAVE_GETOPT 1
| #define HAVE_GETOPT_LONG 1
| #define HAVE_VSNPRINTF 1
| #define HAVE_BACKTRACE 1
| #define HAVE_STRCASESTR 1
| #define HAVE_FFS 1
| #define HAVE_VASPRINTF 1
| #define HAVE_ALLOCA_H 1
| #define HAVE_ALLOCA 1
| #define HAS_GETDTABLESIZE 1
| #define HAS_GETIFADDRS 1
| #define HAS_MMAP 1
| #define HAVE_LIBM 1
| #define HAVE_CBRT 1
| #define HAVE_LINUX_AGPGART_H 1
| /* end confdefs.h.  */
| #include <sys/agpgart.h>
configure:15681: result: no
configure:15681: checking for sys/agpgart.h
configure:15681: result: no
configure:15703: checking linux/apm_bios.h usability
configure:15703: powerpc-poky-linux-gcc -mcpu=603e  -mhard-float --sysroot=/home/kyu3/sdb/test/tmp/sysroots/qemuppc -std=gnu99 -c -O2 -pipe -g -feliminate-unused-debug-types  conftest.c >&5
configure:15703: $? = 0
configure:15703: result: yes
configure:15703: checking linux/apm_bios.h presence
configure:15703: powerpc-poky-linux-gcc -E --sysroot=/home/kyu3/sdb/test/tmp/sysroots/qemuppc  conftest.c
configure:15703: $? = 0
configure:15703: result: yes
configure:15703: checking for linux/apm_bios.h
configure:15703: result: yes
configure:15724: checking linux/fb.h usability
configure:15724: powerpc-poky-linux-gcc -mcpu=603e  -mhard-float --sysroot=/home/kyu3/sdb/test/tmp/sysroots/qemuppc -std=gnu99 -c -O2 -pipe -g -feliminate-unused-debug-types  conftest.c >&5
configure:15724: $? = 0
configure:15724: result: yes
configure:15724: checking linux/fb.h presence
configure:15724: powerpc-poky-linux-gcc -E --sysroot=/home/kyu3/sdb/test/tmp/sysroots/qemuppc  conftest.c
configure:15724: $? = 0
configure:15724: result: yes
configure:15724: checking for linux/fb.h
configure:15724: result: yes
configure:15745: checking asm/mtrr.h usability
configure:15745: powerpc-poky-linux-gcc -mcpu=603e  -mhard-float --sysroot=/home/kyu3/sdb/test/tmp/sysroots/qemuppc -std=gnu99 -c -O2 -pipe -g -feliminate-unused-debug-types  conftest.c >&5
conftest.c:100:22: fatal error: asm/mtrr.h: No such file or directory
compilation terminated.
configure:15745: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "xorg-server"
| #define PACKAGE_TARNAME "xorg-server"
| #define PACKAGE_VERSION "1.10.1"
| #define PACKAGE_STRING "xorg-server 1.10.1"
| #define PACKAGE_BUGREPORT "https://bugs.freedesktop.org/enter_bug.cgi?product=xorg"
| #define PACKAGE_URL ""
| #define PACKAGE "xorg-server"
| #define VERSION "1.10.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 PACKAGE_VERSION_MAJOR 1
| #define PACKAGE_VERSION_MINOR 10
| #define PACKAGE_VERSION_PATCHLEVEL 1
| #define HAVE_DLFCN_H 1
| #define LT_OBJDIR ".libs/"
| #define YYTEXT_POINTER 1
| #define _FILE_OFFSET_BITS 64
| #define HAVE_DIRENT_H 1
| #define STDC_HEADERS 1
| #define HAVE_FCNTL_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_DLFCN_H 1
| #define HAVE_STROPTS_H 1
| #define HAVE_FNMATCH_H 1
| #define HAVE_SYS_UTSNAME_H 1
| #define SIZEOF_UNSIGNED_LONG 4
| #define HAVE_BYTESWAP_H 1
| #define HAVE_VPRINTF 1
| #define HAVE_GETEUID 1
| #define HAVE_GETUID 1
| #define HAVE_LINK 1
| #define HAVE_MEMMOVE 1
| #define HAVE_MEMSET 1
| #define HAVE_MKSTEMP 1
| #define HAVE_STRCHR 1
| #define HAVE_STRRCHR 1
| #define HAVE_STRTOL 1
| #define HAVE_GETOPT 1
| #define HAVE_GETOPT_LONG 1
| #define HAVE_VSNPRINTF 1
| #define HAVE_BACKTRACE 1
| #define HAVE_STRCASESTR 1
| #define HAVE_FFS 1
| #define HAVE_VASPRINTF 1
| #define HAVE_ALLOCA_H 1
| #define HAVE_ALLOCA 1
| #define HAS_GETDTABLESIZE 1
| #define HAS_GETIFADDRS 1
| #define HAS_MMAP 1
| #define HAVE_LIBM 1
| #define HAVE_CBRT 1
| #define HAVE_LINUX_AGPGART_H 1
| #define HAVE_LINUX_APM_BIOS_H 1
| #define HAVE_LINUX_FB_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 <asm/mtrr.h>
configure:15745: result: no
configure:15745: checking asm/mtrr.h presence
configure:15745: powerpc-poky-linux-gcc -E --sysroot=/home/kyu3/sdb/test/tmp/sysroots/qemuppc  conftest.c
conftest.c:67:22: fatal error: asm/mtrr.h: No such file or directory
compilation terminated.
configure:15745: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "xorg-server"
| #define PACKAGE_TARNAME "xorg-server"
| #define PACKAGE_VERSION "1.10.1"
| #define PACKAGE_STRING "xorg-server 1.10.1"
| #define PACKAGE_BUGREPORT "https://bugs.freedesktop.org/enter_bug.cgi?product=xorg"
| #define PACKAGE_URL ""
| #define PACKAGE "xorg-server"
| #define VERSION "1.10.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 PACKAGE_VERSION_MAJOR 1
| #define PACKAGE_VERSION_MINOR 10
| #define PACKAGE_VERSION_PATCHLEVEL 1
| #define HAVE_DLFCN_H 1
| #define LT_OBJDIR ".libs/"
| #define YYTEXT_POINTER 1
| #define _FILE_OFFSET_BITS 64
| #define HAVE_DIRENT_H 1
| #define STDC_HEADERS 1
| #define HAVE_FCNTL_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_DLFCN_H 1
| #define HAVE_STROPTS_H 1
| #define HAVE_FNMATCH_H 1
| #define HAVE_SYS_UTSNAME_H 1
| #define SIZEOF_UNSIGNED_LONG 4
| #define HAVE_BYTESWAP_H 1
| #define HAVE_VPRINTF 1
| #define HAVE_GETEUID 1
| #define HAVE_GETUID 1
| #define HAVE_LINK 1
| #define HAVE_MEMMOVE 1
| #define HAVE_MEMSET 1
| #define HAVE_MKSTEMP 1
| #define HAVE_STRCHR 1
| #define HAVE_STRRCHR 1
| #define HAVE_STRTOL 1
| #define HAVE_GETOPT 1
| #define HAVE_GETOPT_LONG 1
| #define HAVE_VSNPRINTF 1
| #define HAVE_BACKTRACE 1
| #define HAVE_STRCASESTR 1
| #define HAVE_FFS 1
| #define HAVE_VASPRINTF 1
| #define HAVE_ALLOCA_H 1
| #define HAVE_ALLOCA 1
| #define HAS_GETDTABLESIZE 1
| #define HAS_GETIFADDRS 1
| #define HAS_MMAP 1
| #define HAVE_LIBM 1
| #define HAVE_CBRT 1
| #define HAVE_LINUX_AGPGART_H 1
| #define HAVE_LINUX_APM_BIOS_H 1
| #define HAVE_LINUX_FB_H 1
| /* end confdefs.h.  */
| #include <asm/mtrr.h>
configure:15745: result: no
configure:15745: checking for asm/mtrr.h
configure:15745: result: no
configure:15761: checking sys/memrange.h usability
configure:15761: powerpc-poky-linux-gcc -mcpu=603e  -mhard-float --sysroot=/home/kyu3/sdb/test/tmp/sysroots/qemuppc -std=gnu99 -c -O2 -pipe -g -feliminate-unused-debug-types  conftest.c >&5
conftest.c:100:26: fatal error: sys/memrange.h: No such file or directory
compilation terminated.
configure:15761: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "xorg-server"
| #define PACKAGE_TARNAME "xorg-server"
| #define PACKAGE_VERSION "1.10.1"
| #define PACKAGE_STRING "xorg-server 1.10.1"
| #define PACKAGE_BUGREPORT "https://bugs.freedesktop.org/enter_bug.cgi?product=xorg"
| #define PACKAGE_URL ""
| #define PACKAGE "xorg-server"
| #define VERSION "1.10.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 PACKAGE_VERSION_MAJOR 1
| #define PACKAGE_VERSION_MINOR 10
| #define PACKAGE_VERSION_PATCHLEVEL 1
| #define HAVE_DLFCN_H 1
| #define LT_OBJDIR ".libs/"
| #define YYTEXT_POINTER 1
| #define _FILE_OFFSET_BITS 64
| #define HAVE_DIRENT_H 1
| #define STDC_HEADERS 1
| #define HAVE_FCNTL_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_DLFCN_H 1
| #define HAVE_STROPTS_H 1
| #define HAVE_FNMATCH_H 1
| #define HAVE_SYS_UTSNAME_H 1
| #define SIZEOF_UNSIGNED_LONG 4
| #define HAVE_BYTESWAP_H 1
| #define HAVE_VPRINTF 1
| #define HAVE_GETEUID 1
| #define HAVE_GETUID 1
| #define HAVE_LINK 1
| #define HAVE_MEMMOVE 1
| #define HAVE_MEMSET 1
| #define HAVE_MKSTEMP 1
| #define HAVE_STRCHR 1
| #define HAVE_STRRCHR 1
| #define HAVE_STRTOL 1
| #define HAVE_GETOPT 1
| #define HAVE_GETOPT_LONG 1
| #define HAVE_VSNPRINTF 1
| #define HAVE_BACKTRACE 1
| #define HAVE_STRCASESTR 1
| #define HAVE_FFS 1
| #define HAVE_VASPRINTF 1
| #define HAVE_ALLOCA_H 1
| #define HAVE_ALLOCA 1
| #define HAS_GETDTABLESIZE 1
| #define HAS_GETIFADDRS 1
| #define HAS_MMAP 1
| #define HAVE_LIBM 1
| #define HAVE_CBRT 1
| #define HAVE_LINUX_AGPGART_H 1
| #define HAVE_LINUX_APM_BIOS_H 1
| #define HAVE_LINUX_FB_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/memrange.h>
configure:15761: result: no
configure:15761: checking sys/memrange.h presence
configure:15761: powerpc-poky-linux-gcc -E --sysroot=/home/kyu3/sdb/test/tmp/sysroots/qemuppc  conftest.c
conftest.c:67:26: fatal error: sys/memrange.h: No such file or directory
compilation terminated.
configure:15761: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "xorg-server"
| #define PACKAGE_TARNAME "xorg-server"
| #define PACKAGE_VERSION "1.10.1"
| #define PACKAGE_STRING "xorg-server 1.10.1"
| #define PACKAGE_BUGREPORT "https://bugs.freedesktop.org/enter_bug.cgi?product=xorg"
| #define PACKAGE_URL ""
| #define PACKAGE "xorg-server"
| #define VERSION "1.10.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 PACKAGE_VERSION_MAJOR 1
| #define PACKAGE_VERSION_MINOR 10
| #define PACKAGE_VERSION_PATCHLEVEL 1
| #define HAVE_DLFCN_H 1
| #define LT_OBJDIR ".libs/"
| #define YYTEXT_POINTER 1
| #define _FILE_OFFSET_BITS 64
| #define HAVE_DIRENT_H 1
| #define STDC_HEADERS 1
| #define HAVE_FCNTL_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_DLFCN_H 1
| #define HAVE_STROPTS_H 1
| #define HAVE_FNMATCH_H 1
| #define HAVE_SYS_UTSNAME_H 1
| #define SIZEOF_UNSIGNED_LONG 4
| #define HAVE_BYTESWAP_H 1
| #define HAVE_VPRINTF 1
| #define HAVE_GETEUID 1
| #define HAVE_GETUID 1
| #define HAVE_LINK 1
| #define HAVE_MEMMOVE 1
| #define HAVE_MEMSET 1
| #define HAVE_MKSTEMP 1
| #define HAVE_STRCHR 1
| #define HAVE_STRRCHR 1
| #define HAVE_STRTOL 1
| #define HAVE_GETOPT 1
| #define HAVE_GETOPT_LONG 1
| #define HAVE_VSNPRINTF 1
| #define HAVE_BACKTRACE 1
| #define HAVE_STRCASESTR 1
| #define HAVE_FFS 1
| #define HAVE_VASPRINTF 1
| #define HAVE_ALLOCA_H 1
| #define HAVE_ALLOCA 1
| #define HAS_GETDTABLESIZE 1
| #define HAS_GETIFADDRS 1
| #define HAS_MMAP 1
| #define HAVE_LIBM 1
| #define HAVE_CBRT 1
| #define HAVE_LINUX_AGPGART_H 1
| #define HAVE_LINUX_APM_BIOS_H 1
| #define HAVE_LINUX_FB_H 1
| /* end confdefs.h.  */
| #include <sys/memrange.h>
configure:15761: result: no
configure:15761: checking for sys/memrange.h
configure:15761: result: no
configure:15783: checking machine/mtrr.h usability
configure:15783: powerpc-poky-linux-gcc -mcpu=603e  -mhard-float --sysroot=/home/kyu3/sdb/test/tmp/sysroots/qemuppc -std=gnu99 -c -O2 -pipe -g -feliminate-unused-debug-types  conftest.c >&5
conftest.c:100:26: fatal error: machine/mtrr.h: No such file or directory
compilation terminated.
configure:15783: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "xorg-server"
| #define PACKAGE_TARNAME "xorg-server"
| #define PACKAGE_VERSION "1.10.1"
| #define PACKAGE_STRING "xorg-server 1.10.1"
| #define PACKAGE_BUGREPORT "https://bugs.freedesktop.org/enter_bug.cgi?product=xorg"
| #define PACKAGE_URL ""
| #define PACKAGE "xorg-server"
| #define VERSION "1.10.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 PACKAGE_VERSION_MAJOR 1
| #define PACKAGE_VERSION_MINOR 10
| #define PACKAGE_VERSION_PATCHLEVEL 1
| #define HAVE_DLFCN_H 1
| #define LT_OBJDIR ".libs/"
| #define YYTEXT_POINTER 1
| #define _FILE_OFFSET_BITS 64
| #define HAVE_DIRENT_H 1
| #define STDC_HEADERS 1
| #define HAVE_FCNTL_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_DLFCN_H 1
| #define HAVE_STROPTS_H 1
| #define HAVE_FNMATCH_H 1
| #define HAVE_SYS_UTSNAME_H 1
| #define SIZEOF_UNSIGNED_LONG 4
| #define HAVE_BYTESWAP_H 1
| #define HAVE_VPRINTF 1
| #define HAVE_GETEUID 1
| #define HAVE_GETUID 1
| #define HAVE_LINK 1
| #define HAVE_MEMMOVE 1
| #define HAVE_MEMSET 1
| #define HAVE_MKSTEMP 1
| #define HAVE_STRCHR 1
| #define HAVE_STRRCHR 1
| #define HAVE_STRTOL 1
| #define HAVE_GETOPT 1
| #define HAVE_GETOPT_LONG 1
| #define HAVE_VSNPRINTF 1
| #define HAVE_BACKTRACE 1
| #define HAVE_STRCASESTR 1
| #define HAVE_FFS 1
| #define HAVE_VASPRINTF 1
| #define HAVE_ALLOCA_H 1
| #define HAVE_ALLOCA 1
| #define HAS_GETDTABLESIZE 1
| #define HAS_GETIFADDRS 1
| #define HAS_MMAP 1
| #define HAVE_LIBM 1
| #define HAVE_CBRT 1
| #define HAVE_LINUX_AGPGART_H 1
| #define HAVE_LINUX_APM_BIOS_H 1
| #define HAVE_LINUX_FB_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 <machine/mtrr.h>
configure:15783: result: no
configure:15783: checking machine/mtrr.h presence
configure:15783: powerpc-poky-linux-gcc -E --sysroot=/home/kyu3/sdb/test/tmp/sysroots/qemuppc  conftest.c
conftest.c:67:26: fatal error: machine/mtrr.h: No such file or directory
compilation terminated.
configure:15783: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "xorg-server"
| #define PACKAGE_TARNAME "xorg-server"
| #define PACKAGE_VERSION "1.10.1"
| #define PACKAGE_STRING "xorg-server 1.10.1"
| #define PACKAGE_BUGREPORT "https://bugs.freedesktop.org/enter_bug.cgi?product=xorg"
| #define PACKAGE_URL ""
| #define PACKAGE "xorg-server"
| #define VERSION "1.10.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 PACKAGE_VERSION_MAJOR 1
| #define PACKAGE_VERSION_MINOR 10
| #define PACKAGE_VERSION_PATCHLEVEL 1
| #define HAVE_DLFCN_H 1
| #define LT_OBJDIR ".libs/"
| #define YYTEXT_POINTER 1
| #define _FILE_OFFSET_BITS 64
| #define HAVE_DIRENT_H 1
| #define STDC_HEADERS 1
| #define HAVE_FCNTL_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_DLFCN_H 1
| #define HAVE_STROPTS_H 1
| #define HAVE_FNMATCH_H 1
| #define HAVE_SYS_UTSNAME_H 1
| #define SIZEOF_UNSIGNED_LONG 4
| #define HAVE_BYTESWAP_H 1
| #define HAVE_VPRINTF 1
| #define HAVE_GETEUID 1
| #define HAVE_GETUID 1
| #define HAVE_LINK 1
| #define HAVE_MEMMOVE 1
| #define HAVE_MEMSET 1
| #define HAVE_MKSTEMP 1
| #define HAVE_STRCHR 1
| #define HAVE_STRRCHR 1
| #define HAVE_STRTOL 1
| #define HAVE_GETOPT 1
| #define HAVE_GETOPT_LONG 1
| #define HAVE_VSNPRINTF 1
| #define HAVE_BACKTRACE 1
| #define HAVE_STRCASESTR 1
| #define HAVE_FFS 1
| #define HAVE_VASPRINTF 1
| #define HAVE_ALLOCA_H 1
| #define HAVE_ALLOCA 1
| #define HAS_GETDTABLESIZE 1
| #define HAS_GETIFADDRS 1
| #define HAS_MMAP 1
| #define HAVE_LIBM 1
| #define HAVE_CBRT 1
| #define HAVE_LINUX_AGPGART_H 1
| #define HAVE_LINUX_APM_BIOS_H 1
| #define HAVE_LINUX_FB_H 1
| /* end confdefs.h.  */
| #include <machine/mtrr.h>
configure:15783: result: no
configure:15783: checking for machine/mtrr.h
configure:15783: result: no
configure:15801: checking for sys/linker.h
configure:15801: powerpc-poky-linux-gcc -mcpu=603e  -mhard-float --sysroot=/home/kyu3/sdb/test/tmp/sysroots/qemuppc -std=gnu99 -c -O2 -pipe -g -feliminate-unused-debug-types  conftest.c >&5
conftest.c:69:24: fatal error: sys/linker.h: No such file or directory
compilation terminated.
configure:15801: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "xorg-server"
| #define PACKAGE_TARNAME "xorg-server"
| #define PACKAGE_VERSION "1.10.1"
| #define PACKAGE_STRING "xorg-server 1.10.1"
| #define PACKAGE_BUGREPORT "https://bugs.freedesktop.org/enter_bug.cgi?product=xorg"
| #define PACKAGE_URL ""
| #define PACKAGE "xorg-server"
| #define VERSION "1.10.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 PACKAGE_VERSION_MAJOR 1
| #define PACKAGE_VERSION_MINOR 10
| #define PACKAGE_VERSION_PATCHLEVEL 1
| #define HAVE_DLFCN_H 1
| #define LT_OBJDIR ".libs/"
| #define YYTEXT_POINTER 1
| #define _FILE_OFFSET_BITS 64
| #define HAVE_DIRENT_H 1
| #define STDC_HEADERS 1
| #define HAVE_FCNTL_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_DLFCN_H 1
| #define HAVE_STROPTS_H 1
| #define HAVE_FNMATCH_H 1
| #define HAVE_SYS_UTSNAME_H 1
| #define SIZEOF_UNSIGNED_LONG 4
| #define HAVE_BYTESWAP_H 1
| #define HAVE_VPRINTF 1
| #define HAVE_GETEUID 1
| #define HAVE_GETUID 1
| #define HAVE_LINK 1
| #define HAVE_MEMMOVE 1
| #define HAVE_MEMSET 1
| #define HAVE_MKSTEMP 1
| #define HAVE_STRCHR 1
| #define HAVE_STRRCHR 1
| #define HAVE_STRTOL 1
| #define HAVE_GETOPT 1
| #define HAVE_GETOPT_LONG 1
| #define HAVE_VSNPRINTF 1
| #define HAVE_BACKTRACE 1
| #define HAVE_STRCASESTR 1
| #define HAVE_FFS 1
| #define HAVE_VASPRINTF 1
| #define HAVE_ALLOCA_H 1
| #define HAVE_ALLOCA 1
| #define HAS_GETDTABLESIZE 1
| #define HAS_GETIFADDRS 1
| #define HAS_MMAP 1
| #define HAVE_LIBM 1
| #define HAVE_CBRT 1
| #define HAVE_LINUX_AGPGART_H 1
| #define HAVE_LINUX_APM_BIOS_H 1
| #define HAVE_LINUX_FB_H 1
| /* end confdefs.h.  */
| #include <sys/param.h>
| 
| #include <sys/linker.h>
configure:15801: result: no
configure:15823: checking for SYSV IPC
configure:15849: powerpc-poky-linux-gcc -mcpu=603e  -mhard-float --sysroot=/home/kyu3/sdb/test/tmp/sysroots/qemuppc -std=gnu99 -o conftest -O2 -pipe -g -feliminate-unused-debug-types  -Wl,-O1  -Wl,--as-needed conftest.c -lm  >&5
configure:15849: $? = 0
configure:15857: result: yes
configure:15871: checking machine/apmvar.h usability
configure:15871: powerpc-poky-linux-gcc -mcpu=603e  -mhard-float --sysroot=/home/kyu3/sdb/test/tmp/sysroots/qemuppc -std=gnu99 -c -O2 -pipe -g -feliminate-unused-debug-types  conftest.c >&5
conftest.c:101:28: fatal error: machine/apmvar.h: No such file or directory
compilation terminated.
configure:15871: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "xorg-server"
| #define PACKAGE_TARNAME "xorg-server"
| #define PACKAGE_VERSION "1.10.1"
| #define PACKAGE_STRING "xorg-server 1.10.1"
| #define PACKAGE_BUGREPORT "https://bugs.freedesktop.org/enter_bug.cgi?product=xorg"
| #define PACKAGE_URL ""
| #define PACKAGE "xorg-server"
| #define VERSION "1.10.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 PACKAGE_VERSION_MAJOR 1
| #define PACKAGE_VERSION_MINOR 10
| #define PACKAGE_VERSION_PATCHLEVEL 1
| #define HAVE_DLFCN_H 1
| #define LT_OBJDIR ".libs/"
| #define YYTEXT_POINTER 1
| #define _FILE_OFFSET_BITS 64
| #define HAVE_DIRENT_H 1
| #define STDC_HEADERS 1
| #define HAVE_FCNTL_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_DLFCN_H 1
| #define HAVE_STROPTS_H 1
| #define HAVE_FNMATCH_H 1
| #define HAVE_SYS_UTSNAME_H 1
| #define SIZEOF_UNSIGNED_LONG 4
| #define HAVE_BYTESWAP_H 1
| #define HAVE_VPRINTF 1
| #define HAVE_GETEUID 1
| #define HAVE_GETUID 1
| #define HAVE_LINK 1
| #define HAVE_MEMMOVE 1
| #define HAVE_MEMSET 1
| #define HAVE_MKSTEMP 1
| #define HAVE_STRCHR 1
| #define HAVE_STRRCHR 1
| #define HAVE_STRTOL 1
| #define HAVE_GETOPT 1
| #define HAVE_GETOPT_LONG 1
| #define HAVE_VSNPRINTF 1
| #define HAVE_BACKTRACE 1
| #define HAVE_STRCASESTR 1
| #define HAVE_FFS 1
| #define HAVE_VASPRINTF 1
| #define HAVE_ALLOCA_H 1
| #define HAVE_ALLOCA 1
| #define HAS_GETDTABLESIZE 1
| #define HAS_GETIFADDRS 1
| #define HAS_MMAP 1
| #define HAVE_LIBM 1
| #define HAVE_CBRT 1
| #define HAVE_LINUX_AGPGART_H 1
| #define HAVE_LINUX_APM_BIOS_H 1
| #define HAVE_LINUX_FB_H 1
| #define HAVE_SYSV_IPC 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 <machine/apmvar.h>
configure:15871: result: no
configure:15871: checking machine/apmvar.h presence
configure:15871: powerpc-poky-linux-gcc -E --sysroot=/home/kyu3/sdb/test/tmp/sysroots/qemuppc  conftest.c
conftest.c:68:28: fatal error: machine/apmvar.h: No such file or directory
compilation terminated.
configure:15871: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "xorg-server"
| #define PACKAGE_TARNAME "xorg-server"
| #define PACKAGE_VERSION "1.10.1"
| #define PACKAGE_STRING "xorg-server 1.10.1"
| #define PACKAGE_BUGREPORT "https://bugs.freedesktop.org/enter_bug.cgi?product=xorg"
| #define PACKAGE_URL ""
| #define PACKAGE "xorg-server"
| #define VERSION "1.10.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 PACKAGE_VERSION_MAJOR 1
| #define PACKAGE_VERSION_MINOR 10
| #define PACKAGE_VERSION_PATCHLEVEL 1
| #define HAVE_DLFCN_H 1
| #define LT_OBJDIR ".libs/"
| #define YYTEXT_POINTER 1
| #define _FILE_OFFSET_BITS 64
| #define HAVE_DIRENT_H 1
| #define STDC_HEADERS 1
| #define HAVE_FCNTL_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_DLFCN_H 1
| #define HAVE_STROPTS_H 1
| #define HAVE_FNMATCH_H 1
| #define HAVE_SYS_UTSNAME_H 1
| #define SIZEOF_UNSIGNED_LONG 4
| #define HAVE_BYTESWAP_H 1
| #define HAVE_VPRINTF 1
| #define HAVE_GETEUID 1
| #define HAVE_GETUID 1
| #define HAVE_LINK 1
| #define HAVE_MEMMOVE 1
| #define HAVE_MEMSET 1
| #define HAVE_MKSTEMP 1
| #define HAVE_STRCHR 1
| #define HAVE_STRRCHR 1
| #define HAVE_STRTOL 1
| #define HAVE_GETOPT 1
| #define HAVE_GETOPT_LONG 1
| #define HAVE_VSNPRINTF 1
| #define HAVE_BACKTRACE 1
| #define HAVE_STRCASESTR 1
| #define HAVE_FFS 1
| #define HAVE_VASPRINTF 1
| #define HAVE_ALLOCA_H 1
| #define HAVE_ALLOCA 1
| #define HAS_GETDTABLESIZE 1
| #define HAS_GETIFADDRS 1
| #define HAS_MMAP 1
| #define HAVE_LIBM 1
| #define HAVE_CBRT 1
| #define HAVE_LINUX_AGPGART_H 1
| #define HAVE_LINUX_APM_BIOS_H 1
| #define HAVE_LINUX_FB_H 1
| #define HAVE_SYSV_IPC 1
| /* end confdefs.h.  */
| #include <machine/apmvar.h>
configure:15871: result: no
configure:15871: checking for machine/apmvar.h
configure:15871: result: no
configure:15903: checking for execinfo.h
configure:15903: result: yes
configure:15906: checking for backtrace in -lc
configure:15931: powerpc-poky-linux-gcc -mcpu=603e  -mhard-float --sysroot=/home/kyu3/sdb/test/tmp/sysroots/qemuppc -std=gnu99 -o conftest -O2 -pipe -g -feliminate-unused-debug-types  -Wl,-O1  -Wl,--as-needed conftest.c -lc  -lm  >&5
configure:15931: $? = 0
configure:15940: result: yes
configure:15971: powerpc-poky-linux-gcc -mcpu=603e  -mhard-float --sysroot=/home/kyu3/sdb/test/tmp/sysroots/qemuppc -std=gnu99 -c -mapcs-frame  conftest.c >&5
cc1: error: unrecognized command line option '-mapcs-frame'
configure:15971: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "xorg-server"
| #define PACKAGE_TARNAME "xorg-server"
| #define PACKAGE_VERSION "1.10.1"
| #define PACKAGE_STRING "xorg-server 1.10.1"
| #define PACKAGE_BUGREPORT "https://bugs.freedesktop.org/enter_bug.cgi?product=xorg"
| #define PACKAGE_URL ""
| #define PACKAGE "xorg-server"
| #define VERSION "1.10.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 PACKAGE_VERSION_MAJOR 1
| #define PACKAGE_VERSION_MINOR 10
| #define PACKAGE_VERSION_PATCHLEVEL 1
| #define HAVE_DLFCN_H 1
| #define LT_OBJDIR ".libs/"
| #define YYTEXT_POINTER 1
| #define _FILE_OFFSET_BITS 64
| #define HAVE_DIRENT_H 1
| #define STDC_HEADERS 1
| #define HAVE_FCNTL_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_DLFCN_H 1
| #define HAVE_STROPTS_H 1
| #define HAVE_FNMATCH_H 1
| #define HAVE_SYS_UTSNAME_H 1
| #define SIZEOF_UNSIGNED_LONG 4
| #define HAVE_BYTESWAP_H 1
| #define HAVE_VPRINTF 1
| #define HAVE_GETEUID 1
| #define HAVE_GETUID 1
| #define HAVE_LINK 1
| #define HAVE_MEMMOVE 1
| #define HAVE_MEMSET 1
| #define HAVE_MKSTEMP 1
| #define HAVE_STRCHR 1
| #define HAVE_STRRCHR 1
| #define HAVE_STRTOL 1
| #define HAVE_GETOPT 1
| #define HAVE_GETOPT_LONG 1
| #define HAVE_VSNPRINTF 1
| #define HAVE_BACKTRACE 1
| #define HAVE_STRCASESTR 1
| #define HAVE_FFS 1
| #define HAVE_VASPRINTF 1
| #define HAVE_ALLOCA_H 1
| #define HAVE_ALLOCA 1
| #define HAS_GETDTABLESIZE 1
| #define HAS_GETIFADDRS 1
| #define HAS_MMAP 1
| #define HAVE_LIBM 1
| #define HAVE_CBRT 1
| #define HAVE_LINUX_AGPGART_H 1
| #define HAVE_LINUX_APM_BIOS_H 1
| #define HAVE_LINUX_FB_H 1
| #define HAVE_SYSV_IPC 1
| #define HAVE_BACKTRACE 1
| #define HAVE_EXECINFO_H 1
| /* end confdefs.h.  */
| 
| int
| main ()
| {
| 
|   ;
|   return 0;
| }
configure:16290: checking for root directory for font files
configure:16307: result: /usr/share/fonts/X11
configure:16313: checking for directory for misc files
configure:16324: result: ${FONTROOTDIR}/misc
configure:16330: checking for directory for OTF files
configure:16341: result: ${FONTROOTDIR}/OTF
configure:16347: checking for directory for TTF files
configure:16358: result: ${FONTROOTDIR}/TTF
configure:16364: checking for directory for Type1 files
configure:16375: result: ${FONTROOTDIR}/Type1
configure:16381: checking for directory for 75dpi files
configure:16392: result: ${FONTROOTDIR}/75dpi
configure:16398: checking for directory for 100dpi files
configure:16409: result: ${FONTROOTDIR}/100dpi
configure:16426: checking for default font path
configure:16428: result: ${FONTROOTDIR}/misc/,${FONTROOTDIR}/TTF/,${FONTROOTDIR}/OTF/,${FONTROOTDIR}/Type1/,${FONTROOTDIR}/100dpi/,${FONTROOTDIR}/75dpi/
configure:16565: checking for thread local storage (TLS) class
configure:16592: powerpc-poky-linux-gcc -mcpu=603e  -mhard-float --sysroot=/home/kyu3/sdb/test/tmp/sysroots/qemuppc -std=gnu99 -c -O2 -pipe -g -feliminate-unused-debug-types  conftest.c >&5
configure:16592: $? = 0
configure:16612: result: __thread
configure:16975: checking to see if we can install the Xorg server as root
configure:16993: result: no
configure:17007: checking return type of signal handlers
configure:17025: powerpc-poky-linux-gcc -mcpu=603e  -mhard-float --sysroot=/home/kyu3/sdb/test/tmp/sysroots/qemuppc -std=gnu99 -c -O2 -pipe -g -feliminate-unused-debug-types  conftest.c >&5
conftest.c: In function 'main':
conftest.c:78:1: error: void value not ignored as it ought to be
configure:17025: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "xorg-server"
| #define PACKAGE_TARNAME "xorg-server"
| #define PACKAGE_VERSION "1.10.1"
| #define PACKAGE_STRING "xorg-server 1.10.1"
| #define PACKAGE_BUGREPORT "https://bugs.freedesktop.org/enter_bug.cgi?product=xorg"
| #define PACKAGE_URL ""
| #define PACKAGE "xorg-server"
| #define VERSION "1.10.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 PACKAGE_VERSION_MAJOR 1
| #define PACKAGE_VERSION_MINOR 10
| #define PACKAGE_VERSION_PATCHLEVEL 1
| #define HAVE_DLFCN_H 1
| #define LT_OBJDIR ".libs/"
| #define YYTEXT_POINTER 1
| #define _FILE_OFFSET_BITS 64
| #define HAVE_DIRENT_H 1
| #define STDC_HEADERS 1
| #define HAVE_FCNTL_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_DLFCN_H 1
| #define HAVE_STROPTS_H 1
| #define HAVE_FNMATCH_H 1
| #define HAVE_SYS_UTSNAME_H 1
| #define SIZEOF_UNSIGNED_LONG 4
| #define HAVE_BYTESWAP_H 1
| #define HAVE_VPRINTF 1
| #define HAVE_GETEUID 1
| #define HAVE_GETUID 1
| #define HAVE_LINK 1
| #define HAVE_MEMMOVE 1
| #define HAVE_MEMSET 1
| #define HAVE_MKSTEMP 1
| #define HAVE_STRCHR 1
| #define HAVE_STRRCHR 1
| #define HAVE_STRTOL 1
| #define HAVE_GETOPT 1
| #define HAVE_GETOPT_LONG 1
| #define HAVE_VSNPRINTF 1
| #define HAVE_BACKTRACE 1
| #define HAVE_STRCASESTR 1
| #define HAVE_FFS 1
| #define HAVE_VASPRINTF 1
| #define HAVE_ALLOCA_H 1
| #define HAVE_ALLOCA 1
| #define HAS_GETDTABLESIZE 1
| #define HAS_GETIFADDRS 1
| #define HAS_MMAP 1
| #define HAVE_LIBM 1
| #define HAVE_CBRT 1
| #define HAVE_LINUX_AGPGART_H 1
| #define HAVE_LINUX_APM_BIOS_H 1
| #define HAVE_LINUX_FB_H 1
| #define HAVE_SYSV_IPC 1
| #define HAVE_BACKTRACE 1
| #define HAVE_EXECINFO_H 1
| #define LAUNCHD_ID_PREFIX "org.x"
| #define TLS __thread
| /* end confdefs.h.  */
| #include <sys/types.h>
| #include <signal.h>
| 
| int
| main ()
| {
| return *(signal (0, 0)) (0) == 1;
|   ;
|   return 0;
| }
configure:17032: result: void
configure:17054: checking if Xtrans should support UNIX socket connections
configure:17061: result: yes
configure:17070: checking if Xtrans should support TCP socket connections
configure:17072: result: yes
configure:17080: checking for library containing socket
configure:17111: powerpc-poky-linux-gcc -mcpu=603e  -mhard-float --sysroot=/home/kyu3/sdb/test/tmp/sysroots/qemuppc -std=gnu99 -o conftest -O2 -pipe -g -feliminate-unused-debug-types  -Wl,-O1  -Wl,--as-needed conftest.c -lm  >&5
configure:17111: $? = 0
configure:17128: result: none required
configure:17136: checking for library containing gethostbyname
configure:17167: powerpc-poky-linux-gcc -mcpu=603e  -mhard-float --sysroot=/home/kyu3/sdb/test/tmp/sysroots/qemuppc -std=gnu99 -o conftest -O2 -pipe -g -feliminate-unused-debug-types  -Wl,-O1  -Wl,--as-needed conftest.c -lm  >&5
configure:17167: $? = 0
configure:17184: result: none required
configure:17240: checking for getaddrinfo
configure:17240: result: yes
configure:17249: checking if IPv6 support should be built
configure:17256: result: yes
configure:17260: checking for struct sockaddr_in.sin_len
configure:17260: powerpc-poky-linux-gcc -mcpu=603e  -mhard-float --sysroot=/home/kyu3/sdb/test/tmp/sysroots/qemuppc -std=gnu99 -c -O2 -pipe -g -feliminate-unused-debug-types  conftest.c >&5
conftest.c: In function 'main':
conftest.c:86:12: error: 'struct sockaddr_in' has no member named 'sin_len'
configure:17260: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "xorg-server"
| #define PACKAGE_TARNAME "xorg-server"
| #define PACKAGE_VERSION "1.10.1"
| #define PACKAGE_STRING "xorg-server 1.10.1"
| #define PACKAGE_BUGREPORT "https://bugs.freedesktop.org/enter_bug.cgi?product=xorg"
| #define PACKAGE_URL ""
| #define PACKAGE "xorg-server"
| #define VERSION "1.10.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 PACKAGE_VERSION_MAJOR 1
| #define PACKAGE_VERSION_MINOR 10
| #define PACKAGE_VERSION_PATCHLEVEL 1
| #define HAVE_DLFCN_H 1
| #define LT_OBJDIR ".libs/"
| #define YYTEXT_POINTER 1
| #define _FILE_OFFSET_BITS 64
| #define HAVE_DIRENT_H 1
| #define STDC_HEADERS 1
| #define HAVE_FCNTL_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_DLFCN_H 1
| #define HAVE_STROPTS_H 1
| #define HAVE_FNMATCH_H 1
| #define HAVE_SYS_UTSNAME_H 1
| #define SIZEOF_UNSIGNED_LONG 4
| #define HAVE_BYTESWAP_H 1
| #define HAVE_VPRINTF 1
| #define HAVE_GETEUID 1
| #define HAVE_GETUID 1
| #define HAVE_LINK 1
| #define HAVE_MEMMOVE 1
| #define HAVE_MEMSET 1
| #define HAVE_MKSTEMP 1
| #define HAVE_STRCHR 1
| #define HAVE_STRRCHR 1
| #define HAVE_STRTOL 1
| #define HAVE_GETOPT 1
| #define HAVE_GETOPT_LONG 1
| #define HAVE_VSNPRINTF 1
| #define HAVE_BACKTRACE 1
| #define HAVE_STRCASESTR 1
| #define HAVE_FFS 1
| #define HAVE_VASPRINTF 1
| #define HAVE_ALLOCA_H 1
| #define HAVE_ALLOCA 1
| #define HAS_GETDTABLESIZE 1
| #define HAS_GETIFADDRS 1
| #define HAS_MMAP 1
| #define HAVE_LIBM 1
| #define HAVE_CBRT 1
| #define HAVE_LINUX_AGPGART_H 1
| #define HAVE_LINUX_APM_BIOS_H 1
| #define HAVE_LINUX_FB_H 1
| #define HAVE_SYSV_IPC 1
| #define HAVE_BACKTRACE 1
| #define HAVE_EXECINFO_H 1
| #define LAUNCHD_ID_PREFIX "org.x"
| #define TLS __thread
| #define RETSIGTYPE void
| #define UNIXCONN 1
| #define TCPCONN 1
| #define IPv6 1
| /* end confdefs.h.  */
| 
| #include <sys/types.h>
| #include <sys/socket.h>
| #include <netinet/in.h>
| 
| 
| int
| main ()
| {
| static struct sockaddr_in ac_aggr;
| if (ac_aggr.sin_len)
| return 0;
|   ;
|   return 0;
| }
configure:17260: powerpc-poky-linux-gcc -mcpu=603e  -mhard-float --sysroot=/home/kyu3/sdb/test/tmp/sysroots/qemuppc -std=gnu99 -c -O2 -pipe -g -feliminate-unused-debug-types  conftest.c >&5
conftest.c: In function 'main':
conftest.c:86:19: error: 'struct sockaddr_in' has no member named 'sin_len'
configure:17260: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "xorg-server"
| #define PACKAGE_TARNAME "xorg-server"
| #define PACKAGE_VERSION "1.10.1"
| #define PACKAGE_STRING "xorg-server 1.10.1"
| #define PACKAGE_BUGREPORT "https://bugs.freedesktop.org/enter_bug.cgi?product=xorg"
| #define PACKAGE_URL ""
| #define PACKAGE "xorg-server"
| #define VERSION "1.10.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 PACKAGE_VERSION_MAJOR 1
| #define PACKAGE_VERSION_MINOR 10
| #define PACKAGE_VERSION_PATCHLEVEL 1
| #define HAVE_DLFCN_H 1
| #define LT_OBJDIR ".libs/"
| #define YYTEXT_POINTER 1
| #define _FILE_OFFSET_BITS 64
| #define HAVE_DIRENT_H 1
| #define STDC_HEADERS 1
| #define HAVE_FCNTL_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_DLFCN_H 1
| #define HAVE_STROPTS_H 1
| #define HAVE_FNMATCH_H 1
| #define HAVE_SYS_UTSNAME_H 1
| #define SIZEOF_UNSIGNED_LONG 4
| #define HAVE_BYTESWAP_H 1
| #define HAVE_VPRINTF 1
| #define HAVE_GETEUID 1
| #define HAVE_GETUID 1
| #define HAVE_LINK 1
| #define HAVE_MEMMOVE 1
| #define HAVE_MEMSET 1
| #define HAVE_MKSTEMP 1
| #define HAVE_STRCHR 1
| #define HAVE_STRRCHR 1
| #define HAVE_STRTOL 1
| #define HAVE_GETOPT 1
| #define HAVE_GETOPT_LONG 1
| #define HAVE_VSNPRINTF 1
| #define HAVE_BACKTRACE 1
| #define HAVE_STRCASESTR 1
| #define HAVE_FFS 1
| #define HAVE_VASPRINTF 1
| #define HAVE_ALLOCA_H 1
| #define HAVE_ALLOCA 1
| #define HAS_GETDTABLESIZE 1
| #define HAS_GETIFADDRS 1
| #define HAS_MMAP 1
| #define HAVE_LIBM 1
| #define HAVE_CBRT 1
| #define HAVE_LINUX_AGPGART_H 1
| #define HAVE_LINUX_APM_BIOS_H 1
| #define HAVE_LINUX_FB_H 1
| #define HAVE_SYSV_IPC 1
| #define HAVE_BACKTRACE 1
| #define HAVE_EXECINFO_H 1
| #define LAUNCHD_ID_PREFIX "org.x"
| #define TLS __thread
| #define RETSIGTYPE void
| #define UNIXCONN 1
| #define TCPCONN 1
| #define IPv6 1
| /* end confdefs.h.  */
| 
| #include <sys/types.h>
| #include <sys/socket.h>
| #include <netinet/in.h>
| 
| 
| int
| main ()
| {
| static struct sockaddr_in ac_aggr;
| if (sizeof ac_aggr.sin_len)
| return 0;
|   ;
|   return 0;
| }
configure:17260: result: no
configure:17274: checking for socklen_t
configure:17274: powerpc-poky-linux-gcc -mcpu=603e  -mhard-float --sysroot=/home/kyu3/sdb/test/tmp/sysroots/qemuppc -std=gnu99 -c -O2 -pipe -g -feliminate-unused-debug-types  conftest.c >&5
configure:17274: $? = 0
configure:17274: powerpc-poky-linux-gcc -mcpu=603e  -mhard-float --sysroot=/home/kyu3/sdb/test/tmp/sysroots/qemuppc -std=gnu99 -c -O2 -pipe -g -feliminate-unused-debug-types  conftest.c >&5
conftest.c: In function 'main':
conftest.c:115:24: error: expected expression before ')' token
configure:17274: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "xorg-server"
| #define PACKAGE_TARNAME "xorg-server"
| #define PACKAGE_VERSION "1.10.1"
| #define PACKAGE_STRING "xorg-server 1.10.1"
| #define PACKAGE_BUGREPORT "https://bugs.freedesktop.org/enter_bug.cgi?product=xorg"
| #define PACKAGE_URL ""
| #define PACKAGE "xorg-server"
| #define VERSION "1.10.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 PACKAGE_VERSION_MAJOR 1
| #define PACKAGE_VERSION_MINOR 10
| #define PACKAGE_VERSION_PATCHLEVEL 1
| #define HAVE_DLFCN_H 1
| #define LT_OBJDIR ".libs/"
| #define YYTEXT_POINTER 1
| #define _FILE_OFFSET_BITS 64
| #define HAVE_DIRENT_H 1
| #define STDC_HEADERS 1
| #define HAVE_FCNTL_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_DLFCN_H 1
| #define HAVE_STROPTS_H 1
| #define HAVE_FNMATCH_H 1
| #define HAVE_SYS_UTSNAME_H 1
| #define SIZEOF_UNSIGNED_LONG 4
| #define HAVE_BYTESWAP_H 1
| #define HAVE_VPRINTF 1
| #define HAVE_GETEUID 1
| #define HAVE_GETUID 1
| #define HAVE_LINK 1
| #define HAVE_MEMMOVE 1
| #define HAVE_MEMSET 1
| #define HAVE_MKSTEMP 1
| #define HAVE_STRCHR 1
| #define HAVE_STRRCHR 1
| #define HAVE_STRTOL 1
| #define HAVE_GETOPT 1
| #define HAVE_GETOPT_LONG 1
| #define HAVE_VSNPRINTF 1
| #define HAVE_BACKTRACE 1
| #define HAVE_STRCASESTR 1
| #define HAVE_FFS 1
| #define HAVE_VASPRINTF 1
| #define HAVE_ALLOCA_H 1
| #define HAVE_ALLOCA 1
| #define HAS_GETDTABLESIZE 1
| #define HAS_GETIFADDRS 1
| #define HAS_MMAP 1
| #define HAVE_LIBM 1
| #define HAVE_CBRT 1
| #define HAVE_LINUX_AGPGART_H 1
| #define HAVE_LINUX_APM_BIOS_H 1
| #define HAVE_LINUX_FB_H 1
| #define HAVE_SYSV_IPC 1
| #define HAVE_BACKTRACE 1
| #define HAVE_EXECINFO_H 1
| #define LAUNCHD_ID_PREFIX "org.x"
| #define TLS __thread
| #define RETSIGTYPE void
| #define UNIXCONN 1
| #define TCPCONN 1
| #define IPv6 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/socket.h>
| 
| int
| main ()
| {
| if (sizeof ((socklen_t)))
| 	    return 0;
|   ;
|   return 0;
| }
configure:17274: result: yes
configure:17301: checking if Xtrans should support os-specific local connections
configure:17303: result: no
configure:17328: checking for authdes_seccreate
configure:17328: powerpc-poky-linux-gcc -mcpu=603e  -mhard-float --sysroot=/home/kyu3/sdb/test/tmp/sysroots/qemuppc -std=gnu99 -o conftest -O2 -pipe -g -feliminate-unused-debug-types  -Wl,-O1  -Wl,--as-needed conftest.c -lm  >&5
/tmp/cctBhK3v.o: In function `main':
/home/kyu3/sdb/test/tmp/work/ppc603e-poky-linux/xserver-xf86-lite-1.10.1-r0/xorg-server-1.10.1/conftest.c:111: undefined reference to `authdes_seccreate'
collect2: ld returned 1 exit status
configure:17328: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "xorg-server"
| #define PACKAGE_TARNAME "xorg-server"
| #define PACKAGE_VERSION "1.10.1"
| #define PACKAGE_STRING "xorg-server 1.10.1"
| #define PACKAGE_BUGREPORT "https://bugs.freedesktop.org/enter_bug.cgi?product=xorg"
| #define PACKAGE_URL ""
| #define PACKAGE "xorg-server"
| #define VERSION "1.10.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 PACKAGE_VERSION_MAJOR 1
| #define PACKAGE_VERSION_MINOR 10
| #define PACKAGE_VERSION_PATCHLEVEL 1
| #define HAVE_DLFCN_H 1
| #define LT_OBJDIR ".libs/"
| #define YYTEXT_POINTER 1
| #define _FILE_OFFSET_BITS 64
| #define HAVE_DIRENT_H 1
| #define STDC_HEADERS 1
| #define HAVE_FCNTL_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_DLFCN_H 1
| #define HAVE_STROPTS_H 1
| #define HAVE_FNMATCH_H 1
| #define HAVE_SYS_UTSNAME_H 1
| #define SIZEOF_UNSIGNED_LONG 4
| #define HAVE_BYTESWAP_H 1
| #define HAVE_VPRINTF 1
| #define HAVE_GETEUID 1
| #define HAVE_GETUID 1
| #define HAVE_LINK 1
| #define HAVE_MEMMOVE 1
| #define HAVE_MEMSET 1
| #define HAVE_MKSTEMP 1
| #define HAVE_STRCHR 1
| #define HAVE_STRRCHR 1
| #define HAVE_STRTOL 1
| #define HAVE_GETOPT 1
| #define HAVE_GETOPT_LONG 1
| #define HAVE_VSNPRINTF 1
| #define HAVE_BACKTRACE 1
| #define HAVE_STRCASESTR 1
| #define HAVE_FFS 1
| #define HAVE_VASPRINTF 1
| #define HAVE_ALLOCA_H 1
| #define HAVE_ALLOCA 1
| #define HAS_GETDTABLESIZE 1
| #define HAS_GETIFADDRS 1
| #define HAS_MMAP 1
| #define HAVE_LIBM 1
| #define HAVE_CBRT 1
| #define HAVE_LINUX_AGPGART_H 1
| #define HAVE_LINUX_APM_BIOS_H 1
| #define HAVE_LINUX_FB_H 1
| #define HAVE_SYSV_IPC 1
| #define HAVE_BACKTRACE 1
| #define HAVE_EXECINFO_H 1
| #define LAUNCHD_ID_PREFIX "org.x"
| #define TLS __thread
| #define RETSIGTYPE void
| #define UNIXCONN 1
| #define TCPCONN 1
| #define IPv6 1
| #define HAVE_SOCKLEN_T 1
| /* end confdefs.h.  */
| /* Define authdes_seccreate to an innocuous variant, in case <limits.h> declares authdes_seccreate.
|    For example, HP-UX 11i <limits.h> declares gettimeofday.  */
| #define authdes_seccreate innocuous_authdes_seccreate
| 
| /* System header to define __stub macros and hopefully few prototypes,
|     which can conflict with char authdes_seccreate (); 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 authdes_seccreate
| 
| /* 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 authdes_seccreate ();
| /* 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_authdes_seccreate || defined __stub___authdes_seccreate
| choke me
| #endif
| 
| int
| main ()
| {
| return authdes_seccreate ();
|   ;
|   return 0;
| }
configure:17328: result: no
configure:17328: checking for authdes_create
configure:17328: powerpc-poky-linux-gcc -mcpu=603e  -mhard-float --sysroot=/home/kyu3/sdb/test/tmp/sysroots/qemuppc -std=gnu99 -o conftest -O2 -pipe -g -feliminate-unused-debug-types  -Wl,-O1  -Wl,--as-needed conftest.c -lm  >&5
configure:17328: $? = 0
configure:17328: result: yes
configure:17344: checking for library containing getsecretkey
configure:17375: powerpc-poky-linux-gcc -mcpu=603e  -mhard-float --sysroot=/home/kyu3/sdb/test/tmp/sysroots/qemuppc -std=gnu99 -o conftest -O2 -pipe -g -feliminate-unused-debug-types  -Wl,-O1  -Wl,--as-needed conftest.c -lm  >&5
configure:17375: $? = 0
configure:17392: result: none required
configure:17403: checking if Secure RPC authentication ("SUN-DES-1") should be supported
configure:17410: result: yes
configure:17481: checking whether to build documentation
configure:17483: result: yes
configure:17504: checking whether to build developer documentation
configure:17506: result: yes
configure:17525: checking for xmlto
configure:17543: found /usr/bin/xmlto
configure:17555: result: /usr/bin/xmlto
configure:17628: checking the xmlto version
configure:17631: result: 0.0.23
configure:17918: checking for PIXMAN
configure:17925: $PKG_CONFIG --exists --print-errors "$LIBPIXMAN"
configure:17928: $? = 0
configure:17941: $PKG_CONFIG --exists --print-errors "$LIBPIXMAN"
configure:17944: $? = 0
configure:18001: result: yes
configure:18016: checking for UDEV
configure:18023: $PKG_CONFIG --exists --print-errors "$LIBUDEV"
configure:18026: $? = 0
configure:18039: $PKG_CONFIG --exists --print-errors "$LIBUDEV"
configure:18042: $? = 0
configure:18079: result: yes
configure:18107: checking for DBUS
configure:18114: $PKG_CONFIG --exists --print-errors "$LIBDBUS"
configure:18117: $? = 0
configure:18130: $PKG_CONFIG --exists --print-errors "$LIBDBUS"
configure:18133: $? = 0
configure:18170: result: yes
configure:18212: checking for HAL
configure:18219: $PKG_CONFIG --exists --print-errors "hal"
configure:18222: $? = 0
configure:18235: $PKG_CONFIG --exists --print-errors "hal"
configure:18238: $? = 0
configure:18275: result: yes
configure:18326: checking for glibc...
configure:18337: powerpc-poky-linux-gcc -E --sysroot=/home/kyu3/sdb/test/tmp/sysroots/qemuppc  conftest.c
configure:18337: $? = 0
configure:18343: result: yes
configure:18348: checking for clock_gettime
configure:18348: powerpc-poky-linux-gcc -mcpu=603e  -mhard-float --sysroot=/home/kyu3/sdb/test/tmp/sysroots/qemuppc -std=gnu99 -o conftest -O2 -pipe -g -feliminate-unused-debug-types  -Wl,-O1  -Wl,--as-needed conftest.c -lm  >&5
/tmp/ccDW8E0D.o: In function `main':
/home/kyu3/sdb/test/tmp/work/ppc603e-poky-linux/xserver-xf86-lite-1.10.1-r0/xorg-server-1.10.1/conftest.c:116: undefined reference to `clock_gettime'
collect2: ld returned 1 exit status
configure:18348: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "xorg-server"
| #define PACKAGE_TARNAME "xorg-server"
| #define PACKAGE_VERSION "1.10.1"
| #define PACKAGE_STRING "xorg-server 1.10.1"
| #define PACKAGE_BUGREPORT "https://bugs.freedesktop.org/enter_bug.cgi?product=xorg"
| #define PACKAGE_URL ""
| #define PACKAGE "xorg-server"
| #define VERSION "1.10.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 PACKAGE_VERSION_MAJOR 1
| #define PACKAGE_VERSION_MINOR 10
| #define PACKAGE_VERSION_PATCHLEVEL 1
| #define HAVE_DLFCN_H 1
| #define LT_OBJDIR ".libs/"
| #define YYTEXT_POINTER 1
| #define _FILE_OFFSET_BITS 64
| #define HAVE_DIRENT_H 1
| #define STDC_HEADERS 1
| #define HAVE_FCNTL_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_DLFCN_H 1
| #define HAVE_STROPTS_H 1
| #define HAVE_FNMATCH_H 1
| #define HAVE_SYS_UTSNAME_H 1
| #define SIZEOF_UNSIGNED_LONG 4
| #define HAVE_BYTESWAP_H 1
| #define HAVE_VPRINTF 1
| #define HAVE_GETEUID 1
| #define HAVE_GETUID 1
| #define HAVE_LINK 1
| #define HAVE_MEMMOVE 1
| #define HAVE_MEMSET 1
| #define HAVE_MKSTEMP 1
| #define HAVE_STRCHR 1
| #define HAVE_STRRCHR 1
| #define HAVE_STRTOL 1
| #define HAVE_GETOPT 1
| #define HAVE_GETOPT_LONG 1
| #define HAVE_VSNPRINTF 1
| #define HAVE_BACKTRACE 1
| #define HAVE_STRCASESTR 1
| #define HAVE_FFS 1
| #define HAVE_VASPRINTF 1
| #define HAVE_ALLOCA_H 1
| #define HAVE_ALLOCA 1
| #define HAS_GETDTABLESIZE 1
| #define HAS_GETIFADDRS 1
| #define HAS_MMAP 1
| #define HAVE_LIBM 1
| #define HAVE_CBRT 1
| #define HAVE_LINUX_AGPGART_H 1
| #define HAVE_LINUX_APM_BIOS_H 1
| #define HAVE_LINUX_FB_H 1
| #define HAVE_SYSV_IPC 1
| #define HAVE_BACKTRACE 1
| #define HAVE_EXECINFO_H 1
| #define LAUNCHD_ID_PREFIX "org.x"
| #define TLS __thread
| #define RETSIGTYPE void
| #define UNIXCONN 1
| #define TCPCONN 1
| #define IPv6 1
| #define HAVE_SOCKLEN_T 1
| #define HAVE_AUTHDES_CREATE 1
| #define SECURE_RPC 1
| #define CONFIG_UDEV 1
| #define HAVE_DBUS 1
| #define USE_SIGIO_BY_DEFAULT TRUE
| /* end confdefs.h.  */
| /* Define clock_gettime to an innocuous variant, in case <limits.h> declares clock_gettime.
|    For example, HP-UX 11i <limits.h> declares gettimeofday.  */
| #define clock_gettime innocuous_clock_gettime
| 
| /* System header to define __stub macros and hopefully few prototypes,
|     which can conflict with char clock_gettime (); 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 clock_gettime
| 
| /* 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 clock_gettime ();
| /* 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_clock_gettime || defined __stub___clock_gettime
| choke me
| #endif
| 
| int
| main ()
| {
| return clock_gettime ();
|   ;
|   return 0;
| }
configure:18348: result: no
configure:18355: checking for clock_gettime in -lrt
configure:18380: powerpc-poky-linux-gcc -mcpu=603e  -mhard-float --sysroot=/home/kyu3/sdb/test/tmp/sysroots/qemuppc -std=gnu99 -o conftest -O2 -pipe -g -feliminate-unused-debug-types  -Wl,-O1  -Wl,--as-needed conftest.c -lrt  -lm  >&5
configure:18380: $? = 0
configure:18389: result: yes
configure:18401: checking for a useful monotonic clock ...
configure:18453: result: cross compiling
configure:19006: checking for DRI2PROTO
configure:19013: $PKG_CONFIG --exists --print-errors "$DRI2PROTO"
Package dri2proto was not found in the pkg-config search path.
Perhaps you should add the directory containing `dri2proto.pc'
to the PKG_CONFIG_PATH environment variable
No package 'dri2proto' found
configure:19016: $? = 1
configure:19029: $PKG_CONFIG --exists --print-errors "$DRI2PROTO"
Package dri2proto was not found in the pkg-config search path.
Perhaps you should add the directory containing `dri2proto.pc'
to the PKG_CONFIG_PATH environment variable
No package 'dri2proto' found
configure:19032: $? = 1
configure:19045: result: no
No package 'dri2proto' found
configure:19702: checking for strcasecmp
configure:19702: result: yes
configure:19711: checking for strncasecmp
configure:19711: result: yes
configure:19720: checking for strcasestr
configure:19720: result: yes
configure:19732: checking for XDMCP
configure:19739: $PKG_CONFIG --exists --print-errors "xdmcp"
configure:19742: $? = 0
configure:19755: $PKG_CONFIG --exists --print-errors "xdmcp"
configure:19758: $? = 0
configure:19795: result: yes
configure:19800: checking for XdmcpWrap in -lXdmcp
configure:19825: powerpc-poky-linux-gcc -mcpu=603e  -mhard-float --sysroot=/home/kyu3/sdb/test/tmp/sysroots/qemuppc -std=gnu99 -o conftest -O2 -pipe -g -feliminate-unused-debug-types  -Wl,-O1  -Wl,--as-needed conftest.c -lXdmcp -lXdmcp   -lm  >&5
configure:19825: $? = 0
configure:19834: result: yes
configure:20068: checking for GLIB
configure:20075: $PKG_CONFIG --exists --print-errors "$LIBGLIB"
configure:20078: $? = 0
configure:20091: $PKG_CONFIG --exists --print-errors "$LIBGLIB"
configure:20094: $? = 0
configure:20131: result: yes
configure:20139: checking whether the linker supports -wrap
configure:20170: result: no
configure:20248: checking for SHA1Init
configure:20248: powerpc-poky-linux-gcc -mcpu=603e  -mhard-float --sysroot=/home/kyu3/sdb/test/tmp/sysroots/qemuppc -std=gnu99 -o conftest -O2 -pipe -g -feliminate-unused-debug-types  -Wl,-O1  -Wl,--as-needed conftest.c -lm  >&5
/tmp/cc7mrPxR.o: In function `main':
/home/kyu3/sdb/test/tmp/work/ppc603e-poky-linux/xserver-xf86-lite-1.10.1-r0/xorg-server-1.10.1/conftest.c:166: undefined reference to `SHA1Init'
collect2: ld returned 1 exit status
configure:20248: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "xorg-server"
| #define PACKAGE_TARNAME "xorg-server"
| #define PACKAGE_VERSION "1.10.1"
| #define PACKAGE_STRING "xorg-server 1.10.1"
| #define PACKAGE_BUGREPORT "https://bugs.freedesktop.org/enter_bug.cgi?product=xorg"
| #define PACKAGE_URL ""
| #define PACKAGE "xorg-server"
| #define VERSION "1.10.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 PACKAGE_VERSION_MAJOR 1
| #define PACKAGE_VERSION_MINOR 10
| #define PACKAGE_VERSION_PATCHLEVEL 1
| #define HAVE_DLFCN_H 1
| #define LT_OBJDIR ".libs/"
| #define YYTEXT_POINTER 1
| #define _FILE_OFFSET_BITS 64
| #define HAVE_DIRENT_H 1
| #define STDC_HEADERS 1
| #define HAVE_FCNTL_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_DLFCN_H 1
| #define HAVE_STROPTS_H 1
| #define HAVE_FNMATCH_H 1
| #define HAVE_SYS_UTSNAME_H 1
| #define SIZEOF_UNSIGNED_LONG 4
| #define HAVE_BYTESWAP_H 1
| #define HAVE_VPRINTF 1
| #define HAVE_GETEUID 1
| #define HAVE_GETUID 1
| #define HAVE_LINK 1
| #define HAVE_MEMMOVE 1
| #define HAVE_MEMSET 1
| #define HAVE_MKSTEMP 1
| #define HAVE_STRCHR 1
| #define HAVE_STRRCHR 1
| #define HAVE_STRTOL 1
| #define HAVE_GETOPT 1
| #define HAVE_GETOPT_LONG 1
| #define HAVE_VSNPRINTF 1
| #define HAVE_BACKTRACE 1
| #define HAVE_STRCASESTR 1
| #define HAVE_FFS 1
| #define HAVE_VASPRINTF 1
| #define HAVE_ALLOCA_H 1
| #define HAVE_ALLOCA 1
| #define HAS_GETDTABLESIZE 1
| #define HAS_GETIFADDRS 1
| #define HAS_MMAP 1
| #define HAVE_LIBM 1
| #define HAVE_CBRT 1
| #define HAVE_LINUX_AGPGART_H 1
| #define HAVE_LINUX_APM_BIOS_H 1
| #define HAVE_LINUX_FB_H 1
| #define HAVE_SYSV_IPC 1
| #define HAVE_BACKTRACE 1
| #define HAVE_EXECINFO_H 1
| #define LAUNCHD_ID_PREFIX "org.x"
| #define TLS __thread
| #define RETSIGTYPE void
| #define UNIXCONN 1
| #define TCPCONN 1
| #define IPv6 1
| #define HAVE_SOCKLEN_T 1
| #define HAVE_AUTHDES_CREATE 1
| #define SECURE_RPC 1
| #define CONFIG_UDEV 1
| #define HAVE_DBUS 1
| #define USE_SIGIO_BY_DEFAULT TRUE
| #define XV 1
| #define XvExtension 1
| #define XvMCExtension 1
| #define XREGISTRY 1
| #define COMPOSITE 1
| #define MITSHM 1
| #define HAS_SHM 1
| #define SCREENSAVER 1
| #define RES 1
| #define XACE 1
| #define DBE 1
| #define DPMSExtension 1
| #define RENDER 1
| #define RANDR 1
| #define XFIXES 1
| #define DAMAGE 1
| #define XINPUT 1
| #define SHAPE 1
| #define XKB_BASE_DIRECTORY "/usr/share/X11/xkb"
| #define XKB_BIN_DIRECTORY "/usr/bin"
| #define XKM_OUTPUT_DIR "/var/lib/xkb/"
| #define XKB_DFLT_RULES "base"
| #define XKB_DFLT_MODEL "pc105"
| #define XKB_DFLT_LAYOUT "us"
| #define XKB_DFLT_VARIANT ""
| #define XKB_DFLT_OPTIONS ""
| #define XDMCP 1
| #define HASXDMAUTH 1
| #define COMPILEDDEFAULTFONTPATH "/usr/share/fonts/X11/misc/,/usr/share/fonts/X11/TTF/,/usr/share/fonts/X11/OTF/,/usr/share/fonts/X11/Type1/,/usr/share/fonts/X11/100dpi/,/usr/share/fonts/X11/75dpi/"
| #define PCI_TXT_IDS_PATH ""
| #define SERVER_MISC_CONFIG_PATH "/usr/lib/xorg"
| #define BASE_FONT_PATH "/usr/share/fonts/X11"
| #define DRI_DRIVER_PATH ""
| #define XVENDORNAME "The X.Org Foundation"
| #define XVENDORNAMESHORT "X.Org"
| #define XORG_DATE "2011-04-15"
| #define XORG_MAN_VERSION "Version 1.10.1"
| #define BUILDERADDR "xorg@lists.freedesktop.org"
| #define OSNAME "Linux 2.6.35-25-server x86_64"
| #define OSVENDOR ""
| #define BUILDERSTRING ""
| #define VENDOR_NAME "The X.Org Foundation"
| #define VENDOR_NAME_SHORT "X.Org"
| #define VENDOR_RELEASE (((1) * 10000000) + ((10) * 100000) + ((1) * 1000) + 0)
| #define VENDOR_MAN_VERSION "Version 1.10.1"
| #define NO_LIBCWRAPPER 1
| #define XTEST 1
| #define XSYNC 1
| #define XCMISC 1
| #define BIGREQS 1
| /* end confdefs.h.  */
| /* Define SHA1Init to an innocuous variant, in case <limits.h> declares SHA1Init.
|    For example, HP-UX 11i <limits.h> declares gettimeofday.  */
| #define SHA1Init innocuous_SHA1Init
| 
| /* System header to define __stub macros and hopefully few prototypes,
|     which can conflict with char SHA1Init (); 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 SHA1Init
| 
| /* 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 SHA1Init ();
| /* 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_SHA1Init || defined __stub___SHA1Init
| choke me
| #endif
| 
| int
| main ()
| {
| return SHA1Init ();
|   ;
|   return 0;
| }
configure:20248: result: no
configure:20265: checking for CC_SHA1_Init
configure:20265: powerpc-poky-linux-gcc -mcpu=603e  -mhard-float --sysroot=/home/kyu3/sdb/test/tmp/sysroots/qemuppc -std=gnu99 -o conftest -O2 -pipe -g -feliminate-unused-debug-types  -Wl,-O1  -Wl,--as-needed conftest.c -lm  >&5
/tmp/cczilO8T.o: In function `main':
/home/kyu3/sdb/test/tmp/work/ppc603e-poky-linux/xserver-xf86-lite-1.10.1-r0/xorg-server-1.10.1/conftest.c:166: undefined reference to `CC_SHA1_Init'
collect2: ld returned 1 exit status
configure:20265: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "xorg-server"
| #define PACKAGE_TARNAME "xorg-server"
| #define PACKAGE_VERSION "1.10.1"
| #define PACKAGE_STRING "xorg-server 1.10.1"
| #define PACKAGE_BUGREPORT "https://bugs.freedesktop.org/enter_bug.cgi?product=xorg"
| #define PACKAGE_URL ""
| #define PACKAGE "xorg-server"
| #define VERSION "1.10.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 PACKAGE_VERSION_MAJOR 1
| #define PACKAGE_VERSION_MINOR 10
| #define PACKAGE_VERSION_PATCHLEVEL 1
| #define HAVE_DLFCN_H 1
| #define LT_OBJDIR ".libs/"
| #define YYTEXT_POINTER 1
| #define _FILE_OFFSET_BITS 64
| #define HAVE_DIRENT_H 1
| #define STDC_HEADERS 1
| #define HAVE_FCNTL_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_DLFCN_H 1
| #define HAVE_STROPTS_H 1
| #define HAVE_FNMATCH_H 1
| #define HAVE_SYS_UTSNAME_H 1
| #define SIZEOF_UNSIGNED_LONG 4
| #define HAVE_BYTESWAP_H 1
| #define HAVE_VPRINTF 1
| #define HAVE_GETEUID 1
| #define HAVE_GETUID 1
| #define HAVE_LINK 1
| #define HAVE_MEMMOVE 1
| #define HAVE_MEMSET 1
| #define HAVE_MKSTEMP 1
| #define HAVE_STRCHR 1
| #define HAVE_STRRCHR 1
| #define HAVE_STRTOL 1
| #define HAVE_GETOPT 1
| #define HAVE_GETOPT_LONG 1
| #define HAVE_VSNPRINTF 1
| #define HAVE_BACKTRACE 1
| #define HAVE_STRCASESTR 1
| #define HAVE_FFS 1
| #define HAVE_VASPRINTF 1
| #define HAVE_ALLOCA_H 1
| #define HAVE_ALLOCA 1
| #define HAS_GETDTABLESIZE 1
| #define HAS_GETIFADDRS 1
| #define HAS_MMAP 1
| #define HAVE_LIBM 1
| #define HAVE_CBRT 1
| #define HAVE_LINUX_AGPGART_H 1
| #define HAVE_LINUX_APM_BIOS_H 1
| #define HAVE_LINUX_FB_H 1
| #define HAVE_SYSV_IPC 1
| #define HAVE_BACKTRACE 1
| #define HAVE_EXECINFO_H 1
| #define LAUNCHD_ID_PREFIX "org.x"
| #define TLS __thread
| #define RETSIGTYPE void
| #define UNIXCONN 1
| #define TCPCONN 1
| #define IPv6 1
| #define HAVE_SOCKLEN_T 1
| #define HAVE_AUTHDES_CREATE 1
| #define SECURE_RPC 1
| #define CONFIG_UDEV 1
| #define HAVE_DBUS 1
| #define USE_SIGIO_BY_DEFAULT TRUE
| #define XV 1
| #define XvExtension 1
| #define XvMCExtension 1
| #define XREGISTRY 1
| #define COMPOSITE 1
| #define MITSHM 1
| #define HAS_SHM 1
| #define SCREENSAVER 1
| #define RES 1
| #define XACE 1
| #define DBE 1
| #define DPMSExtension 1
| #define RENDER 1
| #define RANDR 1
| #define XFIXES 1
| #define DAMAGE 1
| #define XINPUT 1
| #define SHAPE 1
| #define XKB_BASE_DIRECTORY "/usr/share/X11/xkb"
| #define XKB_BIN_DIRECTORY "/usr/bin"
| #define XKM_OUTPUT_DIR "/var/lib/xkb/"
| #define XKB_DFLT_RULES "base"
| #define XKB_DFLT_MODEL "pc105"
| #define XKB_DFLT_LAYOUT "us"
| #define XKB_DFLT_VARIANT ""
| #define XKB_DFLT_OPTIONS ""
| #define XDMCP 1
| #define HASXDMAUTH 1
| #define COMPILEDDEFAULTFONTPATH "/usr/share/fonts/X11/misc/,/usr/share/fonts/X11/TTF/,/usr/share/fonts/X11/OTF/,/usr/share/fonts/X11/Type1/,/usr/share/fonts/X11/100dpi/,/usr/share/fonts/X11/75dpi/"
| #define PCI_TXT_IDS_PATH ""
| #define SERVER_MISC_CONFIG_PATH "/usr/lib/xorg"
| #define BASE_FONT_PATH "/usr/share/fonts/X11"
| #define DRI_DRIVER_PATH ""
| #define XVENDORNAME "The X.Org Foundation"
| #define XVENDORNAMESHORT "X.Org"
| #define XORG_DATE "2011-04-15"
| #define XORG_MAN_VERSION "Version 1.10.1"
| #define BUILDERADDR "xorg@lists.freedesktop.org"
| #define OSNAME "Linux 2.6.35-25-server x86_64"
| #define OSVENDOR ""
| #define BUILDERSTRING ""
| #define VENDOR_NAME "The X.Org Foundation"
| #define VENDOR_NAME_SHORT "X.Org"
| #define VENDOR_RELEASE (((1) * 10000000) + ((10) * 100000) + ((1) * 1000) + 0)
| #define VENDOR_MAN_VERSION "Version 1.10.1"
| #define NO_LIBCWRAPPER 1
| #define XTEST 1
| #define XSYNC 1
| #define XCMISC 1
| #define BIGREQS 1
| /* end confdefs.h.  */
| /* Define CC_SHA1_Init to an innocuous variant, in case <limits.h> declares CC_SHA1_Init.
|    For example, HP-UX 11i <limits.h> declares gettimeofday.  */
| #define CC_SHA1_Init innocuous_CC_SHA1_Init
| 
| /* System header to define __stub macros and hopefully few prototypes,
|     which can conflict with char CC_SHA1_Init (); 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 CC_SHA1_Init
| 
| /* 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 CC_SHA1_Init ();
| /* 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_CC_SHA1_Init || defined __stub___CC_SHA1_Init
| choke me
| #endif
| 
| int
| main ()
| {
| return CC_SHA1_Init ();
|   ;
|   return 0;
| }
configure:20265: result: no
configure:20282: checking for SHA1Init in -lmd
configure:20307: powerpc-poky-linux-gcc -mcpu=603e  -mhard-float --sysroot=/home/kyu3/sdb/test/tmp/sysroots/qemuppc -std=gnu99 -o conftest -O2 -pipe -g -feliminate-unused-debug-types  -Wl,-O1  -Wl,--as-needed conftest.c -lmd  -lm  >&5
/home/kyu3/sdb/test/tmp/sysroots/x86_64-linux/usr/libexec/ppc603e-poky-linux/gcc/powerpc-poky-linux/4.6.0/ld: cannot find -lmd
collect2: ld returned 1 exit status
configure:20307: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "xorg-server"
| #define PACKAGE_TARNAME "xorg-server"
| #define PACKAGE_VERSION "1.10.1"
| #define PACKAGE_STRING "xorg-server 1.10.1"
| #define PACKAGE_BUGREPORT "https://bugs.freedesktop.org/enter_bug.cgi?product=xorg"
| #define PACKAGE_URL ""
| #define PACKAGE "xorg-server"
| #define VERSION "1.10.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 PACKAGE_VERSION_MAJOR 1
| #define PACKAGE_VERSION_MINOR 10
| #define PACKAGE_VERSION_PATCHLEVEL 1
| #define HAVE_DLFCN_H 1
| #define LT_OBJDIR ".libs/"
| #define YYTEXT_POINTER 1
| #define _FILE_OFFSET_BITS 64
| #define HAVE_DIRENT_H 1
| #define STDC_HEADERS 1
| #define HAVE_FCNTL_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_DLFCN_H 1
| #define HAVE_STROPTS_H 1
| #define HAVE_FNMATCH_H 1
| #define HAVE_SYS_UTSNAME_H 1
| #define SIZEOF_UNSIGNED_LONG 4
| #define HAVE_BYTESWAP_H 1
| #define HAVE_VPRINTF 1
| #define HAVE_GETEUID 1
| #define HAVE_GETUID 1
| #define HAVE_LINK 1
| #define HAVE_MEMMOVE 1
| #define HAVE_MEMSET 1
| #define HAVE_MKSTEMP 1
| #define HAVE_STRCHR 1
| #define HAVE_STRRCHR 1
| #define HAVE_STRTOL 1
| #define HAVE_GETOPT 1
| #define HAVE_GETOPT_LONG 1
| #define HAVE_VSNPRINTF 1
| #define HAVE_BACKTRACE 1
| #define HAVE_STRCASESTR 1
| #define HAVE_FFS 1
| #define HAVE_VASPRINTF 1
| #define HAVE_ALLOCA_H 1
| #define HAVE_ALLOCA 1
| #define HAS_GETDTABLESIZE 1
| #define HAS_GETIFADDRS 1
| #define HAS_MMAP 1
| #define HAVE_LIBM 1
| #define HAVE_CBRT 1
| #define HAVE_LINUX_AGPGART_H 1
| #define HAVE_LINUX_APM_BIOS_H 1
| #define HAVE_LINUX_FB_H 1
| #define HAVE_SYSV_IPC 1
| #define HAVE_BACKTRACE 1
| #define HAVE_EXECINFO_H 1
| #define LAUNCHD_ID_PREFIX "org.x"
| #define TLS __thread
| #define RETSIGTYPE void
| #define UNIXCONN 1
| #define TCPCONN 1
| #define IPv6 1
| #define HAVE_SOCKLEN_T 1
| #define HAVE_AUTHDES_CREATE 1
| #define SECURE_RPC 1
| #define CONFIG_UDEV 1
| #define HAVE_DBUS 1
| #define USE_SIGIO_BY_DEFAULT TRUE
| #define XV 1
| #define XvExtension 1
| #define XvMCExtension 1
| #define XREGISTRY 1
| #define COMPOSITE 1
| #define MITSHM 1
| #define HAS_SHM 1
| #define SCREENSAVER 1
| #define RES 1
| #define XACE 1
| #define DBE 1
| #define DPMSExtension 1
| #define RENDER 1
| #define RANDR 1
| #define XFIXES 1
| #define DAMAGE 1
| #define XINPUT 1
| #define SHAPE 1
| #define XKB_BASE_DIRECTORY "/usr/share/X11/xkb"
| #define XKB_BIN_DIRECTORY "/usr/bin"
| #define XKM_OUTPUT_DIR "/var/lib/xkb/"
| #define XKB_DFLT_RULES "base"
| #define XKB_DFLT_MODEL "pc105"
| #define XKB_DFLT_LAYOUT "us"
| #define XKB_DFLT_VARIANT ""
| #define XKB_DFLT_OPTIONS ""
| #define XDMCP 1
| #define HASXDMAUTH 1
| #define COMPILEDDEFAULTFONTPATH "/usr/share/fonts/X11/misc/,/usr/share/fonts/X11/TTF/,/usr/share/fonts/X11/OTF/,/usr/share/fonts/X11/Type1/,/usr/share/fonts/X11/100dpi/,/usr/share/fonts/X11/75dpi/"
| #define PCI_TXT_IDS_PATH ""
| #define SERVER_MISC_CONFIG_PATH "/usr/lib/xorg"
| #define BASE_FONT_PATH "/usr/share/fonts/X11"
| #define DRI_DRIVER_PATH ""
| #define XVENDORNAME "The X.Org Foundation"
| #define XVENDORNAMESHORT "X.Org"
| #define XORG_DATE "2011-04-15"
| #define XORG_MAN_VERSION "Version 1.10.1"
| #define BUILDERADDR "xorg@lists.freedesktop.org"
| #define OSNAME "Linux 2.6.35-25-server x86_64"
| #define OSVENDOR ""
| #define BUILDERSTRING ""
| #define VENDOR_NAME "The X.Org Foundation"
| #define VENDOR_NAME_SHORT "X.Org"
| #define VENDOR_RELEASE (((1) * 10000000) + ((10) * 100000) + ((1) * 1000) + 0)
| #define VENDOR_MAN_VERSION "Version 1.10.1"
| #define NO_LIBCWRAPPER 1
| #define XTEST 1
| #define XSYNC 1
| #define XCMISC 1
| #define BIGREQS 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 SHA1Init ();
| int
| main ()
| {
| return SHA1Init ();
|   ;
|   return 0;
| }
configure:20316: result: no
configure:20336: checking for LIBSHA1
configure:20343: $PKG_CONFIG --exists --print-errors "libsha1"
Package libsha1 was not found in the pkg-config search path.
Perhaps you should add the directory containing `libsha1.pc'
to the PKG_CONFIG_PATH environment variable
No package 'libsha1' found
configure:20346: $? = 1
configure:20359: $PKG_CONFIG --exists --print-errors "libsha1"
Package libsha1 was not found in the pkg-config search path.
Perhaps you should add the directory containing `libsha1.pc'
to the PKG_CONFIG_PATH environment variable
No package 'libsha1' found
configure:20362: $? = 1
configure:20375: result: no
No package 'libsha1' found
configure:20415: checking for gcry_md_open in -lgcrypt
configure:20440: powerpc-poky-linux-gcc -mcpu=603e  -mhard-float --sysroot=/home/kyu3/sdb/test/tmp/sysroots/qemuppc -std=gnu99 -o conftest -O2 -pipe -g -feliminate-unused-debug-types  -Wl,-O1  -Wl,--as-needed conftest.c -lgcrypt  -lm  >&5
configure:20440: $? = 0
configure:20449: result: yes
configure:20468: checking for SHA1_Init in -lcrypto
configure:20493: powerpc-poky-linux-gcc -mcpu=603e  -mhard-float --sysroot=/home/kyu3/sdb/test/tmp/sysroots/qemuppc -std=gnu99 -o conftest -O2 -pipe -g -feliminate-unused-debug-types  -Wl,-O1  -Wl,--as-needed conftest.c -lcrypto  -lm  >&5
configure:20493: $? = 0
configure:20502: result: yes
configure:20510: checking for OPENSSL
configure:20517: $PKG_CONFIG --exists --print-errors "openssl"
configure:20520: $? = 0
configure:20533: $PKG_CONFIG --exists --print-errors "openssl"
configure:20536: $? = 0
configure:20573: result: yes
configure:20594: checking for SHA1 implementation
configure:20599: result: libgcrypt
configure:20606: checking for XSERVERCFLAGS
configure:20613: $PKG_CONFIG --exists --print-errors "$REQUIRED_MODULES $REQUIRED_LIBS"
configure:20616: $? = 0
configure:20629: $PKG_CONFIG --exists --print-errors "$REQUIRED_MODULES $REQUIRED_LIBS"
configure:20632: $? = 0
configure:20689: result: yes
configure:20695: checking for XSERVERLIBS
configure:20702: $PKG_CONFIG --exists --print-errors "$REQUIRED_LIBS"
configure:20705: $? = 0
configure:20718: $PKG_CONFIG --exists --print-errors "$REQUIRED_LIBS"
configure:20721: $? = 0
configure:20778: result: yes
configure:20813: checking if SVR4 needs to be defined
configure:20832: result: no
configure:20842: checking whether to build Xvfb DDX
configure:20844: result: no
configure:20866: checking for XNESTMODULES
configure:20873: $PKG_CONFIG --exists --print-errors "$LIBXEXT x11 xau $XDMCP_MODULES"
configure:20876: $? = 0
configure:20889: $PKG_CONFIG --exists --print-errors "$LIBXEXT x11 xau $XDMCP_MODULES"
configure:20892: $? = 0
configure:20929: result: yes
configure:20933: checking whether to build Xnest DDX
configure:20938: result: no
configure:20961: checking whether to build Xorg DDX
configure:20970: result: yes
configure:20987: checking for symbol visibility support
configure:21023: powerpc-poky-linux-gcc -mcpu=603e  -mhard-float --sysroot=/home/kyu3/sdb/test/tmp/sysroots/qemuppc -std=gnu99 -c -O2 -pipe -g -feliminate-unused-debug-types -fvisibility=hidden  conftest.c >&5
configure:21023: $? = 0
configure:21031: result: yes
configure:21043: checking for PCIACCESS
configure:21050: $PKG_CONFIG --exists --print-errors "$LIBPCIACCESS"
configure:21053: $? = 0
configure:21066: $PKG_CONFIG --exists --print-errors "$LIBPCIACCESS"
configure:21069: $? = 0
configure:21126: result: yes
configure:21136: checking for pci_system_init_dev_mem
configure:21136: powerpc-poky-linux-gcc -mcpu=603e  -mhard-float --sysroot=/home/kyu3/sdb/test/tmp/sysroots/qemuppc -std=gnu99 -o conftest    -Wl,-O1  -Wl,--as-needed conftest.c -lpciaccess   >&5
configure:21136: $? = 0
configure:21136: result: yes
configure:21147: checking for pci_device_enable
configure:21147: powerpc-poky-linux-gcc -mcpu=603e  -mhard-float --sysroot=/home/kyu3/sdb/test/tmp/sysroots/qemuppc -std=gnu99 -o conftest    -Wl,-O1  -Wl,--as-needed conftest.c -lpciaccess   >&5
configure:21147: $? = 0
configure:21147: result: yes
configure:21158: checking for pci_device_is_boot_vga
configure:21158: powerpc-poky-linux-gcc -mcpu=603e  -mhard-float --sysroot=/home/kyu3/sdb/test/tmp/sysroots/qemuppc -std=gnu99 -o conftest    -Wl,-O1  -Wl,--as-needed conftest.c -lpciaccess   >&5
configure:21158: $? = 0
configure:21158: result: yes
configure:21169: checking for pci_device_vgaarb_init
configure:21169: powerpc-poky-linux-gcc -mcpu=603e  -mhard-float --sysroot=/home/kyu3/sdb/test/tmp/sysroots/qemuppc -std=gnu99 -o conftest    -Wl,-O1  -Wl,--as-needed conftest.c -lpciaccess   >&5
configure:21169: $? = 0
configure:21169: result: yes
configure:21530: checking for XF86VIDMODE
configure:21537: $PKG_CONFIG --exists --print-errors "$VIDMODEPROTO"
configure:21540: $? = 0
configure:21553: $PKG_CONFIG --exists --print-errors "$VIDMODEPROTO"
configure:21556: $? = 0
configure:21593: result: yes
configure:21602: checking for XF86VIDMODE
configure:21685: result: yes
configure:21697: checking for XORG_MODULES
configure:21704: $PKG_CONFIG --exists --print-errors "$XORG_MODULES"
configure:21707: $? = 0
configure:21720: $PKG_CONFIG --exists --print-errors "$XORG_MODULES"
configure:21723: $? = 0
configure:21780: result: yes
configure:21796: checking for perl
configure:21814: found /home/kyu3/sdb/test/tmp/sysroots/x86_64-linux/usr/bin/perl
configure:21827: result: /home/kyu3/sdb/test/tmp/sysroots/x86_64-linux/usr/bin/perl
configure:22103: checking whether to build XWin DDX
configure:22112: result: no
configure:22737: checking dependency style of $(CC)
configure:22845: result: none
configure:22887: checking for DMXMODULES
configure:22894: $PKG_CONFIG --exists --print-errors "xmuu $LIBXEXT x11 xrender xfixes $LIBXI $DMXPROTO xau $XDMCP_MODULES"
configure:22897: $? = 0
configure:22910: $PKG_CONFIG --exists --print-errors "xmuu $LIBXEXT x11 xrender xfixes $LIBXI $DMXPROTO xau $XDMCP_MODULES"
configure:22913: $? = 0
configure:22950: result: yes
configure:22954: checking for XDMXCONFIG_DEP
configure:22961: $PKG_CONFIG --exists --print-errors "xaw7 xmu xt xpm x11"
Package xaw7 was not found in the pkg-config search path.
Perhaps you should add the directory containing `xaw7.pc'
to the PKG_CONFIG_PATH environment variable
No package 'xaw7' found
Package xpm was not found in the pkg-config search path.
Perhaps you should add the directory containing `xpm.pc'
to the PKG_CONFIG_PATH environment variable
No package 'xpm' found
configure:22964: $? = 1
configure:22977: $PKG_CONFIG --exists --print-errors "xaw7 xmu xt xpm x11"
Package xaw7 was not found in the pkg-config search path.
Perhaps you should add the directory containing `xaw7.pc'
to the PKG_CONFIG_PATH environment variable
No package 'xaw7' found
Package xpm was not found in the pkg-config search path.
Perhaps you should add the directory containing `xpm.pc'
to the PKG_CONFIG_PATH environment variable
No package 'xpm' found
configure:22980: $? = 1
configure:22993: result: no
No package 'xaw7' found
No package 'xpm' found
configure:23022: checking whether to build Xdmx DDX
configure:23031: result: no
configure:24095: powerpc-poky-linux-gcc -mcpu=603e  -mhard-float --sysroot=/home/kyu3/sdb/test/tmp/sysroots/qemuppc -std=gnu99 -c -O2 -pipe -g -feliminate-unused-debug-types  conftest.c >&5
configure:24095: $? = 0
configure:24674: creating ./config.status

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

This file was extended by xorg-server config.status 1.10.1, which was
generated by GNU Autoconf 2.65.  Invocation command line was

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

on kyu3-ubuntu

config.status:1752: creating Makefile
config.status:1752: creating glx/Makefile
config.status:1752: creating include/Makefile
config.status:1752: creating composite/Makefile
config.status:1752: creating damageext/Makefile
config.status:1752: creating dbe/Makefile
config.status:1752: creating dix/Makefile
config.status:1752: creating doc/Makefile
config.status:1752: creating doc/man/Makefile
config.status:1752: creating doc/xml/Makefile
config.status:1752: creating doc/xml/dtrace/Makefile
config.status:1752: creating doc/xml/xserver.ent
config.status:1752: creating fb/Makefile
config.status:1752: creating record/Makefile
config.status:1752: creating config/Makefile
config.status:1752: creating mi/Makefile
config.status:1752: creating miext/Makefile
config.status:1752: creating miext/sync/Makefile
config.status:1752: creating miext/damage/Makefile
config.status:1752: creating miext/shadow/Makefile
config.status:1752: creating miext/cw/Makefile
config.status:1752: creating miext/rootless/Makefile
config.status:1752: creating os/Makefile
config.status:1752: creating randr/Makefile
config.status:1752: creating render/Makefile
config.status:1752: creating xkb/Makefile
config.status:1752: creating Xext/Makefile
config.status:1752: creating Xi/Makefile
config.status:1752: creating xfixes/Makefile
config.status:1752: creating exa/Makefile
config.status:1752: creating hw/Makefile
config.status:1752: creating hw/xfree86/Makefile
config.status:1752: creating hw/xfree86/common/Makefile
config.status:1752: creating hw/xfree86/common/xf86Build.h
config.status:1752: creating hw/xfree86/ddc/Makefile
config.status:1752: creating hw/xfree86/dixmods/Makefile
config.status:1752: creating hw/xfree86/dixmods/extmod/Makefile
config.status:1752: creating hw/xfree86/doc/Makefile
config.status:1752: creating hw/xfree86/doc/devel/Makefile
config.status:1752: creating hw/xfree86/doc/man/Makefile
config.status:1752: creating hw/xfree86/doc/sgml/Makefile
config.status:1752: creating hw/xfree86/dri/Makefile
config.status:1752: creating hw/xfree86/dri2/Makefile
config.status:1752: creating hw/xfree86/exa/Makefile
config.status:1752: creating hw/xfree86/exa/man/Makefile
config.status:1752: creating hw/xfree86/fbdevhw/Makefile
config.status:1752: creating hw/xfree86/fbdevhw/man/Makefile
config.status:1752: creating hw/xfree86/i2c/Makefile
config.status:1752: creating hw/xfree86/int10/Makefile
config.status:1752: creating hw/xfree86/loader/Makefile
config.status:1752: creating hw/xfree86/modes/Makefile
config.status:1752: creating hw/xfree86/os-support/Makefile
config.status:1752: creating hw/xfree86/os-support/bsd/Makefile
config.status:1752: creating hw/xfree86/os-support/bus/Makefile
config.status:1752: creating hw/xfree86/os-support/hurd/Makefile
config.status:1752: creating hw/xfree86/os-support/misc/Makefile
config.status:1752: creating hw/xfree86/os-support/linux/Makefile
config.status:1752: creating hw/xfree86/os-support/solaris/Makefile
config.status:1752: creating hw/xfree86/parser/Makefile
config.status:1752: creating hw/xfree86/ramdac/Makefile
config.status:1752: creating hw/xfree86/shadowfb/Makefile
config.status:1752: creating hw/xfree86/vbe/Makefile
config.status:1752: creating hw/xfree86/vgahw/Makefile
config.status:1752: creating hw/xfree86/x86emu/Makefile
config.status:1752: creating hw/xfree86/xaa/Makefile
config.status:1752: creating hw/xfree86/utils/Makefile
config.status:1752: creating hw/xfree86/utils/man/Makefile
config.status:1752: creating hw/xfree86/utils/cvt/Makefile
config.status:1752: creating hw/xfree86/utils/gtf/Makefile
config.status:1752: creating hw/dmx/config/Makefile
config.status:1752: creating hw/dmx/config/man/Makefile
config.status:1752: creating hw/dmx/doc/Makefile
config.status:1752: creating hw/dmx/doc/doxygen.conf
config.status:1752: creating hw/dmx/examples/Makefile
config.status:1752: creating hw/dmx/input/Makefile
config.status:1752: creating hw/dmx/glxProxy/Makefile
config.status:1752: creating hw/dmx/Makefile
config.status:1752: creating hw/dmx/man/Makefile
config.status:1752: creating hw/vfb/Makefile
config.status:1752: creating hw/vfb/man/Makefile
config.status:1752: creating hw/xnest/Makefile
config.status:1752: creating hw/xnest/man/Makefile
config.status:1752: creating hw/xwin/Makefile
config.status:1752: creating hw/xwin/glx/Makefile
config.status:1752: creating hw/xwin/man/Makefile
config.status:1752: creating hw/xquartz/Makefile
config.status:1752: creating hw/xquartz/GL/Makefile
config.status:1752: creating hw/xquartz/bundle/Makefile
config.status:1752: creating hw/xquartz/man/Makefile
config.status:1752: creating hw/xquartz/mach-startup/Makefile
config.status:1752: creating hw/xquartz/pbproxy/Makefile
config.status:1752: creating hw/xquartz/xpr/Makefile
config.status:1752: creating hw/kdrive/Makefile
config.status:1752: creating hw/kdrive/ephyr/Makefile
config.status:1752: creating hw/kdrive/ephyr/man/Makefile
config.status:1752: creating hw/kdrive/fake/Makefile
config.status:1752: creating hw/kdrive/fbdev/Makefile
config.status:1752: creating hw/kdrive/linux/Makefile
config.status:1752: creating hw/kdrive/src/Makefile
config.status:1752: creating test/Makefile
config.status:1752: creating test/xi2/Makefile
config.status:1752: creating xorg-server.pc
config.status:1752: creating include/do-not-use-config.h
config.status:1752: creating include/xorg-server.h
config.status:1752: creating include/dix-config.h
config.status:1752: creating include/xorg-config.h
config.status:1752: creating include/xkb-config.h
config.status:1752: creating include/xwin-config.h
config.status:1752: creating include/kdrive-config.h
config.status:1752: creating include/version-config.h
config.status:1972: executing depfiles commands
config.status:1972: executing libtool commands
config.status:1972: executing sdksyms commands
configure:27006: WARNING: unrecognized options: --disable-acfb, --disable-ccfb, --disable-mcfb, --disable-xf86misc, --disable-xorgcfg, --with-fontdir

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

ac_cv___va_copy=yes
ac_cv_af_unix_large_dgram=yes
ac_cv_alignof_CORBA_boolean=1
ac_cv_alignof_CORBA_char=1
ac_cv_alignof_CORBA_double=4
ac_cv_alignof_CORBA_float=4
ac_cv_alignof_CORBA_long=4
ac_cv_alignof_CORBA_long_double=4
ac_cv_alignof_CORBA_long_long=4
ac_cv_alignof_CORBA_octet=1
ac_cv_alignof_CORBA_pointer=4
ac_cv_alignof_CORBA_short=2
ac_cv_alignof_CORBA_struct=4
ac_cv_alignof_CORBA_wchar=2
ac_cv_build=x86_64-pc-linux-gnu
ac_cv_c_bigendian=yes
ac_cv_c_bigendian_php=yes
ac_cv_c_compiler_gnu=yes
ac_cv_c_const=yes
ac_cv_c_littleendian=no
ac_cv_c_long_double=yes
ac_cv_check_sjlj=ssjlj
ac_cv_conv_longlong_to_float=yes
ac_cv_dirent_have_space_d_name=yes
ac_cv_env_CCASFLAGS_set=
ac_cv_env_CCASFLAGS_value=
ac_cv_env_CCAS_set=
ac_cv_env_CCAS_value=
ac_cv_env_CC_set=set
ac_cv_env_CC_value='powerpc-poky-linux-gcc -mcpu=603e  -mhard-float --sysroot=/home/kyu3/sdb/test/tmp/sysroots/qemuppc'
ac_cv_env_CFLAGS_set=set
ac_cv_env_CFLAGS_value='-O2 -pipe -g -feliminate-unused-debug-types'
ac_cv_env_CPPFLAGS_set=
ac_cv_env_CPPFLAGS_value=
ac_cv_env_CPP_set=set
ac_cv_env_CPP_value='powerpc-poky-linux-gcc -E --sysroot=/home/kyu3/sdb/test/tmp/sysroots/qemuppc'
ac_cv_env_DBUS_CFLAGS_set=
ac_cv_env_DBUS_CFLAGS_value=
ac_cv_env_DBUS_LIBS_set=
ac_cv_env_DBUS_LIBS_value=
ac_cv_env_DGA_CFLAGS_set=
ac_cv_env_DGA_CFLAGS_value=
ac_cv_env_DGA_LIBS_set=
ac_cv_env_DGA_LIBS_value=
ac_cv_env_DMXEXAMPLES_DEP_CFLAGS_set=
ac_cv_env_DMXEXAMPLES_DEP_CFLAGS_value=
ac_cv_env_DMXEXAMPLES_DEP_LIBS_set=
ac_cv_env_DMXEXAMPLES_DEP_LIBS_value=
ac_cv_env_DMXMODULES_CFLAGS_set=
ac_cv_env_DMXMODULES_CFLAGS_value=
ac_cv_env_DMXMODULES_LIBS_set=
ac_cv_env_DMXMODULES_LIBS_value=
ac_cv_env_DMXXIEXAMPLES_DEP_CFLAGS_set=
ac_cv_env_DMXXIEXAMPLES_DEP_CFLAGS_value=
ac_cv_env_DMXXIEXAMPLES_DEP_LIBS_set=
ac_cv_env_DMXXIEXAMPLES_DEP_LIBS_value=
ac_cv_env_DMXXMUEXAMPLES_DEP_CFLAGS_set=
ac_cv_env_DMXXMUEXAMPLES_DEP_CFLAGS_value=
ac_cv_env_DMXXMUEXAMPLES_DEP_LIBS_set=
ac_cv_env_DMXXMUEXAMPLES_DEP_LIBS_value=
ac_cv_env_DOXYGEN_set=
ac_cv_env_DOXYGEN_value=
ac_cv_env_DRI2PROTO_CFLAGS_set=
ac_cv_env_DRI2PROTO_CFLAGS_value=
ac_cv_env_DRI2PROTO_LIBS_set=
ac_cv_env_DRI2PROTO_LIBS_value=
ac_cv_env_DRIPROTO_CFLAGS_set=
ac_cv_env_DRIPROTO_CFLAGS_value=
ac_cv_env_DRIPROTO_LIBS_set=
ac_cv_env_DRIPROTO_LIBS_value=
ac_cv_env_DRI_CFLAGS_set=
ac_cv_env_DRI_CFLAGS_value=
ac_cv_env_DRI_LIBS_set=
ac_cv_env_DRI_LIBS_value=
ac_cv_env_FOP_set=
ac_cv_env_FOP_value=
ac_cv_env_GLIB_CFLAGS_set=
ac_cv_env_GLIB_CFLAGS_value=
ac_cv_env_GLIB_LIBS_set=
ac_cv_env_GLIB_LIBS_value=
ac_cv_env_GL_CFLAGS_set=
ac_cv_env_GL_CFLAGS_value=
ac_cv_env_GL_LIBS_set=
ac_cv_env_GL_LIBS_value=
ac_cv_env_HAL_CFLAGS_set=
ac_cv_env_HAL_CFLAGS_value=
ac_cv_env_HAL_LIBS_set=
ac_cv_env_HAL_LIBS_value=
ac_cv_env_LDFLAGS_set=set
ac_cv_env_LDFLAGS_value='-Wl,-O1  -Wl,--as-needed'
ac_cv_env_LIBDRM_CFLAGS_set=
ac_cv_env_LIBDRM_CFLAGS_value=
ac_cv_env_LIBDRM_LIBS_set=
ac_cv_env_LIBDRM_LIBS_value=
ac_cv_env_LIBSHA1_CFLAGS_set=
ac_cv_env_LIBSHA1_CFLAGS_value=
ac_cv_env_LIBSHA1_LIBS_set=
ac_cv_env_LIBSHA1_LIBS_value=
ac_cv_env_LIBS_set=
ac_cv_env_LIBS_value=
ac_cv_env_OPENSSL_CFLAGS_set=
ac_cv_env_OPENSSL_CFLAGS_value=
ac_cv_env_OPENSSL_LIBS_set=
ac_cv_env_OPENSSL_LIBS_value=
ac_cv_env_PCIACCESS_CFLAGS_set=
ac_cv_env_PCIACCESS_CFLAGS_value=
ac_cv_env_PCIACCESS_LIBS_set=
ac_cv_env_PCIACCESS_LIBS_value=
ac_cv_env_PIXMAN_CFLAGS_set=
ac_cv_env_PIXMAN_CFLAGS_value=
ac_cv_env_PIXMAN_LIBS_set=
ac_cv_env_PIXMAN_LIBS_value=
ac_cv_env_PKG_CONFIG_LIBDIR_set=set
ac_cv_env_PKG_CONFIG_LIBDIR_value=/home/kyu3/sdb/test/tmp/sysroots/qemuppc//usr/lib/pkgconfig
ac_cv_env_PKG_CONFIG_PATH_set=set
ac_cv_env_PKG_CONFIG_PATH_value=/home/kyu3/sdb/test/tmp/sysroots/qemuppc//usr/lib/pkgconfig:/home/kyu3/sdb/test/tmp/sysroots/qemuppc/usr/share/pkgconfig
ac_cv_env_PKG_CONFIG_set=
ac_cv_env_PKG_CONFIG_value=
ac_cv_env_SELINUX_CFLAGS_set=
ac_cv_env_SELINUX_CFLAGS_value=
ac_cv_env_SELINUX_LIBS_set=
ac_cv_env_SELINUX_LIBS_value=
ac_cv_env_TSLIB_CFLAGS_set=
ac_cv_env_TSLIB_CFLAGS_value=
ac_cv_env_TSLIB_LIBS_set=
ac_cv_env_TSLIB_LIBS_value=
ac_cv_env_UDEV_CFLAGS_set=
ac_cv_env_UDEV_CFLAGS_value=
ac_cv_env_UDEV_LIBS_set=
ac_cv_env_UDEV_LIBS_value=
ac_cv_env_WINDOWSWM_CFLAGS_set=
ac_cv_env_WINDOWSWM_CFLAGS_value=
ac_cv_env_WINDOWSWM_LIBS_set=
ac_cv_env_WINDOWSWM_LIBS_value=
ac_cv_env_X11EXAMPLES_DEP_CFLAGS_set=
ac_cv_env_X11EXAMPLES_DEP_CFLAGS_value=
ac_cv_env_X11EXAMPLES_DEP_LIBS_set=
ac_cv_env_X11EXAMPLES_DEP_LIBS_value=
ac_cv_env_XDMCP_CFLAGS_set=
ac_cv_env_XDMCP_CFLAGS_value=
ac_cv_env_XDMCP_LIBS_set=
ac_cv_env_XDMCP_LIBS_value=
ac_cv_env_XDMXCONFIG_DEP_CFLAGS_set=
ac_cv_env_XDMXCONFIG_DEP_CFLAGS_value=
ac_cv_env_XDMXCONFIG_DEP_LIBS_set=
ac_cv_env_XDMXCONFIG_DEP_LIBS_value=
ac_cv_env_XEPHYR_CFLAGS_set=
ac_cv_env_XEPHYR_CFLAGS_value=
ac_cv_env_XEPHYR_LIBS_set=
ac_cv_env_XEPHYR_LIBS_value=
ac_cv_env_XF86VIDMODE_CFLAGS_set=
ac_cv_env_XF86VIDMODE_CFLAGS_value=
ac_cv_env_XF86VIDMODE_LIBS_set=
ac_cv_env_XF86VIDMODE_LIBS_value=
ac_cv_env_XLIB_CFLAGS_set=
ac_cv_env_XLIB_CFLAGS_value=
ac_cv_env_XLIB_LIBS_set=
ac_cv_env_XLIB_LIBS_value=
ac_cv_env_XMLTO_set=
ac_cv_env_XMLTO_value=
ac_cv_env_XNESTMODULES_CFLAGS_set=
ac_cv_env_XNESTMODULES_CFLAGS_value=
ac_cv_env_XNESTMODULES_LIBS_set=
ac_cv_env_XNESTMODULES_LIBS_value=
ac_cv_env_XORG_MODULES_CFLAGS_set=
ac_cv_env_XORG_MODULES_CFLAGS_value=
ac_cv_env_XORG_MODULES_LIBS_set=
ac_cv_env_XORG_MODULES_LIBS_value=
ac_cv_env_XPBPROXY_CFLAGS_set=
ac_cv_env_XPBPROXY_CFLAGS_value=
ac_cv_env_XPBPROXY_LIBS_set=
ac_cv_env_XPBPROXY_LIBS_value=
ac_cv_env_XRESEXAMPLES_DEP_CFLAGS_set=
ac_cv_env_XRESEXAMPLES_DEP_CFLAGS_value=
ac_cv_env_XRESEXAMPLES_DEP_LIBS_set=
ac_cv_env_XRESEXAMPLES_DEP_LIBS_value=
ac_cv_env_XSERVERCFLAGS_CFLAGS_set=
ac_cv_env_XSERVERCFLAGS_CFLAGS_value=
ac_cv_env_XSERVERCFLAGS_LIBS_set=
ac_cv_env_XSERVERCFLAGS_LIBS_value=
ac_cv_env_XSERVERLIBS_CFLAGS_set=
ac_cv_env_XSERVERLIBS_CFLAGS_value=
ac_cv_env_XSERVERLIBS_LIBS_set=
ac_cv_env_XSERVERLIBS_LIBS_value=
ac_cv_env_XTSTEXAMPLES_DEP_CFLAGS_set=
ac_cv_env_XTSTEXAMPLES_DEP_CFLAGS_value=
ac_cv_env_XTSTEXAMPLES_DEP_LIBS_set=
ac_cv_env_XTSTEXAMPLES_DEP_LIBS_value=
ac_cv_env_XWINMODULES_CFLAGS_set=
ac_cv_env_XWINMODULES_CFLAGS_value=
ac_cv_env_XWINMODULES_LIBS_set=
ac_cv_env_XWINMODULES_LIBS_value=
ac_cv_env_YACC_set=
ac_cv_env_YACC_value=
ac_cv_env_YFLAGS_set=
ac_cv_env_YFLAGS_value=
ac_cv_env_build_alias_set=set
ac_cv_env_build_alias_value=x86_64-linux
ac_cv_env_host_alias_set=set
ac_cv_env_host_alias_value=powerpc-poky-linux
ac_cv_env_target_alias_set=set
ac_cv_env_target_alias_value=powerpc-poky-linux
ac_cv_epoll_works=yes
ac_cv_file__dev_random=yes
ac_cv_file__dev_zero=yes
ac_cv_file__usr_share_sgml_X11_defs_ent=no
ac_cv_func_CC_SHA1_Init=no
ac_cv_func_SHA1Init=no
ac_cv_func___adjtimex=yes
ac_cv_func___argz_count=yes
ac_cv_func___argz_next=yes
ac_cv_func___argz_stringify=yes
ac_cv_func___fpending=yes
ac_cv_func___fsetlocking=yes
ac_cv_func___progname=yes
ac_cv_func___secure_getenv=yes
ac_cv_func___va_copy=yes
ac_cv_func__doprnt=no
ac_cv_func__obstack_free=yes
ac_cv_func__setjmp=yes
ac_cv_func__sys_siglist=yes
ac_cv_func_a64l=yes
ac_cv_func_abs=yes
ac_cv_func_access=yes
ac_cv_func_alarm=yes
ac_cv_func_alloca_works=yes
ac_cv_func_alphasort=yes
ac_cv_func_argz_append=yes
ac_cv_func_argz_create_sep=yes
ac_cv_func_argz_insert=yes
ac_cv_func_argz_next=yes
ac_cv_func_argz_stringify=yes
ac_cv_func_asprintf=yes
ac_cv_func_atexit=yes
ac_cv_func_atof=yes
ac_cv_func_atoi=yes
ac_cv_func_authdes_create=yes
ac_cv_func_authdes_seccreate=no
ac_cv_func_backtrace=yes
ac_cv_func_bcmp=yes
ac_cv_func_bcopy=yes
ac_cv_func_bind_textdomain_codeset=yes
ac_cv_func_bindresvport=yes
ac_cv_func_btowc=yes
ac_cv_func_bzero=yes
ac_cv_func_calloc=yes
ac_cv_func_canonicalize_file_name=yes
ac_cv_func_catgets=yes
ac_cv_func_cfgetospeed=yes
ac_cv_func_cfsetispeed=yes
ac_cv_func_cfsetspeed=yes
ac_cv_func_chmod=yes
ac_cv_func_chown=yes
ac_cv_func_chroot=yes
ac_cv_func_clock=yes
ac_cv_func_clock_gettime=no
ac_cv_func_close=yes
ac_cv_func_closedir=yes
ac_cv_func_closelog=yes
ac_cv_func_confstr=yes
ac_cv_func_connect=yes
ac_cv_func_daemon=yes
ac_cv_func_dcgettext=yes
ac_cv_func_difftime=yes
ac_cv_func_dirfd=yes
ac_cv_func_dirname=yes
ac_cv_func_dlopen=yes
ac_cv_func_dngettext=yes
ac_cv_func_dup2=yes
ac_cv_func_ecvt=yes
ac_cv_func_endgrent=yes
ac_cv_func_endmntent=yes
ac_cv_func_endpwent=yes
ac_cv_func_endutent=yes
ac_cv_func_endutxent=yes
ac_cv_func_epoll_ctl=yes
ac_cv_func_err=yes
ac_cv_func_ether_hostton=yes
ac_cv_func_ether_ntohost=yes
ac_cv_func_euidaccess=yes
ac_cv_func_execv=yes
ac_cv_func_fchdir=yes
ac_cv_func_fchmod=yes
ac_cv_func_fchmodat=yes
ac_cv_func_fchown=yes
ac_cv_func_fchownat=yes
ac_cv_func_fcntl=yes
ac_cv_func_fcvt=yes
ac_cv_func_fdatasync=yes
ac_cv_func_fdopendir=yes
ac_cv_func_feof_unlocked=yes
ac_cv_func_ffs=yes
ac_cv_func_fgets_unlocked=yes
ac_cv_func_fgetxattr=yes
ac_cv_func_finite=yes
ac_cv_func_flistxattr=yes
ac_cv_func_flock=yes
ac_cv_func_flockfile=yes
ac_cv_func_fnmatch=yes
ac_cv_func_fork=yes
ac_cv_func_fpathconf=yes
ac_cv_func_fprintf=yes
ac_cv_func_free=yes
ac_cv_func_freeaddrinfo=yes
ac_cv_func_freeifaddrs=yes
ac_cv_func_fseeko=yes
ac_cv_func_fsetxattr=yes
ac_cv_func_fstat64=yes
ac_cv_func_fstat=yes
ac_cv_func_fstatfs=yes
ac_cv_func_fsync=yes
ac_cv_func_ftello=yes
ac_cv_func_ftime=yes
ac_cv_func_ftruncate=yes
ac_cv_func_funlockfile=yes
ac_cv_func_futimes=yes
ac_cv_func_futimesat=yes
ac_cv_func_gai_strerror=yes
ac_cv_func_gcvt=yes
ac_cv_func_getaddrinfo=yes
ac_cv_func_getc_unlocked=yes
ac_cv_func_getcwd=yes
ac_cv_func_getdelim=yes
ac_cv_func_getdomainname=yes
ac_cv_func_getdtablesize=yes
ac_cv_func_getegid=yes
ac_cv_func_getenv=yes
ac_cv_func_geteuid=yes
ac_cv_func_getgid=yes
ac_cv_func_getgrent=yes
ac_cv_func_getgrent_r=yes
ac_cv_func_getgrgid_r=yes
ac_cv_func_getgrnam=yes
ac_cv_func_getgrnam_r=yes
ac_cv_func_getgrouplist=yes
ac_cv_func_getgroups=yes
ac_cv_func_gethostbyaddr_r=yes
ac_cv_func_gethostbyname2=yes
ac_cv_func_gethostbyname=yes
ac_cv_func_gethostbyname_r=yes
ac_cv_func_gethostent=yes
ac_cv_func_gethostid=yes
ac_cv_func_gethostname=yes
ac_cv_func_getifaddrs=yes
ac_cv_func_getisax=no
ac_cv_func_getline=yes
ac_cv_func_getloadavg=yes
ac_cv_func_getmntent=yes
ac_cv_func_getmsg=yes
ac_cv_func_getnameinfo=yes
ac_cv_func_getnetbyaddr_r=yes
ac_cv_func_getnetgrent_r=yes
ac_cv_func_getopt=yes
ac_cv_func_getopt_long=yes
ac_cv_func_getopt_long_only=yes
ac_cv_func_getpagesize=yes
ac_cv_func_getpass=yes
ac_cv_func_getpeereid=no
ac_cv_func_getpeername=yes
ac_cv_func_getpeerucred=no
ac_cv_func_getpgrp=yes
ac_cv_func_getpgrp_void=yes
ac_cv_func_getpid=yes
ac_cv_func_getppid=yes
ac_cv_func_getprotoent_r=yes
ac_cv_func_getpwent=yes
ac_cv_func_getpwent_r=yes
ac_cv_func_getpwnam=yes
ac_cv_func_getpwnam_r=yes
ac_cv_func_getpwuid=yes
ac_cv_func_getpwuid_r=yes
ac_cv_func_getresuid=yes
ac_cv_func_getrlimit=yes
ac_cv_func_getrusage=yes
ac_cv_func_getservbyname=yes
ac_cv_func_getservbyname_r=yes
ac_cv_func_getservbyport_r=yes
ac_cv_func_getservent=yes
ac_cv_func_getservent_r=yes
ac_cv_func_getspnam=yes
ac_cv_func_getspnam_r=yes
ac_cv_func_gettimeofday=yes
ac_cv_func_getttyent=yes
ac_cv_func_getttynam=yes
ac_cv_func_getuid=yes
ac_cv_func_getusershell=yes
ac_cv_func_getutent=yes
ac_cv_func_getutid=yes
ac_cv_func_getutline=yes
ac_cv_func_getutmp=yes
ac_cv_func_getutmpx=yes
ac_cv_func_getutxent=yes
ac_cv_func_getutxid=yes
ac_cv_func_getutxline=yes
ac_cv_func_getwd=yes
ac_cv_func_getxattr=yes
ac_cv_func_getzoneid=no
ac_cv_func_glob=yes
ac_cv_func_gmtime=yes
ac_cv_func_gmtime_r=yes
ac_cv_func_grantpt=yes
ac_cv_func_group_member=yes
ac_cv_func_herror=yes
ac_cv_func_hstrerror=yes
ac_cv_func_iconv=yes
ac_cv_func_iconv_open=yes
ac_cv_func_if_freenameindex=yes
ac_cv_func_if_indextoname=yes
ac_cv_func_if_nameindex=yes
ac_cv_func_if_nametoindex=yes
ac_cv_func_index=yes
ac_cv_func_inet_addr=yes
ac_cv_func_inet_aton=yes
ac_cv_func_inet_ntoa=yes
ac_cv_func_inet_ntop=yes
ac_cv_func_inet_pton=yes
ac_cv_func_initgroups=yes
ac_cv_func_innetgr=yes
ac_cv_func_iruserok=yes
ac_cv_func_isascii=yes
ac_cv_func_isatty=yes
ac_cv_func_isblank=yes
ac_cv_func_isgraph=yes
ac_cv_func_isinf=yes
ac_cv_func_isnan=yes
ac_cv_func_isprint=yes
ac_cv_func_isspace=yes
ac_cv_func_iswalnum=yes
ac_cv_func_iswcntrl=yes
ac_cv_func_iswctype=yes
ac_cv_func_iswprint=yes
ac_cv_func_iswspace=yes
ac_cv_func_iswupper=yes
ac_cv_func_isxdigit=yes
ac_cv_func_kill=yes
ac_cv_func_killpg=yes
ac_cv_func_lchown=yes
ac_cv_func_lckpwdf=yes
ac_cv_func_lgetxattr=yes
ac_cv_func_link=yes
ac_cv_func_listxattr=yes
ac_cv_func_llistxattr=yes
ac_cv_func_localtime=yes
ac_cv_func_localtime_r=yes
ac_cv_func_lockf=yes
ac_cv_func_lrand48=yes
ac_cv_func_lsearch=yes
ac_cv_func_lseek64=yes
ac_cv_func_lsetxattr=yes
ac_cv_func_lstat=yes
ac_cv_func_lstat_dereferences_slashed_symlink=yes
ac_cv_func_lstat_empty_string_bug=no
ac_cv_func_mallinfo=yes
ac_cv_func_malloc=yes
ac_cv_func_malloc_0_nonnull=yes
ac_cv_func_malloc_works=yes
ac_cv_func_mblen=yes
ac_cv_func_mbrlen=yes
ac_cv_func_mbrtowc=yes
ac_cv_func_mbsinit=yes
ac_cv_func_mbsrtowcs=yes
ac_cv_func_mbtowc=yes
ac_cv_func_memalign=yes
ac_cv_func_memchr=yes
ac_cv_func_memcmp=yes
ac_cv_func_memcmp_working=yes
ac_cv_func_memcpy=yes
ac_cv_func_memmove=yes
ac_cv_func_mempcpy=yes
ac_cv_func_memrchr=yes
ac_cv_func_memset=yes
ac_cv_func_mkdir=yes
ac_cv_func_mkdirat=yes
ac_cv_func_mkdtemp=yes
ac_cv_func_mkfifo=yes
ac_cv_func_mknod=yes
ac_cv_func_mkstemp64=yes
ac_cv_func_mkstemp=yes
ac_cv_func_mktime=yes
ac_cv_func_mlock=yes
ac_cv_func_mmap=yes
ac_cv_func_mmap_fixed_mapped=yes
ac_cv_func_mtrace=yes
ac_cv_func_munlock=yes
ac_cv_func_munmap=yes
ac_cv_func_nanosleep=yes
ac_cv_func_nice=yes
ac_cv_func_nl_langinfo=yes
ac_cv_func_ntp_adjtime=yes
ac_cv_func_ntp_gettime=yes
ac_cv_func_on_exit=yes
ac_cv_func_open64=yes
ac_cv_func_open=yes
ac_cv_func_openat=yes
ac_cv_func_opendir=yes
ac_cv_func_openlog=yes
ac_cv_func_pathconf=yes
ac_cv_func_pci_device_enable=yes
ac_cv_func_pci_device_is_boot_vga=yes
ac_cv_func_pci_device_vgaarb_init=yes
ac_cv_func_pci_system_init_dev_mem=yes
ac_cv_func_pipe=yes
ac_cv_func_poll=yes
ac_cv_func_popen=yes
ac_cv_func_posix_getgrgid_r=yes
ac_cv_func_posix_getpwnam_r=yes
ac_cv_func_posix_getpwuid_r=yes
ac_cv_func_posix_memalign=yes
ac_cv_func_prctl=yes
ac_cv_func_pread=yes
ac_cv_func_printf=yes
ac_cv_func_printf_unix98=yes
ac_cv_func_pselect=yes
ac_cv_func_pthread_attr_getstack=yes
ac_cv_func_pthread_key_delete=yes
ac_cv_func_pthread_mutex_lock=yes
ac_cv_func_ptsname=yes
ac_cv_func_putenv=yes
ac_cv_func_putgrent=yes
ac_cv_func_putpwent=yes
ac_cv_func_putspent=yes
ac_cv_func_pututline=yes
ac_cv_func_pututxline=yes
ac_cv_func_putwc=yes
ac_cv_func_pwrite=yes
ac_cv_func_qsort=yes
ac_cv_func_raise=yes
ac_cv_func_rand=yes
ac_cv_func_rand_r=yes
ac_cv_func_random=yes
ac_cv_func_re_comp=yes
ac_cv_func_re_exec=yes
ac_cv_func_re_search=yes
ac_cv_func_read=yes
ac_cv_func_readdir=yes
ac_cv_func_readdir_r=yes
ac_cv_func_readlink=yes
ac_cv_func_realloc=yes
ac_cv_func_realloc_0_nonnull=yes
ac_cv_func_realloc_works=yes
ac_cv_func_realpath=yes
ac_cv_func_recvmsg=yes
ac_cv_func_regcomp=yes
ac_cv_func_regexec=yes
ac_cv_func_remove=yes
ac_cv_func_rename=yes
ac_cv_func_rmdir=yes
ac_cv_func_rpmatch=yes
ac_cv_func_rresvport_af=yes
ac_cv_func_ruserok=yes
ac_cv_func_ruserok_af=yes
ac_cv_func_sbrk=yes
ac_cv_func_scandir=yes
ac_cv_func_sched_setscheduler=yes
ac_cv_func_sched_yield=yes
ac_cv_func_select=yes
ac_cv_func_semctl=yes
ac_cv_func_semget=yes
ac_cv_func_sendmsg=yes
ac_cv_func_setbuf=yes
ac_cv_func_setbuffer=yes
ac_cv_func_setegid=yes
ac_cv_func_setenv=yes
ac_cv_func_seteuid=yes
ac_cv_func_setgid=yes
ac_cv_func_setgrent_void=yes
ac_cv_func_setgroups=yes
ac_cv_func_sethostname=yes
ac_cv_func_setitimer=yes
ac_cv_func_setjmp=yes
ac_cv_func_setlinebuf=yes
ac_cv_func_setlocale=yes
ac_cv_func_setmntent=yes
ac_cv_func_setpgid=yes
ac_cv_func_setpgrp=yes
ac_cv_func_setpgrp_void=yes
ac_cv_func_setpriority=yes
ac_cv_func_setregid=yes
ac_cv_func_setresgid=yes
ac_cv_func_setresuid=yes
ac_cv_func_setreuid=yes
ac_cv_func_setrlimit=yes
ac_cv_func_setsid=yes
ac_cv_func_setsockopt=yes
ac_cv_func_settimeofday=yes
ac_cv_func_setuid=yes
ac_cv_func_setutent=yes
ac_cv_func_setutxent=yes
ac_cv_func_setvbuf=yes
ac_cv_func_setvbuf_reversed=no
ac_cv_func_setxattr=yes
ac_cv_func_sgetspent=yes
ac_cv_func_shmat=yes
ac_cv_func_shmctl64=no
ac_cv_func_shmctl=yes
ac_cv_func_shmdt=yes
ac_cv_func_shmget=yes
ac_cv_func_shutdown=yes
ac_cv_func_sigaction=yes
ac_cv_func_sigaddset=yes
ac_cv_func_sigaltstack=yes
ac_cv_func_sigblock=yes
ac_cv_func_sigemptyset=yes
ac_cv_func_sighold=yes
ac_cv_func_siginterrupt=yes
ac_cv_func_signal=yes
ac_cv_func_sigprocmask=yes
ac_cv_func_sigset=yes
ac_cv_func_sigsetmask=yes
ac_cv_func_sigstack=yes
ac_cv_func_sigsuspend=yes
ac_cv_func_sigvec=yes
ac_cv_func_snprintf=yes
ac_cv_func_snprintf_c99=yes
ac_cv_func_socket=yes
ac_cv_func_socketpair=yes
ac_cv_func_sprintf=yes
ac_cv_func_srand48=yes
ac_cv_func_srand=yes
ac_cv_func_srandom=yes
ac_cv_func_sscanf=yes
ac_cv_func_stat=yes
ac_cv_func_stat_empty_string_bug=no
ac_cv_func_stat_ignores_trailing_slash=no
ac_cv_func_statfs=yes
ac_cv_func_statvfs=yes
ac_cv_func_stime=yes
ac_cv_func_stpcpy=yes
ac_cv_func_strcasecmp=yes
ac_cv_func_strcasestr=yes
ac_cv_func_strchr=yes
ac_cv_func_strchrnul=yes
ac_cv_func_strcmp=yes
ac_cv_func_strcspn=yes
ac_cv_func_strdup=yes
ac_cv_func_strerror=yes
ac_cv_func_strerror_r=yes
ac_cv_func_strftime=yes
ac_cv_func_strlcat=no
ac_cv_func_strlcpy=no
ac_cv_func_strlen=yes
ac_cv_func_strncasecmp=yes
ac_cv_func_strncmp=yes
ac_cv_func_strndup=yes
ac_cv_func_strnlen=yes
ac_cv_func_strpbrk=yes
ac_cv_func_strptime=yes
ac_cv_func_strrchr=yes
ac_cv_func_strsep=yes
ac_cv_func_strsignal=yes
ac_cv_func_strspn=yes
ac_cv_func_strstr=yes
ac_cv_func_strtod=yes
ac_cv_func_strtoimax=yes
ac_cv_func_strtok_r=yes
ac_cv_func_strtol=yes
ac_cv_func_strtoll=yes
ac_cv_func_strtoul=yes
ac_cv_func_strtoull=yes
ac_cv_func_strtoumax=yes
ac_cv_func_strverscmp=yes
ac_cv_func_strxfrm=yes
ac_cv_func_symlink=yes
ac_cv_func_sync=yes
ac_cv_func_sys_siglist=yes
ac_cv_func_sysconf=yes
ac_cv_func_sysctl=yes
ac_cv_func_sysinfo=yes
ac_cv_func_syslog=yes
ac_cv_func_system=yes
ac_cv_func_tcgetattr=yes
ac_cv_func_tcgetpgrp=yes
ac_cv_func_tcsetattr=yes
ac_cv_func_tcsetpgrp=yes
ac_cv_func_time=yes
ac_cv_func_timegm=yes
ac_cv_func_times=yes
ac_cv_func_timezone=yes
ac_cv_func_tmpnam=yes
ac_cv_func_towlower=yes
ac_cv_func_towupper=yes
ac_cv_func_truncate=yes
ac_cv_func_tsearch=yes
ac_cv_func_ttyname=yes
ac_cv_func_tzset=yes
ac_cv_func_ulimit=yes
ac_cv_func_umask=yes
ac_cv_func_uname=yes
ac_cv_func_unlink=yes
ac_cv_func_unsetenv=yes
ac_cv_func_unshare=yes
ac_cv_func_updwtmp=yes
ac_cv_func_updwtmpx=yes
ac_cv_func_usleep=yes
ac_cv_func_ustat=yes
ac_cv_func_utime=yes
ac_cv_func_utimes=yes
ac_cv_func_utmpname=yes
ac_cv_func_utmpxname=yes
ac_cv_func_va_copy=yes
ac_cv_func_valloc=yes
ac_cv_func_vasprintf=yes
ac_cv_func_verrx=yes
ac_cv_func_vfork=yes
ac_cv_func_vfprintf=yes
ac_cv_func_vfscanf=yes
ac_cv_func_vhangup=yes
ac_cv_func_vprintf=yes
ac_cv_func_vsnprintf=yes
ac_cv_func_vsnprintf_c99=yes
ac_cv_func_vsprintf=yes
ac_cv_func_wait3=yes
ac_cv_func_wait4=yes
ac_cv_func_waitpid=yes
ac_cv_func_walkcontext=no
ac_cv_func_wcrtomb=yes
ac_cv_func_wcscoll=yes
ac_cv_func_wcsdup=yes
ac_cv_func_wcslen=yes
ac_cv_func_wctob=yes
ac_cv_func_wctomb=yes
ac_cv_func_wctype=yes
ac_cv_func_wcwidth=yes
ac_cv_func_wmemchr=yes
ac_cv_func_wmemcpy=yes
ac_cv_func_wmempcpy=yes
ac_cv_have_abstract_sockets=yes
ac_cv_have_accrights_in_msghdr=no
ac_cv_have_broken_dirname=yes
ac_cv_have_broken_snprintf=no
ac_cv_have_control_in_msghdr=yes
ac_cv_have_decl_sys_siglist=yes
ac_cv_have_openpty_ctty_bug=yes
ac_cv_have_space_d_name_in_struct_dirent=yes
ac_cv_header_aio_h=yes
ac_cv_header_alloca_h=yes
ac_cv_header_argz_h=yes
ac_cv_header_arpa_inet_h=yes
ac_cv_header_arpa_nameser_h=yes
ac_cv_header_asm_byteorder_h=yes
ac_cv_header_asm_ioctls_h=yes
ac_cv_header_asm_mtrr_h=no
ac_cv_header_asm_page_h=no
ac_cv_header_asm_types_h=yes
ac_cv_header_assert_h=yes
ac_cv_header_byteswap_h=yes
ac_cv_header_crypt_h=yes
ac_cv_header_ctype_h=yes
ac_cv_header_dbm_h=no
ac_cv_header_dirent_dirent_h=yes
ac_cv_header_dirent_h=yes
ac_cv_header_dlfcn_h=yes
ac_cv_header_elf_h=yes
ac_cv_header_endian_h=yes
ac_cv_header_err_h=yes
ac_cv_header_errno_h=yes
ac_cv_header_execinfo_h=yes
ac_cv_header_fcntl_h=yes
ac_cv_header_features_h=yes
ac_cv_header_float_h=yes
ac_cv_header_fnmatch_h=yes
ac_cv_header_fstab_h=yes
ac_cv_header_ftw_h=yes
ac_cv_header_getopt_h=yes
ac_cv_header_glob_h=yes
ac_cv_header_grp_h=yes
ac_cv_header_iconv_h=yes
ac_cv_header_ifaddrs_h=yes
ac_cv_header_inttypes_h=yes
ac_cv_header_langinfo_h=yes
ac_cv_header_lastlog_h=yes
ac_cv_header_libgen_h=yes
ac_cv_header_libintl_h=yes
ac_cv_header_limits_h=yes
ac_cv_header_linux_agpgart_h=yes
ac_cv_header_linux_apm_bios_h=yes
ac_cv_header_linux_capability_h=yes
ac_cv_header_linux_fb_h=yes
ac_cv_header_linux_fd_h=yes
ac_cv_header_linux_fs_h=yes
ac_cv_header_linux_hayesesp_h=no
ac_cv_header_linux_hdreg_h=yes
ac_cv_header_linux_icmp_h=yes
ac_cv_header_linux_in6_h=yes
ac_cv_header_linux_joystick_h=yes
ac_cv_header_linux_ptrace_h=yes
ac_cv_header_linux_serial_h=yes
ac_cv_header_linux_sonypi_h=yes
ac_cv_header_linux_unistd_h=yes
ac_cv_header_linux_utsname_h=yes
ac_cv_header_linux_version_h=yes
ac_cv_header_locale_h=yes
ac_cv_header_machine_apmvar_h=no
ac_cv_header_machine_mtrr_h=no
ac_cv_header_malloc_h=yes
ac_cv_header_math_h=yes
ac_cv_header_mcheck_h=yes
ac_cv_header_memory_h=yes
ac_cv_header_mntent_h=yes
ac_cv_header_mqueue_h=yes
ac_cv_header_ndbm_h=no
ac_cv_header_net_if_h=yes
ac_cv_header_net_route_h=yes
ac_cv_header_netdb_h=yes
ac_cv_header_netinet_ether_h=yes
ac_cv_header_netinet_in_h=yes
ac_cv_header_netinet_ip6_h=yes
ac_cv_header_netinet_ip_h=yes
ac_cv_header_netinet_sctp_h=no
ac_cv_header_netinet_sctp_uio_h=no
ac_cv_header_netinet_tcp_h=yes
ac_cv_header_netinet_udp_h=yes
ac_cv_header_netipx_ipx_h=yes
ac_cv_header_paths_h=yes
ac_cv_header_poll_h=yes
ac_cv_header_pthread_h=yes
ac_cv_header_pty_h=yes
ac_cv_header_pwd_h=yes
ac_cv_header_regex_h=yes
ac_cv_header_resolv_h=yes
ac_cv_header_rpc_rpc_h=yes
ac_cv_header_rpc_types_h=yes
ac_cv_header_rpcsvc_dbm_h=no
ac_cv_header_sched_h=yes
ac_cv_header_scsi_scsi_h=yes
ac_cv_header_search_h=yes
ac_cv_header_semaphore_h=yes
ac_cv_header_setjmp_h=yes
ac_cv_header_sgtty_h=yes
ac_cv_header_shadow_h=yes
ac_cv_header_signal_h=yes
ac_cv_header_stdarg_h=yes
ac_cv_header_stdbool_h=yes
ac_cv_header_stdc=yes
ac_cv_header_stddef_h=yes
ac_cv_header_stdint_h=yes
ac_cv_header_stdio_h=yes
ac_cv_header_stdlib_h=yes
ac_cv_header_string_h=yes
ac_cv_header_strings_h=yes
ac_cv_header_stropts_h=yes
ac_cv_header_sys_agpgart_h=no
ac_cv_header_sys_agpio_h=no
ac_cv_header_sys_bitypes_h=yes
ac_cv_header_sys_cdefs_h=yes
ac_cv_header_sys_dir_h=yes
ac_cv_header_sys_endian_h=no
ac_cv_header_sys_epoll_h=yes
ac_cv_header_sys_fcntl_h=yes
ac_cv_header_sys_file_h=yes
ac_cv_header_sys_fsuid_h=yes
ac_cv_header_sys_ioctl_h=yes
ac_cv_header_sys_ipc_h=yes
ac_cv_header_sys_linker_h=no
ac_cv_header_sys_memrange_h=no
ac_cv_header_sys_mman_h=yes
ac_cv_header_sys_mount_h=yes
ac_cv_header_sys_mtio_h=yes
ac_cv_header_sys_param_h=yes
ac_cv_header_sys_poll_h=yes
ac_cv_header_sys_prctl_h=yes
ac_cv_header_sys_ptrace_h=yes
ac_cv_header_sys_queue_h=yes
ac_cv_header_sys_reg_h=no
ac_cv_header_sys_resource_h=yes
ac_cv_header_sys_select_h=yes
ac_cv_header_sys_sem_h=yes
ac_cv_header_sys_shm_h=yes
ac_cv_header_sys_signal_h=yes
ac_cv_header_sys_socket_h=yes
ac_cv_header_sys_socketvar_h=yes
ac_cv_header_sys_soundcard_h=yes
ac_cv_header_sys_stat_h=yes
ac_cv_header_sys_statfs_h=yes
ac_cv_header_sys_statvfs_h=yes
ac_cv_header_sys_stropts_h=yes
ac_cv_header_sys_swap_h=yes
ac_cv_header_sys_sysctl_h=yes
ac_cv_header_sys_sysinfo_h=yes
ac_cv_header_sys_sysmacros_h=yes
ac_cv_header_sys_termios_h=yes
ac_cv_header_sys_time_h=yes
ac_cv_header_sys_timeb_h=yes
ac_cv_header_sys_times_h=yes
ac_cv_header_sys_timex_h=yes
ac_cv_header_sys_types_h=yes
ac_cv_header_sys_uio_h=yes
ac_cv_header_sys_un_h=yes
ac_cv_header_sys_unistd_h=yes
ac_cv_header_sys_user_h=yes
ac_cv_header_sys_utsname_h=yes
ac_cv_header_sys_vfs_h=yes
ac_cv_header_sys_wait_h=yes
ac_cv_header_sysexits_h=yes
ac_cv_header_syslog_h=yes
ac_cv_header_termio_h=yes
ac_cv_header_termios_h=yes
ac_cv_header_time_h=yes
ac_cv_header_ttyent_h=yes
ac_cv_header_ulimit_h=yes
ac_cv_header_unistd_h=yes
ac_cv_header_ustat_h=yes
ac_cv_header_utime_h=yes
ac_cv_header_utmp_h=yes
ac_cv_header_utmpx_h=yes
ac_cv_header_values_h=yes
ac_cv_header_wchar_h=yes
ac_cv_header_wctype_h=yes
ac_cv_header_zlib_h=yes
ac_cv_host=powerpc-poky-linux-gnu
ac_cv_ispeed_offset=13
ac_cv_lib_Xdmcp_XdmcpWrap=yes
ac_cv_lib_c_backtrace=yes
ac_cv_lib_crypto_SHA1_Init=yes
ac_cv_lib_gcrypt_gcry_md_open=yes
ac_cv_lib_lex=-lfl
ac_cv_lib_m_cbrt=yes
ac_cv_lib_m_sqrt=yes
ac_cv_lib_md_SHA1Init=no
ac_cv_lib_png_png_create_info_struct=yes
ac_cv_lib_rt_clock_gettime=yes
ac_cv_libnet_endianess=big
ac_cv_linux_vers=2
ac_cv_member_struct_sockaddr_in_sin_len=no
ac_cv_need_trio=no
ac_cv_negative_eai=yes
ac_cv_o_nonblock_inherited=no
ac_cv_objext=o
ac_cv_path_DTRACE=not_found
ac_cv_path_EGREP='/bin/grep -E'
ac_cv_path_FGREP='/bin/grep -F'
ac_cv_path_GREP=/bin/grep
ac_cv_path_PERL=/home/kyu3/sdb/test/tmp/sysroots/x86_64-linux/usr/bin/perl
ac_cv_path_PKG_CONFIG=/home/kyu3/sdb/test/tmp/sysroots/x86_64-linux/usr/bin/pkg-config
ac_cv_path_RAWCPP=/usr/bin/cpp
ac_cv_path_SED=/bin/sed
ac_cv_path_XMLTO=/usr/bin/xmlto
ac_cv_path_ac_pt_PKG_CONFIG=/home/kyu3/sdb/test/tmp/sysroots/x86_64-linux/usr/bin/pkg-config
ac_cv_path_install='/usr/bin/install -c'
ac_cv_path_mkdir=/bin/mkdir
ac_cv_pread=no
ac_cv_prog_AR=powerpc-poky-linux-ar
ac_cv_prog_AWK=gawk
ac_cv_prog_CC='powerpc-poky-linux-gcc -mcpu=603e  -mhard-float --sysroot=/home/kyu3/sdb/test/tmp/sysroots/qemuppc'
ac_cv_prog_CPP='powerpc-poky-linux-gcc -E --sysroot=/home/kyu3/sdb/test/tmp/sysroots/qemuppc'
ac_cv_prog_DLLTOOL=dlltool
ac_cv_prog_LEX=flex
ac_cv_prog_OBJDUMP=powerpc-poky-linux-objdump
ac_cv_prog_RANLIB=powerpc-poky-linux-ranlib
ac_cv_prog_STRIP=powerpc-poky-linux-strip
ac_cv_prog_YACC='bison -y'
ac_cv_prog_ac_ct_MANIFEST_TOOL=mt
ac_cv_prog_cc_c89=
ac_cv_prog_cc_c99=-std=gnu99
ac_cv_prog_cc_g=yes
ac_cv_prog_lex_root=lex.yy
ac_cv_prog_lex_yytext_pointer=yes
ac_cv_prog_make_make_set=yes
ac_cv_pwrite=no
ac_cv_regexec_segfault_emptystr=no
ac_cv_sctp=no
ac_cv_search_gethostbyname='none required'
ac_cv_search_getsecretkey='none required'
ac_cv_search_opendir='none required'
ac_cv_search_socket='none required'
ac_cv_sizeof___int64=0
ac_cv_sizeof_bool=1
ac_cv_sizeof_char=1
ac_cv_sizeof_char_p=4
ac_cv_sizeof_double=8
ac_cv_sizeof_float=4
ac_cv_sizeof_int=4
ac_cv_sizeof_int_p=4
ac_cv_sizeof_long=4
ac_cv_sizeof_long_double=8
ac_cv_sizeof_long_int=4
ac_cv_sizeof_long_long=8
ac_cv_sizeof_long_long_int=8
ac_cv_sizeof_long_p=4
ac_cv_sizeof_off_t=4
ac_cv_sizeof_pid_t=4
ac_cv_sizeof_ptrdiff_t=4
ac_cv_sizeof_short=2
ac_cv_sizeof_short_int=2
ac_cv_sizeof_signed_char=1
ac_cv_sizeof_size_t=4
ac_cv_sizeof_ssize_t=4
ac_cv_sizeof_unsigned_char=1
ac_cv_sizeof_unsigned_int=4
ac_cv_sizeof_unsigned_long=4
ac_cv_sizeof_unsigned_long_int=4
ac_cv_sizeof_unsigned_long_long_int=8
ac_cv_sizeof_unsigned_short=2
ac_cv_sizeof_unsigned_short_int=2
ac_cv_sizeof_void_p=4
ac_cv_sizeof_wchar_t=4
ac_cv_socklen_t=yes
ac_cv_strerror_r_SUSv3=no
ac_cv_struct_rlimit=yes
ac_cv_sync_with_stdio=yes
ac_cv_sync_with_stdio_2=yes
ac_cv_sys_file_offset_bits=64
ac_cv_sys_largefile_CC=no
ac_cv_sys_linker_h=no
ac_cv_sys_restartable_syscalls=yes
ac_cv_sysv_ipc=yes
ac_cv_time_r_type=POSIX
ac_cv_tls=__thread
ac_cv_type___int64=no
ac_cv_type_int=yes
ac_cv_type_pid_t=yes
ac_cv_type_signal=void
ac_cv_type_size_t=yes
ac_cv_type_socklen_t=yes
ac_cv_type_struct_timespec=yes
ac_cv_type_uid_t='{ac_cv_type_uid_t=yes}'
ac_cv_type_uintptr_t=yes
ac_cv_type_void_p=yes
ac_cv_uchar=no
ac_cv_uint=yes
ac_cv_ulong=yes
ac_cv_ushort=yes
ac_cv_va_copy=yes
ac_cv_working_alloca_h=yes
am_cv_CCAS_dependencies_compiler_type=gcc3
am_cv_CC_dependencies_compiler_type=gcc3
am_cv_OBJC_dependencies_compiler_type=none
am_cv_func_working_getline=yes
am_cv_scanf_lld=yes
apr_cv_epoll=yes
apr_cv_gai_addrconfig=no
apr_cv_mutex_recursive=yes
apr_cv_process_shared_works=no
apr_cv_pthreads_cflags=-pthread
apr_cv_pthreads_lib=-lpthread
apr_cv_tcp_nodelay_with_cork=yes
apr_cv_use_lfs64=yes
bash_cv_dup2_broken=no
bash_cv_func_sigsetjmp=missing
bash_cv_func_strcoll_broken=no
bash_cv_getcwd_calls_popen=no
bash_cv_getenv_redef=yes
bash_cv_have_mbstate_t=yes
bash_cv_job_control_missing=present
bash_cv_must_reinstall_sighandlers=no
bash_cv_opendir_not_robust=no
bash_cv_pgrp_pipe=no
bash_cv_printf_a_format=yes
bash_cv_sys_named_pipes=present
bash_cv_sys_siglist=yes
bash_cv_type_rlimit=rlim_t
bash_cv_ulimit_maxfds=yes
bash_cv_under_sys_siglist=yes
bash_cv_unusable_rtsigs=no
compat_cv_func_basename_works=no
compat_cv_func_dirname_works=no
compat_cv_func_snprintf_works=yes
cvs_cv_func_printf_ptr=yes
db_cv_align_t='unsigned long long'
db_cv_alignp_t='unsigned long'
db_cv_fcntl_f_setfd=yes
db_cv_mutex=no
db_cv_path_ar=/usr/bin/ar
db_cv_path_chmod=/bin/chmod
db_cv_path_cp=/bin/cp
db_cv_path_ln=/bin/ln
db_cv_path_mkdir=/bin/mkdir
db_cv_path_ranlib=/usr/bin/ranlib
db_cv_path_rm=/bin/rm
db_cv_path_sh=/bin/sh
db_cv_path_strip=/usr/bin/strip
db_cv_posixmutexes=no
db_cv_spinlocks=no
db_cv_sprintf_count=yes
db_cv_uimutexes=no
dpkg_cv___va_copy=yes
dpkg_cv_va_copy=yes
ettercap_cv_type_socklen_t=yes
fu_cv_sys_stat_statvfs64=yes
gl_cv_func_btowc_eof=yes
gl_cv_func_mbrtowc_incomplete_state=yes
gl_cv_func_mbrtowc_nul_retval=yes
gl_cv_func_mbrtowc_null_arg=yes
gl_cv_func_mbrtowc_retval=yes
gl_cv_func_mbrtowc_sanitycheck=yes
gl_cv_func_wcrtomb_retval=yes
gl_cv_func_wctob_works=yes
glib_cv___va_copy=yes
glib_cv_compliant_posix_memalign=1
glib_cv_has__inline=yes
glib_cv_has__inline__=yes
glib_cv_hasinline=yes
glib_cv_long_long_format=ll
glib_cv_rtldglobal_broken=no
glib_cv_sane_realloc=yes
glib_cv_sizeof_gmutex=24
glib_cv_sizeof_intmax_t=8
glib_cv_sizeof_ptrdiff_t=4
glib_cv_sizeof_size_t=4
glib_cv_sizeof_system_thread=4
glib_cv_stack_grows=no
glib_cv_strlcpy=no
glib_cv_sys_pthread_cond_timedwait_posix=yes
glib_cv_sys_pthread_getspecific_posix=yes
glib_cv_sys_pthread_mutex_trylock_posix=yes
glib_cv_sys_use_pid_niceness_surrogate=yes
glib_cv_uscore=no
glib_cv_use_pid_surrogate=yes
glib_cv_va_copy=no
glib_cv_va_val_copy=yes
gt_cv_locale_fr=fr_FR
lf_cv_sane_realloc=yes
lftp_cv___va_copy=yes
lftp_cv_va_copy=no
lftp_cv_va_val_copy=yes
libIDL_cv_long_long_format=ll
libc_cv_mabi_ibmlongdouble=yes
libc_cv_mlong_double_128=yes
libc_cv_mlong_double_128ibm=yes
libc_cv_ppc_machine=yes
liberty_cv_uint64=uint64_t
lt_cv_ar_at_file=@
lt_cv_archive_cmds_need_lc=no
lt_cv_deplibs_check_method=pass_all
lt_cv_dlopen_self=yes
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='powerpc-poky-linux-ld --sysroot=/home/kyu3/sdb/test/tmp/sysroots/qemuppc'
lt_cv_path_NM=powerpc-poky-linux-nm
lt_cv_path_mainfest_tool=no
lt_cv_prog_compiler_c_o=yes
lt_cv_prog_compiler_pic='-fPIC -DPIC'
lt_cv_prog_compiler_pic_works=yes
lt_cv_prog_compiler_rtti_exceptions=no
lt_cv_prog_compiler_static_works=yes
lt_cv_prog_gnu_ld=yes
lt_cv_sharedlib_from_linklib_cmd='printf %s\n'
lt_cv_shlibpath_overrides_runpath=no
lt_cv_sys_global_symbol_pipe='sed -n -e '\''s/^.*[	 ]\([ABCDGIRSTW][ABCDGIRSTW]*\)[	 ][	 ]*\([_A-Za-z][_A-Za-z0-9]*\)$/\1 \2 \2/p'\'' | sed '\''/ __gnu_lto/d'\'''
lt_cv_sys_global_symbol_to_c_name_address='sed -n -e '\''s/^: \([^ ]*\)[ ]*$/  {\"\1\", (void *) 0},/p'\'' -e '\''s/^[ABCDGIRSTW]* \([^ ]*\) \([^ ]*\)$/  {"\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=1572864
lt_cv_to_host_file_cmd=func_convert_file_noop
lt_cv_to_tool_file_cmd=func_convert_file_noop
mono_cv_uscore=no
mr_cv_target_elf=yes
mysql_cv_func_atomic_add=no
mysql_cv_func_atomic_sub=no
nano_cv_func_regexec_segv_emptystr=no
php_cv_lib_cookie_io_functions_use_off64_t=yes
pkg_cv_DBUS_CFLAGS='-I/home/kyu3/sdb/test/tmp/sysroots/qemuppc/usr/include/dbus-1.0 -I/home/kyu3/sdb/test/tmp/sysroots/qemuppc/usr/lib/dbus-1.0/include  '
pkg_cv_DBUS_LIBS='-ldbus-1 -lpthread -lrt  '
pkg_cv_DMXMODULES_CFLAGS=' '
pkg_cv_DMXMODULES_LIBS='-lXmuu -lXext -lXrender -lX11 -lXfixes -lXi -lXau -lXdmcp  '
pkg_cv_GLIB_CFLAGS='-I/home/kyu3/sdb/test/tmp/sysroots/qemuppc/usr/include/glib-2.0 -I/home/kyu3/sdb/test/tmp/sysroots/qemuppc/usr/lib/glib-2.0/include  '
pkg_cv_GLIB_LIBS='-lglib-2.0  '
pkg_cv_HAL_CFLAGS='-DDBUS_API_SUBJECT_TO_CHANGE -I/home/kyu3/sdb/test/tmp/sysroots/qemuppc/usr/include/hal -I/home/kyu3/sdb/test/tmp/sysroots/qemuppc/usr/include/dbus-1.0 -I/home/kyu3/sdb/test/tmp/sysroots/qemuppc/usr/lib/dbus-1.0/include  '
pkg_cv_HAL_LIBS='-lhal -ldbus-1 -lpthread -lrt  '
pkg_cv_OPENSSL_CFLAGS=' '
pkg_cv_OPENSSL_LIBS='-lssl -lcrypto  '
pkg_cv_PCIACCESS_CFLAGS=' '
pkg_cv_PCIACCESS_LIBS='-lpciaccess  '
pkg_cv_PIXMAN_CFLAGS='-I/home/kyu3/sdb/test/tmp/sysroots/qemuppc/usr/include/pixman-1  '
pkg_cv_PIXMAN_LIBS='-lpixman-1  '
pkg_cv_UDEV_CFLAGS=' '
pkg_cv_UDEV_LIBS='-ludev  '
pkg_cv_XDMCP_CFLAGS=' '
pkg_cv_XDMCP_LIBS='-lXdmcp  '
pkg_cv_XF86VIDMODE_CFLAGS=' '
pkg_cv_XF86VIDMODE_LIBS=' '
pkg_cv_XNESTMODULES_CFLAGS=' '
pkg_cv_XNESTMODULES_LIBS='-lXext -lX11 -lXau -lXdmcp  '
pkg_cv_XORG_MODULES_CFLAGS=' '
pkg_cv_XORG_MODULES_LIBS=' '
pkg_cv_XSERVERCFLAGS_CFLAGS='-D_BSD_SOURCE -DHAS_FCHOWN -DHAS_STICKY_DIR_BIT -I/home/kyu3/sdb/test/tmp/sysroots/qemuppc/usr/include/pixman-1 -I/home/kyu3/sdb/test/tmp/sysroots/qemuppc/usr/include/freetype2  '
pkg_cv_XSERVERCFLAGS_LIBS='-lxkbfile -lpixman-1 -lXfont -lXau -lXdmcp  '
pkg_cv_XSERVERLIBS_CFLAGS='-I/home/kyu3/sdb/test/tmp/sysroots/qemuppc/usr/include/pixman-1 -I/home/kyu3/sdb/test/tmp/sysroots/qemuppc/usr/include/freetype2  '
pkg_cv_XSERVERLIBS_LIBS='-lpixman-1 -lXfont -lXau -lXdmcp  '
samba_cv_HAVE_BROKEN_FCNTL64_LOCKS=no
samba_cv_HAVE_BROKEN_GETGROUPS=no
samba_cv_HAVE_BROKEN_READDIR=yes
samba_cv_HAVE_BROKEN_READDIR_NAME=no
samba_cv_HAVE_C99_VSNPRINTF=yes
samba_cv_HAVE_DEV64_T=no
samba_cv_HAVE_DEVICE_MAJOR_FN=yes
samba_cv_HAVE_DEVICE_MINOR_FN=yes
samba_cv_HAVE_FCNTL_LOCK=yes
samba_cv_HAVE_FTRUNCATE_EXTEND=yes
samba_cv_HAVE_GETTIMEOFDAY_TZ=yes
samba_cv_HAVE_IFACE_AIX=no
samba_cv_HAVE_IFACE_IFCONF=yes
samba_cv_HAVE_IFACE_IFREQ=yes
samba_cv_HAVE_INO64_T=no
samba_cv_HAVE_KERNEL_CHANGE_NOTIFY=yes
samba_cv_HAVE_KERNEL_OPLOCKS_LINUX=yes
samba_cv_HAVE_KERNEL_SHARE_MODES=yes
samba_cv_HAVE_MAKEDEV=yes
samba_cv_HAVE_MMAP=yes
samba_cv_HAVE_OFF64_T=no
samba_cv_HAVE_SECURE_MKSTEMP=yes
samba_cv_HAVE_SENDFILE64=yes
samba_cv_HAVE_SENDFILE=yes
samba_cv_HAVE_STRUCT_FLOCK64=yes
samba_cv_HAVE_TRUNCATED_SALT=no
samba_cv_HAVE_UNSIGNED_CHAR=yes
samba_cv_HAVE_WORKING_AF_LOCAL=yes
samba_cv_LINUX_LFS_SUPPORT=yes
samba_cv_REALPATH_TAKES_NULL=yes
samba_cv_REPLACE_INET_NTOA=no
samba_cv_REPLACE_READDIR=no
samba_cv_SIZEOF_DEV_T=yes
samba_cv_SIZEOF_INO_T=yes
samba_cv_SIZEOF_OFF_T=yes
samba_cv_STAT_STATVFS64=yes
samba_cv_USE_SETEUID=yes
samba_cv_USE_SETRESUID=yes
samba_cv_USE_SETREUID=yes
samba_cv_USE_SETUIDX=yes
samba_cv_have_longlong=yes
samba_cv_have_setresgid=yes
samba_cv_have_setresuid=yes
sc_cv_termios_ispeed=yes
screen_cv_sys_bcopy_overlap=no
screen_cv_sys_fifo_broken_impl=yes
screen_cv_sys_fifo_usable=yes
screen_cv_sys_memcpy_overlap=no
screen_cv_sys_memmove_overlap=no
screen_cv_sys_select_broken_retval=no
screen_cv_sys_sockets_nofs=no
screen_cv_sys_sockets_usable=yes
screen_cv_sys_terminfo_used=yes
shadow_cv_logdir=/var/log
shadow_cv_maildir=/var/spool/mail
shadow_cv_mailfile=Mailbox
shadow_cv_passwd_dir=/usr/bin
shadow_cv_utmpdir=/var/run
slrn_cv___va_copy=yes
slrn_cv_va_copy=no
slrn_cv_va_val_copy=yes
sudo_cv_func_unsetenv_void=no
sudo_cv_uid_t_len=10
utils_cv_sys_open_max=1019

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

ACLOCAL='${SHELL} /home/kyu3/sdb/test/tmp/work/ppc603e-poky-linux/xserver-xf86-lite-1.10.1-r0/xorg-server-1.10.1/missing --run aclocal-1.11'
ADMIN_MAN_DIR='$(mandir)/man$(ADMIN_MAN_SUFFIX)'
ADMIN_MAN_SUFFIX='8'
AGP_FALSE='#'
AGP_TRUE=''
AIGLX_FALSE=''
AIGLX_TRUE='#'
ALLOCA=''
ALPHA_VIDEO_FALSE=''
ALPHA_VIDEO_TRUE='#'
AMDEPBACKSLASH='\'
AMDEP_FALSE='#'
AMDEP_TRUE=''
AMTAR='${SHELL} /home/kyu3/sdb/test/tmp/work/ppc603e-poky-linux/xserver-xf86-lite-1.10.1-r0/xorg-server-1.10.1/missing --run tar'
AM_BACKSLASH='\'
AM_DEFAULT_VERBOSITY='1'
APPLE_APPLICATIONS_DIR='/Applications/Utilities'
APPLE_APPLICATION_NAME='X11'
APP_MAN_DIR='$(mandir)/man$(APP_MAN_SUFFIX)'
APP_MAN_SUFFIX='1'
AR='powerpc-poky-linux-ar'
ARM_BACKTRACE_CFLAGS=''
ARM_VIDEO_FALSE=''
ARM_VIDEO_TRUE='#'
AS='powerpc-poky-linux-as'
AUTOCONF='${SHELL} /home/kyu3/sdb/test/tmp/work/ppc603e-poky-linux/xserver-xf86-lite-1.10.1-r0/xorg-server-1.10.1/missing --run autoconf'
AUTOHEADER='${SHELL} /home/kyu3/sdb/test/tmp/work/ppc603e-poky-linux/xserver-xf86-lite-1.10.1-r0/xorg-server-1.10.1/missing --run autoheader'
AUTOMAKE='${SHELL} /home/kyu3/sdb/test/tmp/work/ppc603e-poky-linux/xserver-xf86-lite-1.10.1-r0/xorg-server-1.10.1/missing --run automake-1.11'
AWK='gawk'
BASE_FONT_PATH='/usr/share/fonts/X11'
BSD_APM_FALSE=''
BSD_APM_TRUE='#'
BSD_KQUEUE_APM_FALSE=''
BSD_KQUEUE_APM_TRUE='#'
BUILD_DATE='20110528'
BUILD_KDRIVEFBDEVLIB_FALSE=''
BUILD_KDRIVEFBDEVLIB_TRUE='#'
BUILD_TIME='1095557'
CC='powerpc-poky-linux-gcc -mcpu=603e  -mhard-float --sysroot=/home/kyu3/sdb/test/tmp/sysroots/qemuppc -std=gnu99'
CCAS='powerpc-poky-linux-gcc -mcpu=603e  -mhard-float --sysroot=/home/kyu3/sdb/test/tmp/sysroots/qemuppc -std=gnu99'
CCASDEPMODE='depmode=gcc3'
CCASFLAGS='-O2 -pipe -g -feliminate-unused-debug-types'
CCDEPMODE='depmode=gcc3'
CFLAGS='-O2 -pipe -g -feliminate-unused-debug-types'
CHANGELOG_CMD='(GIT_DIR=$(top_srcdir)/.git git log > $(top_srcdir)/.changelog.tmp && mv $(top_srcdir)/.changelog.tmp $(top_srcdir)/ChangeLog) || (rm -f $(top_srcdir)/.changelog.tmp; touch $(top_srcdir)/ChangeLog; echo '\''git directory not found: installing possibly empty changelog.'\'' >&2)'
COMPILEDDEFAULTFONTPATH='/usr/share/fonts/X11/misc/,/usr/share/fonts/X11/TTF/,/usr/share/fonts/X11/OTF/,/usr/share/fonts/X11/Type1/,/usr/share/fonts/X11/100dpi/,/usr/share/fonts/X11/75dpi/'
COMPOSITE_FALSE='#'
COMPOSITE_TRUE=''
CONFIG_DBUS_API_FALSE=''
CONFIG_DBUS_API_TRUE='#'
CONFIG_HAL_FALSE=''
CONFIG_HAL_TRUE='#'
CONFIG_NEED_DBUS_FALSE=''
CONFIG_NEED_DBUS_TRUE='#'
CONFIG_UDEV_FALSE='#'
CONFIG_UDEV_TRUE=''
CPP='powerpc-poky-linux-gcc -E --sysroot=/home/kyu3/sdb/test/tmp/sysroots/qemuppc'
CPPFLAGS=''
CWARNFLAGS='-Wall -Wpointer-arith -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -fno-strict-aliasing -Wbad-function-cast -Wformat=2 -Wold-style-definition -Wdeclaration-after-statement '
CYGPATH_W='echo'
DARWIN_LIBS=''
DBE_FALSE='#'
DBE_TRUE=''
DBUS_CFLAGS='-I/home/kyu3/sdb/test/tmp/sysroots/qemuppc/usr/include/dbus-1.0 -I/home/kyu3/sdb/test/tmp/sysroots/qemuppc/usr/lib/dbus-1.0/include  '
DBUS_LIBS='-ldbus-1 -lpthread -lrt  '
DEBUG_FALSE=''
DEBUG_TRUE='#'
DEFAULT_LIBRARY_PATH='/usr/lib'
DEFAULT_LOGDIR=''
DEFAULT_LOGPREFIX='/var/log/Xorg.'
DEFAULT_MODULE_PATH='/usr/lib/xorg/modules'
DEFS='-DHAVE_CONFIG_H'
DEPDIR='.deps'
DGA_CFLAGS=''
DGA_FALSE=''
DGA_LIBS=''
DGA_TRUE='#'
DIX_CFLAGS='-DHAVE_DIX_CONFIG_H $(CWARNFLAGS) -D_BSD_SOURCE -DHAS_FCHOWN -DHAS_STICKY_DIR_BIT -I/home/kyu3/sdb/test/tmp/sysroots/qemuppc/usr/include/pixman-1 -I/home/kyu3/sdb/test/tmp/sysroots/qemuppc/usr/include/freetype2   -I$(top_srcdir)/include -I$(top_builddir)/include -I$(top_srcdir)/Xext -I$(top_srcdir)/composite -I$(top_srcdir)/damageext -I$(top_srcdir)/xfixes -I$(top_srcdir)/Xi -I$(top_srcdir)/mi -I$(top_srcdir)/miext/sync -I$(top_srcdir)/miext/shadow  -I$(top_srcdir)/miext/damage -I$(top_srcdir)/render -I$(top_srcdir)/randr -I$(top_srcdir)/fb -fvisibility=hidden'
DIX_LIB='$(top_builddir)/dix/libdix.la'
DLLTOOL='dlltool'
DLOPEN_LIBS=''
DMXEXAMPLES_DEP_CFLAGS=''
DMXEXAMPLES_DEP_LIBS=''
DMXMODULES_CFLAGS=' '
DMXMODULES_LIBS='-lXmuu -lXext -lXrender -lX11 -lXfixes -lXi -lXau -lXdmcp  '
DMXXIEXAMPLES_DEP_CFLAGS=''
DMXXIEXAMPLES_DEP_LIBS=''
DMXXMUEXAMPLES_DEP_CFLAGS=''
DMXXMUEXAMPLES_DEP_LIBS=''
DMX_BUILD_LNX_FALSE=''
DMX_BUILD_LNX_TRUE='#'
DMX_BUILD_USB_FALSE=''
DMX_BUILD_USB_TRUE='#'
DMX_FALSE=''
DMX_TRUE='#'
DOXYGEN=''
DPMSExtension_FALSE='#'
DPMSExtension_TRUE=''
DRI2PROTO_CFLAGS=''
DRI2PROTO_LIBS=''
DRI2_AIGLX_FALSE=''
DRI2_AIGLX_TRUE='#'
DRI2_FALSE=''
DRI2_TRUE='#'
DRIPROTO_CFLAGS=''
DRIPROTO_LIBS=''
DRIVER_MAN_DIR='$(mandir)/man$(DRIVER_MAN_SUFFIX)'
DRIVER_MAN_SUFFIX='4'
DRI_CFLAGS=''
DRI_DRIVER_PATH=''
DRI_FALSE=''
DRI_LIBS=''
DRI_TRUE='#'
DSYMUTIL=''
DTRACE='not_found'
DUMPBIN=''
ECHO_C=''
ECHO_N='-n'
ECHO_T=''
EGREP='/bin/grep -E'
ENABLE_DEVEL_DOCS_FALSE='#'
ENABLE_DEVEL_DOCS_TRUE=''
ENABLE_DOCS_FALSE='#'
ENABLE_DOCS_TRUE=''
EXEEXT=''
FBDEVHW_FALSE='#'
FBDEVHW_TRUE=''
FGREP='/bin/grep -F'
FILE_MAN_DIR='$(mandir)/man$(FILE_MAN_SUFFIX)'
FILE_MAN_SUFFIX='5'
FONT100DPIDIR='${FONTROOTDIR}/100dpi'
FONT75DPIDIR='${FONTROOTDIR}/75dpi'
FONTMISCDIR='${FONTROOTDIR}/misc'
FONTOTFDIR='${FONTROOTDIR}/OTF'
FONTROOTDIR='/usr/share/fonts/X11'
FONTTTFDIR='${FONTROOTDIR}/TTF'
FONTTYPE1DIR='${FONTROOTDIR}/Type1'
FOP=''
FREEBSD_KLDLOAD_FALSE=''
FREEBSD_KLDLOAD_TRUE='#'
GLIB_CFLAGS='-I/home/kyu3/sdb/test/tmp/sysroots/qemuppc/usr/include/glib-2.0 -I/home/kyu3/sdb/test/tmp/sysroots/qemuppc/usr/lib/glib-2.0/include  '
GLIB_LIBS='-lglib-2.0  '
GLX_ARCH_DEFINES=''
GLX_DEFINES='-DGLX_USE_TLS -DPTHREADS'
GLX_FALSE=''
GLX_TLS='yes'
GLX_TRUE='#'
GL_CFLAGS=''
GL_LIBS=''
GREP='/bin/grep'
HAL_CFLAGS='-DDBUS_API_SUBJECT_TO_CHANGE -I/home/kyu3/sdb/test/tmp/sysroots/qemuppc/usr/include/hal -I/home/kyu3/sdb/test/tmp/sysroots/qemuppc/usr/include/dbus-1.0 -I/home/kyu3/sdb/test/tmp/sysroots/qemuppc/usr/lib/dbus-1.0/include  '
HAL_LIBS='-lhal -ldbus-1 -lpthread -lrt  '
HAVE_DBUS_FALSE='#'
HAVE_DBUS_TRUE=''
HAVE_DOXYGEN_FALSE=''
HAVE_DOXYGEN_TRUE='#'
HAVE_FOP_FALSE=''
HAVE_FOP_TRUE='#'
HAVE_STYLESHEETS_FALSE=''
HAVE_STYLESHEETS_TRUE='#'
HAVE_XMLTO_FALSE='#'
HAVE_XMLTO_TEXT_FALSE='#'
HAVE_XMLTO_TEXT_TRUE=''
HAVE_XMLTO_TRUE=''
I386_VIDEO_FALSE=''
I386_VIDEO_TRUE='#'
INSTALL_CMD='(cp -f /usr/share/util-macros/INSTALL $(top_srcdir)/.INSTALL.tmp && mv $(top_srcdir)/.INSTALL.tmp $(top_srcdir)/INSTALL) || (rm -f $(top_srcdir)/.INSTALL.tmp; touch $(top_srcdir)/INSTALL; echo '\''util-macros "pkgdatadir" from xorg-macros.pc not found: installing possibly empty INSTALL.'\'' >&2)'
INSTALL_DATA='${INSTALL} -m 644'
INSTALL_LIBXF86CONFIG_FALSE=''
INSTALL_LIBXF86CONFIG_TRUE='#'
INSTALL_PROGRAM='${INSTALL}'
INSTALL_SCRIPT='${INSTALL}'
INSTALL_SETUID_FALSE=''
INSTALL_SETUID_TRUE='#'
INSTALL_STRIP_PROGRAM='$(install_sh) -c -s'
INT10MODULE_FALSE='#'
INT10MODULE_TRUE=''
INT10_STUB_FALSE=''
INT10_STUB_TRUE='#'
INT10_VM86_FALSE=''
INT10_VM86_TRUE='#'
INT10_X86EMU_FALSE='#'
INT10_X86EMU_TRUE=''
KDRIVEFBDEV_FALSE=''
KDRIVEFBDEV_TRUE='#'
KDRIVELINUX_FALSE=''
KDRIVELINUX_TRUE='#'
KDRIVE_CFLAGS=''
KDRIVE_EVDEV_FALSE=''
KDRIVE_EVDEV_TRUE='#'
KDRIVE_FALSE=''
KDRIVE_INCS=''
KDRIVE_KBD_FALSE=''
KDRIVE_KBD_TRUE='#'
KDRIVE_LIBS=''
KDRIVE_LOCAL_LIBS=''
KDRIVE_MOUSE_FALSE=''
KDRIVE_MOUSE_TRUE='#'
KDRIVE_PURE_INCS=''
KDRIVE_PURE_LIBS=''
KDRIVE_TRUE='#'
LAUNCHD_ID_PREFIX='org.x'
LD='powerpc-poky-linux-ld --sysroot=/home/kyu3/sdb/test/tmp/sysroots/qemuppc'
LDFLAGS='-Wl,-O1  -Wl,--as-needed'
LD_EXPORT_SYMBOLS_FLAG='-export-dynamic'
LEX='flex'
LEXLIB='-lfl'
LEX_OUTPUT_ROOT='lex.yy'
LIBDRM_CFLAGS=''
LIBDRM_LIBS=''
LIBOBJS=''
LIBS='-lm '
LIBSHA1_CFLAGS=''
LIBSHA1_LIBS=''
LIBTOOL='$(SHELL) $(top_builddir)/powerpc-poky-linux-libtool'
LIB_MAN_DIR='$(mandir)/man$(LIB_MAN_SUFFIX)'
LIB_MAN_SUFFIX='3'
LINUX_ALPHA_FALSE=''
LINUX_ALPHA_TRUE='#'
LINUX_IA64_FALSE=''
LINUX_IA64_TRUE='#'
LIPO=''
LNXACPI_FALSE=''
LNXACPI_TRUE='#'
LNXAPM_FALSE='#'
LNXAPM_TRUE=''
LN_S='ln -s'
LTLIBOBJS=''
MAINT='#'
MAINTAINER_MODE_FALSE=''
MAINTAINER_MODE_TRUE='#'
MAIN_LIB='$(top_builddir)/dix/libmain.la'
MAKEINFO='${SHELL} /home/kyu3/sdb/test/tmp/work/ppc603e-poky-linux/xserver-xf86-lite-1.10.1-r0/xorg-server-1.10.1/missing --run makeinfo'
MANIFEST_TOOL=':'
MAN_SUBSTS='	-e '\''s|__vendorversion__|"$(PACKAGE_STRING)" "$(XORG_MAN_PAGE)"|'\'' 	-e '\''s|__xorgversion__|"$(PACKAGE_STRING)" "$(XORG_MAN_PAGE)"|'\'' 	-e '\''s|__xservername__|Xorg|g'\'' 	-e '\''s|__xconfigfile__|xorg.conf|g'\'' 	-e '\''s|__projectroot__|$(prefix)|g'\'' 	-e '\''s|__apploaddir__|$(appdefaultdir)|g'\'' 	-e '\''s|__appmansuffix__|$(APP_MAN_SUFFIX)|g'\'' 	-e '\''s|__drivermansuffix__|$(DRIVER_MAN_SUFFIX)|g'\'' 	-e '\''s|__adminmansuffix__|$(ADMIN_MAN_SUFFIX)|g'\'' 	-e '\''s|__libmansuffix__|$(LIB_MAN_SUFFIX)|g'\'' 	-e '\''s|__miscmansuffix__|$(MISC_MAN_SUFFIX)|g'\'' 	-e '\''s|__filemansuffix__|$(FILE_MAN_SUFFIX)|g'\'''
MISC_MAN_DIR='$(mandir)/man$(MISC_MAN_SUFFIX)'
MISC_MAN_SUFFIX='7'
MITSHM_FALSE='#'
MITSHM_TRUE=''
MKDIR_P='/bin/mkdir -p'
NEED_STRLCAT_FALSE='#'
NEED_STRLCAT_TRUE=''
NEED_VSNPRINTF_FALSE=''
NEED_VSNPRINTF_TRUE='#'
NM='powerpc-poky-linux-nm'
NMEDIT=''
OBJC='$(CC)'
OBJCCLD=''
OBJCDEPMODE='depmode=none'
OBJCFLAGS='$(CFLAGS)'
OBJCLINK='$(LINK)'
OBJDUMP='powerpc-poky-linux-objdump'
OBJEXT='o'
OPENSSL_CFLAGS=' '
OPENSSL_LIBS='-lssl -lcrypto  '
OS_LIB='$(top_builddir)/os/libos.la'
OTOOL64=''
OTOOL=''
PACKAGE='xorg-server'
PACKAGE_BUGREPORT='https://bugs.freedesktop.org/enter_bug.cgi?product=xorg'
PACKAGE_NAME='xorg-server'
PACKAGE_STRING='xorg-server 1.10.1'
PACKAGE_TARNAME='xorg-server'
PACKAGE_URL=''
PACKAGE_VERSION='1.10.1'
PATH_SEPARATOR=':'
PCIACCESS_CFLAGS=' '
PCIACCESS_LIBS='-lpciaccess  '
PCI_TXT_IDS_PATH=''
PERL='/home/kyu3/sdb/test/tmp/sysroots/x86_64-linux/usr/bin/perl'
PIXMAN_CFLAGS='-I/home/kyu3/sdb/test/tmp/sysroots/qemuppc/usr/include/pixman-1  '
PIXMAN_LIBS='-lpixman-1  '
PKG_CONFIG='/home/kyu3/sdb/test/tmp/sysroots/x86_64-linux/usr/bin/pkg-config'
PKG_CONFIG_LIBDIR='/home/kyu3/sdb/test/tmp/sysroots/qemuppc//usr/lib/pkgconfig'
PKG_CONFIG_PATH='/home/kyu3/sdb/test/tmp/sysroots/qemuppc//usr/lib/pkgconfig:/home/kyu3/sdb/test/tmp/sysroots/qemuppc/usr/share/pkgconfig'
PPC_VIDEO_FALSE='#'
PPC_VIDEO_TRUE=''
PROJECTROOT='/usr'
RANLIB='powerpc-poky-linux-ranlib'
RAWCPP='/usr/bin/cpp'
RAWCPPFLAGS='-undef -traditional'
RECORD_FALSE=''
RECORD_TRUE='#'
RELEASE_DATE='2011-04-15'
RES_FALSE='#'
RES_TRUE=''
SCREENSAVER_FALSE='#'
SCREENSAVER_TRUE=''
SDK_REQUIRED_MODULES='xproto >= 7.0.17 randrproto >= 1.2.99.3 renderproto >= 0.11 xextproto >= 7.1.99 inputproto >= 1.9.99.902 kbproto >= 1.0.3 fontsproto videoproto'
SECURE_RPC_FALSE='#'
SECURE_RPC_TRUE=''
SED='/bin/sed'
SELINUX_CFLAGS=''
SELINUX_LIBS=''
SERVER_MISC_CONFIG_PATH='/usr/lib/xorg'
SET_MAKE=''
SHA1_CFLAGS=''
SHA1_LIBS='-lgcrypt'
SHELL='/bin/sh'
SOLARIS_ASM_CFLAGS=''
SOLARIS_ASM_INLINE_FALSE=''
SOLARIS_ASM_INLINE_TRUE='#'
SOLARIS_INOUT_ARCH=''
SOLARIS_VT_FALSE=''
SOLARIS_VT_TRUE='#'
SPARC64_VIDEO_FALSE=''
SPARC64_VIDEO_TRUE='#'
SPECIAL_DTRACE_OBJECTS_FALSE=''
SPECIAL_DTRACE_OBJECTS_TRUE='#'
STANDALONE_XPBPROXY_FALSE=''
STANDALONE_XPBPROXY_TRUE='#'
STRIP='powerpc-poky-linux-strip'
STYLESHEET_SRCDIR=''
SYSCONFDIR=''
TSLIB_CFLAGS=''
TSLIB_FALSE=''
TSLIB_LIBS=''
TSLIB_TRUE='#'
UDEV_CFLAGS=' '
UDEV_LIBS='-ludev  '
UNITTESTS_FALSE=''
UNITTESTS_TRUE='#'
UTILS_SYS_LIBS=''
VBE_FALSE='#'
VBE_TRUE=''
VENDOR_NAME_SHORT='X.Org'
VERSION='1.10.1'
VGAHW_FALSE='#'
VGAHW_TRUE=''
WINDOWSWM_CFLAGS=''
WINDOWSWM_LIBS=''
WINDRES=''
X11EXAMPLES_DEP_CFLAGS=''
X11EXAMPLES_DEP_LIBS=''
XAA_FALSE='#'
XAA_TRUE=''
XACE_FALSE='#'
XACE_TRUE=''
XCALIBRATE_FALSE=''
XCALIBRATE_TRUE='#'
XCSECURITY_FALSE=''
XCSECURITY_TRUE='#'
XDMAUTH_FALSE='#'
XDMAUTH_TRUE=''
XDMCP_CFLAGS=' '
XDMCP_FALSE='#'
XDMCP_LIBS='-lXdmcp  '
XDMCP_TRUE=''
XDMXCONFIG_DEP_CFLAGS=''
XDMXCONFIG_DEP_LIBS=''
XDMX_CFLAGS=''
XDMX_LIBS=''
XDMX_SYS_LIBS=''
XEPHYR_CFLAGS=''
XEPHYR_FALSE=''
XEPHYR_INCS=''
XEPHYR_LIBS=''
XEPHYR_TRUE='#'
XF86BIGFONT_FALSE=''
XF86BIGFONT_TRUE='#'
XF86CONFIGDIR='xorg.conf.d'
XF86CONFIGFILE='xorg.conf'
XF86UTILS_FALSE='#'
XF86UTILS_TRUE=''
XF86VIDMODE_CFLAGS=' '
XF86VIDMODE_FALSE='#'
XF86VIDMODE_LIBS=' '
XF86VIDMODE_TRUE=''
XFAKESERVER_FALSE=''
XFAKESERVER_TRUE='#'
XINERAMA_FALSE=''
XINERAMA_TRUE='#'
XKB_BASE_DIRECTORY='/usr/share/X11/xkb'
XKB_BIN_DIRECTORY='/usr/bin'
XKB_COMPILED_DIR='/var/lib/xkb'
XKM_OUTPUT_DIR='/var/lib/xkb/'
XLIB_CFLAGS=''
XLIB_LIBS=''
XMLTO='/usr/bin/xmlto'
XNESTMODULES_CFLAGS=' '
XNESTMODULES_LIBS='-lXext -lX11 -lXau -lXdmcp  '
XNEST_FALSE=''
XNEST_LIBS=''
XNEST_SYS_LIBS=''
XNEST_TRUE='#'
XORG_BUS_BSDPCI_FALSE=''
XORG_BUS_BSDPCI_TRUE='#'
XORG_BUS_LINUXPCI_FALSE='#'
XORG_BUS_LINUXPCI_TRUE=''
XORG_BUS_SPARC_FALSE=''
XORG_BUS_SPARC_TRUE='#'
XORG_CFLAGS=' -DHAVE_XORG_CONFIG_H -fvisibility=hidden   -DXF86PM  '
XORG_FALSE='#'
XORG_INCS='-I$(top_srcdir)/hw/xfree86 -I$(top_srcdir)/hw/xfree86/include -I$(top_srcdir)/hw/xfree86/common -I$(top_srcdir)/hw/xfree86/os-support -I$(top_srcdir)/hw/xfree86/os-support/bus -I$(top_srcdir)/os'
XORG_LIBS='$(top_builddir)/composite/libcomposite.la $(top_builddir)/xfixes/libxfixes.la $(top_builddir)/Xext/libXextbuiltin.la  $(top_builddir)/randr/librandr.la $(top_builddir)/render/librender.la $(top_builddir)/damageext/libdamageext.la $(top_builddir)/miext/sync/libsync.la $(top_builddir)/miext/damage/libdamage.la $(top_builddir)/miext/shadow/libshadow.la $(top_builddir)/Xi/libXi.la $(top_builddir)/xkb/libxkb.la'
XORG_MAN_PAGE='X Version 11'
XORG_MODULES_CFLAGS=' '
XORG_MODULES_LIBS=' '
XORG_OS='linux'
XORG_OS_SUBDIR='linux'
XORG_SGML_PATH=''
XORG_SYS_LIBS=' -lpciaccess    -lpthread  '
XORG_TRUE=''
XPBPROXY_CFLAGS=''
XPBPROXY_LIBS=''
XQUARTZ_FALSE=''
XQUARTZ_SPARKLE='no'
XQUARTZ_SPARKLE_FALSE=''
XQUARTZ_SPARKLE_TRUE='#'
XQUARTZ_TRUE='#'
XREGISTRY_FALSE='#'
XREGISTRY_TRUE=''
XRESEXAMPLES_DEP_CFLAGS=''
XRESEXAMPLES_DEP_LIBS=''
XSELINUX_FALSE=''
XSELINUX_TRUE='#'
XSERVERCFLAGS_CFLAGS='-D_BSD_SOURCE -DHAS_FCHOWN -DHAS_STICKY_DIR_BIT -I/home/kyu3/sdb/test/tmp/sysroots/qemuppc/usr/include/pixman-1 -I/home/kyu3/sdb/test/tmp/sysroots/qemuppc/usr/include/freetype2  '
XSERVERCFLAGS_LIBS='-lxkbfile -lpixman-1 -lXfont -lXau -lXdmcp  '
XSERVERLIBS_CFLAGS='-I/home/kyu3/sdb/test/tmp/sysroots/qemuppc/usr/include/pixman-1 -I/home/kyu3/sdb/test/tmp/sysroots/qemuppc/usr/include/freetype2  '
XSERVERLIBS_LIBS='-lpixman-1 -lXfont -lXau -lXdmcp  '
XSERVER_DTRACE_FALSE=''
XSERVER_DTRACE_TRUE='#'
XSERVER_LIBS='$(top_builddir)/dix/libdix.la $(top_builddir)/mi/libmi.la $(top_builddir)/os/libos.la'
XSERVER_SYS_LIBS='-lpixman-1 -lXfont -lXau -lXdmcp    -lm '
XSL_STYLESHEET=''
XTSTEXAMPLES_DEP_CFLAGS=''
XTSTEXAMPLES_DEP_LIBS=''
XVFB_FALSE=''
XVFB_LIBS=''
XVFB_SYS_LIBS=''
XVFB_TRUE='#'
XVMC_FALSE='#'
XVMC_TRUE=''
XV_FALSE='#'
XV_TRUE=''
XWINMODULES_CFLAGS=''
XWINMODULES_LIBS=''
XWIN_CLIPBOARD_FALSE=''
XWIN_CLIPBOARD_TRUE='#'
XWIN_FALSE=''
XWIN_GLX_WINDOWS_FALSE=''
XWIN_GLX_WINDOWS_TRUE='#'
XWIN_LIBS=''
XWIN_MULTIWINDOWEXTWM_FALSE=''
XWIN_MULTIWINDOWEXTWM_TRUE='#'
XWIN_MULTIWINDOW_FALSE=''
XWIN_MULTIWINDOW_TRUE='#'
XWIN_NATIVEGDI_FALSE=''
XWIN_NATIVEGDI_TRUE='#'
XWIN_PRIMARYFB_FALSE=''
XWIN_PRIMARYFB_TRUE='#'
XWIN_RANDR_FALSE=''
XWIN_RANDR_TRUE='#'
XWIN_SERVER_NAME=''
XWIN_SYS_LIBS=''
XWIN_TRUE='#'
XWIN_XV_FALSE=''
XWIN_XV_TRUE='#'
YACC='bison -y'
YFLAGS=''
__XCONFIGDIR__='xorg.conf.d'
__XCONFIGFILE__='xorg.conf'
abi_ansic='0.4'
abi_extension='5.0'
abi_videodrv='10.0'
abi_xinput='12.2'
ac_ct_AR=''
ac_ct_CC=''
ac_ct_DUMPBIN=''
am__EXEEXT_FALSE=''
am__EXEEXT_TRUE='#'
am__fastdepCCAS_FALSE='#'
am__fastdepCCAS_TRUE=''
am__fastdepCC_FALSE='#'
am__fastdepCC_TRUE=''
am__fastdepOBJC_FALSE=''
am__fastdepOBJC_TRUE='#'
am__include='include'
am__isrc=''
am__leading_dot='.'
am__quote=''
am__tar='${AMTAR} chof - "$$tardir"'
am__untar='${AMTAR} xf -'
bindir='/usr/bin'
build='x86_64-pc-linux-gnu'
build_alias='x86_64-linux'
build_cpu='x86_64'
build_os='linux-gnu'
build_vendor='pc'
datadir='/usr/share'
datarootdir='${prefix}/share'
docdir='${datarootdir}/doc/${PACKAGE_TARNAME}'
driverdir='/usr/lib/xorg/modules/drivers'
dvidir='${docdir}'
exec_prefix='/usr'
extdir='/usr/include/X11/extensions'
host='powerpc-poky-linux-gnu'
host_alias='powerpc-poky-linux'
host_cpu='powerpc'
host_os='linux-gnu'
host_vendor='poky'
htmldir='${docdir}'
includedir='/usr/include'
infodir='/usr/share/info'
install_sh='${SHELL} /home/kyu3/sdb/test/tmp/work/ppc603e-poky-linux/xserver-xf86-lite-1.10.1-r0/xorg-server-1.10.1/install-sh'
libdir='/usr/lib'
libexecdir='/usr/libexec'
localedir='${datarootdir}/locale'
localstatedir='/var'
logdir='/var/log'
mandir='/usr/share/man'
mkdir_p='/bin/mkdir -p'
moduledir='/usr/lib/xorg/modules'
oldincludedir='/usr/include'
pdfdir='${docdir}'
prefix='/usr'
program_transform_name='s,x,x,'
psdir='${docdir}'
sbindir='/usr/sbin'
sdkdir='/usr/include/xorg'
sharedstatedir='/com'
symbol_visibility='-fvisibility=hidden'
sysconfdir='/etc/X11'
sysconfigdir='/usr/share/X11/xorg.conf.d'
target_alias='powerpc-poky-linux'

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

/* confdefs.h */
#define PACKAGE_NAME "xorg-server"
#define PACKAGE_TARNAME "xorg-server"
#define PACKAGE_VERSION "1.10.1"
#define PACKAGE_STRING "xorg-server 1.10.1"
#define PACKAGE_BUGREPORT "https://bugs.freedesktop.org/enter_bug.cgi?product=xorg"
#define PACKAGE_URL ""
#define PACKAGE "xorg-server"
#define VERSION "1.10.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 PACKAGE_VERSION_MAJOR 1
#define PACKAGE_VERSION_MINOR 10
#define PACKAGE_VERSION_PATCHLEVEL 1
#define HAVE_DLFCN_H 1
#define LT_OBJDIR ".libs/"
#define YYTEXT_POINTER 1
#define _FILE_OFFSET_BITS 64
#define HAVE_DIRENT_H 1
#define STDC_HEADERS 1
#define HAVE_FCNTL_H 1
#define HAVE_STDLIB_H 1
#define HAVE_STRING_H 1
#define HAVE_UNISTD_H 1
#define HAVE_DLFCN_H 1
#define HAVE_STROPTS_H 1
#define HAVE_FNMATCH_H 1
#define HAVE_SYS_UTSNAME_H 1
#define SIZEOF_UNSIGNED_LONG 4
#define HAVE_BYTESWAP_H 1
#define HAVE_VPRINTF 1
#define HAVE_GETEUID 1
#define HAVE_GETUID 1
#define HAVE_LINK 1
#define HAVE_MEMMOVE 1
#define HAVE_MEMSET 1
#define HAVE_MKSTEMP 1
#define HAVE_STRCHR 1
#define HAVE_STRRCHR 1
#define HAVE_STRTOL 1
#define HAVE_GETOPT 1
#define HAVE_GETOPT_LONG 1
#define HAVE_VSNPRINTF 1
#define HAVE_BACKTRACE 1
#define HAVE_STRCASESTR 1
#define HAVE_FFS 1
#define HAVE_VASPRINTF 1
#define HAVE_ALLOCA_H 1
#define HAVE_ALLOCA 1
#define HAS_GETDTABLESIZE 1
#define HAS_GETIFADDRS 1
#define HAS_MMAP 1
#define HAVE_LIBM 1
#define HAVE_CBRT 1
#define HAVE_LINUX_AGPGART_H 1
#define HAVE_LINUX_APM_BIOS_H 1
#define HAVE_LINUX_FB_H 1
#define HAVE_SYSV_IPC 1
#define HAVE_BACKTRACE 1
#define HAVE_EXECINFO_H 1
#define LAUNCHD_ID_PREFIX "org.x"
#define TLS __thread
#define RETSIGTYPE void
#define UNIXCONN 1
#define TCPCONN 1
#define IPv6 1
#define HAVE_SOCKLEN_T 1
#define HAVE_AUTHDES_CREATE 1
#define SECURE_RPC 1
#define CONFIG_UDEV 1
#define HAVE_DBUS 1
#define USE_SIGIO_BY_DEFAULT TRUE
#define XV 1
#define XvExtension 1
#define XvMCExtension 1
#define XREGISTRY 1
#define COMPOSITE 1
#define MITSHM 1
#define HAS_SHM 1
#define SCREENSAVER 1
#define RES 1
#define XACE 1
#define DBE 1
#define DPMSExtension 1
#define RENDER 1
#define RANDR 1
#define XFIXES 1
#define DAMAGE 1
#define XINPUT 1
#define SHAPE 1
#define XKB_BASE_DIRECTORY "/usr/share/X11/xkb"
#define XKB_BIN_DIRECTORY "/usr/bin"
#define XKM_OUTPUT_DIR "/var/lib/xkb/"
#define XKB_DFLT_RULES "base"
#define XKB_DFLT_MODEL "pc105"
#define XKB_DFLT_LAYOUT "us"
#define XKB_DFLT_VARIANT ""
#define XKB_DFLT_OPTIONS ""
#define XDMCP 1
#define HASXDMAUTH 1
#define COMPILEDDEFAULTFONTPATH "/usr/share/fonts/X11/misc/,/usr/share/fonts/X11/TTF/,/usr/share/fonts/X11/OTF/,/usr/share/fonts/X11/Type1/,/usr/share/fonts/X11/100dpi/,/usr/share/fonts/X11/75dpi/"
#define PCI_TXT_IDS_PATH ""
#define SERVER_MISC_CONFIG_PATH "/usr/lib/xorg"
#define BASE_FONT_PATH "/usr/share/fonts/X11"
#define DRI_DRIVER_PATH ""
#define XVENDORNAME "The X.Org Foundation"
#define XVENDORNAMESHORT "X.Org"
#define XORG_DATE "2011-04-15"
#define XORG_MAN_VERSION "Version 1.10.1"
#define BUILDERADDR "xorg@lists.freedesktop.org"
#define OSNAME "Linux 2.6.35-25-server x86_64"
#define OSVENDOR ""
#define BUILDERSTRING ""
#define VENDOR_NAME "The X.Org Foundation"
#define VENDOR_NAME_SHORT "X.Org"
#define VENDOR_RELEASE (((1) * 10000000) + ((10) * 100000) + ((1) * 1000) + 0)
#define VENDOR_MAN_VERSION "Version 1.10.1"
#define NO_LIBCWRAPPER 1
#define XTEST 1
#define XSYNC 1
#define XCMISC 1
#define BIGREQS 1
#define HAVE_SHA1_IN_LIBGCRYPT 1
#define HAVE_PCI_SYSTEM_INIT_DEV_MEM 1
#define HAVE_PCI_DEVICE_ENABLE 1
#define HAVE_PCI_DEVICE_IS_BOOT_VGA 1
#define HAVE_PCI_DEVICE_VGAARB_INIT 1
#define XF86VIDMODE 1
#define XORG_SERVER 1
#define XORGSERVER 1
#define XFree86Server 1
#define XFree86LOADER 1
#define XORG_VERSION_CURRENT (((1) * 10000000) + ((10) * 100000) + ((1) * 1000) + 0)
#define NEED_XF86_TYPES 1
#define NEED_XF86_PROTOTYPES 1
#define __XSERVERNAME__ "Xorg"
#define __XCONFIGFILE__ "xorg.conf"
#define XF86CONFIGFILE "xorg.conf"
#define __XCONFIGDIR__ "xorg.conf.d"
#define DEFAULT_MODULE_PATH "/usr/lib/xorg/modules"
#define DEFAULT_LIBRARY_PATH "/usr/lib"
#define DEFAULT_LOGPREFIX "/var/log/Xorg."
#define __VENDORDWEBSUPPORT__ "http://wiki.x.org"
#define XSERVER_LIBPCIACCESS 1
#define WITH_VGAHW 1
#define _GNU_SOURCE 1
#define PROJECTROOT "/usr"

configure: exit 0

[-- Attachment #3: xserver-i586-config.log --]
[-- Type: text/plain, Size: 344077 bytes --]

This file contains any messages produced by compilers while
running configure, to aid debugging if configure makes a mistake.

It was created by xorg-server configure 1.10.1, which was
generated by GNU Autoconf 2.65.  Invocation command line was

  $ /home/kyu3/sdb/test/tmp/work/i586-poky-linux/xserver-xf86-lite-1.10.1-r0/xorg-server-1.10.1/configure --build=x86_64-linux --host=i586-poky-linux --target=i586-poky-linux --prefix=/usr --exec_prefix=/usr --bindir=/usr/bin --sbindir=/usr/sbin --libexecdir=/usr/libexec --datadir=/usr/share --sysconfdir=/etc --sharedstatedir=/com --localstatedir=/var --libdir=/usr/lib --includedir=/usr/include --oldincludedir=/usr/include --infodir=/usr/share/info --mandir=/usr/share/man --disable-silent-rules --with-libtool-sysroot=/home/kyu3/sdb/test/tmp/sysroots/qemux86 --with-fop=no --disable-static --disable-acfb --disable-ccfb --disable-mcfb --disable-dga --disable-xinerama --disable-xf86misc --disable-xorgcfg --disable-record --disable-dmx --disable-xnest --disable-xvfb --enable-composite --disable-dri --disable-glx --sysconfdir=/etc/X11 --localstatedir=/var --with-fontdir=/usr/share/fonts/X11 --with-xkb-output=/var/lib/xkb ac_cv_file__usr_share_sgml_X11_defs_ent=no

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

hostname = kyu3-ubuntu
uname -m = x86_64
uname -r = 2.6.35-25-server
uname -s = Linux
uname -v = #44~lucid1-Ubuntu SMP Tue Jan 25 19:34:09 UTC 2011

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

/bin/arch              = unknown
/usr/bin/arch -k       = unknown
/usr/convex/getsysinfo = unknown
/usr/bin/hostinfo      = unknown
/bin/machine           = unknown
/usr/bin/oslevel       = unknown
/bin/universe          = unknown

PATH: /home/kyu3/sdb/test/tmp/sysroots/x86_64-linux/usr/bin/i586-poky-linux
PATH: /home/kyu3/sdb/test/tmp/sysroots/qemux86/usr/bin/crossscripts
PATH: /home/kyu3/sdb/test/tmp/sysroots/x86_64-linux/usr/sbin
PATH: /home/kyu3/sdb/test/tmp/sysroots/x86_64-linux/usr/bin
PATH: /home/kyu3/sdb/test/tmp/sysroots/x86_64-linux/sbin
PATH: /home/kyu3/sdb/test/tmp/sysroots/x86_64-linux//bin
PATH: /home/kyu3/src/poky/scripts
PATH: /home/kyu3/src/poky/bitbake/bin/
PATH: /usr/local/sbin
PATH: /usr/local/bin
PATH: /usr/sbin
PATH: /usr/bin
PATH: /sbin
PATH: /bin
PATH: /usr/games
PATH: /home/kyu3/bin
PATH: /home/kyu3/src/poky/scripts


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

configure:3349: loading site script /home/kyu3/src/poky/meta/site/endian-little
| ac_cv_c_littleendian=${ac_cv_c_littleendian=yes}
| ac_cv_c_bigendian=${ac_cv_c_bigendian=no}
| 
| # libnet
| ac_cv_libnet_endianess=${ac_cv_libnet_endianess=lil}
| 
configure:3349: loading site script /home/kyu3/src/poky/meta/site/common-glibc
| # general
| ac_cv_have_decl_sys_siglist=${ac_cv_have_decl_sys_siglist=yes}
| ac_cv_func_malloc_0_nonnull=${ac_cv_func_malloc_0_nonnull=yes}
| ac_cv_func_memcmp_working=${ac_cv_func_memcmp_working=yes}
| ac_cv_type_uid_t={ac_cv_type_uid_t=yes}
| 
| # bash
| bash_cv_under_sys_siglist=${bash_cv_under_sys_siglist=yes}
| bash_cv_sys_siglist=${bash_cv_sys_siglist=yes}
| 
| # clamav
| clamav_av_func_working_snprintf_long=${clamav_av_func_working_snprintf_long=yes}
| clamav_av_have_in_port_t=${clamav_av_have_in_port_t=yes}
| clamav_av_have_in_addr_t=${clamav_av_have_in_addr_t=yes}
| ac_cv_func_mmap_fixed_mapped=${ac_cv_func_mmap_fixed_mapped=yes}
| 
| # glib
| glib_cv_strlcpy=${glib_cv_strlcpy=no}
| ac_cv_func_printf_unix98=${ac_cv_func_printf_unix98=yes}
| ac_cv_func_snprintf_c99=${ac_cv_func_snprintf_c99=yes}
| ac_cv_func_vsnprintf_c99=${ac_cv_func_vsnprintf_c99=yes}
| glib_cv_compliant_posix_memalign=${glib_cv_compliant_posix_memalign=1}
| glib_cv_long_long_format=${glib_cv_long_long_format=ll}
| 
| #dbus-glib
| ac_cv_have_abstract_sockets=${ac_cv_have_abstract_sockets=yes}
| 
| # gnucash
| am_cv_scanf_lld=${am_cv_scanf_lld=yes}
| 
| # mono
| mono_cv_uscore=${mono_cv_uscore=no}
| 
| # guile
| ac_cv_func_pthread_attr_getstack=${ac_cv_func_pthread_attr_getstack=yes}
| 
| #gcc-zlib
| ac_cv_func_getpagesize=${ac_cv_func_getpagesize=yes}
| ac_cv_func_memcpy=${ac_cv_func_memcpy=yes}
| ac_cv_func_strerror=${ac_cv_func_strerror=yes}
| 
| # squid
| ac_cv_af_unix_large_dgram=${ac_cv_af_unix_large_dgram=yes}
| ac_cv_func_setresuid=${ac_cv_func_setresuid=yes}
| ac_cv_func_va_copy=${ac_cv_func_va_copy=yes}
| ac_cv_func___va_copy=${ac_cv_func___va_copy=yes}
| ac_cv_epoll_works=${ac_cv_epoll_works=yes}
| 
| ac_cv_check_sjlj=ssjlj
| 
| # m4
| gt_cv_locale_fr=${gt_cv_locale_fr=fr_FR}
| gl_cv_func_btowc_eof=${gl_cv_func_btowc_eof=yes}
| gl_cv_func_wcrtomb_retval=${gl_cv_func_wcrtomb_retval=yes}
| gl_cv_func_wctob_works=${gl_cv_func_wctob_works=yes}
| gl_cv_func_mbrtowc_incomplete_state=${gl_cv_func_mbrtowc_incomplete_state=yes}
| gl_cv_func_mbrtowc_sanitycheck=${gl_cv_func_mbrtowc_sanitycheck=yes}
| gl_cv_func_mbrtowc_null_arg=${gl_cv_func_mbrtowc_null_arg=yes}
| gl_cv_func_mbrtowc_retval=${gl_cv_func_mbrtowc_retval=yes}
| gl_cv_func_mbrtowc_nul_retval=${gl_cv_func_mbrtowc_nul_retval=yes}
| 
configure:3349: loading site script /home/kyu3/src/poky/meta/site/ix86-common
| ac_cv_sizeof_char=${ac_cv_sizeof_char=1}
| ac_cv_sizeof_unsigned_char=${ac_cv_sizeof_unsigned_int=1}
| ac_cv_sizeof_char_p=${ac_cv_sizeof_char_p=4}
| ac_cv_sizeof_unsigned_char_p=${ac_cv_sizeof_unsigned_char_p=4}
| ac_cv_sizeof_int=${ac_cv_sizeof_int=4}
| ac_cv_sizeof_unsigned_int=${ac_cv_sizeof_unsigned_int=4}
| ac_cv_sizeof_int_p=${ac_cv_sizeof_int_p=4}
| ac_cv_sizeof_long=${ac_cv_sizeof_long=4}
| ac_cv_sizeof_unsigned_long=${ac_cv_sizeof_unsigned_long=4}
| ac_cv_sizeof_long_long=${ac_cv_sizeof_long_long=8}
| ac_cv_sizeof_unsigned_long_long=${ac_cv_sizeof_unsigned_long_long=8}
| ac_cv_sizeof_short=${ac_cv_sizeof_short=2}
| ac_cv_sizeof_unsigned_short=${ac_cv_sizeof_unsigned_short=2}
| ac_cv_sizeof_size_t=${ac_cv_sizeof_size_t=4}
| ac_cv_sizeof_ssize_t=${ac_cv_sizeof_ssize_t=4}
| ac_cv_sizeof_void_p=${ac_cv_sizeof_void_p=4}
| ac_cv_sizeof_long_p=${ac_cv_sizeof_long_p=4}
| ac_cv_sizeof_float=${ac_cv_sizeof_float=4}
| ac_cv_sizeof_off_t=${ac_cv_sizeof_off_t=4}
| ac_cv_sizeof_uid_t=${ac_cv_sizeof_uid_t=4}
| ac_cv_sizeof_gid_t=${ac_cv_sizeof_gid_t=4}
| ac_cv_sizeof_ino_t=${ac_cv_sizeof_ino_t=4}
| ac_cv_sizeof_dev_t=${ac_cv_sizeof_dev_t=8}
| ac_cv_func_getpgrp_void=${ac_cv_func_getpgrp_void=yes}
| ac_cv_func_getpwuid_r=${ac_cv_func_getpwuid_r=yes}
| ac_cv_func_lstat_dereferences_slashed_symlink=${ac_cv_func_lstat_dereferences_slashed_symlink=yes}
| ac_cv_func_lstat_empty_string_bug=${ac_cv_func_lstat_empty_string_bug=no}
| ac_cv_func_malloc_0_nonnull=${ac_cv_func_malloc_0_nonnull=yes}
| ac_cv_func_malloc_works=${ac_cv_func_malloc_works=yes}
| ac_cv_func_pthread_key_delete=${ac_cv_func_pthread_key_delete=yes}
| ac_cv_func_setpgrp_void=${ac_cv_func_setpgrp_void=yes}
| ac_cv_func_setvbuf_reversed=${ac_cv_func_setvbuf_reversed=no}
| ac_cv_func_stat_empty_string_bug=${ac_cv_func_stat_empty_string_bug=no}
| ac_cv_func_posix_getpwuid_r=${ac_cv_func_posix_getpwuid_r=yes}
| ac_cv_func_stat_ignores_trailing_slash=${ac_cv_func_stat_ignores_trailing_slash=no}
| 
| ac_cv_header_netinet_sctp_h=${ac_cv_header_netinet_sctp_h=no}
| ac_cv_header_netinet_sctp_uio_h=${ac_cv_header_netinet_sctp_uio_h=no}
| ac_cv_linux_vers=${ac_cv_linux_vers=2}
| ac_cv_sctp=${ac_cv_sctp=no}
| 
| apr_cv_process_shared_works=${apr_cv_process_shared_works=no}
| apr_cv_tcp_nodelay_with_cork=${apr_cv_tcp_nodelay_with_cork=yes}
| 
| ac_cv_path_ESD_CONFIG=no
| lf_cv_sane_realloc=yes
| jm_cv_func_gettimeofday_clobber=no
| samba_cv_HAVE_GETTIMEOFDAY_TZ=yes
| bf_lsbf=1
| ac_cv_sys_restartable_syscalls=yes
| ac_cv_uchar=${ac_cv_uchar=no}
| ac_cv_uint=${ac_cv_uint=yes}
| ac_cv_ulong=${ac_cv_ulong=yes}
| ac_cv_ushort=${ac_cv_ushort=yes}
| 
| # audacity
| ac_cv_file_lib_src_libmad_frame_h=${ac_cv_file_lib_src_libmad_frame_h=no}
| 
| # bash
| ac_cv_c_long_double=${ac_cv_c_long_double=yes}
| bash_cv_have_mbstate_t=${bash_cv_have_mbstate_t=yes}
| bash_cv_func_sigsetjmp=${bash_cv_func_sigsetjmp=missing}
| bash_cv_must_reinstall_sighandlers=${bash_cv_must_reinstall_sighandlers=no}
| bash_cv_func_strcoll_broken=${bash_cv_func_strcoll_broken=no}
| bash_cv_dup2_broken=${bash_cv_dup2_broken=no}
| bash_cv_opendir_not_robust=${bash_cv_opendir_not_robust=no}
| bash_cv_type_rlimit=${bash_cv_type_rlimit=rlim_t}
| bash_cv_getenv_redef=${bash_cv_getenv_redef=yes}
| bash_cv_ulimit_maxfds=${bash_cv_ulimit_maxfds=yes}
| bash_cv_getcwd_calls_popen=${bash_cv_getcwd_calls_popen=no}
| bash_cv_printf_a_format=${bash_cv_printf_a_format=yes}
| bash_cv_pgrp_pipe=${bash_cv_pgrp_pipe=no}
| bash_cv_job_control_missing=${bash_cv_job_control_missing=present}
| bash_cv_sys_named_pipes=${bash_cv_sys_named_pipes=present}
| bash_cv_unusable_rtsigs=${bash_cv_unusable_rtsigs=no}
| 
| # clamav
| clamav_av_func_working_snprintf_long=${clamav_av_func_working_snprintf_long=yes}
| clamav_av_have_in_port_t=${clamav_av_have_in_port_t=yes}
| clamav_av_have_in_addr_t=${clamav_av_have_in_addr_t=yes}
| ac_cv_func_mmap_fixed_mapped=${ac_cv_func_mmap_fixed_mapped=yes}
| 
| # cvs
| cvs_cv_func_printf_ptr=${cvs_cv_func_printf_ptr=yes}
| 
| # db
| db_cv_alignp_t=${db_cv_alignp_t='unsigned long'}
| db_cv_align_t=${db_cv_align_t='unsigned long long'}
| db_cv_fcntl_f_setfd=${db_cv_fcntl_f_setfd=yes}
| db_cv_mutex=${db_cv_mutex=x86/gcc-assembly}
| db_cv_path_ar=${db_cv_path_ar=/usr/bin/ar}
| db_cv_path_chmod=${db_cv_path_chmod=/bin/chmod}
| db_cv_path_cp=${db_cv_path_cp=/bin/cp}
| db_cv_path_ln=${db_cv_path_ln=/bin/ln}
| db_cv_path_mkdir=${db_cv_path_mkdir=/bin/mkdir}
| db_cv_path_ranlib=${db_cv_path_ranlib=/usr/bin/ranlib}
| db_cv_path_rm=${db_cv_path_rm=/bin/rm}
| db_cv_path_sh=${db_cv_path_sh=/bin/sh}
| db_cv_path_strip=${db_cv_path_strip=/usr/bin/strip}
| db_cv_posixmutexes=${db_cv_posixmutexes=no}
| db_cv_sprintf_count=${db_cv_sprintf_count=yes}
| db_cv_uimutexes=${db_cv_uimutexes=no}
| 
| # D-BUS
| ac_cv_func_posix_getpwnam_r=${ac_cv_func_posix_getpwnam_r=yes}
| 
| dpkg_cv_va_copy=${ac_cv_va_copy=no}
| dpkg_cv___va_copy=${ac_cv___va_copy=yes}
| 
| # enca
| yeti_cv_func_scanf_modif_size_t=yes
| 
| # ettercap
| ettercap_cv_type_socklen_t=${ettercap_cv_type_socklen_t=yes}
| 
| # gettext
| am_cv_func_working_getline=${am_cv_func_working_getline=yes}
| 
| # glib
| glib_cv_sizeof_system_thread=${glib_cv_sizeof_system_thread=4}
| glib_cv_has__inline=${glib_cv_has__inline=yes}
| glib_cv_has__inline__=${glib_cv_has__inline__=yes}
| glib_cv_hasinline=${glib_cv_hasinline=yes}
| glib_cv_sane_realloc=${glib_cv_sane_realloc=yes}
| glib_cv_sizeof_gmutex=${glib_cv_sizeof_gmutex=24}
| glib_cv_sys_pthread_cond_timedwait_posix=${glib_cv_sys_pthread_cond_timedwait_posix=yes}
| glib_cv_sys_pthread_getspecific_posix=${glib_cv_sys_pthread_getspecific_posix=yes}
| glib_cv_sys_pthread_mutex_trylock_posix=${glib_cv_sys_pthread_mutex_trylock_posix=yes}
| glib_cv_uscore=${glib_cv_uscore=no}
| glib_cv___va_copy=${glib_cv___va_copy=yes}
| glib_cv_va_copy=${glib_cv_va_copy=yes}
| glib_cv_va_val_copy=${glib_cv_va_val_copy=yes}
| glib_cv_rtldglobal_broken=${glib_cv_rtldglobal_broken=yes}
| 
| # glib-2.0
| glib_cv_stack_grows=${glib_cv_stack_grows=no}
| utils_cv_sys_open_max=${utils_cv_sys_open_max=1015}
| ac_cv_func_posix_getpwuid_r=${ac_cv_func_posix_getpwuid_r=yes}
| glib_cv_use_pid_surrogate=${glib_cv_use_pid_surrogate=yes}
| ac_cv_func_posix_getgrgid_r=${ac_cv_func_posix_getgrgid_r=yes}
| 
| # guile
| ac_cv_sys_restartable_syscalls=yes
| ac_cv_uchar=${ac_cv_uchar=no}
| ac_cv_uint=${ac_cv_uint=yes}
| ac_cv_ulong=${ac_cv_ulong=yes}
| ac_cv_ushort=${ac_cv_ushort=yes}
| 
| # intercom
| ac_cv_func_fnmatch_works=${ac_cv_func_fnmatch_works=yes}
| 
| # ipsec-tools
| ac_cv_va_copy=${ac_cv_va_copy=no}
| ac_cv___va_copy=${ac_cv___va_copy=yes}
| ac_cv_va_val_copy=${ac_cv_va_val_copy=yes}
| racoon_cv_bug_getaddrinfo=${racoon_cv_bug_getaddrinfo=no}
| 
| # jikes-native
| ac_cv_sizeof_wchar_t=4
| 
| # lftp
| ac_cv_need_trio=${ac_cv_need_trio=no}
| lftp_cv_va_copy=${lftp_cv_va_copy=no}
| lftp_cv___va_copy=${lftp_cv___va_copy=yes}
| 
| # libidl
| libIDL_cv_long_long_format=${libIDL_cv_long_long_format=ll}
| 
| # libnet 
| ac_cv_lbl_unaligned_fail=${ac_cv_lbl_unaligned_fail=no}
| ac_libnet_have_packet_socket=${ac_libnet_have_packet_socket=yes}
| 
| # libxfce4util
| with_broken_putenv=${with_broken_putenv=no}
| 
| # mono
| cv_mono_sizeof_sunpath=108
| 
| # mysql
| mysql_cv_func_atomic_sub=${mysql_cv_func_atomic_sub=yes}
| mysql_cv_func_atomic_add=${mysql_cv_func_atomic_add=yes}
| ac_cv_conv_longlong_to_float=${ac_cv_conv_longlong_to_float=yes}
| 
| # ORBit2
| ac_cv_alignof_CORBA_boolean=1
| ac_cv_alignof_CORBA_char=1
| ac_cv_alignof_CORBA_double=4
| ac_cv_alignof_CORBA_float=4
| ac_cv_alignof_CORBA_long=4
| ac_cv_alignof_CORBA_long_double=4
| ac_cv_alignof_CORBA_long_long=4
| ac_cv_alignof_CORBA_octet=1
| ac_cv_alignof_CORBA_pointer=4
| ac_cv_alignof_CORBA_short=2
| ac_cv_alignof_CORBA_struct=4
| ac_cv_alignof_CORBA_wchar=2
| ac_cv_func_getaddrinfo=${ac_cv_func_getaddrinfo=yes}
| 
| # p3scan
| ac_cv_func_realloc_0_nonnull=${ac_cv_func_realloc_0_nonnull=yes}
| 
| # php
| ac_cv_pread=${ac_cv_pread=no}
| ac_cv_pwrite=${ac_cv_pwrite=no}
| php_cv_lib_cookie_io_functions_use_off64_t=${php_cv_lib_cookie_io_functions_use_off64_t=yes}
| 
| # rp-pppoe
| rpppoe_cv_pack_bitfields=${rpppoe_cv_pack_bitfields=rev}
| 
| # rsync
| rsync_cv_HAVE_BROKEN_LARGEFILE=${rsync_cv_HAVE_BROKEN_LARGEFILE=no}
| rsync_cv_HAVE_SOCKETPAIR=${rsync_cv_HAVE_SOCKETPAIR=yes}
| rsync_cv_HAVE_LONGLONG=${rsync_cv_HAVE_LONGLONG=yes}
| rsync_cv_HAVE_OFF64_T=${rsync_cv_HAVE_OFF64_T=no}
| rsync_cv_HAVE_SHORT_INO_T=${rsync_cv_HAVE_SHORT_INO_T=no}
| rsync_cv_HAVE_UNSIGNED_CHAR=${rsync_cv_HAVE_UNSIGNED_CHAR=no}
| rsync_cv_HAVE_BROKEN_READDIR=${rsync_cv_HAVE_BROKEN_READDIR=no}
| rsync_cv_HAVE_GETTIMEOFDAY_TZ=${rsync_cv_HAVE_GETTIMEOFDAY_TZ=yes}
| rsync_cv_HAVE_C99_VSNPRINTF=${rsync_cv_HAVE_C99_VSNPRINTF=yes}
| rsync_cv_HAVE_SECURE_MKSTEMP=${rsync_cv_HAVE_SECURE_MKSTEMP=yes}
| rsync_cv_REPLACE_INET_NTOA=${rsync_cv_REPLACE_INET_NTOA=no}
| rsync_cv_REPLACE_INET_ATON=${rsync_cv_REPLACE_INET_ATON=no}
| 
| # samba
| samba_cv_HAVE_GETTIMEOFDAY_TZ=${samba_cv_HAVE_GETTIMEOFDAY_TZ=yes}
| 
| # screen
| screen_cv_sys_bcopy_overlap=${screen_cv_sys_bcopy_overlap=no}
| screen_cv_sys_memcpy_overlap=${screen_cv_sys_memcpy_overlap=no}
| screen_cv_sys_memmove_overlap=${screen_cv_sys_memmove_overlap=no}
| screen_cv_sys_fifo_broken_impl=${screen_cv_sys_fifo_broken_impl=yes}
| screen_cv_sys_fifo_usable=${screen_cv_sys_fifo_usable=yes}
| screen_cv_sys_select_broken_retval=${screen_cv_sys_select_broken_retval=no}
| screen_cv_sys_sockets_nofs=${screen_cv_sys_sockets_nofs=no}
| screen_cv_sys_sockets_usable=${screen_cv_sys_sockets_usable=yes}
| screen_cv_sys_terminfo_used=${screen_cv_sys_terminfo_used=yes}
| 
| # slrn
| slrn_cv___va_copy=${slrn_cv___va_copy=yes}
| slrn_cv_va_copy=${slrn_cv_va_copy=no}
| slrn_cv_va_val_copy=${slrn_cv_va_val_copy=yes}
| 
| # ssh
| ac_cv_have_space_d_name_in_struct_dirent=${ac_cv_dirent_have_space_d_name=yes}
| ac_cv_have_broken_snprintf=${ac_cv_have_broken_snprintf=no}
| ac_cv_have_accrights_in_msghdr=${ac_cv_have_accrights_in_msghdr=no}
| ac_cv_have_control_in_msghdr=${ac_cv_have_control_in_msghdr=yes}
| ac_cv_type_struct_timespec=${ac_cv_type_struct_timespec=yes}
| ac_cv_have_openpty_ctty_bug=${ac_cv_have_openpty_ctty_bug=yes}
| 
| # startup-notification
| lf_cv_sane_realloc=yes
| 
| # sudo
| sudo_cv_uid_t_len=${sudo_cv_uid_t_len=10}
| 
| # xffm
| jm_cv_func_working_readdir=yes
| 
| # xorg X11R7
| ac_cv_sys_linker_h=${ac_cv_sys_linker_h=no}
| ac_cv_file__usr_share_X11_sgml_defs_ent=${ac_cv_file__usr_share_X11_sgml_defs_ent=no}
| 
| # eds-dbus
| ac_cv_libiconv_utf8=${ac_cv_libiconv_utf8=yes}
| 
| #dbus
| ac_cv_have_abstract_sockets=${ac_cv_have_abstract_sockets=yes}
| 
| #libpciaccess
| have_mtrr_h=yes
| 
| #mozilla
| moz_cv_size_of_JS_BYTES_PER_WORD=4
| moz_cv_align_of_JS_ALIGN_OF_POINTER=4
| moz_cv_size_of_JS_BYTES_PER_DOUBLE=8
| 
| #ofono
| ac_cv_lib_c_signalfd=${ac_cv_lib_c_signalfd=yes}
| 
| #unfs-server
| nfsd_cv_broken_setfsuid=${nfsd_cv_broken_setfsuid=0}
| nfsd_cv_func_statfs=${nfsd_cv_func_statfs=statfs2_bsize}
| nfsd_cv_bsd_signals=${nfsd_cv_bsd_signals=yes}
configure:3349: loading site script /home/kyu3/src/poky/meta/site/common
| # libelf
| mr_cv_target_elf=${mr_cv_target_elf=yes}
| 
| # Normally kernels have /dev/random enabled
| ac_cv_file__dev_random=${ac_cv_file__dev_random=yes}
| 
| # Avoid sudo to assume void for unsetenv in cross environment, or else it conflicts with
| # target stdlib.h prototype which follows POSIX compiliance. Mark for upstream.
| sudo_cv_func_unsetenv_void=no
| 
| # shadow dir info, to avoid searching build system
| shadow_cv_maildir=${localstatedir}/spool/mail
| shadow_cv_mailfile=Mailbox
| shadow_cv_utmpdir=${localstatedir}/run
| shadow_cv_logdir=${localstatedir}/log
| shadow_cv_passwd_dir=${bindir}
| 
configure:3349: loading site script /home/kyu3/sdb/test/tmp/sysroots/qemux86/usr/share/i586-poky-linux_config_site.d/zlib_config
| ac_cv_header_inttypes_h=${ac_cv_header_inttypes_h=yes}
| ac_cv_header_memory_h=${ac_cv_header_memory_h=yes}
| ac_cv_header_stdc=${ac_cv_header_stdc=yes}
| ac_cv_header_stdint_h=${ac_cv_header_stdint_h=yes}
| ac_cv_header_stdlib_h=${ac_cv_header_stdlib_h=yes}
| ac_cv_header_string_h=${ac_cv_header_string_h=yes}
| ac_cv_header_strings_h=${ac_cv_header_strings_h=yes}
| ac_cv_header_sys_stat_h=${ac_cv_header_sys_stat_h=yes}
| ac_cv_header_sys_types_h=${ac_cv_header_sys_types_h=yes}
| ac_cv_header_unistd_h=${ac_cv_header_unistd_h=yes}
| ac_cv_header_zlib_h=${ac_cv_header_zlib_h=yes}
configure:3349: loading site script /home/kyu3/sdb/test/tmp/sysroots/qemux86/usr/share/i586-poky-linux_config_site.d/eglibc_config
| ac_cv_func___adjtimex=${ac_cv_func___adjtimex=yes}
| ac_cv_func___argz_count=${ac_cv_func___argz_count=yes}
| ac_cv_func___argz_next=${ac_cv_func___argz_next=yes}
| ac_cv_func___argz_stringify=${ac_cv_func___argz_stringify=yes}
| ac_cv_func___fpending=${ac_cv_func___fpending=yes}
| ac_cv_func___fsetlocking=${ac_cv_func___fsetlocking=yes}
| ac_cv_func___progname=${ac_cv_func___progname=yes}
| ac_cv_func___secure_getenv=${ac_cv_func___secure_getenv=yes}
| ac_cv_func__obstack_free=${ac_cv_func__obstack_free=yes}
| ac_cv_func__setjmp=${ac_cv_func__setjmp=yes}
| ac_cv_func__sys_siglist=${ac_cv_func__sys_siglist=yes}
| ac_cv_func_a64l=${ac_cv_func_a64l=yes}
| ac_cv_func_abs=${ac_cv_func_abs=yes}
| ac_cv_func_access=${ac_cv_func_access=yes}
| ac_cv_func_alarm=${ac_cv_func_alarm=yes}
| ac_cv_func_alphasort=${ac_cv_func_alphasort=yes}
| ac_cv_func_argz_append=${ac_cv_func_argz_append=yes}
| ac_cv_func_argz_create_sep=${ac_cv_func_argz_create_sep=yes}
| ac_cv_func_argz_insert=${ac_cv_func_argz_insert=yes}
| ac_cv_func_argz_next=${ac_cv_func_argz_next=yes}
| ac_cv_func_argz_stringify=${ac_cv_func_argz_stringify=yes}
| ac_cv_func_asprintf=${ac_cv_func_asprintf=yes}
| ac_cv_func_atexit=${ac_cv_func_atexit=yes}
| ac_cv_func_atof=${ac_cv_func_atof=yes}
| ac_cv_func_atoi=${ac_cv_func_atoi=yes}
| ac_cv_func_bcmp=${ac_cv_func_bcmp=yes}
| ac_cv_func_bcopy=${ac_cv_func_bcopy=yes}
| ac_cv_func_bind_textdomain_codeset=${ac_cv_func_bind_textdomain_codeset=yes}
| ac_cv_func_bindresvport=${ac_cv_func_bindresvport=yes}
| ac_cv_func_btowc=${ac_cv_func_btowc=yes}
| ac_cv_func_bzero=${ac_cv_func_bzero=yes}
| ac_cv_func_calloc=${ac_cv_func_calloc=yes}
| ac_cv_func_canonicalize_file_name=${ac_cv_func_canonicalize_file_name=yes}
| ac_cv_func_catgets=${ac_cv_func_catgets=yes}
| ac_cv_func_cfgetospeed=${ac_cv_func_cfgetospeed=yes}
| ac_cv_func_cfsetispeed=${ac_cv_func_cfsetispeed=yes}
| ac_cv_func_cfsetspeed=${ac_cv_func_cfsetspeed=yes}
| ac_cv_func_chmod=${ac_cv_func_chmod=yes}
| ac_cv_func_chown=${ac_cv_func_chown=yes}
| ac_cv_func_chroot=${ac_cv_func_chroot=yes}
| ac_cv_func_clock=${ac_cv_func_clock=yes}
| ac_cv_func_close=${ac_cv_func_close=yes}
| ac_cv_func_closedir=${ac_cv_func_closedir=yes}
| ac_cv_func_closelog=${ac_cv_func_closelog=yes}
| ac_cv_func_confstr=${ac_cv_func_confstr=yes}
| ac_cv_func_connect=${ac_cv_func_connect=yes}
| ac_cv_func_daemon=${ac_cv_func_daemon=yes}
| ac_cv_func_dcgettext=${ac_cv_func_dcgettext=yes}
| ac_cv_func_difftime=${ac_cv_func_difftime=yes}
| ac_cv_func_dirfd=${ac_cv_func_dirfd=yes}
| ac_cv_func_dirname=${ac_cv_func_dirname=yes}
| ac_cv_func_dngettext=${ac_cv_func_dngettext=yes}
| ac_cv_func_dup2=${ac_cv_func_dup2=yes}
| ac_cv_func_ecvt=${ac_cv_func_ecvt=yes}
| ac_cv_func_endgrent=${ac_cv_func_endgrent=yes}
| ac_cv_func_endmntent=${ac_cv_func_endmntent=yes}
| ac_cv_func_endpwent=${ac_cv_func_endpwent=yes}
| ac_cv_func_endutent=${ac_cv_func_endutent=yes}
| ac_cv_func_endutxent=${ac_cv_func_endutxent=yes}
| ac_cv_func_epoll_ctl=${ac_cv_func_epoll_ctl=yes}
| ac_cv_func_err=${ac_cv_func_err=yes}
| ac_cv_func_ether_hostton=${ac_cv_func_ether_hostton=yes}
| ac_cv_func_ether_ntohost=${ac_cv_func_ether_ntohost=yes}
| ac_cv_func_euidaccess=${ac_cv_func_euidaccess=yes}
| ac_cv_func_execv=${ac_cv_func_execv=yes}
| ac_cv_func_fchdir=${ac_cv_func_fchdir=yes}
| ac_cv_func_fchmod=${ac_cv_func_fchmod=yes}
| ac_cv_func_fchmodat=${ac_cv_func_fchmodat=yes}
| ac_cv_func_fchown=${ac_cv_func_fchown=yes}
| ac_cv_func_fchownat=${ac_cv_func_fchownat=yes}
| ac_cv_func_fcntl=${ac_cv_func_fcntl=yes}
| ac_cv_func_fcvt=${ac_cv_func_fcvt=yes}
| ac_cv_func_fdatasync=${ac_cv_func_fdatasync=yes}
| ac_cv_func_fdopendir=${ac_cv_func_fdopendir=yes}
| ac_cv_func_feof_unlocked=${ac_cv_func_feof_unlocked=yes}
| ac_cv_func_fgets_unlocked=${ac_cv_func_fgets_unlocked=yes}
| ac_cv_func_fgetxattr=${ac_cv_func_fgetxattr=yes}
| ac_cv_func_finite=${ac_cv_func_finite=yes}
| ac_cv_func_flistxattr=${ac_cv_func_flistxattr=yes}
| ac_cv_func_flock=${ac_cv_func_flock=yes}
| ac_cv_func_flockfile=${ac_cv_func_flockfile=yes}
| ac_cv_func_fnmatch=${ac_cv_func_fnmatch=yes}
| ac_cv_func_fork=${ac_cv_func_fork=yes}
| ac_cv_func_fpathconf=${ac_cv_func_fpathconf=yes}
| ac_cv_func_fprintf=${ac_cv_func_fprintf=yes}
| ac_cv_func_free=${ac_cv_func_free=yes}
| ac_cv_func_freeaddrinfo=${ac_cv_func_freeaddrinfo=yes}
| ac_cv_func_freeifaddrs=${ac_cv_func_freeifaddrs=yes}
| ac_cv_func_fseeko=${ac_cv_func_fseeko=yes}
| ac_cv_func_fsetxattr=${ac_cv_func_fsetxattr=yes}
| ac_cv_func_fstat64=${ac_cv_func_fstat64=yes}
| ac_cv_func_fstat=${ac_cv_func_fstat=yes}
| ac_cv_func_fstatfs=${ac_cv_func_fstatfs=yes}
| ac_cv_func_fsync=${ac_cv_func_fsync=yes}
| ac_cv_func_ftello=${ac_cv_func_ftello=yes}
| ac_cv_func_ftime=${ac_cv_func_ftime=yes}
| ac_cv_func_ftruncate=${ac_cv_func_ftruncate=yes}
| ac_cv_func_funlockfile=${ac_cv_func_funlockfile=yes}
| ac_cv_func_futimes=${ac_cv_func_futimes=yes}
| ac_cv_func_futimesat=${ac_cv_func_futimesat=yes}
| ac_cv_func_gai_strerror=${ac_cv_func_gai_strerror=yes}
| ac_cv_func_gcvt=${ac_cv_func_gcvt=yes}
| ac_cv_func_getaddrinfo=${ac_cv_func_getaddrinfo=yes}
| ac_cv_func_getc_unlocked=${ac_cv_func_getc_unlocked=yes}
| ac_cv_func_getcwd=${ac_cv_func_getcwd=yes}
| ac_cv_func_getdelim=${ac_cv_func_getdelim=yes}
| ac_cv_func_getdomainname=${ac_cv_func_getdomainname=yes}
| ac_cv_func_getdtablesize=${ac_cv_func_getdtablesize=yes}
| ac_cv_func_getegid=${ac_cv_func_getegid=yes}
| ac_cv_func_getenv=${ac_cv_func_getenv=yes}
| ac_cv_func_geteuid=${ac_cv_func_geteuid=yes}
| ac_cv_func_getgid=${ac_cv_func_getgid=yes}
| ac_cv_func_getgrent=${ac_cv_func_getgrent=yes}
| ac_cv_func_getgrent_r=${ac_cv_func_getgrent_r=yes}
| ac_cv_func_getgrgid_r=${ac_cv_func_getgrgid_r=yes}
| ac_cv_func_getgrnam=${ac_cv_func_getgrnam=yes}
| ac_cv_func_getgrnam_r=${ac_cv_func_getgrnam_r=yes}
| ac_cv_func_getgrouplist=${ac_cv_func_getgrouplist=yes}
| ac_cv_func_getgroups=${ac_cv_func_getgroups=yes}
| ac_cv_func_gethostbyaddr_r=${ac_cv_func_gethostbyaddr_r=yes}
| ac_cv_func_gethostbyname2=${ac_cv_func_gethostbyname2=yes}
| ac_cv_func_gethostbyname=${ac_cv_func_gethostbyname=yes}
| ac_cv_func_gethostbyname_r=${ac_cv_func_gethostbyname_r=yes}
| ac_cv_func_gethostent=${ac_cv_func_gethostent=yes}
| ac_cv_func_gethostid=${ac_cv_func_gethostid=yes}
| ac_cv_func_gethostname=${ac_cv_func_gethostname=yes}
| ac_cv_func_getifaddrs=${ac_cv_func_getifaddrs=yes}
| ac_cv_func_getline=${ac_cv_func_getline=yes}
| ac_cv_func_getloadavg=${ac_cv_func_getloadavg=yes}
| ac_cv_func_getmntent=${ac_cv_func_getmntent=yes}
| ac_cv_func_getmsg=${ac_cv_func_getmsg=yes}
| ac_cv_func_getnameinfo=${ac_cv_func_getnameinfo=yes}
| ac_cv_func_getnetbyaddr_r=${ac_cv_func_getnetbyaddr_r=yes}
| ac_cv_func_getnetgrent_r=${ac_cv_func_getnetgrent_r=yes}
| ac_cv_func_getopt=${ac_cv_func_getopt=yes}
| ac_cv_func_getopt_long=${ac_cv_func_getopt_long=yes}
| ac_cv_func_getopt_long_only=${ac_cv_func_getopt_long_only=yes}
| ac_cv_func_getpagesize=${ac_cv_func_getpagesize=yes}
| ac_cv_func_getpass=${ac_cv_func_getpass=yes}
| ac_cv_func_getpeername=${ac_cv_func_getpeername=yes}
| ac_cv_func_getpgrp=${ac_cv_func_getpgrp=yes}
| ac_cv_func_getpid=${ac_cv_func_getpid=yes}
| ac_cv_func_getppid=${ac_cv_func_getppid=yes}
| ac_cv_func_getprotoent_r=${ac_cv_func_getprotoent_r=yes}
| ac_cv_func_getpwent=${ac_cv_func_getpwent=yes}
| ac_cv_func_getpwent_r=${ac_cv_func_getpwent_r=yes}
| ac_cv_func_getpwnam=${ac_cv_func_getpwnam=yes}
| ac_cv_func_getpwnam_r=${ac_cv_func_getpwnam_r=yes}
| ac_cv_func_getpwuid=${ac_cv_func_getpwuid=yes}
| ac_cv_func_getpwuid_r=${ac_cv_func_getpwuid_r=yes}
| ac_cv_func_getresuid=${ac_cv_func_getresuid=yes}
| ac_cv_func_getrlimit=${ac_cv_func_getrlimit=yes}
| ac_cv_func_getrusage=${ac_cv_func_getrusage=yes}
| ac_cv_func_getservbyname=${ac_cv_func_getservbyname=yes}
| ac_cv_func_getservbyname_r=${ac_cv_func_getservbyname_r=yes}
| ac_cv_func_getservbyport_r=${ac_cv_func_getservbyport_r=yes}
| ac_cv_func_getservent=${ac_cv_func_getservent=yes}
| ac_cv_func_getservent_r=${ac_cv_func_getservent_r=yes}
| ac_cv_func_getspnam=${ac_cv_func_getspnam=yes}
| ac_cv_func_getspnam_r=${ac_cv_func_getspnam_r=yes}
| ac_cv_func_gettimeofday=${ac_cv_func_gettimeofday=yes}
| ac_cv_func_getttyent=${ac_cv_func_getttyent=yes}
| ac_cv_func_getttynam=${ac_cv_func_getttynam=yes}
| ac_cv_func_getuid=${ac_cv_func_getuid=yes}
| ac_cv_func_getusershell=${ac_cv_func_getusershell=yes}
| ac_cv_func_getutent=${ac_cv_func_getutent=yes}
| ac_cv_func_getutid=${ac_cv_func_getutid=yes}
| ac_cv_func_getutline=${ac_cv_func_getutline=yes}
| ac_cv_func_getutmp=${ac_cv_func_getutmp=yes}
| ac_cv_func_getutmpx=${ac_cv_func_getutmpx=yes}
| ac_cv_func_getutxent=${ac_cv_func_getutxent=yes}
| ac_cv_func_getutxid=${ac_cv_func_getutxid=yes}
| ac_cv_func_getutxline=${ac_cv_func_getutxline=yes}
| ac_cv_func_getwd=${ac_cv_func_getwd=yes}
| ac_cv_func_getxattr=${ac_cv_func_getxattr=yes}
| ac_cv_func_glob=${ac_cv_func_glob=yes}
| ac_cv_func_gmtime=${ac_cv_func_gmtime=yes}
| ac_cv_func_gmtime_r=${ac_cv_func_gmtime_r=yes}
| ac_cv_func_grantpt=${ac_cv_func_grantpt=yes}
| ac_cv_func_group_member=${ac_cv_func_group_member=yes}
| ac_cv_func_herror=${ac_cv_func_herror=yes}
| ac_cv_func_hstrerror=${ac_cv_func_hstrerror=yes}
| ac_cv_func_iconv=${ac_cv_func_iconv=yes}
| ac_cv_func_iconv_open=${ac_cv_func_iconv_open=yes}
| ac_cv_func_if_freenameindex=${ac_cv_func_if_freenameindex=yes}
| ac_cv_func_if_indextoname=${ac_cv_func_if_indextoname=yes}
| ac_cv_func_if_nameindex=${ac_cv_func_if_nameindex=yes}
| ac_cv_func_if_nametoindex=${ac_cv_func_if_nametoindex=yes}
| ac_cv_func_index=${ac_cv_func_index=yes}
| ac_cv_func_inet_addr=${ac_cv_func_inet_addr=yes}
| ac_cv_func_inet_aton=${ac_cv_func_inet_aton=yes}
| ac_cv_func_inet_ntoa=${ac_cv_func_inet_ntoa=yes}
| ac_cv_func_inet_ntop=${ac_cv_func_inet_ntop=yes}
| ac_cv_func_inet_pton=${ac_cv_func_inet_pton=yes}
| ac_cv_func_initgroups=${ac_cv_func_initgroups=yes}
| ac_cv_func_innetgr=${ac_cv_func_innetgr=yes}
| ac_cv_func_iruserok=${ac_cv_func_iruserok=yes}
| ac_cv_func_isascii=${ac_cv_func_isascii=yes}
| ac_cv_func_isatty=${ac_cv_func_isatty=yes}
| ac_cv_func_isblank=${ac_cv_func_isblank=yes}
| ac_cv_func_isgraph=${ac_cv_func_isgraph=yes}
| ac_cv_func_isinf=${ac_cv_func_isinf=yes}
| ac_cv_func_isnan=${ac_cv_func_isnan=yes}
| ac_cv_func_isprint=${ac_cv_func_isprint=yes}
| ac_cv_func_isspace=${ac_cv_func_isspace=yes}
| ac_cv_func_iswalnum=${ac_cv_func_iswalnum=yes}
| ac_cv_func_iswcntrl=${ac_cv_func_iswcntrl=yes}
| ac_cv_func_iswctype=${ac_cv_func_iswctype=yes}
| ac_cv_func_iswprint=${ac_cv_func_iswprint=yes}
| ac_cv_func_iswspace=${ac_cv_func_iswspace=yes}
| ac_cv_func_iswupper=${ac_cv_func_iswupper=yes}
| ac_cv_func_isxdigit=${ac_cv_func_isxdigit=yes}
| ac_cv_func_kill=${ac_cv_func_kill=yes}
| ac_cv_func_killpg=${ac_cv_func_killpg=yes}
| ac_cv_func_lchown=${ac_cv_func_lchown=yes}
| ac_cv_func_lckpwdf=${ac_cv_func_lckpwdf=yes}
| ac_cv_func_lgetxattr=${ac_cv_func_lgetxattr=yes}
| ac_cv_func_link=${ac_cv_func_link=yes}
| ac_cv_func_listxattr=${ac_cv_func_listxattr=yes}
| ac_cv_func_llistxattr=${ac_cv_func_llistxattr=yes}
| ac_cv_func_localtime=${ac_cv_func_localtime=yes}
| ac_cv_func_localtime_r=${ac_cv_func_localtime_r=yes}
| ac_cv_func_lockf=${ac_cv_func_lockf=yes}
| ac_cv_func_lrand48=${ac_cv_func_lrand48=yes}
| ac_cv_func_lsearch=${ac_cv_func_lsearch=yes}
| ac_cv_func_lseek64=${ac_cv_func_lseek64=yes}
| ac_cv_func_lsetxattr=${ac_cv_func_lsetxattr=yes}
| ac_cv_func_lstat=${ac_cv_func_lstat=yes}
| ac_cv_func_mallinfo=${ac_cv_func_mallinfo=yes}
| ac_cv_func_malloc=${ac_cv_func_malloc=yes}
| ac_cv_func_mblen=${ac_cv_func_mblen=yes}
| ac_cv_func_mbrlen=${ac_cv_func_mbrlen=yes}
| ac_cv_func_mbrtowc=${ac_cv_func_mbrtowc=yes}
| ac_cv_func_mbsinit=${ac_cv_func_mbsinit=yes}
| ac_cv_func_mbsrtowcs=${ac_cv_func_mbsrtowcs=yes}
| ac_cv_func_mbtowc=${ac_cv_func_mbtowc=yes}
| ac_cv_func_memalign=${ac_cv_func_memalign=yes}
| ac_cv_func_memchr=${ac_cv_func_memchr=yes}
| ac_cv_func_memcmp=${ac_cv_func_memcmp=yes}
| ac_cv_func_memcpy=${ac_cv_func_memcpy=yes}
| ac_cv_func_memmove=${ac_cv_func_memmove=yes}
| ac_cv_func_mempcpy=${ac_cv_func_mempcpy=yes}
| ac_cv_func_memrchr=${ac_cv_func_memrchr=yes}
| ac_cv_func_memset=${ac_cv_func_memset=yes}
| ac_cv_func_mkdir=${ac_cv_func_mkdir=yes}
| ac_cv_func_mkdirat=${ac_cv_func_mkdirat=yes}
| ac_cv_func_mkdtemp=${ac_cv_func_mkdtemp=yes}
| ac_cv_func_mkfifo=${ac_cv_func_mkfifo=yes}
| ac_cv_func_mknod=${ac_cv_func_mknod=yes}
| ac_cv_func_mkstemp64=${ac_cv_func_mkstemp64=yes}
| ac_cv_func_mkstemp=${ac_cv_func_mkstemp=yes}
| ac_cv_func_mktime=${ac_cv_func_mktime=yes}
| ac_cv_func_mlock=${ac_cv_func_mlock=yes}
| ac_cv_func_mmap=${ac_cv_func_mmap=yes}
| ac_cv_func_mtrace=${ac_cv_func_mtrace=yes}
| ac_cv_func_munlock=${ac_cv_func_munlock=yes}
| ac_cv_func_munmap=${ac_cv_func_munmap=yes}
| ac_cv_func_nanosleep=${ac_cv_func_nanosleep=yes}
| ac_cv_func_nice=${ac_cv_func_nice=yes}
| ac_cv_func_nl_langinfo=${ac_cv_func_nl_langinfo=yes}
| ac_cv_func_ntp_adjtime=${ac_cv_func_ntp_adjtime=yes}
| ac_cv_func_ntp_gettime=${ac_cv_func_ntp_gettime=yes}
| ac_cv_func_on_exit=${ac_cv_func_on_exit=yes}
| ac_cv_func_open64=${ac_cv_func_open64=yes}
| ac_cv_func_open=${ac_cv_func_open=yes}
| ac_cv_func_openat=${ac_cv_func_openat=yes}
| ac_cv_func_opendir=${ac_cv_func_opendir=yes}
| ac_cv_func_openlog=${ac_cv_func_openlog=yes}
| ac_cv_func_pathconf=${ac_cv_func_pathconf=yes}
| ac_cv_func_pipe=${ac_cv_func_pipe=yes}
| ac_cv_func_poll=${ac_cv_func_poll=yes}
| ac_cv_func_popen=${ac_cv_func_popen=yes}
| ac_cv_func_posix_memalign=${ac_cv_func_posix_memalign=yes}
| ac_cv_func_prctl=${ac_cv_func_prctl=yes}
| ac_cv_func_pread=${ac_cv_func_pread=yes}
| ac_cv_func_printf=${ac_cv_func_printf=yes}
| ac_cv_func_pselect=${ac_cv_func_pselect=yes}
| ac_cv_func_pthread_mutex_lock=${ac_cv_func_pthread_mutex_lock=yes}
| ac_cv_func_ptsname=${ac_cv_func_ptsname=yes}
| ac_cv_func_putenv=${ac_cv_func_putenv=yes}
| ac_cv_func_putgrent=${ac_cv_func_putgrent=yes}
| ac_cv_func_putpwent=${ac_cv_func_putpwent=yes}
| ac_cv_func_putspent=${ac_cv_func_putspent=yes}
| ac_cv_func_pututline=${ac_cv_func_pututline=yes}
| ac_cv_func_pututxline=${ac_cv_func_pututxline=yes}
| ac_cv_func_putwc=${ac_cv_func_putwc=yes}
| ac_cv_func_pwrite=${ac_cv_func_pwrite=yes}
| ac_cv_func_qsort=${ac_cv_func_qsort=yes}
| ac_cv_func_raise=${ac_cv_func_raise=yes}
| ac_cv_func_rand=${ac_cv_func_rand=yes}
| ac_cv_func_rand_r=${ac_cv_func_rand_r=yes}
| ac_cv_func_random=${ac_cv_func_random=yes}
| ac_cv_func_re_comp=${ac_cv_func_re_comp=yes}
| ac_cv_func_re_exec=${ac_cv_func_re_exec=yes}
| ac_cv_func_re_search=${ac_cv_func_re_search=yes}
| ac_cv_func_read=${ac_cv_func_read=yes}
| ac_cv_func_readdir=${ac_cv_func_readdir=yes}
| ac_cv_func_readdir_r=${ac_cv_func_readdir_r=yes}
| ac_cv_func_readlink=${ac_cv_func_readlink=yes}
| ac_cv_func_realloc=${ac_cv_func_realloc=yes}
| ac_cv_func_realpath=${ac_cv_func_realpath=yes}
| ac_cv_func_recvmsg=${ac_cv_func_recvmsg=yes}
| ac_cv_func_regcomp=${ac_cv_func_regcomp=yes}
| ac_cv_func_regexec=${ac_cv_func_regexec=yes}
| ac_cv_func_remove=${ac_cv_func_remove=yes}
| ac_cv_func_rename=${ac_cv_func_rename=yes}
| ac_cv_func_rmdir=${ac_cv_func_rmdir=yes}
| ac_cv_func_rpmatch=${ac_cv_func_rpmatch=yes}
| ac_cv_func_rresvport_af=${ac_cv_func_rresvport_af=yes}
| ac_cv_func_ruserok=${ac_cv_func_ruserok=yes}
| ac_cv_func_ruserok_af=${ac_cv_func_ruserok_af=yes}
| ac_cv_func_sbrk=${ac_cv_func_sbrk=yes}
| ac_cv_func_scandir=${ac_cv_func_scandir=yes}
| ac_cv_func_sched_setscheduler=${ac_cv_func_sched_setscheduler=yes}
| ac_cv_func_sched_yield=${ac_cv_func_sched_yield=yes}
| ac_cv_func_select=${ac_cv_func_select=yes}
| ac_cv_func_semctl=${ac_cv_func_semctl=yes}
| ac_cv_func_semget=${ac_cv_func_semget=yes}
| ac_cv_func_sendmsg=${ac_cv_func_sendmsg=yes}
| ac_cv_func_setbuf=${ac_cv_func_setbuf=yes}
| ac_cv_func_setbuffer=${ac_cv_func_setbuffer=yes}
| ac_cv_func_setegid=${ac_cv_func_setegid=yes}
| ac_cv_func_setenv=${ac_cv_func_setenv=yes}
| ac_cv_func_seteuid=${ac_cv_func_seteuid=yes}
| ac_cv_func_setgid=${ac_cv_func_setgid=yes}
| ac_cv_func_setgroups=${ac_cv_func_setgroups=yes}
| ac_cv_func_sethostname=${ac_cv_func_sethostname=yes}
| ac_cv_func_setitimer=${ac_cv_func_setitimer=yes}
| ac_cv_func_setjmp=${ac_cv_func_setjmp=yes}
| ac_cv_func_setlinebuf=${ac_cv_func_setlinebuf=yes}
| ac_cv_func_setlocale=${ac_cv_func_setlocale=yes}
| ac_cv_func_setmntent=${ac_cv_func_setmntent=yes}
| ac_cv_func_setpgid=${ac_cv_func_setpgid=yes}
| ac_cv_func_setpgrp=${ac_cv_func_setpgrp=yes}
| ac_cv_func_setpriority=${ac_cv_func_setpriority=yes}
| ac_cv_func_setregid=${ac_cv_func_setregid=yes}
| ac_cv_func_setresgid=${ac_cv_func_setresgid=yes}
| ac_cv_func_setresuid=${ac_cv_func_setresuid=yes}
| ac_cv_func_setreuid=${ac_cv_func_setreuid=yes}
| ac_cv_func_setrlimit=${ac_cv_func_setrlimit=yes}
| ac_cv_func_setsid=${ac_cv_func_setsid=yes}
| ac_cv_func_setsockopt=${ac_cv_func_setsockopt=yes}
| ac_cv_func_settimeofday=${ac_cv_func_settimeofday=yes}
| ac_cv_func_setuid=${ac_cv_func_setuid=yes}
| ac_cv_func_setutent=${ac_cv_func_setutent=yes}
| ac_cv_func_setutxent=${ac_cv_func_setutxent=yes}
| ac_cv_func_setvbuf=${ac_cv_func_setvbuf=yes}
| ac_cv_func_setxattr=${ac_cv_func_setxattr=yes}
| ac_cv_func_sgetspent=${ac_cv_func_sgetspent=yes}
| ac_cv_func_shmat=${ac_cv_func_shmat=yes}
| ac_cv_func_shmctl=${ac_cv_func_shmctl=yes}
| ac_cv_func_shmdt=${ac_cv_func_shmdt=yes}
| ac_cv_func_shmget=${ac_cv_func_shmget=yes}
| ac_cv_func_shutdown=${ac_cv_func_shutdown=yes}
| ac_cv_func_sigaction=${ac_cv_func_sigaction=yes}
| ac_cv_func_sigaddset=${ac_cv_func_sigaddset=yes}
| ac_cv_func_sigaltstack=${ac_cv_func_sigaltstack=yes}
| ac_cv_func_sigblock=${ac_cv_func_sigblock=yes}
| ac_cv_func_sigemptyset=${ac_cv_func_sigemptyset=yes}
| ac_cv_func_sighold=${ac_cv_func_sighold=yes}
| ac_cv_func_siginterrupt=${ac_cv_func_siginterrupt=yes}
| ac_cv_func_signal=${ac_cv_func_signal=yes}
| ac_cv_func_sigprocmask=${ac_cv_func_sigprocmask=yes}
| ac_cv_func_sigset=${ac_cv_func_sigset=yes}
| ac_cv_func_sigsetmask=${ac_cv_func_sigsetmask=yes}
| ac_cv_func_sigstack=${ac_cv_func_sigstack=yes}
| ac_cv_func_sigsuspend=${ac_cv_func_sigsuspend=yes}
| ac_cv_func_sigvec=${ac_cv_func_sigvec=yes}
| ac_cv_func_snprintf=${ac_cv_func_snprintf=yes}
| ac_cv_func_socket=${ac_cv_func_socket=yes}
| ac_cv_func_socketpair=${ac_cv_func_socketpair=yes}
| ac_cv_func_sprintf=${ac_cv_func_sprintf=yes}
| ac_cv_func_srand48=${ac_cv_func_srand48=yes}
| ac_cv_func_srand=${ac_cv_func_srand=yes}
| ac_cv_func_srandom=${ac_cv_func_srandom=yes}
| ac_cv_func_sscanf=${ac_cv_func_sscanf=yes}
| ac_cv_func_stat=${ac_cv_func_stat=yes}
| ac_cv_func_statfs=${ac_cv_func_statfs=yes}
| ac_cv_func_statvfs=${ac_cv_func_statvfs=yes}
| ac_cv_func_stime=${ac_cv_func_stime=yes}
| ac_cv_func_stpcpy=${ac_cv_func_stpcpy=yes}
| ac_cv_func_strcasecmp=${ac_cv_func_strcasecmp=yes}
| ac_cv_func_strcasestr=${ac_cv_func_strcasestr=yes}
| ac_cv_func_strchr=${ac_cv_func_strchr=yes}
| ac_cv_func_strchrnul=${ac_cv_func_strchrnul=yes}
| ac_cv_func_strcmp=${ac_cv_func_strcmp=yes}
| ac_cv_func_strcspn=${ac_cv_func_strcspn=yes}
| ac_cv_func_strdup=${ac_cv_func_strdup=yes}
| ac_cv_func_strerror=${ac_cv_func_strerror=yes}
| ac_cv_func_strerror_r=${ac_cv_func_strerror_r=yes}
| ac_cv_func_strftime=${ac_cv_func_strftime=yes}
| ac_cv_func_strlen=${ac_cv_func_strlen=yes}
| ac_cv_func_strncasecmp=${ac_cv_func_strncasecmp=yes}
| ac_cv_func_strncmp=${ac_cv_func_strncmp=yes}
| ac_cv_func_strndup=${ac_cv_func_strndup=yes}
| ac_cv_func_strnlen=${ac_cv_func_strnlen=yes}
| ac_cv_func_strpbrk=${ac_cv_func_strpbrk=yes}
| ac_cv_func_strptime=${ac_cv_func_strptime=yes}
| ac_cv_func_strrchr=${ac_cv_func_strrchr=yes}
| ac_cv_func_strsep=${ac_cv_func_strsep=yes}
| ac_cv_func_strsignal=${ac_cv_func_strsignal=yes}
| ac_cv_func_strspn=${ac_cv_func_strspn=yes}
| ac_cv_func_strstr=${ac_cv_func_strstr=yes}
| ac_cv_func_strtod=${ac_cv_func_strtod=yes}
| ac_cv_func_strtoimax=${ac_cv_func_strtoimax=yes}
| ac_cv_func_strtok_r=${ac_cv_func_strtok_r=yes}
| ac_cv_func_strtol=${ac_cv_func_strtol=yes}
| ac_cv_func_strtoll=${ac_cv_func_strtoll=yes}
| ac_cv_func_strtoul=${ac_cv_func_strtoul=yes}
| ac_cv_func_strtoull=${ac_cv_func_strtoull=yes}
| ac_cv_func_strtoumax=${ac_cv_func_strtoumax=yes}
| ac_cv_func_strverscmp=${ac_cv_func_strverscmp=yes}
| ac_cv_func_strxfrm=${ac_cv_func_strxfrm=yes}
| ac_cv_func_symlink=${ac_cv_func_symlink=yes}
| ac_cv_func_sync=${ac_cv_func_sync=yes}
| ac_cv_func_sys_siglist=${ac_cv_func_sys_siglist=yes}
| ac_cv_func_sysconf=${ac_cv_func_sysconf=yes}
| ac_cv_func_sysctl=${ac_cv_func_sysctl=yes}
| ac_cv_func_sysinfo=${ac_cv_func_sysinfo=yes}
| ac_cv_func_syslog=${ac_cv_func_syslog=yes}
| ac_cv_func_system=${ac_cv_func_system=yes}
| ac_cv_func_tcgetattr=${ac_cv_func_tcgetattr=yes}
| ac_cv_func_tcgetpgrp=${ac_cv_func_tcgetpgrp=yes}
| ac_cv_func_tcsetattr=${ac_cv_func_tcsetattr=yes}
| ac_cv_func_tcsetpgrp=${ac_cv_func_tcsetpgrp=yes}
| ac_cv_func_time=${ac_cv_func_time=yes}
| ac_cv_func_timegm=${ac_cv_func_timegm=yes}
| ac_cv_func_times=${ac_cv_func_times=yes}
| ac_cv_func_timezone=${ac_cv_func_timezone=yes}
| ac_cv_func_tmpnam=${ac_cv_func_tmpnam=yes}
| ac_cv_func_towlower=${ac_cv_func_towlower=yes}
| ac_cv_func_towupper=${ac_cv_func_towupper=yes}
| ac_cv_func_truncate=${ac_cv_func_truncate=yes}
| ac_cv_func_tsearch=${ac_cv_func_tsearch=yes}
| ac_cv_func_ttyname=${ac_cv_func_ttyname=yes}
| ac_cv_func_tzset=${ac_cv_func_tzset=yes}
| ac_cv_func_ulimit=${ac_cv_func_ulimit=yes}
| ac_cv_func_umask=${ac_cv_func_umask=yes}
| ac_cv_func_uname=${ac_cv_func_uname=yes}
| ac_cv_func_unlink=${ac_cv_func_unlink=yes}
| ac_cv_func_unsetenv=${ac_cv_func_unsetenv=yes}
| ac_cv_func_unshare=${ac_cv_func_unshare=yes}
| ac_cv_func_updwtmp=${ac_cv_func_updwtmp=yes}
| ac_cv_func_updwtmpx=${ac_cv_func_updwtmpx=yes}
| ac_cv_func_usleep=${ac_cv_func_usleep=yes}
| ac_cv_func_ustat=${ac_cv_func_ustat=yes}
| ac_cv_func_utime=${ac_cv_func_utime=yes}
| ac_cv_func_utimes=${ac_cv_func_utimes=yes}
| ac_cv_func_utmpname=${ac_cv_func_utmpname=yes}
| ac_cv_func_utmpxname=${ac_cv_func_utmpxname=yes}
| ac_cv_func_valloc=${ac_cv_func_valloc=yes}
| ac_cv_func_vasprintf=${ac_cv_func_vasprintf=yes}
| ac_cv_func_verrx=${ac_cv_func_verrx=yes}
| ac_cv_func_vfork=${ac_cv_func_vfork=yes}
| ac_cv_func_vfprintf=${ac_cv_func_vfprintf=yes}
| ac_cv_func_vfscanf=${ac_cv_func_vfscanf=yes}
| ac_cv_func_vhangup=${ac_cv_func_vhangup=yes}
| ac_cv_func_vprintf=${ac_cv_func_vprintf=yes}
| ac_cv_func_vsnprintf=${ac_cv_func_vsnprintf=yes}
| ac_cv_func_vsprintf=${ac_cv_func_vsprintf=yes}
| ac_cv_func_wait3=${ac_cv_func_wait3=yes}
| ac_cv_func_wait4=${ac_cv_func_wait4=yes}
| ac_cv_func_waitpid=${ac_cv_func_waitpid=yes}
| ac_cv_func_wcrtomb=${ac_cv_func_wcrtomb=yes}
| ac_cv_func_wcscoll=${ac_cv_func_wcscoll=yes}
| ac_cv_func_wcsdup=${ac_cv_func_wcsdup=yes}
| ac_cv_func_wcslen=${ac_cv_func_wcslen=yes}
| ac_cv_func_wctob=${ac_cv_func_wctob=yes}
| ac_cv_func_wctomb=${ac_cv_func_wctomb=yes}
| ac_cv_func_wctype=${ac_cv_func_wctype=yes}
| ac_cv_func_wcwidth=${ac_cv_func_wcwidth=yes}
| ac_cv_func_wmemchr=${ac_cv_func_wmemchr=yes}
| ac_cv_func_wmemcpy=${ac_cv_func_wmemcpy=yes}
| ac_cv_func_wmempcpy=${ac_cv_func_wmempcpy=yes}
| ac_cv_header_aio_h=${ac_cv_header_aio_h=yes}
| ac_cv_header_alloca_h=${ac_cv_header_alloca_h=yes}
| ac_cv_header_argz_h=${ac_cv_header_argz_h=yes}
| ac_cv_header_arpa_inet_h=${ac_cv_header_arpa_inet_h=yes}
| ac_cv_header_arpa_nameser_h=${ac_cv_header_arpa_nameser_h=yes}
| ac_cv_header_asm_byteorder_h=${ac_cv_header_asm_byteorder_h=yes}
| ac_cv_header_asm_ioctls_h=${ac_cv_header_asm_ioctls_h=yes}
| ac_cv_header_asm_page_h=${ac_cv_header_asm_page_h=no}
| ac_cv_header_asm_types_h=${ac_cv_header_asm_types_h=yes}
| ac_cv_header_assert_h=${ac_cv_header_assert_h=yes}
| ac_cv_header_byteswap_h=${ac_cv_header_byteswap_h=yes}
| ac_cv_header_crypt_h=${ac_cv_header_crypt_h=yes}
| ac_cv_header_ctype_h=${ac_cv_header_ctype_h=yes}
| ac_cv_header_dirent_h=${ac_cv_header_dirent_h=yes}
| ac_cv_header_dlfcn_h=${ac_cv_header_dlfcn_h=yes}
| ac_cv_header_elf_h=${ac_cv_header_elf_h=yes}
| ac_cv_header_endian_h=${ac_cv_header_endian_h=yes}
| ac_cv_header_err_h=${ac_cv_header_err_h=yes}
| ac_cv_header_errno_h=${ac_cv_header_errno_h=yes}
| ac_cv_header_execinfo_h=${ac_cv_header_execinfo_h=yes}
| ac_cv_header_fcntl_h=${ac_cv_header_fcntl_h=yes}
| ac_cv_header_features_h=${ac_cv_header_features_h=yes}
| ac_cv_header_float_h=${ac_cv_header_float_h=yes}
| ac_cv_header_fstab_h=${ac_cv_header_fstab_h=yes}
| ac_cv_header_ftw_h=${ac_cv_header_ftw_h=yes}
| ac_cv_header_getopt_h=${ac_cv_header_getopt_h=yes}
| ac_cv_header_glob_h=${ac_cv_header_glob_h=yes}
| ac_cv_header_grp_h=${ac_cv_header_grp_h=yes}
| ac_cv_header_iconv_h=${ac_cv_header_iconv_h=yes}
| ac_cv_header_ifaddrs_h=${ac_cv_header_ifaddrs_h=yes}
| ac_cv_header_inttypes_h=${ac_cv_header_inttypes_h=yes}
| ac_cv_header_langinfo_h=${ac_cv_header_langinfo_h=yes}
| ac_cv_header_lastlog_h=${ac_cv_header_lastlog_h=yes}
| ac_cv_header_libgen_h=${ac_cv_header_libgen_h=yes}
| ac_cv_header_libintl_h=${ac_cv_header_libintl_h=yes}
| ac_cv_header_limits_h=${ac_cv_header_limits_h=yes}
| ac_cv_header_linux_capability_h=${ac_cv_header_linux_capability_h=yes}
| ac_cv_header_linux_fd_h=${ac_cv_header_linux_fd_h=yes}
| ac_cv_header_linux_fs_h=${ac_cv_header_linux_fs_h=yes}
| ac_cv_header_linux_hayesesp_h=${ac_cv_header_linux_hayesesp_h=no}
| ac_cv_header_linux_hdreg_h=${ac_cv_header_linux_hdreg_h=yes}
| ac_cv_header_linux_icmp_h=${ac_cv_header_linux_icmp_h=yes}
| ac_cv_header_linux_in6_h=${ac_cv_header_linux_in6_h=yes}
| ac_cv_header_linux_joystick_h=${ac_cv_header_linux_joystick_h=yes}
| ac_cv_header_linux_ptrace_h=${ac_cv_header_linux_ptrace_h=yes}
| ac_cv_header_linux_serial_h=${ac_cv_header_linux_serial_h=yes}
| ac_cv_header_linux_sonypi_h=${ac_cv_header_linux_sonypi_h=yes}
| ac_cv_header_linux_unistd_h=${ac_cv_header_linux_unistd_h=yes}
| ac_cv_header_linux_utsname_h=${ac_cv_header_linux_utsname_h=yes}
| ac_cv_header_linux_version_h=${ac_cv_header_linux_version_h=yes}
| ac_cv_header_locale_h=${ac_cv_header_locale_h=yes}
| ac_cv_header_malloc_h=${ac_cv_header_malloc_h=yes}
| ac_cv_header_math_h=${ac_cv_header_math_h=yes}
| ac_cv_header_mcheck_h=${ac_cv_header_mcheck_h=yes}
| ac_cv_header_memory_h=${ac_cv_header_memory_h=yes}
| ac_cv_header_mntent_h=${ac_cv_header_mntent_h=yes}
| ac_cv_header_mqueue_h=${ac_cv_header_mqueue_h=yes}
| ac_cv_header_net_if_h=${ac_cv_header_net_if_h=yes}
| ac_cv_header_net_route_h=${ac_cv_header_net_route_h=yes}
| ac_cv_header_netdb_h=${ac_cv_header_netdb_h=yes}
| ac_cv_header_netinet_ether_h=${ac_cv_header_netinet_ether_h=yes}
| ac_cv_header_netinet_in_h=${ac_cv_header_netinet_in_h=yes}
| ac_cv_header_netinet_ip6_h=${ac_cv_header_netinet_ip6_h=yes}
| ac_cv_header_netinet_ip_h=${ac_cv_header_netinet_ip_h=yes}
| ac_cv_header_netinet_tcp_h=${ac_cv_header_netinet_tcp_h=yes}
| ac_cv_header_netinet_udp_h=${ac_cv_header_netinet_udp_h=yes}
| ac_cv_header_netipx_ipx_h=${ac_cv_header_netipx_ipx_h=yes}
| ac_cv_header_paths_h=${ac_cv_header_paths_h=yes}
| ac_cv_header_poll_h=${ac_cv_header_poll_h=yes}
| ac_cv_header_pthread_h=${ac_cv_header_pthread_h=yes}
| ac_cv_header_pty_h=${ac_cv_header_pty_h=yes}
| ac_cv_header_pwd_h=${ac_cv_header_pwd_h=yes}
| ac_cv_header_regex_h=${ac_cv_header_regex_h=yes}
| ac_cv_header_resolv_h=${ac_cv_header_resolv_h=yes}
| ac_cv_header_rpc_rpc_h=${ac_cv_header_rpc_rpc_h=yes}
| ac_cv_header_rpc_types_h=${ac_cv_header_rpc_types_h=yes}
| ac_cv_header_sched_h=${ac_cv_header_sched_h=yes}
| ac_cv_header_scsi_scsi_h=${ac_cv_header_scsi_scsi_h=yes}
| ac_cv_header_search_h=${ac_cv_header_search_h=yes}
| ac_cv_header_semaphore_h=${ac_cv_header_semaphore_h=yes}
| ac_cv_header_setjmp_h=${ac_cv_header_setjmp_h=yes}
| ac_cv_header_sgtty_h=${ac_cv_header_sgtty_h=yes}
| ac_cv_header_shadow_h=${ac_cv_header_shadow_h=yes}
| ac_cv_header_signal_h=${ac_cv_header_signal_h=yes}
| ac_cv_header_stdarg_h=${ac_cv_header_stdarg_h=yes}
| ac_cv_header_stdbool_h=${ac_cv_header_stdbool_h=yes}
| ac_cv_header_stdc=${ac_cv_header_stdc=yes}
| ac_cv_header_stddef_h=${ac_cv_header_stddef_h=yes}
| ac_cv_header_stdint_h=${ac_cv_header_stdint_h=yes}
| ac_cv_header_stdio_h=${ac_cv_header_stdio_h=yes}
| ac_cv_header_stdlib_h=${ac_cv_header_stdlib_h=yes}
| ac_cv_header_string_h=${ac_cv_header_string_h=yes}
| ac_cv_header_strings_h=${ac_cv_header_strings_h=yes}
| ac_cv_header_stropts_h=${ac_cv_header_stropts_h=yes}
| ac_cv_header_sys_bitypes_h=${ac_cv_header_sys_bitypes_h=yes}
| ac_cv_header_sys_cdefs_h=${ac_cv_header_sys_cdefs_h=yes}
| ac_cv_header_sys_dir_h=${ac_cv_header_sys_dir_h=yes}
| ac_cv_header_sys_epoll_h=${ac_cv_header_sys_epoll_h=yes}
| ac_cv_header_sys_fcntl_h=${ac_cv_header_sys_fcntl_h=yes}
| ac_cv_header_sys_file_h=${ac_cv_header_sys_file_h=yes}
| ac_cv_header_sys_fsuid_h=${ac_cv_header_sys_fsuid_h=yes}
| ac_cv_header_sys_ioctl_h=${ac_cv_header_sys_ioctl_h=yes}
| ac_cv_header_sys_ipc_h=${ac_cv_header_sys_ipc_h=yes}
| ac_cv_header_sys_mman_h=${ac_cv_header_sys_mman_h=yes}
| ac_cv_header_sys_mount_h=${ac_cv_header_sys_mount_h=yes}
| ac_cv_header_sys_mtio_h=${ac_cv_header_sys_mtio_h=yes}
| ac_cv_header_sys_param_h=${ac_cv_header_sys_param_h=yes}
| ac_cv_header_sys_poll_h=${ac_cv_header_sys_poll_h=yes}
| ac_cv_header_sys_prctl_h=${ac_cv_header_sys_prctl_h=yes}
| ac_cv_header_sys_ptrace_h=${ac_cv_header_sys_ptrace_h=yes}
| ac_cv_header_sys_queue_h=${ac_cv_header_sys_queue_h=yes}
| ac_cv_header_sys_reg_h=${ac_cv_header_sys_reg_h=yes}
| ac_cv_header_sys_resource_h=${ac_cv_header_sys_resource_h=yes}
| ac_cv_header_sys_select_h=${ac_cv_header_sys_select_h=yes}
| ac_cv_header_sys_sem_h=${ac_cv_header_sys_sem_h=yes}
| ac_cv_header_sys_shm_h=${ac_cv_header_sys_shm_h=yes}
| ac_cv_header_sys_signal_h=${ac_cv_header_sys_signal_h=yes}
| ac_cv_header_sys_socket_h=${ac_cv_header_sys_socket_h=yes}
| ac_cv_header_sys_socketvar_h=${ac_cv_header_sys_socketvar_h=yes}
| ac_cv_header_sys_soundcard_h=${ac_cv_header_sys_soundcard_h=yes}
| ac_cv_header_sys_stat_h=${ac_cv_header_sys_stat_h=yes}
| ac_cv_header_sys_statfs_h=${ac_cv_header_sys_statfs_h=yes}
| ac_cv_header_sys_statvfs_h=${ac_cv_header_sys_statvfs_h=yes}
| ac_cv_header_sys_stropts_h=${ac_cv_header_sys_stropts_h=yes}
| ac_cv_header_sys_swap_h=${ac_cv_header_sys_swap_h=yes}
| ac_cv_header_sys_sysctl_h=${ac_cv_header_sys_sysctl_h=yes}
| ac_cv_header_sys_sysinfo_h=${ac_cv_header_sys_sysinfo_h=yes}
| ac_cv_header_sys_sysmacros_h=${ac_cv_header_sys_sysmacros_h=yes}
| ac_cv_header_sys_termios_h=${ac_cv_header_sys_termios_h=yes}
| ac_cv_header_sys_time_h=${ac_cv_header_sys_time_h=yes}
| ac_cv_header_sys_timeb_h=${ac_cv_header_sys_timeb_h=yes}
| ac_cv_header_sys_times_h=${ac_cv_header_sys_times_h=yes}
| ac_cv_header_sys_timex_h=${ac_cv_header_sys_timex_h=yes}
| ac_cv_header_sys_types_h=${ac_cv_header_sys_types_h=yes}
| ac_cv_header_sys_uio_h=${ac_cv_header_sys_uio_h=yes}
| ac_cv_header_sys_un_h=${ac_cv_header_sys_un_h=yes}
| ac_cv_header_sys_unistd_h=${ac_cv_header_sys_unistd_h=yes}
| ac_cv_header_sys_user_h=${ac_cv_header_sys_user_h=yes}
| ac_cv_header_sys_utsname_h=${ac_cv_header_sys_utsname_h=yes}
| ac_cv_header_sys_vfs_h=${ac_cv_header_sys_vfs_h=yes}
| ac_cv_header_sys_wait_h=${ac_cv_header_sys_wait_h=yes}
| ac_cv_header_sysexits_h=${ac_cv_header_sysexits_h=yes}
| ac_cv_header_syslog_h=${ac_cv_header_syslog_h=yes}
| ac_cv_header_termio_h=${ac_cv_header_termio_h=yes}
| ac_cv_header_termios_h=${ac_cv_header_termios_h=yes}
| ac_cv_header_time_h=${ac_cv_header_time_h=yes}
| ac_cv_header_ttyent_h=${ac_cv_header_ttyent_h=yes}
| ac_cv_header_ulimit_h=${ac_cv_header_ulimit_h=yes}
| ac_cv_header_unistd_h=${ac_cv_header_unistd_h=yes}
| ac_cv_header_ustat_h=${ac_cv_header_ustat_h=yes}
| ac_cv_header_utime_h=${ac_cv_header_utime_h=yes}
| ac_cv_header_utmp_h=${ac_cv_header_utmp_h=yes}
| ac_cv_header_utmpx_h=${ac_cv_header_utmpx_h=yes}
| ac_cv_header_values_h=${ac_cv_header_values_h=yes}
| ac_cv_header_wchar_h=${ac_cv_header_wchar_h=yes}
| ac_cv_header_wctype_h=${ac_cv_header_wctype_h=yes}
| ac_cv_sizeof_char=${ac_cv_sizeof_char=1}
| ac_cv_sizeof_char_p=${ac_cv_sizeof_char_p=4}
| ac_cv_sizeof_double=${ac_cv_sizeof_double=8}
| ac_cv_sizeof_float=${ac_cv_sizeof_float=4}
| ac_cv_sizeof_int=${ac_cv_sizeof_int=4}
| ac_cv_sizeof_long=${ac_cv_sizeof_long=4}
| ac_cv_sizeof_long_double=${ac_cv_sizeof_long_double=12}
| ac_cv_sizeof_long_int=${ac_cv_sizeof_long_int=4}
| ac_cv_sizeof_long_long=${ac_cv_sizeof_long_long=8}
| ac_cv_sizeof_long_long_int=${ac_cv_sizeof_long_long_int=8}
| ac_cv_sizeof_short=${ac_cv_sizeof_short=2}
| ac_cv_sizeof_short_int=${ac_cv_sizeof_short_int=2}
| ac_cv_sizeof_signed_char=${ac_cv_sizeof_signed_char=1}
| ac_cv_sizeof_unsigned_char=${ac_cv_sizeof_unsigned_char=1}
| ac_cv_sizeof_unsigned_int=${ac_cv_sizeof_unsigned_int=4}
| ac_cv_sizeof_unsigned_long=${ac_cv_sizeof_unsigned_long=4}
| ac_cv_sizeof_unsigned_long_int=${ac_cv_sizeof_unsigned_long_int=4}
| ac_cv_sizeof_unsigned_long_long_int=${ac_cv_sizeof_unsigned_long_long_int=8}
| ac_cv_sizeof_unsigned_short=${ac_cv_sizeof_unsigned_short=2}
| ac_cv_sizeof_unsigned_short_int=${ac_cv_sizeof_unsigned_short_int=2}
| ac_cv_sizeof_void_p=${ac_cv_sizeof_void_p=4}
configure:3482: checking for a BSD-compatible install
configure:3550: result: /usr/bin/install -c
configure:3561: checking whether build environment is sane
configure:3611: result: yes
configure:3660: checking for i586-poky-linux-strip
configure:3687: result: i586-poky-linux-strip
configure:3752: checking for a thread-safe mkdir -p
configure:3791: result: /bin/mkdir -p
configure:3804: checking for gawk
configure:3820: found /usr/bin/gawk
configure:3831: result: gawk
configure:3842: checking whether make sets $(MAKE)
configure:3864: result: yes
configure:3945: checking whether to enable maintainer-specific portions of Makefiles
configure:3954: result: no
configure:3992: checking for style of include used by make
configure:4020: result: GNU
configure:4050: checking for i586-poky-linux-gcc
configure:4077: result: i586-poky-linux-gcc -march=i586 --sysroot=/home/kyu3/sdb/test/tmp/sysroots/qemux86
configure:4346: checking for C compiler version
configure:4355: i586-poky-linux-gcc -march=i586 --sysroot=/home/kyu3/sdb/test/tmp/sysroots/qemux86 --version >&5
i586-poky-linux-gcc (GCC) 4.6.0
Copyright (C) 2011 Free Software Foundation, Inc.
This is free software; see the source for copying conditions.  There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.

configure:4366: $? = 0
configure:4355: i586-poky-linux-gcc -march=i586 --sysroot=/home/kyu3/sdb/test/tmp/sysroots/qemux86 -v >&5
Using built-in specs.
COLLECT_GCC=i586-poky-linux-gcc
COLLECT_LTO_WRAPPER=/home/kyu3/sdb/test/tmp/sysroots/x86_64-linux/usr/libexec/i586-poky-linux/gcc/i586-poky-linux/4.6.0/lto-wrapper
Target: i586-poky-linux
Configured with: /home/kyu3/sdb/test/tmp/work/i586-poky-linux/gcc-cross-4.6.0-r2/gcc-4.6.0/configure --build=x86_64-linux --host=x86_64-linux --target=i586-poky-linux --prefix=/home/kyu3/sdb/test/tmp/sysroots/x86_64-linux/usr --exec_prefix=/home/kyu3/sdb/test/tmp/sysroots/x86_64-linux/usr --bindir=/home/kyu3/sdb/test/tmp/sysroots/x86_64-linux/usr/bin/i586-poky-linux --sbindir=/home/kyu3/sdb/test/tmp/sysroots/x86_64-linux/usr/bin/i586-poky-linux --libexecdir=/home/kyu3/sdb/test/tmp/sysroots/x86_64-linux/usr/libexec/i586-poky-linux --datadir=/home/kyu3/sdb/test/tmp/sysroots/x86_64-linux/usr/share --sysconfdir=/home/kyu3/sdb/test/tmp/sysroots/x86_64-linux/etc --sharedstatedir=/home/kyu3/sdb/test/tmp/sysroots/x86_64-linux/com --localstatedir=/home/kyu3/sdb/test/tmp/sysroots/x86_64-linux/var --libdir=/home/kyu3/sdb/test/tmp/sysroots/x86_64-linux/usr/lib/i586-poky-linux --includedir=/home/kyu3/sdb/test/tmp/sysroots/x86_64-linux/usr/include --oldincludedir=/home/kyu3/sdb/test/tmp/sysroots/x86_64-linux/usr/include --infodir=/home/kyu3/sdb/test/tmp/sysroots/x86_64-linux/usr/share/info --mandir=/home/kyu3/sdb/test/tmp/sysroots/x86_64-linux/usr/share/man --disable-silent-rules --with-libtool-sysroot=/home/kyu3/sdb/test/tmp/sysroots/x86_64-linux --with-gnu-ld --enable-shared --enable-languages=c,c++ --enable-threads=posix --disable-multilib --enable-c99 --enable-long-long --enable-symvers=gnu --enable-libstdcxx-pch --program-prefix=i586-poky-linux- --enable-target-optspace --enable-lto --enable-libssp --disable-bootstrap --disable-libgomp --disable-libmudflap --enable-cheaders=c_global --with-local-prefix=/home/kyu3/sdb/test/tmp/sysroots/qemux86/usr --with-gxx-include-dir=/usr/include/c++ --with-sysroot=/home/kyu3/sdb/test/tmp/sysroots/qemux86 --with-build-sysroot=/home/kyu3/sdb/test/tmp/sysroots/qemux86 --enable-poison-system-directories --disable-libunwind-exceptions --with-mpfr=/home/kyu3/sdb/test/tmp/sysroots/x86_64-linux/usr --with-system-zlib --enable-nls --enable-__cxa_atexit
Thread model: posix
gcc version 4.6.0 (GCC) 
configure:4366: $? = 0
configure:4355: i586-poky-linux-gcc -march=i586 --sysroot=/home/kyu3/sdb/test/tmp/sysroots/qemux86 -V >&5
i586-poky-linux-gcc: error: unrecognized option '-V'
i586-poky-linux-gcc: fatal error: no input files
compilation terminated.
configure:4366: $? = 1
configure:4355: i586-poky-linux-gcc -march=i586 --sysroot=/home/kyu3/sdb/test/tmp/sysroots/qemux86 -qversion >&5
i586-poky-linux-gcc: error: unrecognized option '-qversion'
i586-poky-linux-gcc: fatal error: no input files
compilation terminated.
configure:4366: $? = 1
configure:4386: checking whether the C compiler works
configure:4408: i586-poky-linux-gcc -march=i586 --sysroot=/home/kyu3/sdb/test/tmp/sysroots/qemux86 -O2 -pipe -g -feliminate-unused-debug-types  -Wl,-O1  -Wl,--as-needed conftest.c  >&5
configure:4412: $? = 0
configure:4461: result: yes
configure:4464: checking for C compiler default output file name
configure:4466: result: a.out
configure:4472: checking for suffix of executables
configure:4479: i586-poky-linux-gcc -march=i586 --sysroot=/home/kyu3/sdb/test/tmp/sysroots/qemux86 -o conftest -O2 -pipe -g -feliminate-unused-debug-types  -Wl,-O1  -Wl,--as-needed conftest.c  >&5
configure:4483: $? = 0
configure:4505: result: 
configure:4527: checking whether we are cross compiling
configure:4565: result: yes
configure:4570: checking for suffix of object files
configure:4592: i586-poky-linux-gcc -march=i586 --sysroot=/home/kyu3/sdb/test/tmp/sysroots/qemux86 -c -O2 -pipe -g -feliminate-unused-debug-types  conftest.c >&5
configure:4596: $? = 0
configure:4617: result: o
configure:4621: checking whether we are using the GNU C compiler
configure:4640: i586-poky-linux-gcc -march=i586 --sysroot=/home/kyu3/sdb/test/tmp/sysroots/qemux86 -c -O2 -pipe -g -feliminate-unused-debug-types  conftest.c >&5
configure:4640: $? = 0
configure:4649: result: yes
configure:4658: checking whether i586-poky-linux-gcc -march=i586 --sysroot=/home/kyu3/sdb/test/tmp/sysroots/qemux86 accepts -g
configure:4678: i586-poky-linux-gcc -march=i586 --sysroot=/home/kyu3/sdb/test/tmp/sysroots/qemux86 -c -g  conftest.c >&5
configure:4678: $? = 0
configure:4719: result: yes
configure:4736: checking for i586-poky-linux-gcc -march=i586 --sysroot=/home/kyu3/sdb/test/tmp/sysroots/qemux86 option to accept ISO C89
configure:4800: i586-poky-linux-gcc -march=i586 --sysroot=/home/kyu3/sdb/test/tmp/sysroots/qemux86  -c -O2 -pipe -g -feliminate-unused-debug-types  conftest.c >&5
configure:4800: $? = 0
configure:4813: result: none needed
configure:4835: checking dependency style of i586-poky-linux-gcc -march=i586 --sysroot=/home/kyu3/sdb/test/tmp/sysroots/qemux86
configure:4945: result: gcc3
configure:4960: checking for i586-poky-linux-gcc -march=i586 --sysroot=/home/kyu3/sdb/test/tmp/sysroots/qemux86 option to accept ISO C99
configure:5109: i586-poky-linux-gcc -march=i586 --sysroot=/home/kyu3/sdb/test/tmp/sysroots/qemux86  -c -O2 -pipe -g -feliminate-unused-debug-types  conftest.c >&5
conftest.c:61:29: error: expected ';', ',' or ')' before 'text'
conftest.c: In function 'main':
conftest.c:115:18: error: expected '=', ',', ';', 'asm' or '__attribute__' before 'newvar'
conftest.c:115:18: error: 'newvar' undeclared (first use in this function)
conftest.c:115:18: note: each undeclared identifier is reported only once for each function it appears in
conftest.c:125:3: error: 'for' loop initial declarations are only allowed in C99 mode
conftest.c:125:3: note: use option -std=c99 or -std=gnu99 to compile your code
configure:5109: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "xorg-server"
| #define PACKAGE_TARNAME "xorg-server"
| #define PACKAGE_VERSION "1.10.1"
| #define PACKAGE_STRING "xorg-server 1.10.1"
| #define PACKAGE_BUGREPORT "https://bugs.freedesktop.org/enter_bug.cgi?product=xorg"
| #define PACKAGE_URL ""
| #define PACKAGE "xorg-server"
| #define VERSION "1.10.1"
| /* end confdefs.h.  */
| #include <stdarg.h>
| #include <stdbool.h>
| #include <stdlib.h>
| #include <wchar.h>
| #include <stdio.h>
| 
| // Check varargs macros.  These examples are taken from C99 6.10.3.5.
| #define debug(...) fprintf (stderr, __VA_ARGS__)
| #define showlist(...) puts (#__VA_ARGS__)
| #define report(test,...) ((test) ? puts (#test) : printf (__VA_ARGS__))
| static void
| test_varargs_macros (void)
| {
|   int x = 1234;
|   int y = 5678;
|   debug ("Flag");
|   debug ("X = %d\n", x);
|   showlist (The first, second, and third items.);
|   report (x>y, "x is %d but y is %d", x, y);
| }
| 
| // Check long long types.
| #define BIG64 18446744073709551615ull
| #define BIG32 4294967295ul
| #define BIG_OK (BIG64 / BIG32 == 4294967297ull && BIG64 % BIG32 == 0)
| #if !BIG_OK
|   your preprocessor is broken;
| #endif
| #if BIG_OK
| #else
|   your preprocessor is broken;
| #endif
| static long long int bignum = -9223372036854775807LL;
| static unsigned long long int ubignum = BIG64;
| 
| struct incomplete_array
| {
|   int datasize;
|   double data[];
| };
| 
| struct named_init {
|   int number;
|   const wchar_t *name;
|   double average;
| };
| 
| typedef const char *ccp;
| 
| static inline int
| test_restrict (ccp restrict text)
| {
|   // See if C++-style comments work.
|   // Iterate through items via the restricted pointer.
|   // Also check for declarations in for loops.
|   for (unsigned int i = 0; *(text+i) != '\0'; ++i)
|     continue;
|   return 0;
| }
| 
| // Check varargs and va_copy.
| static void
| test_varargs (const char *format, ...)
| {
|   va_list args;
|   va_start (args, format);
|   va_list args_copy;
|   va_copy (args_copy, args);
| 
|   const char *str;
|   int number;
|   float fnumber;
| 
|   while (*format)
|     {
|       switch (*format++)
| 	{
| 	case 's': // string
| 	  str = va_arg (args_copy, const char *);
| 	  break;
| 	case 'd': // int
| 	  number = va_arg (args_copy, int);
| 	  break;
| 	case 'f': // float
| 	  fnumber = va_arg (args_copy, double);
| 	  break;
| 	default:
| 	  break;
| 	}
|     }
|   va_end (args_copy);
|   va_end (args);
| }
| 
| int
| main ()
| {
| 
|   // Check bool.
|   _Bool success = false;
| 
|   // Check restrict.
|   if (test_restrict ("String literal") == 0)
|     success = true;
|   char *restrict newvar = "Another string";
| 
|   // Check varargs.
|   test_varargs ("s, d' f .", "string", 65, 34.234);
|   test_varargs_macros ();
| 
|   // Check flexible array members.
|   struct incomplete_array *ia =
|     malloc (sizeof (struct incomplete_array) + (sizeof (double) * 10));
|   ia->datasize = 10;
|   for (int i = 0; i < ia->datasize; ++i)
|     ia->data[i] = i * 1.234;
| 
|   // Check named initializers.
|   struct named_init ni = {
|     .number = 34,
|     .name = L"Test wide string",
|     .average = 543.34343,
|   };
| 
|   ni.number = 58;
| 
|   int dynamic_array[ni.number];
|   dynamic_array[ni.number - 1] = 543;
| 
|   // work around unused variable warnings
|   return (!success || bignum == 0LL || ubignum == 0uLL || newvar[0] == 'x'
| 	  || dynamic_array[ni.number - 1] != 543);
| 
|   ;
|   return 0;
| }
configure:5109: i586-poky-linux-gcc -march=i586 --sysroot=/home/kyu3/sdb/test/tmp/sysroots/qemux86 -std=gnu99 -c -O2 -pipe -g -feliminate-unused-debug-types  conftest.c >&5
configure:5109: $? = 0
configure:5129: result: -std=gnu99
configure:5143: checking how to run the C preprocessor
configure:5213: result: i586-poky-linux-gcc -E --sysroot=/home/kyu3/sdb/test/tmp/sysroots/qemux86
configure:5233: i586-poky-linux-gcc -E --sysroot=/home/kyu3/sdb/test/tmp/sysroots/qemux86  conftest.c
configure:5233: $? = 0
configure:5247: i586-poky-linux-gcc -E --sysroot=/home/kyu3/sdb/test/tmp/sysroots/qemux86  conftest.c
conftest.c:11:28: fatal error: ac_nonexistent.h: No such file or directory
compilation terminated.
configure:5247: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "xorg-server"
| #define PACKAGE_TARNAME "xorg-server"
| #define PACKAGE_VERSION "1.10.1"
| #define PACKAGE_STRING "xorg-server 1.10.1"
| #define PACKAGE_BUGREPORT "https://bugs.freedesktop.org/enter_bug.cgi?product=xorg"
| #define PACKAGE_URL ""
| #define PACKAGE "xorg-server"
| #define VERSION "1.10.1"
| /* end confdefs.h.  */
| #include <ac_nonexistent.h>
configure:5276: checking for grep that handles long lines and -e
configure:5334: result: /bin/grep
configure:5339: checking for egrep
configure:5401: result: /bin/grep -E
configure:5406: checking for ANSI C header files
configure:5510: result: yes
configure:5523: checking for sys/types.h
configure:5523: result: yes
configure:5523: checking for sys/stat.h
configure:5523: result: yes
configure:5523: checking for stdlib.h
configure:5523: result: yes
configure:5523: checking for string.h
configure:5523: result: yes
configure:5523: checking for memory.h
configure:5523: result: yes
configure:5523: checking for strings.h
configure:5523: result: yes
configure:5523: checking for inttypes.h
configure:5523: result: yes
configure:5523: checking for stdint.h
configure:5523: result: yes
configure:5523: checking for unistd.h
configure:5523: result: yes
configure:5546: checking for i586-poky-linux-pkg-config
configure:5579: result: no
configure:5589: checking for pkg-config
configure:5607: found /home/kyu3/sdb/test/tmp/sysroots/x86_64-linux/usr/bin/pkg-config
configure:5619: result: /home/kyu3/sdb/test/tmp/sysroots/x86_64-linux/usr/bin/pkg-config
configure:5631: WARNING: using cross tools not prefixed with host triplet
configure:5644: checking pkg-config is at least version 0.9.0
configure:5647: result: yes
configure:5659: checking build system type
configure:5673: result: x86_64-pc-linux-gnu
configure:5693: checking host system type
configure:5706: result: i586-poky-linux-gnu
configure:5726: checking for a sed that does not truncate output
configure:5790: result: /bin/sed
configure:6020: checking for doxygen
configure:6053: result: no
configure:6059: WARNING: doxygen not found - documentation targets will be skipped
configure:6156: checking for X.Org SGML entities >= 1.5
configure:6160: $PKG_CONFIG --exists --print-errors "xorg-sgml-doctools >= 1.5"
Package xorg-sgml-doctools was not found in the pkg-config search path.
Perhaps you should add the directory containing `xorg-sgml-doctools.pc'
to the PKG_CONFIG_PATH environment variable
No package 'xorg-sgml-doctools' found
configure:6163: $? = 1
configure:6179: result: no
configure:6234: checking dependency style of i586-poky-linux-gcc -march=i586 --sysroot=/home/kyu3/sdb/test/tmp/sysroots/qemux86 -std=gnu99
configure:6342: result: gcc3
configure:6357: checking whether ln -s works
configure:6361: result: yes
configure:6748: checking how to print strings
configure:6775: result: printf
configure:6796: checking for a sed that does not truncate output
configure:6860: result: /bin/sed
configure:6878: checking for fgrep
configure:6940: result: /bin/grep -F
configure:6975: checking for ld used by i586-poky-linux-gcc -march=i586 --sysroot=/home/kyu3/sdb/test/tmp/sysroots/qemux86 -std=gnu99
configure:7042: result: i586-poky-linux-ld --sysroot=/home/kyu3/sdb/test/tmp/sysroots/qemux86
configure:7049: checking if the linker (i586-poky-linux-ld --sysroot=/home/kyu3/sdb/test/tmp/sysroots/qemux86) is GNU ld
configure:7064: result: yes
configure:7076: checking for BSD- or MS-compatible name lister (nm)
configure:7125: result: i586-poky-linux-nm
configure:7255: checking the name lister (i586-poky-linux-nm) interface
configure:7262: i586-poky-linux-gcc -march=i586 --sysroot=/home/kyu3/sdb/test/tmp/sysroots/qemux86 -std=gnu99 -c -O2 -pipe -g -feliminate-unused-debug-types  conftest.c >&5
configure:7265: i586-poky-linux-nm "conftest.o"
configure:7268: output
00000000 B some_variable
configure:7275: result: BSD nm
configure:7279: checking the maximum length of command line arguments
configure:7404: result: 1572864
configure:7421: checking whether the shell understands some XSI constructs
configure:7431: result: yes
configure:7435: checking whether the shell understands "+="
configure:7441: result: yes
configure:7476: checking how to convert x86_64-pc-linux-gnu file names to i586-poky-linux-gnu format
configure:7516: result: func_convert_file_noop
configure:7523: checking how to convert x86_64-pc-linux-gnu file names to toolchain format
configure:7543: result: func_convert_file_noop
configure:7550: checking for i586-poky-linux-ld --sysroot=/home/kyu3/sdb/test/tmp/sysroots/qemux86 option to reload object files
configure:7557: result: -r
configure:7591: checking for i586-poky-linux-objdump
configure:7618: result: i586-poky-linux-objdump
configure:7687: checking how to recognize dependent libraries
configure:7889: result: pass_all
configure:7934: checking for i586-poky-linux-dlltool
configure:7961: result: dlltool
configure:8031: checking how to associate runtime and link libraries
configure:8058: result: printf %s\n
configure:8074: checking for i586-poky-linux-ar
configure:8101: result: i586-poky-linux-ar
configure:8182: checking for archiver @FILE support
configure:8199: i586-poky-linux-gcc -march=i586 --sysroot=/home/kyu3/sdb/test/tmp/sysroots/qemux86 -std=gnu99 -c -O2 -pipe -g -feliminate-unused-debug-types  conftest.c >&5
configure:8199: $? = 0
configure:8202: i586-poky-linux-ar cru libconftest.a @conftest.lst >&5
configure:8205: $? = 0
configure:8210: i586-poky-linux-ar cru libconftest.a @conftest.lst >&5
i586-poky-linux-ar: conftest.o: No such file or directory
configure:8213: $? = 1
configure:8225: result: @
configure:8243: checking for i586-poky-linux-strip
configure:8270: result: i586-poky-linux-strip
configure:8342: checking for i586-poky-linux-ranlib
configure:8369: result: i586-poky-linux-ranlib
configure:8511: checking command to parse i586-poky-linux-nm output from i586-poky-linux-gcc -march=i586 --sysroot=/home/kyu3/sdb/test/tmp/sysroots/qemux86 -std=gnu99 object
configure:8630: i586-poky-linux-gcc -march=i586 --sysroot=/home/kyu3/sdb/test/tmp/sysroots/qemux86 -std=gnu99 -c -O2 -pipe -g -feliminate-unused-debug-types  conftest.c >&5
configure:8633: $? = 0
configure:8637: i586-poky-linux-nm conftest.o \| sed -n -e 's/^.*[ ]\([ABCDGIRSTW][ABCDGIRSTW]*\)[ ][ ]*\([_A-Za-z][_A-Za-z0-9]*\)$/\1 \2 \2/p' | sed '/ __gnu_lto/d' \> conftest.nm
configure:8640: $? = 0
configure:8706: i586-poky-linux-gcc -march=i586 --sysroot=/home/kyu3/sdb/test/tmp/sysroots/qemux86 -std=gnu99 -o conftest -O2 -pipe -g -feliminate-unused-debug-types  -Wl,-O1  -Wl,--as-needed conftest.c conftstm.o >&5
configure:8709: $? = 0
configure:8747: result: ok
configure:8784: checking for sysroot
configure:8814: result: /home/kyu3/sdb/test/tmp/sysroots/qemux86
configure:9017: checking for i586-poky-linux-mt
configure:9047: result: no
configure:9057: checking for mt
configure:9073: found /bin/mt
configure:9084: result: mt
configure:9107: checking if mt is a manifest tool
configure:9113: mt '-?'
mt: invalid option -- ?
configure:9121: result: no
configure:9750: checking for dlfcn.h
configure:9750: result: yes
configure:9906: checking for objdir
configure:9921: result: .libs
configure:10188: checking if i586-poky-linux-gcc -march=i586 --sysroot=/home/kyu3/sdb/test/tmp/sysroots/qemux86 -std=gnu99 supports -fno-rtti -fno-exceptions
configure:10206: i586-poky-linux-gcc -march=i586 --sysroot=/home/kyu3/sdb/test/tmp/sysroots/qemux86 -std=gnu99 -c -O2 -pipe -g -feliminate-unused-debug-types  -fno-rtti -fno-exceptions conftest.c >&5
cc1: warning: command line option '-fno-rtti' is valid for C++/ObjC++ but not for C [enabled by default]
configure:10210: $? = 0
configure:10223: result: no
configure:10533: checking for i586-poky-linux-gcc -march=i586 --sysroot=/home/kyu3/sdb/test/tmp/sysroots/qemux86 -std=gnu99 option to produce PIC
configure:10540: result: -fPIC -DPIC
configure:10548: checking if i586-poky-linux-gcc -march=i586 --sysroot=/home/kyu3/sdb/test/tmp/sysroots/qemux86 -std=gnu99 PIC flag -fPIC -DPIC works
configure:10566: i586-poky-linux-gcc -march=i586 --sysroot=/home/kyu3/sdb/test/tmp/sysroots/qemux86 -std=gnu99 -c -O2 -pipe -g -feliminate-unused-debug-types  -fPIC -DPIC -DPIC conftest.c >&5
configure:10570: $? = 0
configure:10583: result: yes
configure:10612: checking if i586-poky-linux-gcc -march=i586 --sysroot=/home/kyu3/sdb/test/tmp/sysroots/qemux86 -std=gnu99 static flag -static works
configure:10640: result: yes
configure:10655: checking if i586-poky-linux-gcc -march=i586 --sysroot=/home/kyu3/sdb/test/tmp/sysroots/qemux86 -std=gnu99 supports -c -o file.o
configure:10676: i586-poky-linux-gcc -march=i586 --sysroot=/home/kyu3/sdb/test/tmp/sysroots/qemux86 -std=gnu99 -c -O2 -pipe -g -feliminate-unused-debug-types  -o out/conftest2.o conftest.c >&5
configure:10680: $? = 0
configure:10702: result: yes
configure:10710: checking if i586-poky-linux-gcc -march=i586 --sysroot=/home/kyu3/sdb/test/tmp/sysroots/qemux86 -std=gnu99 supports -c -o file.o
configure:10757: result: yes
configure:10790: checking whether the i586-poky-linux-gcc -march=i586 --sysroot=/home/kyu3/sdb/test/tmp/sysroots/qemux86 -std=gnu99 linker (i586-poky-linux-ld --sysroot=/home/kyu3/sdb/test/tmp/sysroots/qemux86) supports shared libraries
configure:11948: result: yes
configure:11985: checking whether -lc should be explicitly linked in
configure:11993: i586-poky-linux-gcc -march=i586 --sysroot=/home/kyu3/sdb/test/tmp/sysroots/qemux86 -std=gnu99 -c -O2 -pipe -g -feliminate-unused-debug-types  conftest.c >&5
configure:11996: $? = 0
configure:12011: i586-poky-linux-gcc -march=i586 --sysroot=/home/kyu3/sdb/test/tmp/sysroots/qemux86 -std=gnu99 -shared  -fPIC -DPIC conftest.o  -v -Wl,-soname -Wl,conftest -o conftest 2\>\&1 \| /bin/grep  -lc  \>/dev/null 2\>\&1
configure:12014: $? = 0
configure:12028: result: no
configure:12193: checking dynamic linker characteristics
configure:12707: i586-poky-linux-gcc -march=i586 --sysroot=/home/kyu3/sdb/test/tmp/sysroots/qemux86 -std=gnu99 -o conftest -O2 -pipe -g -feliminate-unused-debug-types  -Wl,-O1  -Wl,--as-needed -Wl,-rpath -Wl,/foo conftest.c  >&5
configure:12707: $? = 0
configure:12929: result: GNU/Linux ld.so
configure:13036: checking how to hardcode library paths into programs
configure:13061: result: immediate
configure:13601: checking whether stripping libraries is possible
configure:13606: result: yes
configure:13641: checking if libtool supports shared libraries
configure:13643: result: yes
configure:13646: checking whether to build shared libraries
configure:13667: result: yes
configure:13670: checking whether to build static libraries
configure:13674: result: no
configure:13709: checking whether make sets $(MAKE)
configure:13731: result: yes
configure:13750: checking for i586-poky-linux-pkg-config
configure:13780: result: /home/kyu3/sdb/test/tmp/sysroots/x86_64-linux/usr/bin/pkg-config
configure:13848: checking pkg-config is at least version 0.9.0
configure:13851: result: yes
configure:13863: checking for flex
configure:13879: found /home/kyu3/sdb/test/tmp/sysroots/x86_64-linux/usr/bin/flex
configure:13890: result: flex
configure:13927: flex conftest.l
configure:13931: $? = 0
configure:13933: checking lex output file root
configure:13947: result: lex.yy
configure:13952: checking lex library
configure:13966: i586-poky-linux-gcc -march=i586 --sysroot=/home/kyu3/sdb/test/tmp/sysroots/qemux86 -std=gnu99 -o conftest -O2 -pipe -g -feliminate-unused-debug-types  -Wl,-O1  -Wl,--as-needed conftest.c   >&5
/tmp/ccoVD2wA.o: In function `input':
/home/kyu3/sdb/test/tmp/work/i586-poky-linux/xserver-xf86-lite-1.10.1-r0/xorg-server-1.10.1/lex.yy.c:1168: undefined reference to `yywrap'
/tmp/ccoVD2wA.o: In function `yylex':
/home/kyu3/sdb/test/tmp/work/i586-poky-linux/xserver-xf86-lite-1.10.1-r0/xorg-server-1.10.1/lex.yy.c:867: undefined reference to `yywrap'
/tmp/ccoVD2wA.o: In function `main':
/home/kyu3/sdb/test/tmp/work/i586-poky-linux/xserver-xf86-lite-1.10.1-r0/xorg-server-1.10.1/conftest.l:17: undefined reference to `yywrap'
collect2: ld returned 1 exit status
configure:13966: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "xorg-server"
| #define PACKAGE_TARNAME "xorg-server"
| #define PACKAGE_VERSION "1.10.1"
| #define PACKAGE_STRING "xorg-server 1.10.1"
| #define PACKAGE_BUGREPORT "https://bugs.freedesktop.org/enter_bug.cgi?product=xorg"
| #define PACKAGE_URL ""
| #define PACKAGE "xorg-server"
| #define VERSION "1.10.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 PACKAGE_VERSION_MAJOR 1
| #define PACKAGE_VERSION_MINOR 10
| #define PACKAGE_VERSION_PATCHLEVEL 1
| #define HAVE_DLFCN_H 1
| #define LT_OBJDIR ".libs/"
| /* end confdefs.h.  */
| 
| #line 3 "lex.yy.c"
| 
| #define  YY_INT_ALIGNED short int
| 
| /* A lexical scanner generated by flex */
| 
| #define FLEX_SCANNER
| #define YY_FLEX_MAJOR_VERSION 2
| #define YY_FLEX_MINOR_VERSION 5
| #define YY_FLEX_SUBMINOR_VERSION 35
| #if YY_FLEX_SUBMINOR_VERSION > 0
| #define FLEX_BETA
| #endif
| 
| /* First, we deal with  platform-specific or compiler-specific issues. */
| 
| /* begin standard C headers. */
| #include <stdio.h>
| #include <string.h>
| #include <errno.h>
| #include <stdlib.h>
| 
| /* end standard C headers. */
| 
| /* flex integer type definitions */
| 
| #ifndef FLEXINT_H
| #define FLEXINT_H
| 
| /* C99 systems have <inttypes.h>. Non-C99 systems may or may not. */
| 
| #if defined (__STDC_VERSION__) && __STDC_VERSION__ >= 199901L
| 
| /* C99 says to define __STDC_LIMIT_MACROS before including stdint.h,
|  * if you want the limit (max/min) macros for int types. 
|  */
| #ifndef __STDC_LIMIT_MACROS
| #define __STDC_LIMIT_MACROS 1
| #endif
| 
| #include <inttypes.h>
| typedef int8_t flex_int8_t;
| typedef uint8_t flex_uint8_t;
| typedef int16_t flex_int16_t;
| typedef uint16_t flex_uint16_t;
| typedef int32_t flex_int32_t;
| typedef uint32_t flex_uint32_t;
| #else
| typedef signed char flex_int8_t;
| typedef short int flex_int16_t;
| typedef int flex_int32_t;
| typedef unsigned char flex_uint8_t; 
| typedef unsigned short int flex_uint16_t;
| typedef unsigned int flex_uint32_t;
| #endif /* ! C99 */
| 
| /* Limits of integral types. */
| #ifndef INT8_MIN
| #define INT8_MIN               (-128)
| #endif
| #ifndef INT16_MIN
| #define INT16_MIN              (-32767-1)
| #endif
| #ifndef INT32_MIN
| #define INT32_MIN              (-2147483647-1)
| #endif
| #ifndef INT8_MAX
| #define INT8_MAX               (127)
| #endif
| #ifndef INT16_MAX
| #define INT16_MAX              (32767)
| #endif
| #ifndef INT32_MAX
| #define INT32_MAX              (2147483647)
| #endif
| #ifndef UINT8_MAX
| #define UINT8_MAX              (255U)
| #endif
| #ifndef UINT16_MAX
| #define UINT16_MAX             (65535U)
| #endif
| #ifndef UINT32_MAX
| #define UINT32_MAX             (4294967295U)
| #endif
| 
| #endif /* ! FLEXINT_H */
| 
| #ifdef __cplusplus
| 
| /* The "const" storage-class-modifier is valid. */
| #define YY_USE_CONST
| 
| #else	/* ! __cplusplus */
| 
| /* C99 requires __STDC__ to be defined as 1. */
| #if defined (__STDC__)
| 
| #define YY_USE_CONST
| 
| #endif	/* defined (__STDC__) */
| #endif	/* ! __cplusplus */
| 
| #ifdef YY_USE_CONST
| #define yyconst const
| #else
| #define yyconst
| #endif
| 
| /* Returned upon end-of-file. */
| #define YY_NULL 0
| 
| /* Promotes a possibly negative, possibly signed char to an unsigned
|  * integer for use as an array index.  If the signed char is negative,
|  * we want to instead treat it as an 8-bit unsigned char, hence the
|  * double cast.
|  */
| #define YY_SC_TO_UI(c) ((unsigned int) (unsigned char) c)
| 
| /* Enter a start condition.  This macro really ought to take a parameter,
|  * but we do it the disgusting crufty way forced on us by the ()-less
|  * definition of BEGIN.
|  */
| #define BEGIN (yy_start) = 1 + 2 *
| 
| /* Translate the current start state into a value that can be later handed
|  * to BEGIN to return to the state.  The YYSTATE alias is for lex
|  * compatibility.
|  */
| #define YY_START (((yy_start) - 1) / 2)
| #define YYSTATE YY_START
| 
| /* Action number for EOF rule of a given start state. */
| #define YY_STATE_EOF(state) (YY_END_OF_BUFFER + state + 1)
| 
| /* Special action meaning "start processing a new file". */
| #define YY_NEW_FILE yyrestart(yyin  )
| 
| #define YY_END_OF_BUFFER_CHAR 0
| 
| /* Size of default input buffer. */
| #ifndef YY_BUF_SIZE
| #define YY_BUF_SIZE 16384
| #endif
| 
| /* The state buf must be large enough to hold one state per character in the main buffer.
|  */
| #define YY_STATE_BUF_SIZE   ((YY_BUF_SIZE + 2) * sizeof(yy_state_type))
| 
| #ifndef YY_TYPEDEF_YY_BUFFER_STATE
| #define YY_TYPEDEF_YY_BUFFER_STATE
| typedef struct yy_buffer_state *YY_BUFFER_STATE;
| #endif
| 
| extern int yyleng;
| 
| extern FILE *yyin, *yyout;
| 
| #define EOB_ACT_CONTINUE_SCAN 0
| #define EOB_ACT_END_OF_FILE 1
| #define EOB_ACT_LAST_MATCH 2
| 
|     #define YY_LESS_LINENO(n)
|     
| /* Return all but the first "n" matched characters back to the input stream. */
| #define yyless(n) \
| 	do \
| 		{ \
| 		/* Undo effects of setting up yytext. */ \
|         int yyless_macro_arg = (n); \
|         YY_LESS_LINENO(yyless_macro_arg);\
| 		*yy_cp = (yy_hold_char); \
| 		YY_RESTORE_YY_MORE_OFFSET \
| 		(yy_c_buf_p) = yy_cp = yy_bp + yyless_macro_arg - YY_MORE_ADJ; \
| 		YY_DO_BEFORE_ACTION; /* set up yytext again */ \
| 		} \
| 	while ( 0 )
| 
| #define unput(c) yyunput( c, (yytext_ptr)  )
| 
| #ifndef YY_TYPEDEF_YY_SIZE_T
| #define YY_TYPEDEF_YY_SIZE_T
| typedef size_t yy_size_t;
| #endif
| 
| #ifndef YY_STRUCT_YY_BUFFER_STATE
| #define YY_STRUCT_YY_BUFFER_STATE
| struct yy_buffer_state
| 	{
| 	FILE *yy_input_file;
| 
| 	char *yy_ch_buf;		/* input buffer */
| 	char *yy_buf_pos;		/* current position in input buffer */
| 
| 	/* Size of input buffer in bytes, not including room for EOB
| 	 * characters.
| 	 */
| 	yy_size_t yy_buf_size;
| 
| 	/* Number of characters read into yy_ch_buf, not including EOB
| 	 * characters.
| 	 */
| 	int yy_n_chars;
| 
| 	/* Whether we "own" the buffer - i.e., we know we created it,
| 	 * and can realloc() it to grow it, and should free() it to
| 	 * delete it.
| 	 */
| 	int yy_is_our_buffer;
| 
| 	/* Whether this is an "interactive" input source; if so, and
| 	 * if we're using stdio for input, then we want to use getc()
| 	 * instead of fread(), to make sure we stop fetching input after
| 	 * each newline.
| 	 */
| 	int yy_is_interactive;
| 
| 	/* Whether we're considered to be at the beginning of a line.
| 	 * If so, '^' rules will be active on the next match, otherwise
| 	 * not.
| 	 */
| 	int yy_at_bol;
| 
|     int yy_bs_lineno; /**< The line count. */
|     int yy_bs_column; /**< The column count. */
|     
| 	/* Whether to try to fill the input buffer when we reach the
| 	 * end of it.
| 	 */
| 	int yy_fill_buffer;
| 
| 	int yy_buffer_status;
| 
| #define YY_BUFFER_NEW 0
| #define YY_BUFFER_NORMAL 1
| 	/* When an EOF's been seen but there's still some text to process
| 	 * then we mark the buffer as YY_EOF_PENDING, to indicate that we
| 	 * shouldn't try reading from the input source any more.  We might
| 	 * still have a bunch of tokens to match, though, because of
| 	 * possible backing-up.
| 	 *
| 	 * When we actually see the EOF, we change the status to "new"
| 	 * (via yyrestart()), so that the user can continue scanning by
| 	 * just pointing yyin at a new input file.
| 	 */
| #define YY_BUFFER_EOF_PENDING 2
| 
| 	};
| #endif /* !YY_STRUCT_YY_BUFFER_STATE */
| 
| /* Stack of input buffers. */
| static size_t yy_buffer_stack_top = 0; /**< index of top of stack. */
| static size_t yy_buffer_stack_max = 0; /**< capacity of stack. */
| static YY_BUFFER_STATE * yy_buffer_stack = 0; /**< Stack as an array. */
| 
| /* We provide macros for accessing buffer states in case in the
|  * future we want to put the buffer states in a more general
|  * "scanner state".
|  *
|  * Returns the top of the stack, or NULL.
|  */
| #define YY_CURRENT_BUFFER ( (yy_buffer_stack) \
|                           ? (yy_buffer_stack)[(yy_buffer_stack_top)] \
|                           : NULL)
| 
| /* Same as previous macro, but useful when we know that the buffer stack is not
|  * NULL or when we need an lvalue. For internal use only.
|  */
| #define YY_CURRENT_BUFFER_LVALUE (yy_buffer_stack)[(yy_buffer_stack_top)]
| 
| /* yy_hold_char holds the character lost when yytext is formed. */
| static char yy_hold_char;
| static int yy_n_chars;		/* number of characters read into yy_ch_buf */
| int yyleng;
| 
| /* Points to current character in buffer. */
| static char *yy_c_buf_p = (char *) 0;
| static int yy_init = 0;		/* whether we need to initialize */
| static int yy_start = 0;	/* start state number */
| 
| /* Flag which is used to allow yywrap()'s to do buffer switches
|  * instead of setting up a fresh yyin.  A bit of a hack ...
|  */
| static int yy_did_buffer_switch_on_eof;
| 
| void yyrestart (FILE *input_file  );
| void yy_switch_to_buffer (YY_BUFFER_STATE new_buffer  );
| YY_BUFFER_STATE yy_create_buffer (FILE *file,int size  );
| void yy_delete_buffer (YY_BUFFER_STATE b  );
| void yy_flush_buffer (YY_BUFFER_STATE b  );
| void yypush_buffer_state (YY_BUFFER_STATE new_buffer  );
| void yypop_buffer_state (void );
| 
| static void yyensure_buffer_stack (void );
| static void yy_load_buffer_state (void );
| static void yy_init_buffer (YY_BUFFER_STATE b,FILE *file  );
| 
| #define YY_FLUSH_BUFFER yy_flush_buffer(YY_CURRENT_BUFFER )
| 
| YY_BUFFER_STATE yy_scan_buffer (char *base,yy_size_t size  );
| YY_BUFFER_STATE yy_scan_string (yyconst char *yy_str  );
| YY_BUFFER_STATE yy_scan_bytes (yyconst char *bytes,int len  );
| 
| void *yyalloc (yy_size_t  );
| void *yyrealloc (void *,yy_size_t  );
| void yyfree (void *  );
| 
| #define yy_new_buffer yy_create_buffer
| 
| #define yy_set_interactive(is_interactive) \
| 	{ \
| 	if ( ! YY_CURRENT_BUFFER ){ \
|         yyensure_buffer_stack (); \
| 		YY_CURRENT_BUFFER_LVALUE =    \
|             yy_create_buffer(yyin,YY_BUF_SIZE ); \
| 	} \
| 	YY_CURRENT_BUFFER_LVALUE->yy_is_interactive = is_interactive; \
| 	}
| 
| #define yy_set_bol(at_bol) \
| 	{ \
| 	if ( ! YY_CURRENT_BUFFER ){\
|         yyensure_buffer_stack (); \
| 		YY_CURRENT_BUFFER_LVALUE =    \
|             yy_create_buffer(yyin,YY_BUF_SIZE ); \
| 	} \
| 	YY_CURRENT_BUFFER_LVALUE->yy_at_bol = at_bol; \
| 	}
| 
| #define YY_AT_BOL() (YY_CURRENT_BUFFER_LVALUE->yy_at_bol)
| 
| /* Begin user sect3 */
| 
| typedef unsigned char YY_CHAR;
| 
| FILE *yyin = (FILE *) 0, *yyout = (FILE *) 0;
| 
| typedef int yy_state_type;
| 
| extern int yylineno;
| 
| int yylineno = 1;
| 
| extern char *yytext;
| #define yytext_ptr yytext
| 
| static yy_state_type yy_get_previous_state (void );
| static yy_state_type yy_try_NUL_trans (yy_state_type current_state  );
| static int yy_get_next_buffer (void );
| static void yy_fatal_error (yyconst char msg[]  );
| 
| /* Done after the current pattern has been matched and before the
|  * corresponding action - sets up yytext.
|  */
| #define YY_DO_BEFORE_ACTION \
| 	(yytext_ptr) = yy_bp; \
| 	(yytext_ptr) -= (yy_more_len); \
| 	yyleng = (size_t) (yy_cp - (yytext_ptr)); \
| 	(yy_hold_char) = *yy_cp; \
| 	*yy_cp = '\0'; \
| 	(yy_c_buf_p) = yy_cp;
| 
| #define YY_NUM_RULES 8
| #define YY_END_OF_BUFFER 9
| /* This struct is not used in this scanner,
|    but its presence is necessary. */
| struct yy_trans_info
| 	{
| 	flex_int32_t yy_verify;
| 	flex_int32_t yy_nxt;
| 	};
| static yyconst flex_int16_t yy_acclist[23] =
|     {   0,
|         9,    7,    8,    8,    1,    7,    8,    2,    7,    8,
|         3,    7,    8,    4,    7,    8,    5,    7,    8,    6,
|         7,    8
|     } ;
| 
| static yyconst flex_int16_t yy_accept[14] =
|     {   0,
|         1,    1,    1,    2,    4,    5,    8,   11,   14,   17,
|        20,   23,   23
|     } ;
| 
| static yyconst flex_int32_t yy_ec[256] =
|     {   0,
|         1,    1,    1,    1,    1,    1,    1,    1,    1,    2,
|         1,    1,    1,    1,    1,    1,    1,    1,    1,    1,
|         1,    1,    1,    1,    1,    1,    1,    1,    1,    1,
|         1,    1,    1,    1,    1,    1,    1,    1,    1,    1,
|         1,    1,    1,    1,    1,    1,    1,    1,    1,    1,
|         1,    1,    1,    1,    1,    1,    1,    1,    1,    1,
|         1,    1,    1,    1,    1,    1,    1,    1,    1,    1,
|         1,    1,    1,    1,    1,    1,    1,    1,    1,    1,
|         1,    1,    1,    1,    1,    1,    1,    1,    1,    1,
|         1,    1,    1,    1,    1,    1,    3,    4,    5,    6,
| 
|         7,    8,    1,    1,    1,    1,    1,    1,    1,    1,
|         1,    1,    1,    1,    1,    1,    1,    1,    1,    1,
|         1,    1,    1,    1,    1,    1,    1,    1,    1,    1,
|         1,    1,    1,    1,    1,    1,    1,    1,    1,    1,
|         1,    1,    1,    1,    1,    1,    1,    1,    1,    1,
|         1,    1,    1,    1,    1,    1,    1,    1,    1,    1,
|         1,    1,    1,    1,    1,    1,    1,    1,    1,    1,
|         1,    1,    1,    1,    1,    1,    1,    1,    1,    1,
|         1,    1,    1,    1,    1,    1,    1,    1,    1,    1,
|         1,    1,    1,    1,    1,    1,    1,    1,    1,    1,
| 
|         1,    1,    1,    1,    1,    1,    1,    1,    1,    1,
|         1,    1,    1,    1,    1,    1,    1,    1,    1,    1,
|         1,    1,    1,    1,    1,    1,    1,    1,    1,    1,
|         1,    1,    1,    1,    1,    1,    1,    1,    1,    1,
|         1,    1,    1,    1,    1,    1,    1,    1,    1,    1,
|         1,    1,    1,    1,    1
|     } ;
| 
| static yyconst flex_int32_t yy_meta[9] =
|     {   0,
|         1,    1,    1,    1,    1,    1,    1,    1
|     } ;
| 
| static yyconst flex_int16_t yy_base[13] =
|     {   0,
|         0,    0,    9,   10,   10,   10,   10,   10,   10,   10,
|        10,   10
|     } ;
| 
| static yyconst flex_int16_t yy_def[13] =
|     {   0,
|        12,    1,   12,   12,   12,   12,   12,   12,   12,   12,
|        12,    0
|     } ;
| 
| static yyconst flex_int16_t yy_nxt[19] =
|     {   0,
|         4,    5,    6,    7,    8,    9,   10,   11,   12,    3,
|        12,   12,   12,   12,   12,   12,   12,   12
|     } ;
| 
| static yyconst flex_int16_t yy_chk[19] =
|     {   0,
|         1,    1,    1,    1,    1,    1,    1,    1,    3,   12,
|        12,   12,   12,   12,   12,   12,   12,   12
|     } ;
| 
| extern int yy_flex_debug;
| int yy_flex_debug = 0;
| 
| static yy_state_type *yy_state_buf=0, *yy_state_ptr=0;
| static char *yy_full_match;
| static int yy_lp;
| #define REJECT \
| { \
| *yy_cp = (yy_hold_char); /* undo effects of setting up yytext */ \
| yy_cp = (yy_full_match); /* restore poss. backed-over text */ \
| ++(yy_lp); \
| goto find_rule; \
| }
| 
| static int yy_more_flag = 0;
| static int yy_more_len = 0;
| #define yymore() ((yy_more_flag) = 1)
| #define YY_MORE_ADJ (yy_more_len)
| #define YY_RESTORE_YY_MORE_OFFSET
| char *yytext;
| #line 1 "conftest.l"
| #line 468 "lex.yy.c"
| 
| #define INITIAL 0
| 
| #ifndef YY_NO_UNISTD_H
| /* Special case for "unistd.h", since it is non-ANSI. We include it way
|  * down here because we want the user's section 1 to have been scanned first.
|  * The user has a chance to override it with an option.
|  */
| #include <unistd.h>
| #endif
| 
| #ifndef YY_EXTRA_TYPE
| #define YY_EXTRA_TYPE void *
| #endif
| 
| static int yy_init_globals (void );
| 
| /* Accessor methods to globals.
|    These are made visible to non-reentrant scanners for convenience. */
| 
| int yylex_destroy (void );
| 
| int yyget_debug (void );
| 
| void yyset_debug (int debug_flag  );
| 
| YY_EXTRA_TYPE yyget_extra (void );
| 
| void yyset_extra (YY_EXTRA_TYPE user_defined  );
| 
| FILE *yyget_in (void );
| 
| void yyset_in  (FILE * in_str  );
| 
| FILE *yyget_out (void );
| 
| void yyset_out  (FILE * out_str  );
| 
| int yyget_leng (void );
| 
| char *yyget_text (void );
| 
| int yyget_lineno (void );
| 
| void yyset_lineno (int line_number  );
| 
| /* Macros after this point can all be overridden by user definitions in
|  * section 1.
|  */
| 
| #ifndef YY_SKIP_YYWRAP
| #ifdef __cplusplus
| extern "C" int yywrap (void );
| #else
| extern int yywrap (void );
| #endif
| #endif
| 
|     static void yyunput (int c,char *buf_ptr  );
|     
| #ifndef yytext_ptr
| static void yy_flex_strncpy (char *,yyconst char *,int );
| #endif
| 
| #ifdef YY_NEED_STRLEN
| static int yy_flex_strlen (yyconst char * );
| #endif
| 
| #ifndef YY_NO_INPUT
| 
| #ifdef __cplusplus
| static int yyinput (void );
| #else
| static int input (void );
| #endif
| 
| #endif
| 
| /* Amount of stuff to slurp up with each read. */
| #ifndef YY_READ_BUF_SIZE
| #define YY_READ_BUF_SIZE 8192
| #endif
| 
| /* Copy whatever the last rule matched to the standard output. */
| #ifndef ECHO
| /* This used to be an fputs(), but since the string might contain NUL's,
|  * we now use fwrite().
|  */
| #define ECHO fwrite( yytext, yyleng, 1, yyout )
| #endif
| 
| /* Gets input and stuffs it into "buf".  number of characters read, or YY_NULL,
|  * is returned in "result".
|  */
| #ifndef YY_INPUT
| #define YY_INPUT(buf,result,max_size) \
| 	if ( YY_CURRENT_BUFFER_LVALUE->yy_is_interactive ) \
| 		{ \
| 		int c = '*'; \
| 		int n; \
| 		for ( n = 0; n < max_size && \
| 			     (c = getc( yyin )) != EOF && c != '\n'; ++n ) \
| 			buf[n] = (char) c; \
| 		if ( c == '\n' ) \
| 			buf[n++] = (char) c; \
| 		if ( c == EOF && ferror( yyin ) ) \
| 			YY_FATAL_ERROR( "input in flex scanner failed" ); \
| 		result = n; \
| 		} \
| 	else \
| 		{ \
| 		errno=0; \
| 		while ( (result = fread(buf, 1, max_size, yyin))==0 && ferror(yyin)) \
| 			{ \
| 			if( errno != EINTR) \
| 				{ \
| 				YY_FATAL_ERROR( "input in flex scanner failed" ); \
| 				break; \
| 				} \
| 			errno=0; \
| 			clearerr(yyin); \
| 			} \
| 		}\
| \
| 
| #endif
| 
| /* No semi-colon after return; correct usage is to write "yyterminate();" -
|  * we don't want an extra ';' after the "return" because that will cause
|  * some compilers to complain about unreachable statements.
|  */
| #ifndef yyterminate
| #define yyterminate() return YY_NULL
| #endif
| 
| /* Number of entries by which start-condition stack grows. */
| #ifndef YY_START_STACK_INCR
| #define YY_START_STACK_INCR 25
| #endif
| 
| /* Report a fatal error. */
| #ifndef YY_FATAL_ERROR
| #define YY_FATAL_ERROR(msg) yy_fatal_error( msg )
| #endif
| 
| /* end tables serialization structures and prototypes */
| 
| /* Default declaration of generated scanner - a define so the user can
|  * easily add parameters.
|  */
| #ifndef YY_DECL
| #define YY_DECL_IS_OURS 1
| 
| extern int yylex (void);
| 
| #define YY_DECL int yylex (void)
| #endif /* !YY_DECL */
| 
| /* Code executed at the beginning of each rule, after yytext and yyleng
|  * have been set up.
|  */
| #ifndef YY_USER_ACTION
| #define YY_USER_ACTION
| #endif
| 
| /* Code executed at the end of each rule. */
| #ifndef YY_BREAK
| #define YY_BREAK break;
| #endif
| 
| #define YY_RULE_SETUP \
| 	YY_USER_ACTION
| 
| /** The main scanner function which does all the work.
|  */
| YY_DECL
| {
| 	register yy_state_type yy_current_state;
| 	register char *yy_cp, *yy_bp;
| 	register int yy_act;
|     
| #line 1 "conftest.l"
| 
| #line 652 "lex.yy.c"
| 
| 	if ( !(yy_init) )
| 		{
| 		(yy_init) = 1;
| 
| #ifdef YY_USER_INIT
| 		YY_USER_INIT;
| #endif
| 
|         /* Create the reject buffer large enough to save one state per allowed character. */
|         if ( ! (yy_state_buf) )
|             (yy_state_buf) = (yy_state_type *)yyalloc(YY_STATE_BUF_SIZE  );
|             if ( ! (yy_state_buf) )
|                 YY_FATAL_ERROR( "out of dynamic memory in yylex()" );
| 
| 		if ( ! (yy_start) )
| 			(yy_start) = 1;	/* first start state */
| 
| 		if ( ! yyin )
| 			yyin = stdin;
| 
| 		if ( ! yyout )
| 			yyout = stdout;
| 
| 		if ( ! YY_CURRENT_BUFFER ) {
| 			yyensure_buffer_stack ();
| 			YY_CURRENT_BUFFER_LVALUE =
| 				yy_create_buffer(yyin,YY_BUF_SIZE );
| 		}
| 
| 		yy_load_buffer_state( );
| 		}
| 
| 	while ( 1 )		/* loops until end-of-file is reached */
| 		{
| 		(yy_more_len) = 0;
| 		if ( (yy_more_flag) )
| 			{
| 			(yy_more_len) = (yy_c_buf_p) - (yytext_ptr);
| 			(yy_more_flag) = 0;
| 			}
| 		yy_cp = (yy_c_buf_p);
| 
| 		/* Support of yytext. */
| 		*yy_cp = (yy_hold_char);
| 
| 		/* yy_bp points to the position in yy_ch_buf of the start of
| 		 * the current run.
| 		 */
| 		yy_bp = yy_cp;
| 
| 		yy_current_state = (yy_start);
| 
| 		(yy_state_ptr) = (yy_state_buf);
| 		*(yy_state_ptr)++ = yy_current_state;
| 
| yy_match:
| 		do
| 			{
| 			register YY_CHAR yy_c = yy_ec[YY_SC_TO_UI(*yy_cp)];
| 			while ( yy_chk[yy_base[yy_current_state] + yy_c] != yy_current_state )
| 				{
| 				yy_current_state = (int) yy_def[yy_current_state];
| 				if ( yy_current_state >= 13 )
| 					yy_c = yy_meta[(unsigned int) yy_c];
| 				}
| 			yy_current_state = yy_nxt[yy_base[yy_current_state] + (unsigned int) yy_c];
| 			*(yy_state_ptr)++ = yy_current_state;
| 			++yy_cp;
| 			}
| 		while ( yy_base[yy_current_state] != 10 );
| 
| yy_find_action:
| 		yy_current_state = *--(yy_state_ptr);
| 		(yy_lp) = yy_accept[yy_current_state];
| find_rule: /* we branch to this label when backing up */
| 		for ( ; ; ) /* until we find what rule we matched */
| 			{
| 			if ( (yy_lp) && (yy_lp) < yy_accept[yy_current_state + 1] )
| 				{
| 				yy_act = yy_acclist[(yy_lp)];
| 					{
| 					(yy_full_match) = yy_cp;
| 					break;
| 					}
| 				}
| 			--yy_cp;
| 			yy_current_state = *--(yy_state_ptr);
| 			(yy_lp) = yy_accept[yy_current_state];
| 			}
| 
| 		YY_DO_BEFORE_ACTION;
| 
| do_action:	/* This label is used only to access EOF actions. */
| 
| 		switch ( yy_act )
| 	{ /* beginning of action switch */
| case 1:
| YY_RULE_SETUP
| #line 2 "conftest.l"
| { ECHO; }
| 	YY_BREAK
| case 2:
| YY_RULE_SETUP
| #line 3 "conftest.l"
| { REJECT; }
| 	YY_BREAK
| case 3:
| YY_RULE_SETUP
| #line 4 "conftest.l"
| { yymore (); }
| 	YY_BREAK
| case 4:
| YY_RULE_SETUP
| #line 5 "conftest.l"
| { yyless (1); }
| 	YY_BREAK
| case 5:
| YY_RULE_SETUP
| #line 6 "conftest.l"
| { yyless (input () != 0); }
| 	YY_BREAK
| case 6:
| YY_RULE_SETUP
| #line 7 "conftest.l"
| { unput (yytext[0]); }
| 	YY_BREAK
| case 7:
| YY_RULE_SETUP
| #line 8 "conftest.l"
| { BEGIN INITIAL; }
| 	YY_BREAK
| case 8:
| YY_RULE_SETUP
| #line 9 "conftest.l"
| ECHO;
| 	YY_BREAK
| #line 790 "lex.yy.c"
| 			case YY_STATE_EOF(INITIAL):
| 				yyterminate();
| 
| 	case YY_END_OF_BUFFER:
| 		{
| 		/* Amount of text matched not including the EOB char. */
| 		int yy_amount_of_matched_text = (int) (yy_cp - (yytext_ptr)) - 1;
| 
| 		/* Undo the effects of YY_DO_BEFORE_ACTION. */
| 		*yy_cp = (yy_hold_char);
| 		YY_RESTORE_YY_MORE_OFFSET
| 
| 		if ( YY_CURRENT_BUFFER_LVALUE->yy_buffer_status == YY_BUFFER_NEW )
| 			{
| 			/* We're scanning a new file or input source.  It's
| 			 * possible that this happened because the user
| 			 * just pointed yyin at a new source and called
| 			 * yylex().  If so, then we have to assure
| 			 * consistency between YY_CURRENT_BUFFER and our
| 			 * globals.  Here is the right place to do so, because
| 			 * this is the first action (other than possibly a
| 			 * back-up) that will match for the new input source.
| 			 */
| 			(yy_n_chars) = YY_CURRENT_BUFFER_LVALUE->yy_n_chars;
| 			YY_CURRENT_BUFFER_LVALUE->yy_input_file = yyin;
| 			YY_CURRENT_BUFFER_LVALUE->yy_buffer_status = YY_BUFFER_NORMAL;
| 			}
| 
| 		/* Note that here we test for yy_c_buf_p "<=" to the position
| 		 * of the first EOB in the buffer, since yy_c_buf_p will
| 		 * already have been incremented past the NUL character
| 		 * (since all states make transitions on EOB to the
| 		 * end-of-buffer state).  Contrast this with the test
| 		 * in input().
| 		 */
| 		if ( (yy_c_buf_p) <= &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[(yy_n_chars)] )
| 			{ /* This was really a NUL. */
| 			yy_state_type yy_next_state;
| 
| 			(yy_c_buf_p) = (yytext_ptr) + yy_amount_of_matched_text;
| 
| 			yy_current_state = yy_get_previous_state(  );
| 
| 			/* Okay, we're now positioned to make the NUL
| 			 * transition.  We couldn't have
| 			 * yy_get_previous_state() go ahead and do it
| 			 * for us because it doesn't know how to deal
| 			 * with the possibility of jamming (and we don't
| 			 * want to build jamming into it because then it
| 			 * will run more slowly).
| 			 */
| 
| 			yy_next_state = yy_try_NUL_trans( yy_current_state );
| 
| 			yy_bp = (yytext_ptr) + YY_MORE_ADJ;
| 
| 			if ( yy_next_state )
| 				{
| 				/* Consume the NUL. */
| 				yy_cp = ++(yy_c_buf_p);
| 				yy_current_state = yy_next_state;
| 				goto yy_match;
| 				}
| 
| 			else
| 				{
| 				yy_cp = (yy_c_buf_p);
| 				goto yy_find_action;
| 				}
| 			}
| 
| 		else switch ( yy_get_next_buffer(  ) )
| 			{
| 			case EOB_ACT_END_OF_FILE:
| 				{
| 				(yy_did_buffer_switch_on_eof) = 0;
| 
| 				if ( yywrap( ) )
| 					{
| 					/* Note: because we've taken care in
| 					 * yy_get_next_buffer() to have set up
| 					 * yytext, we can now set up
| 					 * yy_c_buf_p so that if some total
| 					 * hoser (like flex itself) wants to
| 					 * call the scanner after we return the
| 					 * YY_NULL, it'll still work - another
| 					 * YY_NULL will get returned.
| 					 */
| 					(yy_c_buf_p) = (yytext_ptr) + YY_MORE_ADJ;
| 
| 					yy_act = YY_STATE_EOF(YY_START);
| 					goto do_action;
| 					}
| 
| 				else
| 					{
| 					if ( ! (yy_did_buffer_switch_on_eof) )
| 						YY_NEW_FILE;
| 					}
| 				break;
| 				}
| 
| 			case EOB_ACT_CONTINUE_SCAN:
| 				(yy_c_buf_p) =
| 					(yytext_ptr) + yy_amount_of_matched_text;
| 
| 				yy_current_state = yy_get_previous_state(  );
| 
| 				yy_cp = (yy_c_buf_p);
| 				yy_bp = (yytext_ptr) + YY_MORE_ADJ;
| 				goto yy_match;
| 
| 			case EOB_ACT_LAST_MATCH:
| 				(yy_c_buf_p) =
| 				&YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[(yy_n_chars)];
| 
| 				yy_current_state = yy_get_previous_state(  );
| 
| 				yy_cp = (yy_c_buf_p);
| 				yy_bp = (yytext_ptr) + YY_MORE_ADJ;
| 				goto yy_find_action;
| 			}
| 		break;
| 		}
| 
| 	default:
| 		YY_FATAL_ERROR(
| 			"fatal flex scanner internal error--no action found" );
| 	} /* end of action switch */
| 		} /* end of scanning one token */
| } /* end of yylex */
| 
| /* yy_get_next_buffer - try to read in a new buffer
|  *
|  * Returns a code representing an action:
|  *	EOB_ACT_LAST_MATCH -
|  *	EOB_ACT_CONTINUE_SCAN - continue scanning from current position
|  *	EOB_ACT_END_OF_FILE - end of file
|  */
| static int yy_get_next_buffer (void)
| {
|     	register char *dest = YY_CURRENT_BUFFER_LVALUE->yy_ch_buf;
| 	register char *source = (yytext_ptr);
| 	register int number_to_move, i;
| 	int ret_val;
| 
| 	if ( (yy_c_buf_p) > &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[(yy_n_chars) + 1] )
| 		YY_FATAL_ERROR(
| 		"fatal flex scanner internal error--end of buffer missed" );
| 
| 	if ( YY_CURRENT_BUFFER_LVALUE->yy_fill_buffer == 0 )
| 		{ /* Don't try to fill the buffer, so this is an EOF. */
| 		if ( (yy_c_buf_p) - (yytext_ptr) - YY_MORE_ADJ == 1 )
| 			{
| 			/* We matched a single character, the EOB, so
| 			 * treat this as a final EOF.
| 			 */
| 			return EOB_ACT_END_OF_FILE;
| 			}
| 
| 		else
| 			{
| 			/* We matched some text prior to the EOB, first
| 			 * process it.
| 			 */
| 			return EOB_ACT_LAST_MATCH;
| 			}
| 		}
| 
| 	/* Try to read more data. */
| 
| 	/* First move last chars to start of buffer. */
| 	number_to_move = (int) ((yy_c_buf_p) - (yytext_ptr)) - 1;
| 
| 	for ( i = 0; i < number_to_move; ++i )
| 		*(dest++) = *(source++);
| 
| 	if ( YY_CURRENT_BUFFER_LVALUE->yy_buffer_status == YY_BUFFER_EOF_PENDING )
| 		/* don't do the read, it's not guaranteed to return an EOF,
| 		 * just force an EOF
| 		 */
| 		YY_CURRENT_BUFFER_LVALUE->yy_n_chars = (yy_n_chars) = 0;
| 
| 	else
| 		{
| 			int num_to_read =
| 			YY_CURRENT_BUFFER_LVALUE->yy_buf_size - number_to_move - 1;
| 
| 		while ( num_to_read <= 0 )
| 			{ /* Not enough room in the buffer - grow it. */
| 
| 			YY_FATAL_ERROR(
| "input buffer overflow, can't enlarge buffer because scanner uses REJECT" );
| 
| 			}
| 
| 		if ( num_to_read > YY_READ_BUF_SIZE )
| 			num_to_read = YY_READ_BUF_SIZE;
| 
| 		/* Read in more data. */
| 		YY_INPUT( (&YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[number_to_move]),
| 			(yy_n_chars), (size_t) num_to_read );
| 
| 		YY_CURRENT_BUFFER_LVALUE->yy_n_chars = (yy_n_chars);
| 		}
| 
| 	if ( (yy_n_chars) == 0 )
| 		{
| 		if ( number_to_move == YY_MORE_ADJ )
| 			{
| 			ret_val = EOB_ACT_END_OF_FILE;
| 			yyrestart(yyin  );
| 			}
| 
| 		else
| 			{
| 			ret_val = EOB_ACT_LAST_MATCH;
| 			YY_CURRENT_BUFFER_LVALUE->yy_buffer_status =
| 				YY_BUFFER_EOF_PENDING;
| 			}
| 		}
| 
| 	else
| 		ret_val = EOB_ACT_CONTINUE_SCAN;
| 
| 	if ((yy_size_t) ((yy_n_chars) + number_to_move) > YY_CURRENT_BUFFER_LVALUE->yy_buf_size) {
| 		/* Extend the array by 50%, plus the number we really need. */
| 		yy_size_t new_size = (yy_n_chars) + number_to_move + ((yy_n_chars) >> 1);
| 		YY_CURRENT_BUFFER_LVALUE->yy_ch_buf = (char *) yyrealloc((void *) YY_CURRENT_BUFFER_LVALUE->yy_ch_buf,new_size  );
| 		if ( ! YY_CURRENT_BUFFER_LVALUE->yy_ch_buf )
| 			YY_FATAL_ERROR( "out of dynamic memory in yy_get_next_buffer()" );
| 	}
| 
| 	(yy_n_chars) += number_to_move;
| 	YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[(yy_n_chars)] = YY_END_OF_BUFFER_CHAR;
| 	YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[(yy_n_chars) + 1] = YY_END_OF_BUFFER_CHAR;
| 
| 	(yytext_ptr) = &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[0];
| 
| 	return ret_val;
| }
| 
| /* yy_get_previous_state - get the state just before the EOB char was reached */
| 
|     static yy_state_type yy_get_previous_state (void)
| {
| 	register yy_state_type yy_current_state;
| 	register char *yy_cp;
|     
| 	yy_current_state = (yy_start);
| 
| 	(yy_state_ptr) = (yy_state_buf);
| 	*(yy_state_ptr)++ = yy_current_state;
| 
| 	for ( yy_cp = (yytext_ptr) + YY_MORE_ADJ; yy_cp < (yy_c_buf_p); ++yy_cp )
| 		{
| 		register YY_CHAR yy_c = (*yy_cp ? yy_ec[YY_SC_TO_UI(*yy_cp)] : 1);
| 		while ( yy_chk[yy_base[yy_current_state] + yy_c] != yy_current_state )
| 			{
| 			yy_current_state = (int) yy_def[yy_current_state];
| 			if ( yy_current_state >= 13 )
| 				yy_c = yy_meta[(unsigned int) yy_c];
| 			}
| 		yy_current_state = yy_nxt[yy_base[yy_current_state] + (unsigned int) yy_c];
| 		*(yy_state_ptr)++ = yy_current_state;
| 		}
| 
| 	return yy_current_state;
| }
| 
| /* yy_try_NUL_trans - try to make a transition on the NUL character
|  *
|  * synopsis
|  *	next_state = yy_try_NUL_trans( current_state );
|  */
|     static yy_state_type yy_try_NUL_trans  (yy_state_type yy_current_state )
| {
| 	register int yy_is_jam;
|     
| 	register YY_CHAR yy_c = 1;
| 	while ( yy_chk[yy_base[yy_current_state] + yy_c] != yy_current_state )
| 		{
| 		yy_current_state = (int) yy_def[yy_current_state];
| 		if ( yy_current_state >= 13 )
| 			yy_c = yy_meta[(unsigned int) yy_c];
| 		}
| 	yy_current_state = yy_nxt[yy_base[yy_current_state] + (unsigned int) yy_c];
| 	yy_is_jam = (yy_current_state == 12);
| 	if ( ! yy_is_jam )
| 		*(yy_state_ptr)++ = yy_current_state;
| 
| 	return yy_is_jam ? 0 : yy_current_state;
| }
| 
|     static void yyunput (int c, register char * yy_bp )
| {
| 	register char *yy_cp;
|     
|     yy_cp = (yy_c_buf_p);
| 
| 	/* undo effects of setting up yytext */
| 	*yy_cp = (yy_hold_char);
| 
| 	if ( yy_cp < YY_CURRENT_BUFFER_LVALUE->yy_ch_buf + 2 )
| 		{ /* need to shift things up to make room */
| 		/* +2 for EOB chars. */
| 		register int number_to_move = (yy_n_chars) + 2;
| 		register char *dest = &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[
| 					YY_CURRENT_BUFFER_LVALUE->yy_buf_size + 2];
| 		register char *source =
| 				&YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[number_to_move];
| 
| 		while ( source > YY_CURRENT_BUFFER_LVALUE->yy_ch_buf )
| 			*--dest = *--source;
| 
| 		yy_cp += (int) (dest - source);
| 		yy_bp += (int) (dest - source);
| 		YY_CURRENT_BUFFER_LVALUE->yy_n_chars =
| 			(yy_n_chars) = YY_CURRENT_BUFFER_LVALUE->yy_buf_size;
| 
| 		if ( yy_cp < YY_CURRENT_BUFFER_LVALUE->yy_ch_buf + 2 )
| 			YY_FATAL_ERROR( "flex scanner push-back overflow" );
| 		}
| 
| 	*--yy_cp = (char) c;
| 
| 	(yytext_ptr) = yy_bp;
| 	(yy_hold_char) = *yy_cp;
| 	(yy_c_buf_p) = yy_cp;
| }
| 
| #ifndef YY_NO_INPUT
| #ifdef __cplusplus
|     static int yyinput (void)
| #else
|     static int input  (void)
| #endif
| 
| {
| 	int c;
|     
| 	*(yy_c_buf_p) = (yy_hold_char);
| 
| 	if ( *(yy_c_buf_p) == YY_END_OF_BUFFER_CHAR )
| 		{
| 		/* yy_c_buf_p now points to the character we want to return.
| 		 * If this occurs *before* the EOB characters, then it's a
| 		 * valid NUL; if not, then we've hit the end of the buffer.
| 		 */
| 		if ( (yy_c_buf_p) < &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[(yy_n_chars)] )
| 			/* This was really a NUL. */
| 			*(yy_c_buf_p) = '\0';
| 
| 		else
| 			{ /* need more input */
| 			int offset = (yy_c_buf_p) - (yytext_ptr);
| 			++(yy_c_buf_p);
| 
| 			switch ( yy_get_next_buffer(  ) )
| 				{
| 				case EOB_ACT_LAST_MATCH:
| 					/* This happens because yy_g_n_b()
| 					 * sees that we've accumulated a
| 					 * token and flags that we need to
| 					 * try matching the token before
| 					 * proceeding.  But for input(),
| 					 * there's no matching to consider.
| 					 * So convert the EOB_ACT_LAST_MATCH
| 					 * to EOB_ACT_END_OF_FILE.
| 					 */
| 
| 					/* Reset buffer status. */
| 					yyrestart(yyin );
| 
| 					/*FALLTHROUGH*/
| 
| 				case EOB_ACT_END_OF_FILE:
| 					{
| 					if ( yywrap( ) )
| 						return EOF;
| 
| 					if ( ! (yy_did_buffer_switch_on_eof) )
| 						YY_NEW_FILE;
| #ifdef __cplusplus
| 					return yyinput();
| #else
| 					return input();
| #endif
| 					}
| 
| 				case EOB_ACT_CONTINUE_SCAN:
| 					(yy_c_buf_p) = (yytext_ptr) + offset;
| 					break;
| 				}
| 			}
| 		}
| 
| 	c = *(unsigned char *) (yy_c_buf_p);	/* cast for 8-bit char's */
| 	*(yy_c_buf_p) = '\0';	/* preserve yytext */
| 	(yy_hold_char) = *++(yy_c_buf_p);
| 
| 	return c;
| }
| #endif	/* ifndef YY_NO_INPUT */
| 
| /** Immediately switch to a different input stream.
|  * @param input_file A readable stream.
|  * 
|  * @note This function does not reset the start condition to @c INITIAL .
|  */
|     void yyrestart  (FILE * input_file )
| {
|     
| 	if ( ! YY_CURRENT_BUFFER ){
|         yyensure_buffer_stack ();
| 		YY_CURRENT_BUFFER_LVALUE =
|             yy_create_buffer(yyin,YY_BUF_SIZE );
| 	}
| 
| 	yy_init_buffer(YY_CURRENT_BUFFER,input_file );
| 	yy_load_buffer_state( );
| }
| 
| /** Switch to a different input buffer.
|  * @param new_buffer The new input buffer.
|  * 
|  */
|     void yy_switch_to_buffer  (YY_BUFFER_STATE  new_buffer )
| {
|     
| 	/* TODO. We should be able to replace this entire function body
| 	 * with
| 	 *		yypop_buffer_state();
| 	 *		yypush_buffer_state(new_buffer);
|      */
| 	yyensure_buffer_stack ();
| 	if ( YY_CURRENT_BUFFER == new_buffer )
| 		return;
| 
| 	if ( YY_CURRENT_BUFFER )
| 		{
| 		/* Flush out information for old buffer. */
| 		*(yy_c_buf_p) = (yy_hold_char);
| 		YY_CURRENT_BUFFER_LVALUE->yy_buf_pos = (yy_c_buf_p);
| 		YY_CURRENT_BUFFER_LVALUE->yy_n_chars = (yy_n_chars);
| 		}
| 
| 	YY_CURRENT_BUFFER_LVALUE = new_buffer;
| 	yy_load_buffer_state( );
| 
| 	/* We don't actually know whether we did this switch during
| 	 * EOF (yywrap()) processing, but the only time this flag
| 	 * is looked at is after yywrap() is called, so it's safe
| 	 * to go ahead and always set it.
| 	 */
| 	(yy_did_buffer_switch_on_eof) = 1;
| }
| 
| static void yy_load_buffer_state  (void)
| {
|     	(yy_n_chars) = YY_CURRENT_BUFFER_LVALUE->yy_n_chars;
| 	(yytext_ptr) = (yy_c_buf_p) = YY_CURRENT_BUFFER_LVALUE->yy_buf_pos;
| 	yyin = YY_CURRENT_BUFFER_LVALUE->yy_input_file;
| 	(yy_hold_char) = *(yy_c_buf_p);
| }
| 
| /** Allocate and initialize an input buffer state.
|  * @param file A readable stream.
|  * @param size The character buffer size in bytes. When in doubt, use @c YY_BUF_SIZE.
|  * 
|  * @return the allocated buffer state.
|  */
|     YY_BUFFER_STATE yy_create_buffer  (FILE * file, int  size )
| {
| 	YY_BUFFER_STATE b;
|     
| 	b = (YY_BUFFER_STATE) yyalloc(sizeof( struct yy_buffer_state )  );
| 	if ( ! b )
| 		YY_FATAL_ERROR( "out of dynamic memory in yy_create_buffer()" );
| 
| 	b->yy_buf_size = size;
| 
| 	/* yy_ch_buf has to be 2 characters longer than the size given because
| 	 * we need to put in 2 end-of-buffer characters.
| 	 */
| 	b->yy_ch_buf = (char *) yyalloc(b->yy_buf_size + 2  );
| 	if ( ! b->yy_ch_buf )
| 		YY_FATAL_ERROR( "out of dynamic memory in yy_create_buffer()" );
| 
| 	b->yy_is_our_buffer = 1;
| 
| 	yy_init_buffer(b,file );
| 
| 	return b;
| }
| 
| /** Destroy the buffer.
|  * @param b a buffer created with yy_create_buffer()
|  * 
|  */
|     void yy_delete_buffer (YY_BUFFER_STATE  b )
| {
|     
| 	if ( ! b )
| 		return;
| 
| 	if ( b == YY_CURRENT_BUFFER ) /* Not sure if we should pop here. */
| 		YY_CURRENT_BUFFER_LVALUE = (YY_BUFFER_STATE) 0;
| 
| 	if ( b->yy_is_our_buffer )
| 		yyfree((void *) b->yy_ch_buf  );
| 
| 	yyfree((void *) b  );
| }
| 
| #ifndef __cplusplus
| extern int isatty (int );
| #endif /* __cplusplus */
|     
| /* Initializes or reinitializes a buffer.
|  * This function is sometimes called more than once on the same buffer,
|  * such as during a yyrestart() or at EOF.
|  */
|     static void yy_init_buffer  (YY_BUFFER_STATE  b, FILE * file )
| 
| {
| 	int oerrno = errno;
|     
| 	yy_flush_buffer(b );
| 
| 	b->yy_input_file = file;
| 	b->yy_fill_buffer = 1;
| 
|     /* If b is the current buffer, then yy_init_buffer was _probably_
|      * called from yyrestart() or through yy_get_next_buffer.
|      * In that case, we don't want to reset the lineno or column.
|      */
|     if (b != YY_CURRENT_BUFFER){
|         b->yy_bs_lineno = 1;
|         b->yy_bs_column = 0;
|     }
| 
|         b->yy_is_interactive = file ? (isatty( fileno(file) ) > 0) : 0;
|     
| 	errno = oerrno;
| }
| 
| /** Discard all buffered characters. On the next scan, YY_INPUT will be called.
|  * @param b the buffer state to be flushed, usually @c YY_CURRENT_BUFFER.
|  * 
|  */
|     void yy_flush_buffer (YY_BUFFER_STATE  b )
| {
|     	if ( ! b )
| 		return;
| 
| 	b->yy_n_chars = 0;
| 
| 	/* We always need two end-of-buffer characters.  The first causes
| 	 * a transition to the end-of-buffer state.  The second causes
| 	 * a jam in that state.
| 	 */
| 	b->yy_ch_buf[0] = YY_END_OF_BUFFER_CHAR;
| 	b->yy_ch_buf[1] = YY_END_OF_BUFFER_CHAR;
| 
| 	b->yy_buf_pos = &b->yy_ch_buf[0];
| 
| 	b->yy_at_bol = 1;
| 	b->yy_buffer_status = YY_BUFFER_NEW;
| 
| 	if ( b == YY_CURRENT_BUFFER )
| 		yy_load_buffer_state( );
| }
| 
| /** Pushes the new state onto the stack. The new state becomes
|  *  the current state. This function will allocate the stack
|  *  if necessary.
|  *  @param new_buffer The new state.
|  *  
|  */
| void yypush_buffer_state (YY_BUFFER_STATE new_buffer )
| {
|     	if (new_buffer == NULL)
| 		return;
| 
| 	yyensure_buffer_stack();
| 
| 	/* This block is copied from yy_switch_to_buffer. */
| 	if ( YY_CURRENT_BUFFER )
| 		{
| 		/* Flush out information for old buffer. */
| 		*(yy_c_buf_p) = (yy_hold_char);
| 		YY_CURRENT_BUFFER_LVALUE->yy_buf_pos = (yy_c_buf_p);
| 		YY_CURRENT_BUFFER_LVALUE->yy_n_chars = (yy_n_chars);
| 		}
| 
| 	/* Only push if top exists. Otherwise, replace top. */
| 	if (YY_CURRENT_BUFFER)
| 		(yy_buffer_stack_top)++;
| 	YY_CURRENT_BUFFER_LVALUE = new_buffer;
| 
| 	/* copied from yy_switch_to_buffer. */
| 	yy_load_buffer_state( );
| 	(yy_did_buffer_switch_on_eof) = 1;
| }
| 
| /** Removes and deletes the top of the stack, if present.
|  *  The next element becomes the new top.
|  *  
|  */
| void yypop_buffer_state (void)
| {
|     	if (!YY_CURRENT_BUFFER)
| 		return;
| 
| 	yy_delete_buffer(YY_CURRENT_BUFFER );
| 	YY_CURRENT_BUFFER_LVALUE = NULL;
| 	if ((yy_buffer_stack_top) > 0)
| 		--(yy_buffer_stack_top);
| 
| 	if (YY_CURRENT_BUFFER) {
| 		yy_load_buffer_state( );
| 		(yy_did_buffer_switch_on_eof) = 1;
| 	}
| }
| 
| /* Allocates the stack if it does not exist.
|  *  Guarantees space for at least one push.
|  */
| static void yyensure_buffer_stack (void)
| {
| 	int num_to_alloc;
|     
| 	if (!(yy_buffer_stack)) {
| 
| 		/* First allocation is just for 2 elements, since we don't know if this
| 		 * scanner will even need a stack. We use 2 instead of 1 to avoid an
| 		 * immediate realloc on the next call.
|          */
| 		num_to_alloc = 1;
| 		(yy_buffer_stack) = (struct yy_buffer_state**)yyalloc
| 								(num_to_alloc * sizeof(struct yy_buffer_state*)
| 								);
| 		if ( ! (yy_buffer_stack) )
| 			YY_FATAL_ERROR( "out of dynamic memory in yyensure_buffer_stack()" );
| 								  
| 		memset((yy_buffer_stack), 0, num_to_alloc * sizeof(struct yy_buffer_state*));
| 				
| 		(yy_buffer_stack_max) = num_to_alloc;
| 		(yy_buffer_stack_top) = 0;
| 		return;
| 	}
| 
| 	if ((yy_buffer_stack_top) >= ((yy_buffer_stack_max)) - 1){
| 
| 		/* Increase the buffer to prepare for a possible push. */
| 		int grow_size = 8 /* arbitrary grow size */;
| 
| 		num_to_alloc = (yy_buffer_stack_max) + grow_size;
| 		(yy_buffer_stack) = (struct yy_buffer_state**)yyrealloc
| 								((yy_buffer_stack),
| 								num_to_alloc * sizeof(struct yy_buffer_state*)
| 								);
| 		if ( ! (yy_buffer_stack) )
| 			YY_FATAL_ERROR( "out of dynamic memory in yyensure_buffer_stack()" );
| 
| 		/* zero only the new slots.*/
| 		memset((yy_buffer_stack) + (yy_buffer_stack_max), 0, grow_size * sizeof(struct yy_buffer_state*));
| 		(yy_buffer_stack_max) = num_to_alloc;
| 	}
| }
| 
| /** Setup the input buffer state to scan directly from a user-specified character buffer.
|  * @param base the character buffer
|  * @param size the size in bytes of the character buffer
|  * 
|  * @return the newly allocated buffer state object. 
|  */
| YY_BUFFER_STATE yy_scan_buffer  (char * base, yy_size_t  size )
| {
| 	YY_BUFFER_STATE b;
|     
| 	if ( size < 2 ||
| 	     base[size-2] != YY_END_OF_BUFFER_CHAR ||
| 	     base[size-1] != YY_END_OF_BUFFER_CHAR )
| 		/* They forgot to leave room for the EOB's. */
| 		return 0;
| 
| 	b = (YY_BUFFER_STATE) yyalloc(sizeof( struct yy_buffer_state )  );
| 	if ( ! b )
| 		YY_FATAL_ERROR( "out of dynamic memory in yy_scan_buffer()" );
| 
| 	b->yy_buf_size = size - 2;	/* "- 2" to take care of EOB's */
| 	b->yy_buf_pos = b->yy_ch_buf = base;
| 	b->yy_is_our_buffer = 0;
| 	b->yy_input_file = 0;
| 	b->yy_n_chars = b->yy_buf_size;
| 	b->yy_is_interactive = 0;
| 	b->yy_at_bol = 1;
| 	b->yy_fill_buffer = 0;
| 	b->yy_buffer_status = YY_BUFFER_NEW;
| 
| 	yy_switch_to_buffer(b  );
| 
| 	return b;
| }
| 
| /** Setup the input buffer state to scan a string. The next call to yylex() will
|  * scan from a @e copy of @a str.
|  * @param yystr a NUL-terminated string to scan
|  * 
|  * @return the newly allocated buffer state object.
|  * @note If you want to scan bytes that may contain NUL values, then use
|  *       yy_scan_bytes() instead.
|  */
| YY_BUFFER_STATE yy_scan_string (yyconst char * yystr )
| {
|     
| 	return yy_scan_bytes(yystr,strlen(yystr) );
| }
| 
| /** Setup the input buffer state to scan the given bytes. The next call to yylex() will
|  * scan from a @e copy of @a bytes.
|  * @param bytes the byte buffer to scan
|  * @param len the number of bytes in the buffer pointed to by @a bytes.
|  * 
|  * @return the newly allocated buffer state object.
|  */
| YY_BUFFER_STATE yy_scan_bytes  (yyconst char * yybytes, int  _yybytes_len )
| {
| 	YY_BUFFER_STATE b;
| 	char *buf;
| 	yy_size_t n;
| 	int i;
|     
| 	/* Get memory for full buffer, including space for trailing EOB's. */
| 	n = _yybytes_len + 2;
| 	buf = (char *) yyalloc(n  );
| 	if ( ! buf )
| 		YY_FATAL_ERROR( "out of dynamic memory in yy_scan_bytes()" );
| 
| 	for ( i = 0; i < _yybytes_len; ++i )
| 		buf[i] = yybytes[i];
| 
| 	buf[_yybytes_len] = buf[_yybytes_len+1] = YY_END_OF_BUFFER_CHAR;
| 
| 	b = yy_scan_buffer(buf,n );
| 	if ( ! b )
| 		YY_FATAL_ERROR( "bad buffer in yy_scan_bytes()" );
| 
| 	/* It's okay to grow etc. this buffer, and we should throw it
| 	 * away when we're done.
| 	 */
| 	b->yy_is_our_buffer = 1;
| 
| 	return b;
| }
| 
| #ifndef YY_EXIT_FAILURE
| #define YY_EXIT_FAILURE 2
| #endif
| 
| static void yy_fatal_error (yyconst char* msg )
| {
|     	(void) fprintf( stderr, "%s\n", msg );
| 	exit( YY_EXIT_FAILURE );
| }
| 
| /* Redefine yyless() so it works in section 3 code. */
| 
| #undef yyless
| #define yyless(n) \
| 	do \
| 		{ \
| 		/* Undo effects of setting up yytext. */ \
|         int yyless_macro_arg = (n); \
|         YY_LESS_LINENO(yyless_macro_arg);\
| 		yytext[yyleng] = (yy_hold_char); \
| 		(yy_c_buf_p) = yytext + yyless_macro_arg; \
| 		(yy_hold_char) = *(yy_c_buf_p); \
| 		*(yy_c_buf_p) = '\0'; \
| 		yyleng = yyless_macro_arg; \
| 		} \
| 	while ( 0 )
| 
| /* Accessor  methods (get/set functions) to struct members. */
| 
| /** Get the current line number.
|  * 
|  */
| int yyget_lineno  (void)
| {
|         
|     return yylineno;
| }
| 
| /** Get the input stream.
|  * 
|  */
| FILE *yyget_in  (void)
| {
|         return yyin;
| }
| 
| /** Get the output stream.
|  * 
|  */
| FILE *yyget_out  (void)
| {
|         return yyout;
| }
| 
| /** Get the length of the current token.
|  * 
|  */
| int yyget_leng  (void)
| {
|         return yyleng;
| }
| 
| /** Get the current token.
|  * 
|  */
| 
| char *yyget_text  (void)
| {
|         return yytext;
| }
| 
| /** Set the current line number.
|  * @param line_number
|  * 
|  */
| void yyset_lineno (int  line_number )
| {
|     
|     yylineno = line_number;
| }
| 
| /** Set the input stream. This does not discard the current
|  * input buffer.
|  * @param in_str A readable stream.
|  * 
|  * @see yy_switch_to_buffer
|  */
| void yyset_in (FILE *  in_str )
| {
|         yyin = in_str ;
| }
| 
| void yyset_out (FILE *  out_str )
| {
|         yyout = out_str ;
| }
| 
| int yyget_debug  (void)
| {
|         return yy_flex_debug;
| }
| 
| void yyset_debug (int  bdebug )
| {
|         yy_flex_debug = bdebug ;
| }
| 
| static int yy_init_globals (void)
| {
|         /* Initialization is the same as for the non-reentrant scanner.
|      * This function is called from yylex_destroy(), so don't allocate here.
|      */
| 
|     (yy_buffer_stack) = 0;
|     (yy_buffer_stack_top) = 0;
|     (yy_buffer_stack_max) = 0;
|     (yy_c_buf_p) = (char *) 0;
|     (yy_init) = 0;
|     (yy_start) = 0;
| 
|     (yy_state_buf) = 0;
|     (yy_state_ptr) = 0;
|     (yy_full_match) = 0;
|     (yy_lp) = 0;
| 
| /* Defined in main.c */
| #ifdef YY_STDINIT
|     yyin = stdin;
|     yyout = stdout;
| #else
|     yyin = (FILE *) 0;
|     yyout = (FILE *) 0;
| #endif
| 
|     /* For future reference: Set errno on error, since we are called by
|      * yylex_init()
|      */
|     return 0;
| }
| 
| /* yylex_destroy is for both reentrant and non-reentrant scanners. */
| int yylex_destroy  (void)
| {
|     
|     /* Pop the buffer stack, destroying each element. */
| 	while(YY_CURRENT_BUFFER){
| 		yy_delete_buffer(YY_CURRENT_BUFFER  );
| 		YY_CURRENT_BUFFER_LVALUE = NULL;
| 		yypop_buffer_state();
| 	}
| 
| 	/* Destroy the stack itself. */
| 	yyfree((yy_buffer_stack) );
| 	(yy_buffer_stack) = NULL;
| 
|     yyfree ( (yy_state_buf) );
|     (yy_state_buf)  = NULL;
| 
|     /* Reset the globals. This is important in a non-reentrant scanner so the next time
|      * yylex() is called, initialization will occur. */
|     yy_init_globals( );
| 
|     return 0;
| }
| 
| /*
|  * Internal utility routines.
|  */
| 
| #ifndef yytext_ptr
| static void yy_flex_strncpy (char* s1, yyconst char * s2, int n )
| {
| 	register int i;
| 	for ( i = 0; i < n; ++i )
| 		s1[i] = s2[i];
| }
| #endif
| 
| #ifdef YY_NEED_STRLEN
| static int yy_flex_strlen (yyconst char * s )
| {
| 	register int n;
| 	for ( n = 0; s[n]; ++n )
| 		;
| 
| 	return n;
| }
| #endif
| 
| void *yyalloc (yy_size_t  size )
| {
| 	return (void *) malloc( size );
| }
| 
| void *yyrealloc  (void * ptr, yy_size_t  size )
| {
| 	/* The cast to (char *) in the following accommodates both
| 	 * implementations that use char* generic pointers, and those
| 	 * that use void* generic pointers.  It works with the latter
| 	 * because both ANSI C and C++ allow castless assignment from
| 	 * any pointer type to void*, and deal with argument conversions
| 	 * as though doing an assignment.
| 	 */
| 	return (void *) realloc( (char *) ptr, size );
| }
| 
| void yyfree (void * ptr )
| {
| 	free( (char *) ptr );	/* see yyrealloc() for (char *) cast */
| }
| 
| #define YYTABLES_NAME "yytables"
| 
| #line 9 "conftest.l"
| 
| 
| #ifdef YYTEXT_POINTER
| extern char *yytext;
| #endif
| int
| main (void)
| {
|   return ! yylex () + ! yywrap ();
| }
configure:13966: i586-poky-linux-gcc -march=i586 --sysroot=/home/kyu3/sdb/test/tmp/sysroots/qemux86 -std=gnu99 -o conftest -O2 -pipe -g -feliminate-unused-debug-types  -Wl,-O1  -Wl,--as-needed conftest.c -lfl  >&5
configure:13966: $? = 0
configure:13976: result: -lfl
configure:13982: checking whether yytext is a pointer
configure:13998: i586-poky-linux-gcc -march=i586 --sysroot=/home/kyu3/sdb/test/tmp/sysroots/qemux86 -std=gnu99 -o conftest -O2 -pipe -g -feliminate-unused-debug-types  -Wl,-O1  -Wl,--as-needed conftest.c -lfl  >&5
configure:13998: $? = 0
configure:14006: result: yes
configure:14020: checking for bison
configure:14036: found /home/kyu3/sdb/test/tmp/sysroots/x86_64-linux/usr/bin/bison
configure:14047: result: bison -y
configure:14066: checking for special C compiler options needed for large files
configure:14111: result: no
configure:14117: checking for _FILE_OFFSET_BITS value needed for large files
configure:14142: i586-poky-linux-gcc -march=i586 --sysroot=/home/kyu3/sdb/test/tmp/sysroots/qemux86 -std=gnu99 -c -O2 -pipe -g -feliminate-unused-debug-types  conftest.c >&5
conftest.c:33:3: warning: left shift count >= width of type [enabled by default]
conftest.c:33:3: warning: left shift count >= width of type [enabled by default]
conftest.c:34:10: warning: left shift count >= width of type [enabled by default]
conftest.c:34:10: warning: left shift count >= width of type [enabled by default]
conftest.c:33:7: error: size of array 'off_t_is_large' is negative
conftest.c:35:9: warning: variably modified 'off_t_is_large' at file scope [enabled by default]
configure:14142: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "xorg-server"
| #define PACKAGE_TARNAME "xorg-server"
| #define PACKAGE_VERSION "1.10.1"
| #define PACKAGE_STRING "xorg-server 1.10.1"
| #define PACKAGE_BUGREPORT "https://bugs.freedesktop.org/enter_bug.cgi?product=xorg"
| #define PACKAGE_URL ""
| #define PACKAGE "xorg-server"
| #define VERSION "1.10.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 PACKAGE_VERSION_MAJOR 1
| #define PACKAGE_VERSION_MINOR 10
| #define PACKAGE_VERSION_PATCHLEVEL 1
| #define HAVE_DLFCN_H 1
| #define LT_OBJDIR ".libs/"
| #define YYTEXT_POINTER 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:14166: i586-poky-linux-gcc -march=i586 --sysroot=/home/kyu3/sdb/test/tmp/sysroots/qemux86 -std=gnu99 -c -O2 -pipe -g -feliminate-unused-debug-types  conftest.c >&5
configure:14166: $? = 0
configure:14174: result: 64
configure:14263: checking for cpp
configure:14282: found /usr/bin/cpp
configure:14294: result: /usr/bin/cpp
configure:14310: checking if /usr/bin/cpp requires -undef
configure:14322: result: yes
configure:14335: checking if /usr/bin/cpp requires -traditional
configure:14347: result: yes
configure:14372: checking for dtrace
configure:14404: result: not_found
configure:14470: checking for dirent.h that defines DIR
configure:14489: i586-poky-linux-gcc -march=i586 --sysroot=/home/kyu3/sdb/test/tmp/sysroots/qemux86 -std=gnu99 -c -O2 -pipe -g -feliminate-unused-debug-types  conftest.c >&5
configure:14489: $? = 0
configure:14497: result: yes
configure:14511: checking for library containing opendir
configure:14542: i586-poky-linux-gcc -march=i586 --sysroot=/home/kyu3/sdb/test/tmp/sysroots/qemux86 -std=gnu99 -o conftest -O2 -pipe -g -feliminate-unused-debug-types  -Wl,-O1  -Wl,--as-needed conftest.c  >&5
configure:14542: $? = 0
configure:14559: result: none required
configure:14626: checking for ANSI C header files
configure:14730: result: yes
configure:14741: checking for fcntl.h
configure:14741: result: yes
configure:14741: checking for stdlib.h
configure:14741: result: yes
configure:14741: checking for string.h
configure:14741: result: yes
configure:14741: checking for unistd.h
configure:14741: result: yes
configure:14741: checking for dlfcn.h
configure:14741: result: yes
configure:14741: checking for stropts.h
configure:14741: result: yes
configure:14741: checking fnmatch.h usability
configure:14741: i586-poky-linux-gcc -march=i586 --sysroot=/home/kyu3/sdb/test/tmp/sysroots/qemux86 -std=gnu99 -c -O2 -pipe -g -feliminate-unused-debug-types  conftest.c >&5
configure:14741: $? = 0
configure:14741: result: yes
configure:14741: checking fnmatch.h presence
configure:14741: i586-poky-linux-gcc -E --sysroot=/home/kyu3/sdb/test/tmp/sysroots/qemux86  conftest.c
configure:14741: $? = 0
configure:14741: result: yes
configure:14741: checking for fnmatch.h
configure:14741: result: yes
configure:14741: checking for sys/utsname.h
configure:14741: result: yes
configure:14753: checking for an ANSI C-conforming const
configure:14818: i586-poky-linux-gcc -march=i586 --sysroot=/home/kyu3/sdb/test/tmp/sysroots/qemux86 -std=gnu99 -c -O2 -pipe -g -feliminate-unused-debug-types  conftest.c >&5
configure:14818: $? = 0
configure:14825: result: yes
configure:14833: checking whether byte ordering is bigendian
configure:15039: result: no
configure:15061: checking size of unsigned long
configure:15081: result: 4
configure:15097: checking for pid_t
configure:15097: i586-poky-linux-gcc -march=i586 --sysroot=/home/kyu3/sdb/test/tmp/sysroots/qemux86 -std=gnu99 -c -O2 -pipe -g -feliminate-unused-debug-types  conftest.c >&5
configure:15097: $? = 0
configure:15097: i586-poky-linux-gcc -march=i586 --sysroot=/home/kyu3/sdb/test/tmp/sysroots/qemux86 -std=gnu99 -c -O2 -pipe -g -feliminate-unused-debug-types  conftest.c >&5
conftest.c: In function 'main':
conftest.c:75:20: error: expected expression before ')' token
configure:15097: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "xorg-server"
| #define PACKAGE_TARNAME "xorg-server"
| #define PACKAGE_VERSION "1.10.1"
| #define PACKAGE_STRING "xorg-server 1.10.1"
| #define PACKAGE_BUGREPORT "https://bugs.freedesktop.org/enter_bug.cgi?product=xorg"
| #define PACKAGE_URL ""
| #define PACKAGE "xorg-server"
| #define VERSION "1.10.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 PACKAGE_VERSION_MAJOR 1
| #define PACKAGE_VERSION_MINOR 10
| #define PACKAGE_VERSION_PATCHLEVEL 1
| #define HAVE_DLFCN_H 1
| #define LT_OBJDIR ".libs/"
| #define YYTEXT_POINTER 1
| #define _FILE_OFFSET_BITS 64
| #define HAVE_DIRENT_H 1
| #define STDC_HEADERS 1
| #define HAVE_FCNTL_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_DLFCN_H 1
| #define HAVE_STROPTS_H 1
| #define HAVE_FNMATCH_H 1
| #define HAVE_SYS_UTSNAME_H 1
| #define SIZEOF_UNSIGNED_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 ()
| {
| if (sizeof ((pid_t)))
| 	    return 0;
|   ;
|   return 0;
| }
configure:15097: result: yes
configure:15119: checking for byteswap.h
configure:15119: result: yes
configure:15131: checking sys/endian.h usability
configure:15131: i586-poky-linux-gcc -march=i586 --sysroot=/home/kyu3/sdb/test/tmp/sysroots/qemux86 -std=gnu99 -c -O2 -pipe -g -feliminate-unused-debug-types  conftest.c >&5
conftest.c:73:24: fatal error: sys/endian.h: No such file or directory
compilation terminated.
configure:15131: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "xorg-server"
| #define PACKAGE_TARNAME "xorg-server"
| #define PACKAGE_VERSION "1.10.1"
| #define PACKAGE_STRING "xorg-server 1.10.1"
| #define PACKAGE_BUGREPORT "https://bugs.freedesktop.org/enter_bug.cgi?product=xorg"
| #define PACKAGE_URL ""
| #define PACKAGE "xorg-server"
| #define VERSION "1.10.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 PACKAGE_VERSION_MAJOR 1
| #define PACKAGE_VERSION_MINOR 10
| #define PACKAGE_VERSION_PATCHLEVEL 1
| #define HAVE_DLFCN_H 1
| #define LT_OBJDIR ".libs/"
| #define YYTEXT_POINTER 1
| #define _FILE_OFFSET_BITS 64
| #define HAVE_DIRENT_H 1
| #define STDC_HEADERS 1
| #define HAVE_FCNTL_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_DLFCN_H 1
| #define HAVE_STROPTS_H 1
| #define HAVE_FNMATCH_H 1
| #define HAVE_SYS_UTSNAME_H 1
| #define SIZEOF_UNSIGNED_LONG 4
| #define HAVE_BYTESWAP_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/endian.h>
configure:15131: result: no
configure:15131: checking sys/endian.h presence
configure:15131: i586-poky-linux-gcc -E --sysroot=/home/kyu3/sdb/test/tmp/sysroots/qemux86  conftest.c
conftest.c:40:24: fatal error: sys/endian.h: No such file or directory
compilation terminated.
configure:15131: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "xorg-server"
| #define PACKAGE_TARNAME "xorg-server"
| #define PACKAGE_VERSION "1.10.1"
| #define PACKAGE_STRING "xorg-server 1.10.1"
| #define PACKAGE_BUGREPORT "https://bugs.freedesktop.org/enter_bug.cgi?product=xorg"
| #define PACKAGE_URL ""
| #define PACKAGE "xorg-server"
| #define VERSION "1.10.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 PACKAGE_VERSION_MAJOR 1
| #define PACKAGE_VERSION_MINOR 10
| #define PACKAGE_VERSION_PATCHLEVEL 1
| #define HAVE_DLFCN_H 1
| #define LT_OBJDIR ".libs/"
| #define YYTEXT_POINTER 1
| #define _FILE_OFFSET_BITS 64
| #define HAVE_DIRENT_H 1
| #define STDC_HEADERS 1
| #define HAVE_FCNTL_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_DLFCN_H 1
| #define HAVE_STROPTS_H 1
| #define HAVE_FNMATCH_H 1
| #define HAVE_SYS_UTSNAME_H 1
| #define SIZEOF_UNSIGNED_LONG 4
| #define HAVE_BYTESWAP_H 1
| /* end confdefs.h.  */
| #include <sys/endian.h>
configure:15131: result: no
configure:15131: checking for sys/endian.h
configure:15131: result: no
configure:15235: checking for dlopen
configure:15235: i586-poky-linux-gcc -march=i586 --sysroot=/home/kyu3/sdb/test/tmp/sysroots/qemux86 -std=gnu99 -o conftest -O2 -pipe -g -feliminate-unused-debug-types  -Wl,-O1  -Wl,--as-needed conftest.c  >&5
/tmp/ccaQGSPX.o: In function `main':
/home/kyu3/sdb/test/tmp/work/i586-poky-linux/xserver-xf86-lite-1.10.1-r0/xorg-server-1.10.1/conftest.c:74: undefined reference to `dlopen'
collect2: ld returned 1 exit status
configure:15235: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "xorg-server"
| #define PACKAGE_TARNAME "xorg-server"
| #define PACKAGE_VERSION "1.10.1"
| #define PACKAGE_STRING "xorg-server 1.10.1"
| #define PACKAGE_BUGREPORT "https://bugs.freedesktop.org/enter_bug.cgi?product=xorg"
| #define PACKAGE_URL ""
| #define PACKAGE "xorg-server"
| #define VERSION "1.10.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 PACKAGE_VERSION_MAJOR 1
| #define PACKAGE_VERSION_MINOR 10
| #define PACKAGE_VERSION_PATCHLEVEL 1
| #define HAVE_DLFCN_H 1
| #define LT_OBJDIR ".libs/"
| #define YYTEXT_POINTER 1
| #define _FILE_OFFSET_BITS 64
| #define HAVE_DIRENT_H 1
| #define STDC_HEADERS 1
| #define HAVE_FCNTL_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_DLFCN_H 1
| #define HAVE_STROPTS_H 1
| #define HAVE_FNMATCH_H 1
| #define HAVE_SYS_UTSNAME_H 1
| #define SIZEOF_UNSIGNED_LONG 4
| #define HAVE_BYTESWAP_H 1
| /* end confdefs.h.  */
| /* Define dlopen to an innocuous variant, in case <limits.h> declares dlopen.
|    For example, HP-UX 11i <limits.h> declares gettimeofday.  */
| #define dlopen innocuous_dlopen
| 
| /* System header to define __stub macros and hopefully few prototypes,
|     which can conflict with char dlopen (); 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 dlopen
| 
| /* 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 dlopen ();
| /* 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_dlopen || defined __stub___dlopen
| choke me
| #endif
| 
| int
| main ()
| {
| return dlopen ();
|   ;
|   return 0;
| }
configure:15235: result: no
configure:15239: checking for dlopen in -ldl
configure:15264: i586-poky-linux-gcc -march=i586 --sysroot=/home/kyu3/sdb/test/tmp/sysroots/qemux86 -std=gnu99 -o conftest -O2 -pipe -g -feliminate-unused-debug-types  -Wl,-O1  -Wl,--as-needed conftest.c -ldl   >&5
configure:15264: $? = 0
configure:15273: result: yes
configure:15285: checking for vprintf
configure:15285: result: yes
configure:15291: checking for _doprnt
configure:15291: i586-poky-linux-gcc -march=i586 --sysroot=/home/kyu3/sdb/test/tmp/sysroots/qemux86 -std=gnu99 -o conftest -O2 -pipe -g -feliminate-unused-debug-types  -Wl,-O1  -Wl,--as-needed conftest.c  >&5
/tmp/ccJax1v1.o: In function `main':
/home/kyu3/sdb/test/tmp/work/i586-poky-linux/xserver-xf86-lite-1.10.1-r0/xorg-server-1.10.1/conftest.c:75: undefined reference to `_doprnt'
collect2: ld returned 1 exit status
configure:15291: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "xorg-server"
| #define PACKAGE_TARNAME "xorg-server"
| #define PACKAGE_VERSION "1.10.1"
| #define PACKAGE_STRING "xorg-server 1.10.1"
| #define PACKAGE_BUGREPORT "https://bugs.freedesktop.org/enter_bug.cgi?product=xorg"
| #define PACKAGE_URL ""
| #define PACKAGE "xorg-server"
| #define VERSION "1.10.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 PACKAGE_VERSION_MAJOR 1
| #define PACKAGE_VERSION_MINOR 10
| #define PACKAGE_VERSION_PATCHLEVEL 1
| #define HAVE_DLFCN_H 1
| #define LT_OBJDIR ".libs/"
| #define YYTEXT_POINTER 1
| #define _FILE_OFFSET_BITS 64
| #define HAVE_DIRENT_H 1
| #define STDC_HEADERS 1
| #define HAVE_FCNTL_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_DLFCN_H 1
| #define HAVE_STROPTS_H 1
| #define HAVE_FNMATCH_H 1
| #define HAVE_SYS_UTSNAME_H 1
| #define SIZEOF_UNSIGNED_LONG 4
| #define HAVE_BYTESWAP_H 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:15291: result: no
configure:15307: checking for geteuid
configure:15307: result: yes
configure:15307: checking for getuid
configure:15307: result: yes
configure:15307: checking for link
configure:15307: result: yes
configure:15307: checking for memmove
configure:15307: result: yes
configure:15307: checking for memset
configure:15307: result: yes
configure:15307: checking for mkstemp
configure:15307: result: yes
configure:15307: checking for strchr
configure:15307: result: yes
configure:15307: checking for strrchr
configure:15307: result: yes
configure:15307: checking for strtol
configure:15307: result: yes
configure:15307: checking for getopt
configure:15307: result: yes
configure:15307: checking for getopt_long
configure:15307: result: yes
configure:15307: checking for vsnprintf
configure:15307: result: yes
configure:15307: checking for walkcontext
configure:15307: i586-poky-linux-gcc -march=i586 --sysroot=/home/kyu3/sdb/test/tmp/sysroots/qemux86 -std=gnu99 -o conftest -O2 -pipe -g -feliminate-unused-debug-types  -Wl,-O1  -Wl,--as-needed conftest.c  >&5
/tmp/ccxWTvk4.o: In function `main':
/home/kyu3/sdb/test/tmp/work/i586-poky-linux/xserver-xf86-lite-1.10.1-r0/xorg-server-1.10.1/conftest.c:87: undefined reference to `walkcontext'
collect2: ld returned 1 exit status
configure:15307: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "xorg-server"
| #define PACKAGE_TARNAME "xorg-server"
| #define PACKAGE_VERSION "1.10.1"
| #define PACKAGE_STRING "xorg-server 1.10.1"
| #define PACKAGE_BUGREPORT "https://bugs.freedesktop.org/enter_bug.cgi?product=xorg"
| #define PACKAGE_URL ""
| #define PACKAGE "xorg-server"
| #define VERSION "1.10.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 PACKAGE_VERSION_MAJOR 1
| #define PACKAGE_VERSION_MINOR 10
| #define PACKAGE_VERSION_PATCHLEVEL 1
| #define HAVE_DLFCN_H 1
| #define LT_OBJDIR ".libs/"
| #define YYTEXT_POINTER 1
| #define _FILE_OFFSET_BITS 64
| #define HAVE_DIRENT_H 1
| #define STDC_HEADERS 1
| #define HAVE_FCNTL_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_DLFCN_H 1
| #define HAVE_STROPTS_H 1
| #define HAVE_FNMATCH_H 1
| #define HAVE_SYS_UTSNAME_H 1
| #define SIZEOF_UNSIGNED_LONG 4
| #define HAVE_BYTESWAP_H 1
| #define HAVE_VPRINTF 1
| #define HAVE_GETEUID 1
| #define HAVE_GETUID 1
| #define HAVE_LINK 1
| #define HAVE_MEMMOVE 1
| #define HAVE_MEMSET 1
| #define HAVE_MKSTEMP 1
| #define HAVE_STRCHR 1
| #define HAVE_STRRCHR 1
| #define HAVE_STRTOL 1
| #define HAVE_GETOPT 1
| #define HAVE_GETOPT_LONG 1
| #define HAVE_VSNPRINTF 1
| /* end confdefs.h.  */
| /* Define walkcontext to an innocuous variant, in case <limits.h> declares walkcontext.
|    For example, HP-UX 11i <limits.h> declares gettimeofday.  */
| #define walkcontext innocuous_walkcontext
| 
| /* System header to define __stub macros and hopefully few prototypes,
|     which can conflict with char walkcontext (); 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 walkcontext
| 
| /* 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 walkcontext ();
| /* 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_walkcontext || defined __stub___walkcontext
| choke me
| #endif
| 
| int
| main ()
| {
| return walkcontext ();
|   ;
|   return 0;
| }
configure:15307: result: no
configure:15307: checking for backtrace
configure:15307: i586-poky-linux-gcc -march=i586 --sysroot=/home/kyu3/sdb/test/tmp/sysroots/qemux86 -std=gnu99 -o conftest -O2 -pipe -g -feliminate-unused-debug-types  -Wl,-O1  -Wl,--as-needed conftest.c  >&5
configure:15307: $? = 0
configure:15307: result: yes
configure:15307: checking for getisax
configure:15307: i586-poky-linux-gcc -march=i586 --sysroot=/home/kyu3/sdb/test/tmp/sysroots/qemux86 -std=gnu99 -o conftest -O2 -pipe -g -feliminate-unused-debug-types  -Wl,-O1  -Wl,--as-needed conftest.c  >&5
/tmp/ccgTedSa.o: In function `main':
/home/kyu3/sdb/test/tmp/work/i586-poky-linux/xserver-xf86-lite-1.10.1-r0/xorg-server-1.10.1/conftest.c:88: undefined reference to `getisax'
collect2: ld returned 1 exit status
configure:15307: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "xorg-server"
| #define PACKAGE_TARNAME "xorg-server"
| #define PACKAGE_VERSION "1.10.1"
| #define PACKAGE_STRING "xorg-server 1.10.1"
| #define PACKAGE_BUGREPORT "https://bugs.freedesktop.org/enter_bug.cgi?product=xorg"
| #define PACKAGE_URL ""
| #define PACKAGE "xorg-server"
| #define VERSION "1.10.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 PACKAGE_VERSION_MAJOR 1
| #define PACKAGE_VERSION_MINOR 10
| #define PACKAGE_VERSION_PATCHLEVEL 1
| #define HAVE_DLFCN_H 1
| #define LT_OBJDIR ".libs/"
| #define YYTEXT_POINTER 1
| #define _FILE_OFFSET_BITS 64
| #define HAVE_DIRENT_H 1
| #define STDC_HEADERS 1
| #define HAVE_FCNTL_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_DLFCN_H 1
| #define HAVE_STROPTS_H 1
| #define HAVE_FNMATCH_H 1
| #define HAVE_SYS_UTSNAME_H 1
| #define SIZEOF_UNSIGNED_LONG 4
| #define HAVE_BYTESWAP_H 1
| #define HAVE_VPRINTF 1
| #define HAVE_GETEUID 1
| #define HAVE_GETUID 1
| #define HAVE_LINK 1
| #define HAVE_MEMMOVE 1
| #define HAVE_MEMSET 1
| #define HAVE_MKSTEMP 1
| #define HAVE_STRCHR 1
| #define HAVE_STRRCHR 1
| #define HAVE_STRTOL 1
| #define HAVE_GETOPT 1
| #define HAVE_GETOPT_LONG 1
| #define HAVE_VSNPRINTF 1
| #define HAVE_BACKTRACE 1
| /* end confdefs.h.  */
| /* Define getisax to an innocuous variant, in case <limits.h> declares getisax.
|    For example, HP-UX 11i <limits.h> declares gettimeofday.  */
| #define getisax innocuous_getisax
| 
| /* System header to define __stub macros and hopefully few prototypes,
|     which can conflict with char getisax (); 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 getisax
| 
| /* 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 getisax ();
| /* 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_getisax || defined __stub___getisax
| choke me
| #endif
| 
| int
| main ()
| {
| return getisax ();
|   ;
|   return 0;
| }
configure:15307: result: no
configure:15307: checking for getzoneid
configure:15307: i586-poky-linux-gcc -march=i586 --sysroot=/home/kyu3/sdb/test/tmp/sysroots/qemux86 -std=gnu99 -o conftest -O2 -pipe -g -feliminate-unused-debug-types  -Wl,-O1  -Wl,--as-needed conftest.c  >&5
/tmp/cci9hzId.o: In function `main':
/home/kyu3/sdb/test/tmp/work/i586-poky-linux/xserver-xf86-lite-1.10.1-r0/xorg-server-1.10.1/conftest.c:88: undefined reference to `getzoneid'
collect2: ld returned 1 exit status
configure:15307: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "xorg-server"
| #define PACKAGE_TARNAME "xorg-server"
| #define PACKAGE_VERSION "1.10.1"
| #define PACKAGE_STRING "xorg-server 1.10.1"
| #define PACKAGE_BUGREPORT "https://bugs.freedesktop.org/enter_bug.cgi?product=xorg"
| #define PACKAGE_URL ""
| #define PACKAGE "xorg-server"
| #define VERSION "1.10.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 PACKAGE_VERSION_MAJOR 1
| #define PACKAGE_VERSION_MINOR 10
| #define PACKAGE_VERSION_PATCHLEVEL 1
| #define HAVE_DLFCN_H 1
| #define LT_OBJDIR ".libs/"
| #define YYTEXT_POINTER 1
| #define _FILE_OFFSET_BITS 64
| #define HAVE_DIRENT_H 1
| #define STDC_HEADERS 1
| #define HAVE_FCNTL_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_DLFCN_H 1
| #define HAVE_STROPTS_H 1
| #define HAVE_FNMATCH_H 1
| #define HAVE_SYS_UTSNAME_H 1
| #define SIZEOF_UNSIGNED_LONG 4
| #define HAVE_BYTESWAP_H 1
| #define HAVE_VPRINTF 1
| #define HAVE_GETEUID 1
| #define HAVE_GETUID 1
| #define HAVE_LINK 1
| #define HAVE_MEMMOVE 1
| #define HAVE_MEMSET 1
| #define HAVE_MKSTEMP 1
| #define HAVE_STRCHR 1
| #define HAVE_STRRCHR 1
| #define HAVE_STRTOL 1
| #define HAVE_GETOPT 1
| #define HAVE_GETOPT_LONG 1
| #define HAVE_VSNPRINTF 1
| #define HAVE_BACKTRACE 1
| /* end confdefs.h.  */
| /* Define getzoneid to an innocuous variant, in case <limits.h> declares getzoneid.
|    For example, HP-UX 11i <limits.h> declares gettimeofday.  */
| #define getzoneid innocuous_getzoneid
| 
| /* System header to define __stub macros and hopefully few prototypes,
|     which can conflict with char getzoneid (); 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 getzoneid
| 
| /* 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 getzoneid ();
| /* 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_getzoneid || defined __stub___getzoneid
| choke me
| #endif
| 
| int
| main ()
| {
| return getzoneid ();
|   ;
|   return 0;
| }
configure:15307: result: no
configure:15307: checking for shmctl64
configure:15307: i586-poky-linux-gcc -march=i586 --sysroot=/home/kyu3/sdb/test/tmp/sysroots/qemux86 -std=gnu99 -o conftest -O2 -pipe -g -feliminate-unused-debug-types  -Wl,-O1  -Wl,--as-needed conftest.c  >&5
/tmp/cc9yMCXe.o: In function `main':
/home/kyu3/sdb/test/tmp/work/i586-poky-linux/xserver-xf86-lite-1.10.1-r0/xorg-server-1.10.1/conftest.c:88: undefined reference to `shmctl64'
collect2: ld returned 1 exit status
configure:15307: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "xorg-server"
| #define PACKAGE_TARNAME "xorg-server"
| #define PACKAGE_VERSION "1.10.1"
| #define PACKAGE_STRING "xorg-server 1.10.1"
| #define PACKAGE_BUGREPORT "https://bugs.freedesktop.org/enter_bug.cgi?product=xorg"
| #define PACKAGE_URL ""
| #define PACKAGE "xorg-server"
| #define VERSION "1.10.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 PACKAGE_VERSION_MAJOR 1
| #define PACKAGE_VERSION_MINOR 10
| #define PACKAGE_VERSION_PATCHLEVEL 1
| #define HAVE_DLFCN_H 1
| #define LT_OBJDIR ".libs/"
| #define YYTEXT_POINTER 1
| #define _FILE_OFFSET_BITS 64
| #define HAVE_DIRENT_H 1
| #define STDC_HEADERS 1
| #define HAVE_FCNTL_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_DLFCN_H 1
| #define HAVE_STROPTS_H 1
| #define HAVE_FNMATCH_H 1
| #define HAVE_SYS_UTSNAME_H 1
| #define SIZEOF_UNSIGNED_LONG 4
| #define HAVE_BYTESWAP_H 1
| #define HAVE_VPRINTF 1
| #define HAVE_GETEUID 1
| #define HAVE_GETUID 1
| #define HAVE_LINK 1
| #define HAVE_MEMMOVE 1
| #define HAVE_MEMSET 1
| #define HAVE_MKSTEMP 1
| #define HAVE_STRCHR 1
| #define HAVE_STRRCHR 1
| #define HAVE_STRTOL 1
| #define HAVE_GETOPT 1
| #define HAVE_GETOPT_LONG 1
| #define HAVE_VSNPRINTF 1
| #define HAVE_BACKTRACE 1
| /* end confdefs.h.  */
| /* Define shmctl64 to an innocuous variant, in case <limits.h> declares shmctl64.
|    For example, HP-UX 11i <limits.h> declares gettimeofday.  */
| #define shmctl64 innocuous_shmctl64
| 
| /* System header to define __stub macros and hopefully few prototypes,
|     which can conflict with char shmctl64 (); 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 shmctl64
| 
| /* 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 shmctl64 ();
| /* 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_shmctl64 || defined __stub___shmctl64
| choke me
| #endif
| 
| int
| main ()
| {
| return shmctl64 ();
|   ;
|   return 0;
| }
configure:15307: result: no
configure:15307: checking for strcasestr
configure:15307: result: yes
configure:15307: checking for ffs
configure:15307: i586-poky-linux-gcc -march=i586 --sysroot=/home/kyu3/sdb/test/tmp/sysroots/qemux86 -std=gnu99 -o conftest -O2 -pipe -g -feliminate-unused-debug-types  -Wl,-O1  -Wl,--as-needed conftest.c  >&5
conftest.c:78:6: warning: conflicting types for built-in function 'ffs' [enabled by default]
configure:15307: $? = 0
configure:15307: result: yes
configure:15307: checking for vasprintf
configure:15307: result: yes
configure:15319: checking for working alloca.h
configure:15336: i586-poky-linux-gcc -march=i586 --sysroot=/home/kyu3/sdb/test/tmp/sysroots/qemux86 -std=gnu99 -o conftest -O2 -pipe -g -feliminate-unused-debug-types  -Wl,-O1  -Wl,--as-needed conftest.c  >&5
configure:15336: $? = 0
configure:15344: result: yes
configure:15352: checking for alloca
configure:15389: i586-poky-linux-gcc -march=i586 --sysroot=/home/kyu3/sdb/test/tmp/sysroots/qemux86 -std=gnu99 -o conftest -O2 -pipe -g -feliminate-unused-debug-types  -Wl,-O1  -Wl,--as-needed conftest.c  >&5
configure:15389: $? = 0
configure:15397: result: yes
configure:15507: checking for getdtablesize
configure:15507: result: yes
configure:15514: checking for getifaddrs
configure:15514: result: yes
configure:15521: checking for getpeereid
configure:15521: i586-poky-linux-gcc -march=i586 --sysroot=/home/kyu3/sdb/test/tmp/sysroots/qemux86 -std=gnu99 -o conftest -O2 -pipe -g -feliminate-unused-debug-types  -Wl,-O1  -Wl,--as-needed conftest.c  >&5
/tmp/ccXfBGor.o: In function `main':
/home/kyu3/sdb/test/tmp/work/i586-poky-linux/xserver-xf86-lite-1.10.1-r0/xorg-server-1.10.1/conftest.c:95: undefined reference to `getpeereid'
collect2: ld returned 1 exit status
configure:15521: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "xorg-server"
| #define PACKAGE_TARNAME "xorg-server"
| #define PACKAGE_VERSION "1.10.1"
| #define PACKAGE_STRING "xorg-server 1.10.1"
| #define PACKAGE_BUGREPORT "https://bugs.freedesktop.org/enter_bug.cgi?product=xorg"
| #define PACKAGE_URL ""
| #define PACKAGE "xorg-server"
| #define VERSION "1.10.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 PACKAGE_VERSION_MAJOR 1
| #define PACKAGE_VERSION_MINOR 10
| #define PACKAGE_VERSION_PATCHLEVEL 1
| #define HAVE_DLFCN_H 1
| #define LT_OBJDIR ".libs/"
| #define YYTEXT_POINTER 1
| #define _FILE_OFFSET_BITS 64
| #define HAVE_DIRENT_H 1
| #define STDC_HEADERS 1
| #define HAVE_FCNTL_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_DLFCN_H 1
| #define HAVE_STROPTS_H 1
| #define HAVE_FNMATCH_H 1
| #define HAVE_SYS_UTSNAME_H 1
| #define SIZEOF_UNSIGNED_LONG 4
| #define HAVE_BYTESWAP_H 1
| #define HAVE_VPRINTF 1
| #define HAVE_GETEUID 1
| #define HAVE_GETUID 1
| #define HAVE_LINK 1
| #define HAVE_MEMMOVE 1
| #define HAVE_MEMSET 1
| #define HAVE_MKSTEMP 1
| #define HAVE_STRCHR 1
| #define HAVE_STRRCHR 1
| #define HAVE_STRTOL 1
| #define HAVE_GETOPT 1
| #define HAVE_GETOPT_LONG 1
| #define HAVE_VSNPRINTF 1
| #define HAVE_BACKTRACE 1
| #define HAVE_STRCASESTR 1
| #define HAVE_FFS 1
| #define HAVE_VASPRINTF 1
| #define HAVE_ALLOCA_H 1
| #define HAVE_ALLOCA 1
| #define HAS_GETDTABLESIZE 1
| #define HAS_GETIFADDRS 1
| /* end confdefs.h.  */
| /* Define getpeereid to an innocuous variant, in case <limits.h> declares getpeereid.
|    For example, HP-UX 11i <limits.h> declares gettimeofday.  */
| #define getpeereid innocuous_getpeereid
| 
| /* System header to define __stub macros and hopefully few prototypes,
|     which can conflict with char getpeereid (); 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 getpeereid
| 
| /* 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 getpeereid ();
| /* 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_getpeereid || defined __stub___getpeereid
| choke me
| #endif
| 
| int
| main ()
| {
| return getpeereid ();
|   ;
|   return 0;
| }
configure:15521: result: no
configure:15528: checking for getpeerucred
configure:15528: i586-poky-linux-gcc -march=i586 --sysroot=/home/kyu3/sdb/test/tmp/sysroots/qemux86 -std=gnu99 -o conftest -O2 -pipe -g -feliminate-unused-debug-types  -Wl,-O1  -Wl,--as-needed conftest.c  >&5
/tmp/ccvQ3uOw.o: In function `main':
/home/kyu3/sdb/test/tmp/work/i586-poky-linux/xserver-xf86-lite-1.10.1-r0/xorg-server-1.10.1/conftest.c:95: undefined reference to `getpeerucred'
collect2: ld returned 1 exit status
configure:15528: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "xorg-server"
| #define PACKAGE_TARNAME "xorg-server"
| #define PACKAGE_VERSION "1.10.1"
| #define PACKAGE_STRING "xorg-server 1.10.1"
| #define PACKAGE_BUGREPORT "https://bugs.freedesktop.org/enter_bug.cgi?product=xorg"
| #define PACKAGE_URL ""
| #define PACKAGE "xorg-server"
| #define VERSION "1.10.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 PACKAGE_VERSION_MAJOR 1
| #define PACKAGE_VERSION_MINOR 10
| #define PACKAGE_VERSION_PATCHLEVEL 1
| #define HAVE_DLFCN_H 1
| #define LT_OBJDIR ".libs/"
| #define YYTEXT_POINTER 1
| #define _FILE_OFFSET_BITS 64
| #define HAVE_DIRENT_H 1
| #define STDC_HEADERS 1
| #define HAVE_FCNTL_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_DLFCN_H 1
| #define HAVE_STROPTS_H 1
| #define HAVE_FNMATCH_H 1
| #define HAVE_SYS_UTSNAME_H 1
| #define SIZEOF_UNSIGNED_LONG 4
| #define HAVE_BYTESWAP_H 1
| #define HAVE_VPRINTF 1
| #define HAVE_GETEUID 1
| #define HAVE_GETUID 1
| #define HAVE_LINK 1
| #define HAVE_MEMMOVE 1
| #define HAVE_MEMSET 1
| #define HAVE_MKSTEMP 1
| #define HAVE_STRCHR 1
| #define HAVE_STRRCHR 1
| #define HAVE_STRTOL 1
| #define HAVE_GETOPT 1
| #define HAVE_GETOPT_LONG 1
| #define HAVE_VSNPRINTF 1
| #define HAVE_BACKTRACE 1
| #define HAVE_STRCASESTR 1
| #define HAVE_FFS 1
| #define HAVE_VASPRINTF 1
| #define HAVE_ALLOCA_H 1
| #define HAVE_ALLOCA 1
| #define HAS_GETDTABLESIZE 1
| #define HAS_GETIFADDRS 1
| /* end confdefs.h.  */
| /* Define getpeerucred to an innocuous variant, in case <limits.h> declares getpeerucred.
|    For example, HP-UX 11i <limits.h> declares gettimeofday.  */
| #define getpeerucred innocuous_getpeerucred
| 
| /* System header to define __stub macros and hopefully few prototypes,
|     which can conflict with char getpeerucred (); 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 getpeerucred
| 
| /* 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 getpeerucred ();
| /* 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_getpeerucred || defined __stub___getpeerucred
| choke me
| #endif
| 
| int
| main ()
| {
| return getpeerucred ();
|   ;
|   return 0;
| }
configure:15528: result: no
configure:15535: checking for strlcat
configure:15535: i586-poky-linux-gcc -march=i586 --sysroot=/home/kyu3/sdb/test/tmp/sysroots/qemux86 -std=gnu99 -o conftest -O2 -pipe -g -feliminate-unused-debug-types  -Wl,-O1  -Wl,--as-needed conftest.c  >&5
/tmp/ccdieNWz.o: In function `main':
/home/kyu3/sdb/test/tmp/work/i586-poky-linux/xserver-xf86-lite-1.10.1-r0/xorg-server-1.10.1/conftest.c:95: undefined reference to `strlcat'
collect2: ld returned 1 exit status
configure:15535: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "xorg-server"
| #define PACKAGE_TARNAME "xorg-server"
| #define PACKAGE_VERSION "1.10.1"
| #define PACKAGE_STRING "xorg-server 1.10.1"
| #define PACKAGE_BUGREPORT "https://bugs.freedesktop.org/enter_bug.cgi?product=xorg"
| #define PACKAGE_URL ""
| #define PACKAGE "xorg-server"
| #define VERSION "1.10.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 PACKAGE_VERSION_MAJOR 1
| #define PACKAGE_VERSION_MINOR 10
| #define PACKAGE_VERSION_PATCHLEVEL 1
| #define HAVE_DLFCN_H 1
| #define LT_OBJDIR ".libs/"
| #define YYTEXT_POINTER 1
| #define _FILE_OFFSET_BITS 64
| #define HAVE_DIRENT_H 1
| #define STDC_HEADERS 1
| #define HAVE_FCNTL_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_DLFCN_H 1
| #define HAVE_STROPTS_H 1
| #define HAVE_FNMATCH_H 1
| #define HAVE_SYS_UTSNAME_H 1
| #define SIZEOF_UNSIGNED_LONG 4
| #define HAVE_BYTESWAP_H 1
| #define HAVE_VPRINTF 1
| #define HAVE_GETEUID 1
| #define HAVE_GETUID 1
| #define HAVE_LINK 1
| #define HAVE_MEMMOVE 1
| #define HAVE_MEMSET 1
| #define HAVE_MKSTEMP 1
| #define HAVE_STRCHR 1
| #define HAVE_STRRCHR 1
| #define HAVE_STRTOL 1
| #define HAVE_GETOPT 1
| #define HAVE_GETOPT_LONG 1
| #define HAVE_VSNPRINTF 1
| #define HAVE_BACKTRACE 1
| #define HAVE_STRCASESTR 1
| #define HAVE_FFS 1
| #define HAVE_VASPRINTF 1
| #define HAVE_ALLOCA_H 1
| #define HAVE_ALLOCA 1
| #define HAS_GETDTABLESIZE 1
| #define HAS_GETIFADDRS 1
| /* end confdefs.h.  */
| /* Define strlcat to an innocuous variant, in case <limits.h> declares strlcat.
|    For example, HP-UX 11i <limits.h> declares gettimeofday.  */
| #define strlcat innocuous_strlcat
| 
| /* System header to define __stub macros and hopefully few prototypes,
|     which can conflict with char strlcat (); 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 strlcat
| 
| /* 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 strlcat ();
| /* 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_strlcat || defined __stub___strlcat
| choke me
| #endif
| 
| int
| main ()
| {
| return strlcat ();
|   ;
|   return 0;
| }
configure:15535: result: no
configure:15550: checking for strlcpy
configure:15550: i586-poky-linux-gcc -march=i586 --sysroot=/home/kyu3/sdb/test/tmp/sysroots/qemux86 -std=gnu99 -o conftest -O2 -pipe -g -feliminate-unused-debug-types  -Wl,-O1  -Wl,--as-needed conftest.c  >&5
/tmp/cclpSavC.o: In function `main':
/home/kyu3/sdb/test/tmp/work/i586-poky-linux/xserver-xf86-lite-1.10.1-r0/xorg-server-1.10.1/conftest.c:95: undefined reference to `strlcpy'
collect2: ld returned 1 exit status
configure:15550: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "xorg-server"
| #define PACKAGE_TARNAME "xorg-server"
| #define PACKAGE_VERSION "1.10.1"
| #define PACKAGE_STRING "xorg-server 1.10.1"
| #define PACKAGE_BUGREPORT "https://bugs.freedesktop.org/enter_bug.cgi?product=xorg"
| #define PACKAGE_URL ""
| #define PACKAGE "xorg-server"
| #define VERSION "1.10.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 PACKAGE_VERSION_MAJOR 1
| #define PACKAGE_VERSION_MINOR 10
| #define PACKAGE_VERSION_PATCHLEVEL 1
| #define HAVE_DLFCN_H 1
| #define LT_OBJDIR ".libs/"
| #define YYTEXT_POINTER 1
| #define _FILE_OFFSET_BITS 64
| #define HAVE_DIRENT_H 1
| #define STDC_HEADERS 1
| #define HAVE_FCNTL_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_DLFCN_H 1
| #define HAVE_STROPTS_H 1
| #define HAVE_FNMATCH_H 1
| #define HAVE_SYS_UTSNAME_H 1
| #define SIZEOF_UNSIGNED_LONG 4
| #define HAVE_BYTESWAP_H 1
| #define HAVE_VPRINTF 1
| #define HAVE_GETEUID 1
| #define HAVE_GETUID 1
| #define HAVE_LINK 1
| #define HAVE_MEMMOVE 1
| #define HAVE_MEMSET 1
| #define HAVE_MKSTEMP 1
| #define HAVE_STRCHR 1
| #define HAVE_STRRCHR 1
| #define HAVE_STRTOL 1
| #define HAVE_GETOPT 1
| #define HAVE_GETOPT_LONG 1
| #define HAVE_VSNPRINTF 1
| #define HAVE_BACKTRACE 1
| #define HAVE_STRCASESTR 1
| #define HAVE_FFS 1
| #define HAVE_VASPRINTF 1
| #define HAVE_ALLOCA_H 1
| #define HAVE_ALLOCA 1
| #define HAS_GETDTABLESIZE 1
| #define HAS_GETIFADDRS 1
| /* end confdefs.h.  */
| /* Define strlcpy to an innocuous variant, in case <limits.h> declares strlcpy.
|    For example, HP-UX 11i <limits.h> declares gettimeofday.  */
| #define strlcpy innocuous_strlcpy
| 
| /* System header to define __stub macros and hopefully few prototypes,
|     which can conflict with char strlcpy (); 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 strlcpy
| 
| /* 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 strlcpy ();
| /* 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_strlcpy || defined __stub___strlcpy
| choke me
| #endif
| 
| int
| main ()
| {
| return strlcpy ();
|   ;
|   return 0;
| }
configure:15550: result: no
configure:15567: checking for mmap
configure:15567: result: yes
configure:15575: checking for sqrt in -lm
configure:15600: i586-poky-linux-gcc -march=i586 --sysroot=/home/kyu3/sdb/test/tmp/sysroots/qemux86 -std=gnu99 -o conftest -O2 -pipe -g -feliminate-unused-debug-types  -Wl,-O1  -Wl,--as-needed conftest.c -lm   >&5
conftest.c:69:6: warning: conflicting types for built-in function 'sqrt' [enabled by default]
configure:15600: $? = 0
configure:15609: result: yes
configure:15620: checking for cbrt in -lm
configure:15645: i586-poky-linux-gcc -march=i586 --sysroot=/home/kyu3/sdb/test/tmp/sysroots/qemux86 -std=gnu99 -o conftest -O2 -pipe -g -feliminate-unused-debug-types  -Wl,-O1  -Wl,--as-needed conftest.c -lm  -lm  >&5
conftest.c:70:6: warning: conflicting types for built-in function 'cbrt' [enabled by default]
configure:15645: $? = 0
configure:15654: result: yes
configure:15666: checking ndbm.h usability
configure:15666: i586-poky-linux-gcc -march=i586 --sysroot=/home/kyu3/sdb/test/tmp/sysroots/qemux86 -std=gnu99 -c -O2 -pipe -g -feliminate-unused-debug-types  conftest.c >&5
conftest.c:97:18: fatal error: ndbm.h: No such file or directory
compilation terminated.
configure:15666: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "xorg-server"
| #define PACKAGE_TARNAME "xorg-server"
| #define PACKAGE_VERSION "1.10.1"
| #define PACKAGE_STRING "xorg-server 1.10.1"
| #define PACKAGE_BUGREPORT "https://bugs.freedesktop.org/enter_bug.cgi?product=xorg"
| #define PACKAGE_URL ""
| #define PACKAGE "xorg-server"
| #define VERSION "1.10.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 PACKAGE_VERSION_MAJOR 1
| #define PACKAGE_VERSION_MINOR 10
| #define PACKAGE_VERSION_PATCHLEVEL 1
| #define HAVE_DLFCN_H 1
| #define LT_OBJDIR ".libs/"
| #define YYTEXT_POINTER 1
| #define _FILE_OFFSET_BITS 64
| #define HAVE_DIRENT_H 1
| #define STDC_HEADERS 1
| #define HAVE_FCNTL_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_DLFCN_H 1
| #define HAVE_STROPTS_H 1
| #define HAVE_FNMATCH_H 1
| #define HAVE_SYS_UTSNAME_H 1
| #define SIZEOF_UNSIGNED_LONG 4
| #define HAVE_BYTESWAP_H 1
| #define HAVE_VPRINTF 1
| #define HAVE_GETEUID 1
| #define HAVE_GETUID 1
| #define HAVE_LINK 1
| #define HAVE_MEMMOVE 1
| #define HAVE_MEMSET 1
| #define HAVE_MKSTEMP 1
| #define HAVE_STRCHR 1
| #define HAVE_STRRCHR 1
| #define HAVE_STRTOL 1
| #define HAVE_GETOPT 1
| #define HAVE_GETOPT_LONG 1
| #define HAVE_VSNPRINTF 1
| #define HAVE_BACKTRACE 1
| #define HAVE_STRCASESTR 1
| #define HAVE_FFS 1
| #define HAVE_VASPRINTF 1
| #define HAVE_ALLOCA_H 1
| #define HAVE_ALLOCA 1
| #define HAS_GETDTABLESIZE 1
| #define HAS_GETIFADDRS 1
| #define HAS_MMAP 1
| #define HAVE_LIBM 1
| #define HAVE_CBRT 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 <ndbm.h>
configure:15666: result: no
configure:15666: checking ndbm.h presence
configure:15666: i586-poky-linux-gcc -E --sysroot=/home/kyu3/sdb/test/tmp/sysroots/qemux86  conftest.c
conftest.c:64:18: fatal error: ndbm.h: No such file or directory
compilation terminated.
configure:15666: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "xorg-server"
| #define PACKAGE_TARNAME "xorg-server"
| #define PACKAGE_VERSION "1.10.1"
| #define PACKAGE_STRING "xorg-server 1.10.1"
| #define PACKAGE_BUGREPORT "https://bugs.freedesktop.org/enter_bug.cgi?product=xorg"
| #define PACKAGE_URL ""
| #define PACKAGE "xorg-server"
| #define VERSION "1.10.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 PACKAGE_VERSION_MAJOR 1
| #define PACKAGE_VERSION_MINOR 10
| #define PACKAGE_VERSION_PATCHLEVEL 1
| #define HAVE_DLFCN_H 1
| #define LT_OBJDIR ".libs/"
| #define YYTEXT_POINTER 1
| #define _FILE_OFFSET_BITS 64
| #define HAVE_DIRENT_H 1
| #define STDC_HEADERS 1
| #define HAVE_FCNTL_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_DLFCN_H 1
| #define HAVE_STROPTS_H 1
| #define HAVE_FNMATCH_H 1
| #define HAVE_SYS_UTSNAME_H 1
| #define SIZEOF_UNSIGNED_LONG 4
| #define HAVE_BYTESWAP_H 1
| #define HAVE_VPRINTF 1
| #define HAVE_GETEUID 1
| #define HAVE_GETUID 1
| #define HAVE_LINK 1
| #define HAVE_MEMMOVE 1
| #define HAVE_MEMSET 1
| #define HAVE_MKSTEMP 1
| #define HAVE_STRCHR 1
| #define HAVE_STRRCHR 1
| #define HAVE_STRTOL 1
| #define HAVE_GETOPT 1
| #define HAVE_GETOPT_LONG 1
| #define HAVE_VSNPRINTF 1
| #define HAVE_BACKTRACE 1
| #define HAVE_STRCASESTR 1
| #define HAVE_FFS 1
| #define HAVE_VASPRINTF 1
| #define HAVE_ALLOCA_H 1
| #define HAVE_ALLOCA 1
| #define HAS_GETDTABLESIZE 1
| #define HAS_GETIFADDRS 1
| #define HAS_MMAP 1
| #define HAVE_LIBM 1
| #define HAVE_CBRT 1
| /* end confdefs.h.  */
| #include <ndbm.h>
configure:15666: result: no
configure:15666: checking for ndbm.h
configure:15666: result: no
configure:15666: checking dbm.h usability
configure:15666: i586-poky-linux-gcc -march=i586 --sysroot=/home/kyu3/sdb/test/tmp/sysroots/qemux86 -std=gnu99 -c -O2 -pipe -g -feliminate-unused-debug-types  conftest.c >&5
conftest.c:97:17: fatal error: dbm.h: No such file or directory
compilation terminated.
configure:15666: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "xorg-server"
| #define PACKAGE_TARNAME "xorg-server"
| #define PACKAGE_VERSION "1.10.1"
| #define PACKAGE_STRING "xorg-server 1.10.1"
| #define PACKAGE_BUGREPORT "https://bugs.freedesktop.org/enter_bug.cgi?product=xorg"
| #define PACKAGE_URL ""
| #define PACKAGE "xorg-server"
| #define VERSION "1.10.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 PACKAGE_VERSION_MAJOR 1
| #define PACKAGE_VERSION_MINOR 10
| #define PACKAGE_VERSION_PATCHLEVEL 1
| #define HAVE_DLFCN_H 1
| #define LT_OBJDIR ".libs/"
| #define YYTEXT_POINTER 1
| #define _FILE_OFFSET_BITS 64
| #define HAVE_DIRENT_H 1
| #define STDC_HEADERS 1
| #define HAVE_FCNTL_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_DLFCN_H 1
| #define HAVE_STROPTS_H 1
| #define HAVE_FNMATCH_H 1
| #define HAVE_SYS_UTSNAME_H 1
| #define SIZEOF_UNSIGNED_LONG 4
| #define HAVE_BYTESWAP_H 1
| #define HAVE_VPRINTF 1
| #define HAVE_GETEUID 1
| #define HAVE_GETUID 1
| #define HAVE_LINK 1
| #define HAVE_MEMMOVE 1
| #define HAVE_MEMSET 1
| #define HAVE_MKSTEMP 1
| #define HAVE_STRCHR 1
| #define HAVE_STRRCHR 1
| #define HAVE_STRTOL 1
| #define HAVE_GETOPT 1
| #define HAVE_GETOPT_LONG 1
| #define HAVE_VSNPRINTF 1
| #define HAVE_BACKTRACE 1
| #define HAVE_STRCASESTR 1
| #define HAVE_FFS 1
| #define HAVE_VASPRINTF 1
| #define HAVE_ALLOCA_H 1
| #define HAVE_ALLOCA 1
| #define HAS_GETDTABLESIZE 1
| #define HAS_GETIFADDRS 1
| #define HAS_MMAP 1
| #define HAVE_LIBM 1
| #define HAVE_CBRT 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 <dbm.h>
configure:15666: result: no
configure:15666: checking dbm.h presence
configure:15666: i586-poky-linux-gcc -E --sysroot=/home/kyu3/sdb/test/tmp/sysroots/qemux86  conftest.c
conftest.c:64:17: fatal error: dbm.h: No such file or directory
compilation terminated.
configure:15666: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "xorg-server"
| #define PACKAGE_TARNAME "xorg-server"
| #define PACKAGE_VERSION "1.10.1"
| #define PACKAGE_STRING "xorg-server 1.10.1"
| #define PACKAGE_BUGREPORT "https://bugs.freedesktop.org/enter_bug.cgi?product=xorg"
| #define PACKAGE_URL ""
| #define PACKAGE "xorg-server"
| #define VERSION "1.10.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 PACKAGE_VERSION_MAJOR 1
| #define PACKAGE_VERSION_MINOR 10
| #define PACKAGE_VERSION_PATCHLEVEL 1
| #define HAVE_DLFCN_H 1
| #define LT_OBJDIR ".libs/"
| #define YYTEXT_POINTER 1
| #define _FILE_OFFSET_BITS 64
| #define HAVE_DIRENT_H 1
| #define STDC_HEADERS 1
| #define HAVE_FCNTL_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_DLFCN_H 1
| #define HAVE_STROPTS_H 1
| #define HAVE_FNMATCH_H 1
| #define HAVE_SYS_UTSNAME_H 1
| #define SIZEOF_UNSIGNED_LONG 4
| #define HAVE_BYTESWAP_H 1
| #define HAVE_VPRINTF 1
| #define HAVE_GETEUID 1
| #define HAVE_GETUID 1
| #define HAVE_LINK 1
| #define HAVE_MEMMOVE 1
| #define HAVE_MEMSET 1
| #define HAVE_MKSTEMP 1
| #define HAVE_STRCHR 1
| #define HAVE_STRRCHR 1
| #define HAVE_STRTOL 1
| #define HAVE_GETOPT 1
| #define HAVE_GETOPT_LONG 1
| #define HAVE_VSNPRINTF 1
| #define HAVE_BACKTRACE 1
| #define HAVE_STRCASESTR 1
| #define HAVE_FFS 1
| #define HAVE_VASPRINTF 1
| #define HAVE_ALLOCA_H 1
| #define HAVE_ALLOCA 1
| #define HAS_GETDTABLESIZE 1
| #define HAS_GETIFADDRS 1
| #define HAS_MMAP 1
| #define HAVE_LIBM 1
| #define HAVE_CBRT 1
| /* end confdefs.h.  */
| #include <dbm.h>
configure:15666: result: no
configure:15666: checking for dbm.h
configure:15666: result: no
configure:15666: checking rpcsvc/dbm.h usability
configure:15666: i586-poky-linux-gcc -march=i586 --sysroot=/home/kyu3/sdb/test/tmp/sysroots/qemux86 -std=gnu99 -c -O2 -pipe -g -feliminate-unused-debug-types  conftest.c >&5
conftest.c:97:24: fatal error: rpcsvc/dbm.h: No such file or directory
compilation terminated.
configure:15666: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "xorg-server"
| #define PACKAGE_TARNAME "xorg-server"
| #define PACKAGE_VERSION "1.10.1"
| #define PACKAGE_STRING "xorg-server 1.10.1"
| #define PACKAGE_BUGREPORT "https://bugs.freedesktop.org/enter_bug.cgi?product=xorg"
| #define PACKAGE_URL ""
| #define PACKAGE "xorg-server"
| #define VERSION "1.10.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 PACKAGE_VERSION_MAJOR 1
| #define PACKAGE_VERSION_MINOR 10
| #define PACKAGE_VERSION_PATCHLEVEL 1
| #define HAVE_DLFCN_H 1
| #define LT_OBJDIR ".libs/"
| #define YYTEXT_POINTER 1
| #define _FILE_OFFSET_BITS 64
| #define HAVE_DIRENT_H 1
| #define STDC_HEADERS 1
| #define HAVE_FCNTL_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_DLFCN_H 1
| #define HAVE_STROPTS_H 1
| #define HAVE_FNMATCH_H 1
| #define HAVE_SYS_UTSNAME_H 1
| #define SIZEOF_UNSIGNED_LONG 4
| #define HAVE_BYTESWAP_H 1
| #define HAVE_VPRINTF 1
| #define HAVE_GETEUID 1
| #define HAVE_GETUID 1
| #define HAVE_LINK 1
| #define HAVE_MEMMOVE 1
| #define HAVE_MEMSET 1
| #define HAVE_MKSTEMP 1
| #define HAVE_STRCHR 1
| #define HAVE_STRRCHR 1
| #define HAVE_STRTOL 1
| #define HAVE_GETOPT 1
| #define HAVE_GETOPT_LONG 1
| #define HAVE_VSNPRINTF 1
| #define HAVE_BACKTRACE 1
| #define HAVE_STRCASESTR 1
| #define HAVE_FFS 1
| #define HAVE_VASPRINTF 1
| #define HAVE_ALLOCA_H 1
| #define HAVE_ALLOCA 1
| #define HAS_GETDTABLESIZE 1
| #define HAS_GETIFADDRS 1
| #define HAS_MMAP 1
| #define HAVE_LIBM 1
| #define HAVE_CBRT 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 <rpcsvc/dbm.h>
configure:15666: result: no
configure:15666: checking rpcsvc/dbm.h presence
configure:15666: i586-poky-linux-gcc -E --sysroot=/home/kyu3/sdb/test/tmp/sysroots/qemux86  conftest.c
conftest.c:64:24: fatal error: rpcsvc/dbm.h: No such file or directory
compilation terminated.
configure:15666: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "xorg-server"
| #define PACKAGE_TARNAME "xorg-server"
| #define PACKAGE_VERSION "1.10.1"
| #define PACKAGE_STRING "xorg-server 1.10.1"
| #define PACKAGE_BUGREPORT "https://bugs.freedesktop.org/enter_bug.cgi?product=xorg"
| #define PACKAGE_URL ""
| #define PACKAGE "xorg-server"
| #define VERSION "1.10.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 PACKAGE_VERSION_MAJOR 1
| #define PACKAGE_VERSION_MINOR 10
| #define PACKAGE_VERSION_PATCHLEVEL 1
| #define HAVE_DLFCN_H 1
| #define LT_OBJDIR ".libs/"
| #define YYTEXT_POINTER 1
| #define _FILE_OFFSET_BITS 64
| #define HAVE_DIRENT_H 1
| #define STDC_HEADERS 1
| #define HAVE_FCNTL_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_DLFCN_H 1
| #define HAVE_STROPTS_H 1
| #define HAVE_FNMATCH_H 1
| #define HAVE_SYS_UTSNAME_H 1
| #define SIZEOF_UNSIGNED_LONG 4
| #define HAVE_BYTESWAP_H 1
| #define HAVE_VPRINTF 1
| #define HAVE_GETEUID 1
| #define HAVE_GETUID 1
| #define HAVE_LINK 1
| #define HAVE_MEMMOVE 1
| #define HAVE_MEMSET 1
| #define HAVE_MKSTEMP 1
| #define HAVE_STRCHR 1
| #define HAVE_STRRCHR 1
| #define HAVE_STRTOL 1
| #define HAVE_GETOPT 1
| #define HAVE_GETOPT_LONG 1
| #define HAVE_VSNPRINTF 1
| #define HAVE_BACKTRACE 1
| #define HAVE_STRCASESTR 1
| #define HAVE_FFS 1
| #define HAVE_VASPRINTF 1
| #define HAVE_ALLOCA_H 1
| #define HAVE_ALLOCA 1
| #define HAS_GETDTABLESIZE 1
| #define HAS_GETIFADDRS 1
| #define HAS_MMAP 1
| #define HAVE_LIBM 1
| #define HAVE_CBRT 1
| /* end confdefs.h.  */
| #include <rpcsvc/dbm.h>
configure:15666: result: no
configure:15666: checking for rpcsvc/dbm.h
configure:15666: result: no
configure:15681: checking linux/agpgart.h usability
configure:15681: i586-poky-linux-gcc -march=i586 --sysroot=/home/kyu3/sdb/test/tmp/sysroots/qemux86 -std=gnu99 -c -O2 -pipe -g -feliminate-unused-debug-types  conftest.c >&5
configure:15681: $? = 0
configure:15681: result: yes
configure:15681: checking linux/agpgart.h presence
configure:15681: i586-poky-linux-gcc -E --sysroot=/home/kyu3/sdb/test/tmp/sysroots/qemux86  conftest.c
configure:15681: $? = 0
configure:15681: result: yes
configure:15681: checking for linux/agpgart.h
configure:15681: result: yes
configure:15681: checking sys/agpio.h usability
configure:15681: i586-poky-linux-gcc -march=i586 --sysroot=/home/kyu3/sdb/test/tmp/sysroots/qemux86 -std=gnu99 -c -O2 -pipe -g -feliminate-unused-debug-types  conftest.c >&5
conftest.c:98:23: fatal error: sys/agpio.h: No such file or directory
compilation terminated.
configure:15681: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "xorg-server"
| #define PACKAGE_TARNAME "xorg-server"
| #define PACKAGE_VERSION "1.10.1"
| #define PACKAGE_STRING "xorg-server 1.10.1"
| #define PACKAGE_BUGREPORT "https://bugs.freedesktop.org/enter_bug.cgi?product=xorg"
| #define PACKAGE_URL ""
| #define PACKAGE "xorg-server"
| #define VERSION "1.10.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 PACKAGE_VERSION_MAJOR 1
| #define PACKAGE_VERSION_MINOR 10
| #define PACKAGE_VERSION_PATCHLEVEL 1
| #define HAVE_DLFCN_H 1
| #define LT_OBJDIR ".libs/"
| #define YYTEXT_POINTER 1
| #define _FILE_OFFSET_BITS 64
| #define HAVE_DIRENT_H 1
| #define STDC_HEADERS 1
| #define HAVE_FCNTL_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_DLFCN_H 1
| #define HAVE_STROPTS_H 1
| #define HAVE_FNMATCH_H 1
| #define HAVE_SYS_UTSNAME_H 1
| #define SIZEOF_UNSIGNED_LONG 4
| #define HAVE_BYTESWAP_H 1
| #define HAVE_VPRINTF 1
| #define HAVE_GETEUID 1
| #define HAVE_GETUID 1
| #define HAVE_LINK 1
| #define HAVE_MEMMOVE 1
| #define HAVE_MEMSET 1
| #define HAVE_MKSTEMP 1
| #define HAVE_STRCHR 1
| #define HAVE_STRRCHR 1
| #define HAVE_STRTOL 1
| #define HAVE_GETOPT 1
| #define HAVE_GETOPT_LONG 1
| #define HAVE_VSNPRINTF 1
| #define HAVE_BACKTRACE 1
| #define HAVE_STRCASESTR 1
| #define HAVE_FFS 1
| #define HAVE_VASPRINTF 1
| #define HAVE_ALLOCA_H 1
| #define HAVE_ALLOCA 1
| #define HAS_GETDTABLESIZE 1
| #define HAS_GETIFADDRS 1
| #define HAS_MMAP 1
| #define HAVE_LIBM 1
| #define HAVE_CBRT 1
| #define HAVE_LINUX_AGPGART_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/agpio.h>
configure:15681: result: no
configure:15681: checking sys/agpio.h presence
configure:15681: i586-poky-linux-gcc -E --sysroot=/home/kyu3/sdb/test/tmp/sysroots/qemux86  conftest.c
conftest.c:65:23: fatal error: sys/agpio.h: No such file or directory
compilation terminated.
configure:15681: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "xorg-server"
| #define PACKAGE_TARNAME "xorg-server"
| #define PACKAGE_VERSION "1.10.1"
| #define PACKAGE_STRING "xorg-server 1.10.1"
| #define PACKAGE_BUGREPORT "https://bugs.freedesktop.org/enter_bug.cgi?product=xorg"
| #define PACKAGE_URL ""
| #define PACKAGE "xorg-server"
| #define VERSION "1.10.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 PACKAGE_VERSION_MAJOR 1
| #define PACKAGE_VERSION_MINOR 10
| #define PACKAGE_VERSION_PATCHLEVEL 1
| #define HAVE_DLFCN_H 1
| #define LT_OBJDIR ".libs/"
| #define YYTEXT_POINTER 1
| #define _FILE_OFFSET_BITS 64
| #define HAVE_DIRENT_H 1
| #define STDC_HEADERS 1
| #define HAVE_FCNTL_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_DLFCN_H 1
| #define HAVE_STROPTS_H 1
| #define HAVE_FNMATCH_H 1
| #define HAVE_SYS_UTSNAME_H 1
| #define SIZEOF_UNSIGNED_LONG 4
| #define HAVE_BYTESWAP_H 1
| #define HAVE_VPRINTF 1
| #define HAVE_GETEUID 1
| #define HAVE_GETUID 1
| #define HAVE_LINK 1
| #define HAVE_MEMMOVE 1
| #define HAVE_MEMSET 1
| #define HAVE_MKSTEMP 1
| #define HAVE_STRCHR 1
| #define HAVE_STRRCHR 1
| #define HAVE_STRTOL 1
| #define HAVE_GETOPT 1
| #define HAVE_GETOPT_LONG 1
| #define HAVE_VSNPRINTF 1
| #define HAVE_BACKTRACE 1
| #define HAVE_STRCASESTR 1
| #define HAVE_FFS 1
| #define HAVE_VASPRINTF 1
| #define HAVE_ALLOCA_H 1
| #define HAVE_ALLOCA 1
| #define HAS_GETDTABLESIZE 1
| #define HAS_GETIFADDRS 1
| #define HAS_MMAP 1
| #define HAVE_LIBM 1
| #define HAVE_CBRT 1
| #define HAVE_LINUX_AGPGART_H 1
| /* end confdefs.h.  */
| #include <sys/agpio.h>
configure:15681: result: no
configure:15681: checking for sys/agpio.h
configure:15681: result: no
configure:15681: checking sys/agpgart.h usability
configure:15681: i586-poky-linux-gcc -march=i586 --sysroot=/home/kyu3/sdb/test/tmp/sysroots/qemux86 -std=gnu99 -c -O2 -pipe -g -feliminate-unused-debug-types  conftest.c >&5
conftest.c:98:25: fatal error: sys/agpgart.h: No such file or directory
compilation terminated.
configure:15681: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "xorg-server"
| #define PACKAGE_TARNAME "xorg-server"
| #define PACKAGE_VERSION "1.10.1"
| #define PACKAGE_STRING "xorg-server 1.10.1"
| #define PACKAGE_BUGREPORT "https://bugs.freedesktop.org/enter_bug.cgi?product=xorg"
| #define PACKAGE_URL ""
| #define PACKAGE "xorg-server"
| #define VERSION "1.10.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 PACKAGE_VERSION_MAJOR 1
| #define PACKAGE_VERSION_MINOR 10
| #define PACKAGE_VERSION_PATCHLEVEL 1
| #define HAVE_DLFCN_H 1
| #define LT_OBJDIR ".libs/"
| #define YYTEXT_POINTER 1
| #define _FILE_OFFSET_BITS 64
| #define HAVE_DIRENT_H 1
| #define STDC_HEADERS 1
| #define HAVE_FCNTL_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_DLFCN_H 1
| #define HAVE_STROPTS_H 1
| #define HAVE_FNMATCH_H 1
| #define HAVE_SYS_UTSNAME_H 1
| #define SIZEOF_UNSIGNED_LONG 4
| #define HAVE_BYTESWAP_H 1
| #define HAVE_VPRINTF 1
| #define HAVE_GETEUID 1
| #define HAVE_GETUID 1
| #define HAVE_LINK 1
| #define HAVE_MEMMOVE 1
| #define HAVE_MEMSET 1
| #define HAVE_MKSTEMP 1
| #define HAVE_STRCHR 1
| #define HAVE_STRRCHR 1
| #define HAVE_STRTOL 1
| #define HAVE_GETOPT 1
| #define HAVE_GETOPT_LONG 1
| #define HAVE_VSNPRINTF 1
| #define HAVE_BACKTRACE 1
| #define HAVE_STRCASESTR 1
| #define HAVE_FFS 1
| #define HAVE_VASPRINTF 1
| #define HAVE_ALLOCA_H 1
| #define HAVE_ALLOCA 1
| #define HAS_GETDTABLESIZE 1
| #define HAS_GETIFADDRS 1
| #define HAS_MMAP 1
| #define HAVE_LIBM 1
| #define HAVE_CBRT 1
| #define HAVE_LINUX_AGPGART_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/agpgart.h>
configure:15681: result: no
configure:15681: checking sys/agpgart.h presence
configure:15681: i586-poky-linux-gcc -E --sysroot=/home/kyu3/sdb/test/tmp/sysroots/qemux86  conftest.c
conftest.c:65:25: fatal error: sys/agpgart.h: No such file or directory
compilation terminated.
configure:15681: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "xorg-server"
| #define PACKAGE_TARNAME "xorg-server"
| #define PACKAGE_VERSION "1.10.1"
| #define PACKAGE_STRING "xorg-server 1.10.1"
| #define PACKAGE_BUGREPORT "https://bugs.freedesktop.org/enter_bug.cgi?product=xorg"
| #define PACKAGE_URL ""
| #define PACKAGE "xorg-server"
| #define VERSION "1.10.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 PACKAGE_VERSION_MAJOR 1
| #define PACKAGE_VERSION_MINOR 10
| #define PACKAGE_VERSION_PATCHLEVEL 1
| #define HAVE_DLFCN_H 1
| #define LT_OBJDIR ".libs/"
| #define YYTEXT_POINTER 1
| #define _FILE_OFFSET_BITS 64
| #define HAVE_DIRENT_H 1
| #define STDC_HEADERS 1
| #define HAVE_FCNTL_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_DLFCN_H 1
| #define HAVE_STROPTS_H 1
| #define HAVE_FNMATCH_H 1
| #define HAVE_SYS_UTSNAME_H 1
| #define SIZEOF_UNSIGNED_LONG 4
| #define HAVE_BYTESWAP_H 1
| #define HAVE_VPRINTF 1
| #define HAVE_GETEUID 1
| #define HAVE_GETUID 1
| #define HAVE_LINK 1
| #define HAVE_MEMMOVE 1
| #define HAVE_MEMSET 1
| #define HAVE_MKSTEMP 1
| #define HAVE_STRCHR 1
| #define HAVE_STRRCHR 1
| #define HAVE_STRTOL 1
| #define HAVE_GETOPT 1
| #define HAVE_GETOPT_LONG 1
| #define HAVE_VSNPRINTF 1
| #define HAVE_BACKTRACE 1
| #define HAVE_STRCASESTR 1
| #define HAVE_FFS 1
| #define HAVE_VASPRINTF 1
| #define HAVE_ALLOCA_H 1
| #define HAVE_ALLOCA 1
| #define HAS_GETDTABLESIZE 1
| #define HAS_GETIFADDRS 1
| #define HAS_MMAP 1
| #define HAVE_LIBM 1
| #define HAVE_CBRT 1
| #define HAVE_LINUX_AGPGART_H 1
| /* end confdefs.h.  */
| #include <sys/agpgart.h>
configure:15681: result: no
configure:15681: checking for sys/agpgart.h
configure:15681: result: no
configure:15703: checking linux/apm_bios.h usability
configure:15703: i586-poky-linux-gcc -march=i586 --sysroot=/home/kyu3/sdb/test/tmp/sysroots/qemux86 -std=gnu99 -c -O2 -pipe -g -feliminate-unused-debug-types  conftest.c >&5
configure:15703: $? = 0
configure:15703: result: yes
configure:15703: checking linux/apm_bios.h presence
configure:15703: i586-poky-linux-gcc -E --sysroot=/home/kyu3/sdb/test/tmp/sysroots/qemux86  conftest.c
configure:15703: $? = 0
configure:15703: result: yes
configure:15703: checking for linux/apm_bios.h
configure:15703: result: yes
configure:15724: checking linux/fb.h usability
configure:15724: i586-poky-linux-gcc -march=i586 --sysroot=/home/kyu3/sdb/test/tmp/sysroots/qemux86 -std=gnu99 -c -O2 -pipe -g -feliminate-unused-debug-types  conftest.c >&5
configure:15724: $? = 0
configure:15724: result: yes
configure:15724: checking linux/fb.h presence
configure:15724: i586-poky-linux-gcc -E --sysroot=/home/kyu3/sdb/test/tmp/sysroots/qemux86  conftest.c
configure:15724: $? = 0
configure:15724: result: yes
configure:15724: checking for linux/fb.h
configure:15724: result: yes
configure:15745: checking asm/mtrr.h usability
configure:15745: i586-poky-linux-gcc -march=i586 --sysroot=/home/kyu3/sdb/test/tmp/sysroots/qemux86 -std=gnu99 -c -O2 -pipe -g -feliminate-unused-debug-types  conftest.c >&5
configure:15745: $? = 0
configure:15745: result: yes
configure:15745: checking asm/mtrr.h presence
configure:15745: i586-poky-linux-gcc -E --sysroot=/home/kyu3/sdb/test/tmp/sysroots/qemux86  conftest.c
configure:15745: $? = 0
configure:15745: result: yes
configure:15745: checking for asm/mtrr.h
configure:15745: result: yes
configure:15761: checking sys/memrange.h usability
configure:15761: i586-poky-linux-gcc -march=i586 --sysroot=/home/kyu3/sdb/test/tmp/sysroots/qemux86 -std=gnu99 -c -O2 -pipe -g -feliminate-unused-debug-types  conftest.c >&5
conftest.c:101:26: fatal error: sys/memrange.h: No such file or directory
compilation terminated.
configure:15761: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "xorg-server"
| #define PACKAGE_TARNAME "xorg-server"
| #define PACKAGE_VERSION "1.10.1"
| #define PACKAGE_STRING "xorg-server 1.10.1"
| #define PACKAGE_BUGREPORT "https://bugs.freedesktop.org/enter_bug.cgi?product=xorg"
| #define PACKAGE_URL ""
| #define PACKAGE "xorg-server"
| #define VERSION "1.10.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 PACKAGE_VERSION_MAJOR 1
| #define PACKAGE_VERSION_MINOR 10
| #define PACKAGE_VERSION_PATCHLEVEL 1
| #define HAVE_DLFCN_H 1
| #define LT_OBJDIR ".libs/"
| #define YYTEXT_POINTER 1
| #define _FILE_OFFSET_BITS 64
| #define HAVE_DIRENT_H 1
| #define STDC_HEADERS 1
| #define HAVE_FCNTL_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_DLFCN_H 1
| #define HAVE_STROPTS_H 1
| #define HAVE_FNMATCH_H 1
| #define HAVE_SYS_UTSNAME_H 1
| #define SIZEOF_UNSIGNED_LONG 4
| #define HAVE_BYTESWAP_H 1
| #define HAVE_VPRINTF 1
| #define HAVE_GETEUID 1
| #define HAVE_GETUID 1
| #define HAVE_LINK 1
| #define HAVE_MEMMOVE 1
| #define HAVE_MEMSET 1
| #define HAVE_MKSTEMP 1
| #define HAVE_STRCHR 1
| #define HAVE_STRRCHR 1
| #define HAVE_STRTOL 1
| #define HAVE_GETOPT 1
| #define HAVE_GETOPT_LONG 1
| #define HAVE_VSNPRINTF 1
| #define HAVE_BACKTRACE 1
| #define HAVE_STRCASESTR 1
| #define HAVE_FFS 1
| #define HAVE_VASPRINTF 1
| #define HAVE_ALLOCA_H 1
| #define HAVE_ALLOCA 1
| #define HAS_GETDTABLESIZE 1
| #define HAS_GETIFADDRS 1
| #define HAS_MMAP 1
| #define HAVE_LIBM 1
| #define HAVE_CBRT 1
| #define HAVE_LINUX_AGPGART_H 1
| #define HAVE_LINUX_APM_BIOS_H 1
| #define HAVE_LINUX_FB_H 1
| #define HAVE_ASM_MTRR_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/memrange.h>
configure:15761: result: no
configure:15761: checking sys/memrange.h presence
configure:15761: i586-poky-linux-gcc -E --sysroot=/home/kyu3/sdb/test/tmp/sysroots/qemux86  conftest.c
conftest.c:68:26: fatal error: sys/memrange.h: No such file or directory
compilation terminated.
configure:15761: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "xorg-server"
| #define PACKAGE_TARNAME "xorg-server"
| #define PACKAGE_VERSION "1.10.1"
| #define PACKAGE_STRING "xorg-server 1.10.1"
| #define PACKAGE_BUGREPORT "https://bugs.freedesktop.org/enter_bug.cgi?product=xorg"
| #define PACKAGE_URL ""
| #define PACKAGE "xorg-server"
| #define VERSION "1.10.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 PACKAGE_VERSION_MAJOR 1
| #define PACKAGE_VERSION_MINOR 10
| #define PACKAGE_VERSION_PATCHLEVEL 1
| #define HAVE_DLFCN_H 1
| #define LT_OBJDIR ".libs/"
| #define YYTEXT_POINTER 1
| #define _FILE_OFFSET_BITS 64
| #define HAVE_DIRENT_H 1
| #define STDC_HEADERS 1
| #define HAVE_FCNTL_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_DLFCN_H 1
| #define HAVE_STROPTS_H 1
| #define HAVE_FNMATCH_H 1
| #define HAVE_SYS_UTSNAME_H 1
| #define SIZEOF_UNSIGNED_LONG 4
| #define HAVE_BYTESWAP_H 1
| #define HAVE_VPRINTF 1
| #define HAVE_GETEUID 1
| #define HAVE_GETUID 1
| #define HAVE_LINK 1
| #define HAVE_MEMMOVE 1
| #define HAVE_MEMSET 1
| #define HAVE_MKSTEMP 1
| #define HAVE_STRCHR 1
| #define HAVE_STRRCHR 1
| #define HAVE_STRTOL 1
| #define HAVE_GETOPT 1
| #define HAVE_GETOPT_LONG 1
| #define HAVE_VSNPRINTF 1
| #define HAVE_BACKTRACE 1
| #define HAVE_STRCASESTR 1
| #define HAVE_FFS 1
| #define HAVE_VASPRINTF 1
| #define HAVE_ALLOCA_H 1
| #define HAVE_ALLOCA 1
| #define HAS_GETDTABLESIZE 1
| #define HAS_GETIFADDRS 1
| #define HAS_MMAP 1
| #define HAVE_LIBM 1
| #define HAVE_CBRT 1
| #define HAVE_LINUX_AGPGART_H 1
| #define HAVE_LINUX_APM_BIOS_H 1
| #define HAVE_LINUX_FB_H 1
| #define HAVE_ASM_MTRR_H 1
| /* end confdefs.h.  */
| #include <sys/memrange.h>
configure:15761: result: no
configure:15761: checking for sys/memrange.h
configure:15761: result: no
configure:15783: checking machine/mtrr.h usability
configure:15783: i586-poky-linux-gcc -march=i586 --sysroot=/home/kyu3/sdb/test/tmp/sysroots/qemux86 -std=gnu99 -c -O2 -pipe -g -feliminate-unused-debug-types  conftest.c >&5
conftest.c:102:26: fatal error: machine/mtrr.h: No such file or directory
compilation terminated.
configure:15783: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "xorg-server"
| #define PACKAGE_TARNAME "xorg-server"
| #define PACKAGE_VERSION "1.10.1"
| #define PACKAGE_STRING "xorg-server 1.10.1"
| #define PACKAGE_BUGREPORT "https://bugs.freedesktop.org/enter_bug.cgi?product=xorg"
| #define PACKAGE_URL ""
| #define PACKAGE "xorg-server"
| #define VERSION "1.10.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 PACKAGE_VERSION_MAJOR 1
| #define PACKAGE_VERSION_MINOR 10
| #define PACKAGE_VERSION_PATCHLEVEL 1
| #define HAVE_DLFCN_H 1
| #define LT_OBJDIR ".libs/"
| #define YYTEXT_POINTER 1
| #define _FILE_OFFSET_BITS 64
| #define HAVE_DIRENT_H 1
| #define STDC_HEADERS 1
| #define HAVE_FCNTL_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_DLFCN_H 1
| #define HAVE_STROPTS_H 1
| #define HAVE_FNMATCH_H 1
| #define HAVE_SYS_UTSNAME_H 1
| #define SIZEOF_UNSIGNED_LONG 4
| #define HAVE_BYTESWAP_H 1
| #define HAVE_VPRINTF 1
| #define HAVE_GETEUID 1
| #define HAVE_GETUID 1
| #define HAVE_LINK 1
| #define HAVE_MEMMOVE 1
| #define HAVE_MEMSET 1
| #define HAVE_MKSTEMP 1
| #define HAVE_STRCHR 1
| #define HAVE_STRRCHR 1
| #define HAVE_STRTOL 1
| #define HAVE_GETOPT 1
| #define HAVE_GETOPT_LONG 1
| #define HAVE_VSNPRINTF 1
| #define HAVE_BACKTRACE 1
| #define HAVE_STRCASESTR 1
| #define HAVE_FFS 1
| #define HAVE_VASPRINTF 1
| #define HAVE_ALLOCA_H 1
| #define HAVE_ALLOCA 1
| #define HAS_GETDTABLESIZE 1
| #define HAS_GETIFADDRS 1
| #define HAS_MMAP 1
| #define HAVE_LIBM 1
| #define HAVE_CBRT 1
| #define HAVE_LINUX_AGPGART_H 1
| #define HAVE_LINUX_APM_BIOS_H 1
| #define HAVE_LINUX_FB_H 1
| #define HAVE_ASM_MTRR_H 1
| #define HAS_MTRR_SUPPORT 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 <machine/mtrr.h>
configure:15783: result: no
configure:15783: checking machine/mtrr.h presence
configure:15783: i586-poky-linux-gcc -E --sysroot=/home/kyu3/sdb/test/tmp/sysroots/qemux86  conftest.c
conftest.c:69:26: fatal error: machine/mtrr.h: No such file or directory
compilation terminated.
configure:15783: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "xorg-server"
| #define PACKAGE_TARNAME "xorg-server"
| #define PACKAGE_VERSION "1.10.1"
| #define PACKAGE_STRING "xorg-server 1.10.1"
| #define PACKAGE_BUGREPORT "https://bugs.freedesktop.org/enter_bug.cgi?product=xorg"
| #define PACKAGE_URL ""
| #define PACKAGE "xorg-server"
| #define VERSION "1.10.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 PACKAGE_VERSION_MAJOR 1
| #define PACKAGE_VERSION_MINOR 10
| #define PACKAGE_VERSION_PATCHLEVEL 1
| #define HAVE_DLFCN_H 1
| #define LT_OBJDIR ".libs/"
| #define YYTEXT_POINTER 1
| #define _FILE_OFFSET_BITS 64
| #define HAVE_DIRENT_H 1
| #define STDC_HEADERS 1
| #define HAVE_FCNTL_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_DLFCN_H 1
| #define HAVE_STROPTS_H 1
| #define HAVE_FNMATCH_H 1
| #define HAVE_SYS_UTSNAME_H 1
| #define SIZEOF_UNSIGNED_LONG 4
| #define HAVE_BYTESWAP_H 1
| #define HAVE_VPRINTF 1
| #define HAVE_GETEUID 1
| #define HAVE_GETUID 1
| #define HAVE_LINK 1
| #define HAVE_MEMMOVE 1
| #define HAVE_MEMSET 1
| #define HAVE_MKSTEMP 1
| #define HAVE_STRCHR 1
| #define HAVE_STRRCHR 1
| #define HAVE_STRTOL 1
| #define HAVE_GETOPT 1
| #define HAVE_GETOPT_LONG 1
| #define HAVE_VSNPRINTF 1
| #define HAVE_BACKTRACE 1
| #define HAVE_STRCASESTR 1
| #define HAVE_FFS 1
| #define HAVE_VASPRINTF 1
| #define HAVE_ALLOCA_H 1
| #define HAVE_ALLOCA 1
| #define HAS_GETDTABLESIZE 1
| #define HAS_GETIFADDRS 1
| #define HAS_MMAP 1
| #define HAVE_LIBM 1
| #define HAVE_CBRT 1
| #define HAVE_LINUX_AGPGART_H 1
| #define HAVE_LINUX_APM_BIOS_H 1
| #define HAVE_LINUX_FB_H 1
| #define HAVE_ASM_MTRR_H 1
| #define HAS_MTRR_SUPPORT 1
| /* end confdefs.h.  */
| #include <machine/mtrr.h>
configure:15783: result: no
configure:15783: checking for machine/mtrr.h
configure:15783: result: no
configure:15801: checking for sys/linker.h
configure:15801: i586-poky-linux-gcc -march=i586 --sysroot=/home/kyu3/sdb/test/tmp/sysroots/qemux86 -std=gnu99 -c -O2 -pipe -g -feliminate-unused-debug-types  conftest.c >&5
conftest.c:71:24: fatal error: sys/linker.h: No such file or directory
compilation terminated.
configure:15801: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "xorg-server"
| #define PACKAGE_TARNAME "xorg-server"
| #define PACKAGE_VERSION "1.10.1"
| #define PACKAGE_STRING "xorg-server 1.10.1"
| #define PACKAGE_BUGREPORT "https://bugs.freedesktop.org/enter_bug.cgi?product=xorg"
| #define PACKAGE_URL ""
| #define PACKAGE "xorg-server"
| #define VERSION "1.10.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 PACKAGE_VERSION_MAJOR 1
| #define PACKAGE_VERSION_MINOR 10
| #define PACKAGE_VERSION_PATCHLEVEL 1
| #define HAVE_DLFCN_H 1
| #define LT_OBJDIR ".libs/"
| #define YYTEXT_POINTER 1
| #define _FILE_OFFSET_BITS 64
| #define HAVE_DIRENT_H 1
| #define STDC_HEADERS 1
| #define HAVE_FCNTL_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_DLFCN_H 1
| #define HAVE_STROPTS_H 1
| #define HAVE_FNMATCH_H 1
| #define HAVE_SYS_UTSNAME_H 1
| #define SIZEOF_UNSIGNED_LONG 4
| #define HAVE_BYTESWAP_H 1
| #define HAVE_VPRINTF 1
| #define HAVE_GETEUID 1
| #define HAVE_GETUID 1
| #define HAVE_LINK 1
| #define HAVE_MEMMOVE 1
| #define HAVE_MEMSET 1
| #define HAVE_MKSTEMP 1
| #define HAVE_STRCHR 1
| #define HAVE_STRRCHR 1
| #define HAVE_STRTOL 1
| #define HAVE_GETOPT 1
| #define HAVE_GETOPT_LONG 1
| #define HAVE_VSNPRINTF 1
| #define HAVE_BACKTRACE 1
| #define HAVE_STRCASESTR 1
| #define HAVE_FFS 1
| #define HAVE_VASPRINTF 1
| #define HAVE_ALLOCA_H 1
| #define HAVE_ALLOCA 1
| #define HAS_GETDTABLESIZE 1
| #define HAS_GETIFADDRS 1
| #define HAS_MMAP 1
| #define HAVE_LIBM 1
| #define HAVE_CBRT 1
| #define HAVE_LINUX_AGPGART_H 1
| #define HAVE_LINUX_APM_BIOS_H 1
| #define HAVE_LINUX_FB_H 1
| #define HAVE_ASM_MTRR_H 1
| #define HAS_MTRR_SUPPORT 1
| /* end confdefs.h.  */
| #include <sys/param.h>
| 
| #include <sys/linker.h>
configure:15801: result: no
configure:15823: checking for SYSV IPC
configure:15849: i586-poky-linux-gcc -march=i586 --sysroot=/home/kyu3/sdb/test/tmp/sysroots/qemux86 -std=gnu99 -o conftest -O2 -pipe -g -feliminate-unused-debug-types  -Wl,-O1  -Wl,--as-needed conftest.c -lm  >&5
configure:15849: $? = 0
configure:15857: result: yes
configure:15871: checking machine/apmvar.h usability
configure:15871: i586-poky-linux-gcc -march=i586 --sysroot=/home/kyu3/sdb/test/tmp/sysroots/qemux86 -std=gnu99 -c -O2 -pipe -g -feliminate-unused-debug-types  conftest.c >&5
conftest.c:103:28: fatal error: machine/apmvar.h: No such file or directory
compilation terminated.
configure:15871: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "xorg-server"
| #define PACKAGE_TARNAME "xorg-server"
| #define PACKAGE_VERSION "1.10.1"
| #define PACKAGE_STRING "xorg-server 1.10.1"
| #define PACKAGE_BUGREPORT "https://bugs.freedesktop.org/enter_bug.cgi?product=xorg"
| #define PACKAGE_URL ""
| #define PACKAGE "xorg-server"
| #define VERSION "1.10.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 PACKAGE_VERSION_MAJOR 1
| #define PACKAGE_VERSION_MINOR 10
| #define PACKAGE_VERSION_PATCHLEVEL 1
| #define HAVE_DLFCN_H 1
| #define LT_OBJDIR ".libs/"
| #define YYTEXT_POINTER 1
| #define _FILE_OFFSET_BITS 64
| #define HAVE_DIRENT_H 1
| #define STDC_HEADERS 1
| #define HAVE_FCNTL_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_DLFCN_H 1
| #define HAVE_STROPTS_H 1
| #define HAVE_FNMATCH_H 1
| #define HAVE_SYS_UTSNAME_H 1
| #define SIZEOF_UNSIGNED_LONG 4
| #define HAVE_BYTESWAP_H 1
| #define HAVE_VPRINTF 1
| #define HAVE_GETEUID 1
| #define HAVE_GETUID 1
| #define HAVE_LINK 1
| #define HAVE_MEMMOVE 1
| #define HAVE_MEMSET 1
| #define HAVE_MKSTEMP 1
| #define HAVE_STRCHR 1
| #define HAVE_STRRCHR 1
| #define HAVE_STRTOL 1
| #define HAVE_GETOPT 1
| #define HAVE_GETOPT_LONG 1
| #define HAVE_VSNPRINTF 1
| #define HAVE_BACKTRACE 1
| #define HAVE_STRCASESTR 1
| #define HAVE_FFS 1
| #define HAVE_VASPRINTF 1
| #define HAVE_ALLOCA_H 1
| #define HAVE_ALLOCA 1
| #define HAS_GETDTABLESIZE 1
| #define HAS_GETIFADDRS 1
| #define HAS_MMAP 1
| #define HAVE_LIBM 1
| #define HAVE_CBRT 1
| #define HAVE_LINUX_AGPGART_H 1
| #define HAVE_LINUX_APM_BIOS_H 1
| #define HAVE_LINUX_FB_H 1
| #define HAVE_ASM_MTRR_H 1
| #define HAS_MTRR_SUPPORT 1
| #define HAVE_SYSV_IPC 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 <machine/apmvar.h>
configure:15871: result: no
configure:15871: checking machine/apmvar.h presence
configure:15871: i586-poky-linux-gcc -E --sysroot=/home/kyu3/sdb/test/tmp/sysroots/qemux86  conftest.c
conftest.c:70:28: fatal error: machine/apmvar.h: No such file or directory
compilation terminated.
configure:15871: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "xorg-server"
| #define PACKAGE_TARNAME "xorg-server"
| #define PACKAGE_VERSION "1.10.1"
| #define PACKAGE_STRING "xorg-server 1.10.1"
| #define PACKAGE_BUGREPORT "https://bugs.freedesktop.org/enter_bug.cgi?product=xorg"
| #define PACKAGE_URL ""
| #define PACKAGE "xorg-server"
| #define VERSION "1.10.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 PACKAGE_VERSION_MAJOR 1
| #define PACKAGE_VERSION_MINOR 10
| #define PACKAGE_VERSION_PATCHLEVEL 1
| #define HAVE_DLFCN_H 1
| #define LT_OBJDIR ".libs/"
| #define YYTEXT_POINTER 1
| #define _FILE_OFFSET_BITS 64
| #define HAVE_DIRENT_H 1
| #define STDC_HEADERS 1
| #define HAVE_FCNTL_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_DLFCN_H 1
| #define HAVE_STROPTS_H 1
| #define HAVE_FNMATCH_H 1
| #define HAVE_SYS_UTSNAME_H 1
| #define SIZEOF_UNSIGNED_LONG 4
| #define HAVE_BYTESWAP_H 1
| #define HAVE_VPRINTF 1
| #define HAVE_GETEUID 1
| #define HAVE_GETUID 1
| #define HAVE_LINK 1
| #define HAVE_MEMMOVE 1
| #define HAVE_MEMSET 1
| #define HAVE_MKSTEMP 1
| #define HAVE_STRCHR 1
| #define HAVE_STRRCHR 1
| #define HAVE_STRTOL 1
| #define HAVE_GETOPT 1
| #define HAVE_GETOPT_LONG 1
| #define HAVE_VSNPRINTF 1
| #define HAVE_BACKTRACE 1
| #define HAVE_STRCASESTR 1
| #define HAVE_FFS 1
| #define HAVE_VASPRINTF 1
| #define HAVE_ALLOCA_H 1
| #define HAVE_ALLOCA 1
| #define HAS_GETDTABLESIZE 1
| #define HAS_GETIFADDRS 1
| #define HAS_MMAP 1
| #define HAVE_LIBM 1
| #define HAVE_CBRT 1
| #define HAVE_LINUX_AGPGART_H 1
| #define HAVE_LINUX_APM_BIOS_H 1
| #define HAVE_LINUX_FB_H 1
| #define HAVE_ASM_MTRR_H 1
| #define HAS_MTRR_SUPPORT 1
| #define HAVE_SYSV_IPC 1
| /* end confdefs.h.  */
| #include <machine/apmvar.h>
configure:15871: result: no
configure:15871: checking for machine/apmvar.h
configure:15871: result: no
configure:15903: checking for execinfo.h
configure:15903: result: yes
configure:15906: checking for backtrace in -lc
configure:15931: i586-poky-linux-gcc -march=i586 --sysroot=/home/kyu3/sdb/test/tmp/sysroots/qemux86 -std=gnu99 -o conftest -O2 -pipe -g -feliminate-unused-debug-types  -Wl,-O1  -Wl,--as-needed conftest.c -lc  -lm  >&5
configure:15931: $? = 0
configure:15940: result: yes
configure:15971: i586-poky-linux-gcc -march=i586 --sysroot=/home/kyu3/sdb/test/tmp/sysroots/qemux86 -std=gnu99 -c -mapcs-frame  conftest.c >&5
cc1: error: unrecognized command line option '-mapcs-frame'
configure:15971: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "xorg-server"
| #define PACKAGE_TARNAME "xorg-server"
| #define PACKAGE_VERSION "1.10.1"
| #define PACKAGE_STRING "xorg-server 1.10.1"
| #define PACKAGE_BUGREPORT "https://bugs.freedesktop.org/enter_bug.cgi?product=xorg"
| #define PACKAGE_URL ""
| #define PACKAGE "xorg-server"
| #define VERSION "1.10.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 PACKAGE_VERSION_MAJOR 1
| #define PACKAGE_VERSION_MINOR 10
| #define PACKAGE_VERSION_PATCHLEVEL 1
| #define HAVE_DLFCN_H 1
| #define LT_OBJDIR ".libs/"
| #define YYTEXT_POINTER 1
| #define _FILE_OFFSET_BITS 64
| #define HAVE_DIRENT_H 1
| #define STDC_HEADERS 1
| #define HAVE_FCNTL_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_DLFCN_H 1
| #define HAVE_STROPTS_H 1
| #define HAVE_FNMATCH_H 1
| #define HAVE_SYS_UTSNAME_H 1
| #define SIZEOF_UNSIGNED_LONG 4
| #define HAVE_BYTESWAP_H 1
| #define HAVE_VPRINTF 1
| #define HAVE_GETEUID 1
| #define HAVE_GETUID 1
| #define HAVE_LINK 1
| #define HAVE_MEMMOVE 1
| #define HAVE_MEMSET 1
| #define HAVE_MKSTEMP 1
| #define HAVE_STRCHR 1
| #define HAVE_STRRCHR 1
| #define HAVE_STRTOL 1
| #define HAVE_GETOPT 1
| #define HAVE_GETOPT_LONG 1
| #define HAVE_VSNPRINTF 1
| #define HAVE_BACKTRACE 1
| #define HAVE_STRCASESTR 1
| #define HAVE_FFS 1
| #define HAVE_VASPRINTF 1
| #define HAVE_ALLOCA_H 1
| #define HAVE_ALLOCA 1
| #define HAS_GETDTABLESIZE 1
| #define HAS_GETIFADDRS 1
| #define HAS_MMAP 1
| #define HAVE_LIBM 1
| #define HAVE_CBRT 1
| #define HAVE_LINUX_AGPGART_H 1
| #define HAVE_LINUX_APM_BIOS_H 1
| #define HAVE_LINUX_FB_H 1
| #define HAVE_ASM_MTRR_H 1
| #define HAS_MTRR_SUPPORT 1
| #define HAVE_SYSV_IPC 1
| #define HAVE_BACKTRACE 1
| #define HAVE_EXECINFO_H 1
| /* end confdefs.h.  */
| 
| int
| main ()
| {
| 
|   ;
|   return 0;
| }
configure:16290: checking for root directory for font files
configure:16307: result: /usr/share/fonts/X11
configure:16313: checking for directory for misc files
configure:16324: result: ${FONTROOTDIR}/misc
configure:16330: checking for directory for OTF files
configure:16341: result: ${FONTROOTDIR}/OTF
configure:16347: checking for directory for TTF files
configure:16358: result: ${FONTROOTDIR}/TTF
configure:16364: checking for directory for Type1 files
configure:16375: result: ${FONTROOTDIR}/Type1
configure:16381: checking for directory for 75dpi files
configure:16392: result: ${FONTROOTDIR}/75dpi
configure:16398: checking for directory for 100dpi files
configure:16409: result: ${FONTROOTDIR}/100dpi
configure:16426: checking for default font path
configure:16428: result: ${FONTROOTDIR}/misc/,${FONTROOTDIR}/TTF/,${FONTROOTDIR}/OTF/,${FONTROOTDIR}/Type1/,${FONTROOTDIR}/100dpi/,${FONTROOTDIR}/75dpi/
configure:16565: checking for thread local storage (TLS) class
configure:16592: i586-poky-linux-gcc -march=i586 --sysroot=/home/kyu3/sdb/test/tmp/sysroots/qemux86 -std=gnu99 -c -O2 -pipe -g -feliminate-unused-debug-types  conftest.c >&5
configure:16592: $? = 0
configure:16612: result: __thread
configure:16975: checking to see if we can install the Xorg server as root
configure:16993: result: no
configure:17007: checking return type of signal handlers
configure:17025: i586-poky-linux-gcc -march=i586 --sysroot=/home/kyu3/sdb/test/tmp/sysroots/qemux86 -std=gnu99 -c -O2 -pipe -g -feliminate-unused-debug-types  conftest.c >&5
conftest.c: In function 'main':
conftest.c:80:1: error: void value not ignored as it ought to be
configure:17025: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "xorg-server"
| #define PACKAGE_TARNAME "xorg-server"
| #define PACKAGE_VERSION "1.10.1"
| #define PACKAGE_STRING "xorg-server 1.10.1"
| #define PACKAGE_BUGREPORT "https://bugs.freedesktop.org/enter_bug.cgi?product=xorg"
| #define PACKAGE_URL ""
| #define PACKAGE "xorg-server"
| #define VERSION "1.10.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 PACKAGE_VERSION_MAJOR 1
| #define PACKAGE_VERSION_MINOR 10
| #define PACKAGE_VERSION_PATCHLEVEL 1
| #define HAVE_DLFCN_H 1
| #define LT_OBJDIR ".libs/"
| #define YYTEXT_POINTER 1
| #define _FILE_OFFSET_BITS 64
| #define HAVE_DIRENT_H 1
| #define STDC_HEADERS 1
| #define HAVE_FCNTL_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_DLFCN_H 1
| #define HAVE_STROPTS_H 1
| #define HAVE_FNMATCH_H 1
| #define HAVE_SYS_UTSNAME_H 1
| #define SIZEOF_UNSIGNED_LONG 4
| #define HAVE_BYTESWAP_H 1
| #define HAVE_VPRINTF 1
| #define HAVE_GETEUID 1
| #define HAVE_GETUID 1
| #define HAVE_LINK 1
| #define HAVE_MEMMOVE 1
| #define HAVE_MEMSET 1
| #define HAVE_MKSTEMP 1
| #define HAVE_STRCHR 1
| #define HAVE_STRRCHR 1
| #define HAVE_STRTOL 1
| #define HAVE_GETOPT 1
| #define HAVE_GETOPT_LONG 1
| #define HAVE_VSNPRINTF 1
| #define HAVE_BACKTRACE 1
| #define HAVE_STRCASESTR 1
| #define HAVE_FFS 1
| #define HAVE_VASPRINTF 1
| #define HAVE_ALLOCA_H 1
| #define HAVE_ALLOCA 1
| #define HAS_GETDTABLESIZE 1
| #define HAS_GETIFADDRS 1
| #define HAS_MMAP 1
| #define HAVE_LIBM 1
| #define HAVE_CBRT 1
| #define HAVE_LINUX_AGPGART_H 1
| #define HAVE_LINUX_APM_BIOS_H 1
| #define HAVE_LINUX_FB_H 1
| #define HAVE_ASM_MTRR_H 1
| #define HAS_MTRR_SUPPORT 1
| #define HAVE_SYSV_IPC 1
| #define HAVE_BACKTRACE 1
| #define HAVE_EXECINFO_H 1
| #define LAUNCHD_ID_PREFIX "org.x"
| #define TLS __thread
| /* end confdefs.h.  */
| #include <sys/types.h>
| #include <signal.h>
| 
| int
| main ()
| {
| return *(signal (0, 0)) (0) == 1;
|   ;
|   return 0;
| }
configure:17032: result: void
configure:17054: checking if Xtrans should support UNIX socket connections
configure:17061: result: yes
configure:17070: checking if Xtrans should support TCP socket connections
configure:17072: result: yes
configure:17080: checking for library containing socket
configure:17111: i586-poky-linux-gcc -march=i586 --sysroot=/home/kyu3/sdb/test/tmp/sysroots/qemux86 -std=gnu99 -o conftest -O2 -pipe -g -feliminate-unused-debug-types  -Wl,-O1  -Wl,--as-needed conftest.c -lm  >&5
configure:17111: $? = 0
configure:17128: result: none required
configure:17136: checking for library containing gethostbyname
configure:17167: i586-poky-linux-gcc -march=i586 --sysroot=/home/kyu3/sdb/test/tmp/sysroots/qemux86 -std=gnu99 -o conftest -O2 -pipe -g -feliminate-unused-debug-types  -Wl,-O1  -Wl,--as-needed conftest.c -lm  >&5
configure:17167: $? = 0
configure:17184: result: none required
configure:17240: checking for getaddrinfo
configure:17240: result: yes
configure:17249: checking if IPv6 support should be built
configure:17256: result: yes
configure:17260: checking for struct sockaddr_in.sin_len
configure:17260: i586-poky-linux-gcc -march=i586 --sysroot=/home/kyu3/sdb/test/tmp/sysroots/qemux86 -std=gnu99 -c -O2 -pipe -g -feliminate-unused-debug-types  conftest.c >&5
conftest.c: In function 'main':
conftest.c:88:12: error: 'struct sockaddr_in' has no member named 'sin_len'
configure:17260: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "xorg-server"
| #define PACKAGE_TARNAME "xorg-server"
| #define PACKAGE_VERSION "1.10.1"
| #define PACKAGE_STRING "xorg-server 1.10.1"
| #define PACKAGE_BUGREPORT "https://bugs.freedesktop.org/enter_bug.cgi?product=xorg"
| #define PACKAGE_URL ""
| #define PACKAGE "xorg-server"
| #define VERSION "1.10.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 PACKAGE_VERSION_MAJOR 1
| #define PACKAGE_VERSION_MINOR 10
| #define PACKAGE_VERSION_PATCHLEVEL 1
| #define HAVE_DLFCN_H 1
| #define LT_OBJDIR ".libs/"
| #define YYTEXT_POINTER 1
| #define _FILE_OFFSET_BITS 64
| #define HAVE_DIRENT_H 1
| #define STDC_HEADERS 1
| #define HAVE_FCNTL_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_DLFCN_H 1
| #define HAVE_STROPTS_H 1
| #define HAVE_FNMATCH_H 1
| #define HAVE_SYS_UTSNAME_H 1
| #define SIZEOF_UNSIGNED_LONG 4
| #define HAVE_BYTESWAP_H 1
| #define HAVE_VPRINTF 1
| #define HAVE_GETEUID 1
| #define HAVE_GETUID 1
| #define HAVE_LINK 1
| #define HAVE_MEMMOVE 1
| #define HAVE_MEMSET 1
| #define HAVE_MKSTEMP 1
| #define HAVE_STRCHR 1
| #define HAVE_STRRCHR 1
| #define HAVE_STRTOL 1
| #define HAVE_GETOPT 1
| #define HAVE_GETOPT_LONG 1
| #define HAVE_VSNPRINTF 1
| #define HAVE_BACKTRACE 1
| #define HAVE_STRCASESTR 1
| #define HAVE_FFS 1
| #define HAVE_VASPRINTF 1
| #define HAVE_ALLOCA_H 1
| #define HAVE_ALLOCA 1
| #define HAS_GETDTABLESIZE 1
| #define HAS_GETIFADDRS 1
| #define HAS_MMAP 1
| #define HAVE_LIBM 1
| #define HAVE_CBRT 1
| #define HAVE_LINUX_AGPGART_H 1
| #define HAVE_LINUX_APM_BIOS_H 1
| #define HAVE_LINUX_FB_H 1
| #define HAVE_ASM_MTRR_H 1
| #define HAS_MTRR_SUPPORT 1
| #define HAVE_SYSV_IPC 1
| #define HAVE_BACKTRACE 1
| #define HAVE_EXECINFO_H 1
| #define LAUNCHD_ID_PREFIX "org.x"
| #define TLS __thread
| #define RETSIGTYPE void
| #define UNIXCONN 1
| #define TCPCONN 1
| #define IPv6 1
| /* end confdefs.h.  */
| 
| #include <sys/types.h>
| #include <sys/socket.h>
| #include <netinet/in.h>
| 
| 
| int
| main ()
| {
| static struct sockaddr_in ac_aggr;
| if (ac_aggr.sin_len)
| return 0;
|   ;
|   return 0;
| }
configure:17260: i586-poky-linux-gcc -march=i586 --sysroot=/home/kyu3/sdb/test/tmp/sysroots/qemux86 -std=gnu99 -c -O2 -pipe -g -feliminate-unused-debug-types  conftest.c >&5
conftest.c: In function 'main':
conftest.c:88:19: error: 'struct sockaddr_in' has no member named 'sin_len'
configure:17260: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "xorg-server"
| #define PACKAGE_TARNAME "xorg-server"
| #define PACKAGE_VERSION "1.10.1"
| #define PACKAGE_STRING "xorg-server 1.10.1"
| #define PACKAGE_BUGREPORT "https://bugs.freedesktop.org/enter_bug.cgi?product=xorg"
| #define PACKAGE_URL ""
| #define PACKAGE "xorg-server"
| #define VERSION "1.10.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 PACKAGE_VERSION_MAJOR 1
| #define PACKAGE_VERSION_MINOR 10
| #define PACKAGE_VERSION_PATCHLEVEL 1
| #define HAVE_DLFCN_H 1
| #define LT_OBJDIR ".libs/"
| #define YYTEXT_POINTER 1
| #define _FILE_OFFSET_BITS 64
| #define HAVE_DIRENT_H 1
| #define STDC_HEADERS 1
| #define HAVE_FCNTL_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_DLFCN_H 1
| #define HAVE_STROPTS_H 1
| #define HAVE_FNMATCH_H 1
| #define HAVE_SYS_UTSNAME_H 1
| #define SIZEOF_UNSIGNED_LONG 4
| #define HAVE_BYTESWAP_H 1
| #define HAVE_VPRINTF 1
| #define HAVE_GETEUID 1
| #define HAVE_GETUID 1
| #define HAVE_LINK 1
| #define HAVE_MEMMOVE 1
| #define HAVE_MEMSET 1
| #define HAVE_MKSTEMP 1
| #define HAVE_STRCHR 1
| #define HAVE_STRRCHR 1
| #define HAVE_STRTOL 1
| #define HAVE_GETOPT 1
| #define HAVE_GETOPT_LONG 1
| #define HAVE_VSNPRINTF 1
| #define HAVE_BACKTRACE 1
| #define HAVE_STRCASESTR 1
| #define HAVE_FFS 1
| #define HAVE_VASPRINTF 1
| #define HAVE_ALLOCA_H 1
| #define HAVE_ALLOCA 1
| #define HAS_GETDTABLESIZE 1
| #define HAS_GETIFADDRS 1
| #define HAS_MMAP 1
| #define HAVE_LIBM 1
| #define HAVE_CBRT 1
| #define HAVE_LINUX_AGPGART_H 1
| #define HAVE_LINUX_APM_BIOS_H 1
| #define HAVE_LINUX_FB_H 1
| #define HAVE_ASM_MTRR_H 1
| #define HAS_MTRR_SUPPORT 1
| #define HAVE_SYSV_IPC 1
| #define HAVE_BACKTRACE 1
| #define HAVE_EXECINFO_H 1
| #define LAUNCHD_ID_PREFIX "org.x"
| #define TLS __thread
| #define RETSIGTYPE void
| #define UNIXCONN 1
| #define TCPCONN 1
| #define IPv6 1
| /* end confdefs.h.  */
| 
| #include <sys/types.h>
| #include <sys/socket.h>
| #include <netinet/in.h>
| 
| 
| int
| main ()
| {
| static struct sockaddr_in ac_aggr;
| if (sizeof ac_aggr.sin_len)
| return 0;
|   ;
|   return 0;
| }
configure:17260: result: no
configure:17274: checking for socklen_t
configure:17274: i586-poky-linux-gcc -march=i586 --sysroot=/home/kyu3/sdb/test/tmp/sysroots/qemux86 -std=gnu99 -c -O2 -pipe -g -feliminate-unused-debug-types  conftest.c >&5
configure:17274: $? = 0
configure:17274: i586-poky-linux-gcc -march=i586 --sysroot=/home/kyu3/sdb/test/tmp/sysroots/qemux86 -std=gnu99 -c -O2 -pipe -g -feliminate-unused-debug-types  conftest.c >&5
conftest.c: In function 'main':
conftest.c:117:24: error: expected expression before ')' token
configure:17274: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "xorg-server"
| #define PACKAGE_TARNAME "xorg-server"
| #define PACKAGE_VERSION "1.10.1"
| #define PACKAGE_STRING "xorg-server 1.10.1"
| #define PACKAGE_BUGREPORT "https://bugs.freedesktop.org/enter_bug.cgi?product=xorg"
| #define PACKAGE_URL ""
| #define PACKAGE "xorg-server"
| #define VERSION "1.10.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 PACKAGE_VERSION_MAJOR 1
| #define PACKAGE_VERSION_MINOR 10
| #define PACKAGE_VERSION_PATCHLEVEL 1
| #define HAVE_DLFCN_H 1
| #define LT_OBJDIR ".libs/"
| #define YYTEXT_POINTER 1
| #define _FILE_OFFSET_BITS 64
| #define HAVE_DIRENT_H 1
| #define STDC_HEADERS 1
| #define HAVE_FCNTL_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_DLFCN_H 1
| #define HAVE_STROPTS_H 1
| #define HAVE_FNMATCH_H 1
| #define HAVE_SYS_UTSNAME_H 1
| #define SIZEOF_UNSIGNED_LONG 4
| #define HAVE_BYTESWAP_H 1
| #define HAVE_VPRINTF 1
| #define HAVE_GETEUID 1
| #define HAVE_GETUID 1
| #define HAVE_LINK 1
| #define HAVE_MEMMOVE 1
| #define HAVE_MEMSET 1
| #define HAVE_MKSTEMP 1
| #define HAVE_STRCHR 1
| #define HAVE_STRRCHR 1
| #define HAVE_STRTOL 1
| #define HAVE_GETOPT 1
| #define HAVE_GETOPT_LONG 1
| #define HAVE_VSNPRINTF 1
| #define HAVE_BACKTRACE 1
| #define HAVE_STRCASESTR 1
| #define HAVE_FFS 1
| #define HAVE_VASPRINTF 1
| #define HAVE_ALLOCA_H 1
| #define HAVE_ALLOCA 1
| #define HAS_GETDTABLESIZE 1
| #define HAS_GETIFADDRS 1
| #define HAS_MMAP 1
| #define HAVE_LIBM 1
| #define HAVE_CBRT 1
| #define HAVE_LINUX_AGPGART_H 1
| #define HAVE_LINUX_APM_BIOS_H 1
| #define HAVE_LINUX_FB_H 1
| #define HAVE_ASM_MTRR_H 1
| #define HAS_MTRR_SUPPORT 1
| #define HAVE_SYSV_IPC 1
| #define HAVE_BACKTRACE 1
| #define HAVE_EXECINFO_H 1
| #define LAUNCHD_ID_PREFIX "org.x"
| #define TLS __thread
| #define RETSIGTYPE void
| #define UNIXCONN 1
| #define TCPCONN 1
| #define IPv6 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/socket.h>
| 
| int
| main ()
| {
| if (sizeof ((socklen_t)))
| 	    return 0;
|   ;
|   return 0;
| }
configure:17274: result: yes
configure:17301: checking if Xtrans should support os-specific local connections
configure:17303: result: no
configure:17328: checking for authdes_seccreate
configure:17328: i586-poky-linux-gcc -march=i586 --sysroot=/home/kyu3/sdb/test/tmp/sysroots/qemux86 -std=gnu99 -o conftest -O2 -pipe -g -feliminate-unused-debug-types  -Wl,-O1  -Wl,--as-needed conftest.c -lm  >&5
/tmp/ccnvSGpW.o: In function `main':
/home/kyu3/sdb/test/tmp/work/i586-poky-linux/xserver-xf86-lite-1.10.1-r0/xorg-server-1.10.1/conftest.c:113: undefined reference to `authdes_seccreate'
collect2: ld returned 1 exit status
configure:17328: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "xorg-server"
| #define PACKAGE_TARNAME "xorg-server"
| #define PACKAGE_VERSION "1.10.1"
| #define PACKAGE_STRING "xorg-server 1.10.1"
| #define PACKAGE_BUGREPORT "https://bugs.freedesktop.org/enter_bug.cgi?product=xorg"
| #define PACKAGE_URL ""
| #define PACKAGE "xorg-server"
| #define VERSION "1.10.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 PACKAGE_VERSION_MAJOR 1
| #define PACKAGE_VERSION_MINOR 10
| #define PACKAGE_VERSION_PATCHLEVEL 1
| #define HAVE_DLFCN_H 1
| #define LT_OBJDIR ".libs/"
| #define YYTEXT_POINTER 1
| #define _FILE_OFFSET_BITS 64
| #define HAVE_DIRENT_H 1
| #define STDC_HEADERS 1
| #define HAVE_FCNTL_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_DLFCN_H 1
| #define HAVE_STROPTS_H 1
| #define HAVE_FNMATCH_H 1
| #define HAVE_SYS_UTSNAME_H 1
| #define SIZEOF_UNSIGNED_LONG 4
| #define HAVE_BYTESWAP_H 1
| #define HAVE_VPRINTF 1
| #define HAVE_GETEUID 1
| #define HAVE_GETUID 1
| #define HAVE_LINK 1
| #define HAVE_MEMMOVE 1
| #define HAVE_MEMSET 1
| #define HAVE_MKSTEMP 1
| #define HAVE_STRCHR 1
| #define HAVE_STRRCHR 1
| #define HAVE_STRTOL 1
| #define HAVE_GETOPT 1
| #define HAVE_GETOPT_LONG 1
| #define HAVE_VSNPRINTF 1
| #define HAVE_BACKTRACE 1
| #define HAVE_STRCASESTR 1
| #define HAVE_FFS 1
| #define HAVE_VASPRINTF 1
| #define HAVE_ALLOCA_H 1
| #define HAVE_ALLOCA 1
| #define HAS_GETDTABLESIZE 1
| #define HAS_GETIFADDRS 1
| #define HAS_MMAP 1
| #define HAVE_LIBM 1
| #define HAVE_CBRT 1
| #define HAVE_LINUX_AGPGART_H 1
| #define HAVE_LINUX_APM_BIOS_H 1
| #define HAVE_LINUX_FB_H 1
| #define HAVE_ASM_MTRR_H 1
| #define HAS_MTRR_SUPPORT 1
| #define HAVE_SYSV_IPC 1
| #define HAVE_BACKTRACE 1
| #define HAVE_EXECINFO_H 1
| #define LAUNCHD_ID_PREFIX "org.x"
| #define TLS __thread
| #define RETSIGTYPE void
| #define UNIXCONN 1
| #define TCPCONN 1
| #define IPv6 1
| #define HAVE_SOCKLEN_T 1
| /* end confdefs.h.  */
| /* Define authdes_seccreate to an innocuous variant, in case <limits.h> declares authdes_seccreate.
|    For example, HP-UX 11i <limits.h> declares gettimeofday.  */
| #define authdes_seccreate innocuous_authdes_seccreate
| 
| /* System header to define __stub macros and hopefully few prototypes,
|     which can conflict with char authdes_seccreate (); 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 authdes_seccreate
| 
| /* 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 authdes_seccreate ();
| /* 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_authdes_seccreate || defined __stub___authdes_seccreate
| choke me
| #endif
| 
| int
| main ()
| {
| return authdes_seccreate ();
|   ;
|   return 0;
| }
configure:17328: result: no
configure:17328: checking for authdes_create
configure:17328: i586-poky-linux-gcc -march=i586 --sysroot=/home/kyu3/sdb/test/tmp/sysroots/qemux86 -std=gnu99 -o conftest -O2 -pipe -g -feliminate-unused-debug-types  -Wl,-O1  -Wl,--as-needed conftest.c -lm  >&5
configure:17328: $? = 0
configure:17328: result: yes
configure:17344: checking for library containing getsecretkey
configure:17375: i586-poky-linux-gcc -march=i586 --sysroot=/home/kyu3/sdb/test/tmp/sysroots/qemux86 -std=gnu99 -o conftest -O2 -pipe -g -feliminate-unused-debug-types  -Wl,-O1  -Wl,--as-needed conftest.c -lm  >&5
configure:17375: $? = 0
configure:17392: result: none required
configure:17403: checking if Secure RPC authentication ("SUN-DES-1") should be supported
configure:17410: result: yes
configure:17481: checking whether to build documentation
configure:17483: result: yes
configure:17504: checking whether to build developer documentation
configure:17506: result: yes
configure:17525: checking for xmlto
configure:17543: found /usr/bin/xmlto
configure:17555: result: /usr/bin/xmlto
configure:17628: checking the xmlto version
configure:17631: result: 0.0.23
configure:17918: checking for PIXMAN
configure:17925: $PKG_CONFIG --exists --print-errors "$LIBPIXMAN"
configure:17928: $? = 0
configure:17941: $PKG_CONFIG --exists --print-errors "$LIBPIXMAN"
configure:17944: $? = 0
configure:18001: result: yes
configure:18016: checking for UDEV
configure:18023: $PKG_CONFIG --exists --print-errors "$LIBUDEV"
configure:18026: $? = 0
configure:18039: $PKG_CONFIG --exists --print-errors "$LIBUDEV"
configure:18042: $? = 0
configure:18079: result: yes
configure:18107: checking for DBUS
configure:18114: $PKG_CONFIG --exists --print-errors "$LIBDBUS"
configure:18117: $? = 0
configure:18130: $PKG_CONFIG --exists --print-errors "$LIBDBUS"
configure:18133: $? = 0
configure:18170: result: yes
configure:18212: checking for HAL
configure:18219: $PKG_CONFIG --exists --print-errors "hal"
configure:18222: $? = 0
configure:18235: $PKG_CONFIG --exists --print-errors "hal"
configure:18238: $? = 0
configure:18275: result: yes
configure:18326: checking for glibc...
configure:18337: i586-poky-linux-gcc -E --sysroot=/home/kyu3/sdb/test/tmp/sysroots/qemux86  conftest.c
configure:18337: $? = 0
configure:18343: result: yes
configure:18348: checking for clock_gettime
configure:18348: i586-poky-linux-gcc -march=i586 --sysroot=/home/kyu3/sdb/test/tmp/sysroots/qemux86 -std=gnu99 -o conftest -O2 -pipe -g -feliminate-unused-debug-types  -Wl,-O1  -Wl,--as-needed conftest.c -lm  >&5
/tmp/ccYGza2o.o: In function `main':
/home/kyu3/sdb/test/tmp/work/i586-poky-linux/xserver-xf86-lite-1.10.1-r0/xorg-server-1.10.1/conftest.c:118: undefined reference to `clock_gettime'
collect2: ld returned 1 exit status
configure:18348: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "xorg-server"
| #define PACKAGE_TARNAME "xorg-server"
| #define PACKAGE_VERSION "1.10.1"
| #define PACKAGE_STRING "xorg-server 1.10.1"
| #define PACKAGE_BUGREPORT "https://bugs.freedesktop.org/enter_bug.cgi?product=xorg"
| #define PACKAGE_URL ""
| #define PACKAGE "xorg-server"
| #define VERSION "1.10.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 PACKAGE_VERSION_MAJOR 1
| #define PACKAGE_VERSION_MINOR 10
| #define PACKAGE_VERSION_PATCHLEVEL 1
| #define HAVE_DLFCN_H 1
| #define LT_OBJDIR ".libs/"
| #define YYTEXT_POINTER 1
| #define _FILE_OFFSET_BITS 64
| #define HAVE_DIRENT_H 1
| #define STDC_HEADERS 1
| #define HAVE_FCNTL_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_DLFCN_H 1
| #define HAVE_STROPTS_H 1
| #define HAVE_FNMATCH_H 1
| #define HAVE_SYS_UTSNAME_H 1
| #define SIZEOF_UNSIGNED_LONG 4
| #define HAVE_BYTESWAP_H 1
| #define HAVE_VPRINTF 1
| #define HAVE_GETEUID 1
| #define HAVE_GETUID 1
| #define HAVE_LINK 1
| #define HAVE_MEMMOVE 1
| #define HAVE_MEMSET 1
| #define HAVE_MKSTEMP 1
| #define HAVE_STRCHR 1
| #define HAVE_STRRCHR 1
| #define HAVE_STRTOL 1
| #define HAVE_GETOPT 1
| #define HAVE_GETOPT_LONG 1
| #define HAVE_VSNPRINTF 1
| #define HAVE_BACKTRACE 1
| #define HAVE_STRCASESTR 1
| #define HAVE_FFS 1
| #define HAVE_VASPRINTF 1
| #define HAVE_ALLOCA_H 1
| #define HAVE_ALLOCA 1
| #define HAS_GETDTABLESIZE 1
| #define HAS_GETIFADDRS 1
| #define HAS_MMAP 1
| #define HAVE_LIBM 1
| #define HAVE_CBRT 1
| #define HAVE_LINUX_AGPGART_H 1
| #define HAVE_LINUX_APM_BIOS_H 1
| #define HAVE_LINUX_FB_H 1
| #define HAVE_ASM_MTRR_H 1
| #define HAS_MTRR_SUPPORT 1
| #define HAVE_SYSV_IPC 1
| #define HAVE_BACKTRACE 1
| #define HAVE_EXECINFO_H 1
| #define LAUNCHD_ID_PREFIX "org.x"
| #define TLS __thread
| #define RETSIGTYPE void
| #define UNIXCONN 1
| #define TCPCONN 1
| #define IPv6 1
| #define HAVE_SOCKLEN_T 1
| #define HAVE_AUTHDES_CREATE 1
| #define SECURE_RPC 1
| #define CONFIG_UDEV 1
| #define HAVE_DBUS 1
| #define USE_SIGIO_BY_DEFAULT TRUE
| /* end confdefs.h.  */
| /* Define clock_gettime to an innocuous variant, in case <limits.h> declares clock_gettime.
|    For example, HP-UX 11i <limits.h> declares gettimeofday.  */
| #define clock_gettime innocuous_clock_gettime
| 
| /* System header to define __stub macros and hopefully few prototypes,
|     which can conflict with char clock_gettime (); 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 clock_gettime
| 
| /* 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 clock_gettime ();
| /* 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_clock_gettime || defined __stub___clock_gettime
| choke me
| #endif
| 
| int
| main ()
| {
| return clock_gettime ();
|   ;
|   return 0;
| }
configure:18348: result: no
configure:18355: checking for clock_gettime in -lrt
configure:18380: i586-poky-linux-gcc -march=i586 --sysroot=/home/kyu3/sdb/test/tmp/sysroots/qemux86 -std=gnu99 -o conftest -O2 -pipe -g -feliminate-unused-debug-types  -Wl,-O1  -Wl,--as-needed conftest.c -lrt  -lm  >&5
configure:18380: $? = 0
configure:18389: result: yes
configure:18401: checking for a useful monotonic clock ...
configure:18453: result: cross compiling
configure:19006: checking for DRI2PROTO
configure:19013: $PKG_CONFIG --exists --print-errors "$DRI2PROTO"
configure:19016: $? = 0
configure:19029: $PKG_CONFIG --exists --print-errors "$DRI2PROTO"
configure:19032: $? = 0
configure:19069: result: yes
configure:19101: checking for LIBDRM
configure:19108: $PKG_CONFIG --exists --print-errors "$LIBDRM"
configure:19111: $? = 0
configure:19124: $PKG_CONFIG --exists --print-errors "$LIBDRM"
configure:19127: $? = 0
configure:19184: result: yes
configure:19202: i586-poky-linux-gcc -march=i586 --sysroot=/home/kyu3/sdb/test/tmp/sysroots/qemux86 -std=gnu99 -c  -I/home/kyu3/sdb/test/tmp/sysroots/qemux86/usr/include/libdrm    conftest.c >&5
configure:19202: $? = 0
configure:19702: checking for strcasecmp
configure:19702: result: yes
configure:19711: checking for strncasecmp
configure:19711: result: yes
configure:19720: checking for strcasestr
configure:19720: result: yes
configure:19732: checking for XDMCP
configure:19739: $PKG_CONFIG --exists --print-errors "xdmcp"
configure:19742: $? = 0
configure:19755: $PKG_CONFIG --exists --print-errors "xdmcp"
configure:19758: $? = 0
configure:19795: result: yes
configure:19800: checking for XdmcpWrap in -lXdmcp
configure:19825: i586-poky-linux-gcc -march=i586 --sysroot=/home/kyu3/sdb/test/tmp/sysroots/qemux86 -std=gnu99 -o conftest -O2 -pipe -g -feliminate-unused-debug-types  -Wl,-O1  -Wl,--as-needed conftest.c -lXdmcp -lXdmcp   -lm  >&5
configure:19825: $? = 0
configure:19834: result: yes
configure:20068: checking for GLIB
configure:20075: $PKG_CONFIG --exists --print-errors "$LIBGLIB"
configure:20078: $? = 0
configure:20091: $PKG_CONFIG --exists --print-errors "$LIBGLIB"
configure:20094: $? = 0
configure:20131: result: yes
configure:20139: checking whether the linker supports -wrap
configure:20170: result: no
configure:20248: checking for SHA1Init
configure:20248: i586-poky-linux-gcc -march=i586 --sysroot=/home/kyu3/sdb/test/tmp/sysroots/qemux86 -std=gnu99 -o conftest -O2 -pipe -g -feliminate-unused-debug-types  -Wl,-O1  -Wl,--as-needed conftest.c -lm  >&5
/tmp/ccga2HBO.o: In function `main':
/home/kyu3/sdb/test/tmp/work/i586-poky-linux/xserver-xf86-lite-1.10.1-r0/xorg-server-1.10.1/conftest.c:171: undefined reference to `SHA1Init'
collect2: ld returned 1 exit status
configure:20248: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "xorg-server"
| #define PACKAGE_TARNAME "xorg-server"
| #define PACKAGE_VERSION "1.10.1"
| #define PACKAGE_STRING "xorg-server 1.10.1"
| #define PACKAGE_BUGREPORT "https://bugs.freedesktop.org/enter_bug.cgi?product=xorg"
| #define PACKAGE_URL ""
| #define PACKAGE "xorg-server"
| #define VERSION "1.10.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 PACKAGE_VERSION_MAJOR 1
| #define PACKAGE_VERSION_MINOR 10
| #define PACKAGE_VERSION_PATCHLEVEL 1
| #define HAVE_DLFCN_H 1
| #define LT_OBJDIR ".libs/"
| #define YYTEXT_POINTER 1
| #define _FILE_OFFSET_BITS 64
| #define HAVE_DIRENT_H 1
| #define STDC_HEADERS 1
| #define HAVE_FCNTL_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_DLFCN_H 1
| #define HAVE_STROPTS_H 1
| #define HAVE_FNMATCH_H 1
| #define HAVE_SYS_UTSNAME_H 1
| #define SIZEOF_UNSIGNED_LONG 4
| #define HAVE_BYTESWAP_H 1
| #define HAVE_VPRINTF 1
| #define HAVE_GETEUID 1
| #define HAVE_GETUID 1
| #define HAVE_LINK 1
| #define HAVE_MEMMOVE 1
| #define HAVE_MEMSET 1
| #define HAVE_MKSTEMP 1
| #define HAVE_STRCHR 1
| #define HAVE_STRRCHR 1
| #define HAVE_STRTOL 1
| #define HAVE_GETOPT 1
| #define HAVE_GETOPT_LONG 1
| #define HAVE_VSNPRINTF 1
| #define HAVE_BACKTRACE 1
| #define HAVE_STRCASESTR 1
| #define HAVE_FFS 1
| #define HAVE_VASPRINTF 1
| #define HAVE_ALLOCA_H 1
| #define HAVE_ALLOCA 1
| #define HAS_GETDTABLESIZE 1
| #define HAS_GETIFADDRS 1
| #define HAS_MMAP 1
| #define HAVE_LIBM 1
| #define HAVE_CBRT 1
| #define HAVE_LINUX_AGPGART_H 1
| #define HAVE_LINUX_APM_BIOS_H 1
| #define HAVE_LINUX_FB_H 1
| #define HAVE_ASM_MTRR_H 1
| #define HAS_MTRR_SUPPORT 1
| #define HAVE_SYSV_IPC 1
| #define HAVE_BACKTRACE 1
| #define HAVE_EXECINFO_H 1
| #define LAUNCHD_ID_PREFIX "org.x"
| #define TLS __thread
| #define RETSIGTYPE void
| #define UNIXCONN 1
| #define TCPCONN 1
| #define IPv6 1
| #define HAVE_SOCKLEN_T 1
| #define HAVE_AUTHDES_CREATE 1
| #define SECURE_RPC 1
| #define CONFIG_UDEV 1
| #define HAVE_DBUS 1
| #define USE_SIGIO_BY_DEFAULT TRUE
| #define XV 1
| #define XvExtension 1
| #define XvMCExtension 1
| #define XREGISTRY 1
| #define COMPOSITE 1
| #define MITSHM 1
| #define HAS_SHM 1
| #define SCREENSAVER 1
| #define RES 1
| #define DRI2 1
| #define WITH_LIBDRM 1
| #define DRI2_AIGLX 1
| #define XACE 1
| #define DBE 1
| #define DPMSExtension 1
| #define RENDER 1
| #define RANDR 1
| #define XFIXES 1
| #define DAMAGE 1
| #define XINPUT 1
| #define SHAPE 1
| #define XKB_BASE_DIRECTORY "/usr/share/X11/xkb"
| #define XKB_BIN_DIRECTORY "/usr/bin"
| #define XKM_OUTPUT_DIR "/var/lib/xkb/"
| #define XKB_DFLT_RULES "base"
| #define XKB_DFLT_MODEL "pc105"
| #define XKB_DFLT_LAYOUT "us"
| #define XKB_DFLT_VARIANT ""
| #define XKB_DFLT_OPTIONS ""
| #define XDMCP 1
| #define HASXDMAUTH 1
| #define COMPILEDDEFAULTFONTPATH "/usr/share/fonts/X11/misc/,/usr/share/fonts/X11/TTF/,/usr/share/fonts/X11/OTF/,/usr/share/fonts/X11/Type1/,/usr/share/fonts/X11/100dpi/,/usr/share/fonts/X11/75dpi/"
| #define PCI_TXT_IDS_PATH ""
| #define SERVER_MISC_CONFIG_PATH "/usr/lib/xorg"
| #define BASE_FONT_PATH "/usr/share/fonts/X11"
| #define DRI_DRIVER_PATH "/usr/lib/dri"
| #define XVENDORNAME "The X.Org Foundation"
| #define XVENDORNAMESHORT "X.Org"
| #define XORG_DATE "2011-04-15"
| #define XORG_MAN_VERSION "Version 1.10.1"
| #define BUILDERADDR "xorg@lists.freedesktop.org"
| #define OSNAME "Linux 2.6.35-25-server x86_64"
| #define OSVENDOR ""
| #define BUILDERSTRING ""
| #define VENDOR_NAME "The X.Org Foundation"
| #define VENDOR_NAME_SHORT "X.Org"
| #define VENDOR_RELEASE (((1) * 10000000) + ((10) * 100000) + ((1) * 1000) + 0)
| #define VENDOR_MAN_VERSION "Version 1.10.1"
| #define NO_LIBCWRAPPER 1
| #define XTEST 1
| #define XSYNC 1
| #define XCMISC 1
| #define BIGREQS 1
| /* end confdefs.h.  */
| /* Define SHA1Init to an innocuous variant, in case <limits.h> declares SHA1Init.
|    For example, HP-UX 11i <limits.h> declares gettimeofday.  */
| #define SHA1Init innocuous_SHA1Init
| 
| /* System header to define __stub macros and hopefully few prototypes,
|     which can conflict with char SHA1Init (); 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 SHA1Init
| 
| /* 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 SHA1Init ();
| /* 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_SHA1Init || defined __stub___SHA1Init
| choke me
| #endif
| 
| int
| main ()
| {
| return SHA1Init ();
|   ;
|   return 0;
| }
configure:20248: result: no
configure:20265: checking for CC_SHA1_Init
configure:20265: i586-poky-linux-gcc -march=i586 --sysroot=/home/kyu3/sdb/test/tmp/sysroots/qemux86 -std=gnu99 -o conftest -O2 -pipe -g -feliminate-unused-debug-types  -Wl,-O1  -Wl,--as-needed conftest.c -lm  >&5
/tmp/ccWsDBFR.o: In function `main':
/home/kyu3/sdb/test/tmp/work/i586-poky-linux/xserver-xf86-lite-1.10.1-r0/xorg-server-1.10.1/conftest.c:171: undefined reference to `CC_SHA1_Init'
collect2: ld returned 1 exit status
configure:20265: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "xorg-server"
| #define PACKAGE_TARNAME "xorg-server"
| #define PACKAGE_VERSION "1.10.1"
| #define PACKAGE_STRING "xorg-server 1.10.1"
| #define PACKAGE_BUGREPORT "https://bugs.freedesktop.org/enter_bug.cgi?product=xorg"
| #define PACKAGE_URL ""
| #define PACKAGE "xorg-server"
| #define VERSION "1.10.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 PACKAGE_VERSION_MAJOR 1
| #define PACKAGE_VERSION_MINOR 10
| #define PACKAGE_VERSION_PATCHLEVEL 1
| #define HAVE_DLFCN_H 1
| #define LT_OBJDIR ".libs/"
| #define YYTEXT_POINTER 1
| #define _FILE_OFFSET_BITS 64
| #define HAVE_DIRENT_H 1
| #define STDC_HEADERS 1
| #define HAVE_FCNTL_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_DLFCN_H 1
| #define HAVE_STROPTS_H 1
| #define HAVE_FNMATCH_H 1
| #define HAVE_SYS_UTSNAME_H 1
| #define SIZEOF_UNSIGNED_LONG 4
| #define HAVE_BYTESWAP_H 1
| #define HAVE_VPRINTF 1
| #define HAVE_GETEUID 1
| #define HAVE_GETUID 1
| #define HAVE_LINK 1
| #define HAVE_MEMMOVE 1
| #define HAVE_MEMSET 1
| #define HAVE_MKSTEMP 1
| #define HAVE_STRCHR 1
| #define HAVE_STRRCHR 1
| #define HAVE_STRTOL 1
| #define HAVE_GETOPT 1
| #define HAVE_GETOPT_LONG 1
| #define HAVE_VSNPRINTF 1
| #define HAVE_BACKTRACE 1
| #define HAVE_STRCASESTR 1
| #define HAVE_FFS 1
| #define HAVE_VASPRINTF 1
| #define HAVE_ALLOCA_H 1
| #define HAVE_ALLOCA 1
| #define HAS_GETDTABLESIZE 1
| #define HAS_GETIFADDRS 1
| #define HAS_MMAP 1
| #define HAVE_LIBM 1
| #define HAVE_CBRT 1
| #define HAVE_LINUX_AGPGART_H 1
| #define HAVE_LINUX_APM_BIOS_H 1
| #define HAVE_LINUX_FB_H 1
| #define HAVE_ASM_MTRR_H 1
| #define HAS_MTRR_SUPPORT 1
| #define HAVE_SYSV_IPC 1
| #define HAVE_BACKTRACE 1
| #define HAVE_EXECINFO_H 1
| #define LAUNCHD_ID_PREFIX "org.x"
| #define TLS __thread
| #define RETSIGTYPE void
| #define UNIXCONN 1
| #define TCPCONN 1
| #define IPv6 1
| #define HAVE_SOCKLEN_T 1
| #define HAVE_AUTHDES_CREATE 1
| #define SECURE_RPC 1
| #define CONFIG_UDEV 1
| #define HAVE_DBUS 1
| #define USE_SIGIO_BY_DEFAULT TRUE
| #define XV 1
| #define XvExtension 1
| #define XvMCExtension 1
| #define XREGISTRY 1
| #define COMPOSITE 1
| #define MITSHM 1
| #define HAS_SHM 1
| #define SCREENSAVER 1
| #define RES 1
| #define DRI2 1
| #define WITH_LIBDRM 1
| #define DRI2_AIGLX 1
| #define XACE 1
| #define DBE 1
| #define DPMSExtension 1
| #define RENDER 1
| #define RANDR 1
| #define XFIXES 1
| #define DAMAGE 1
| #define XINPUT 1
| #define SHAPE 1
| #define XKB_BASE_DIRECTORY "/usr/share/X11/xkb"
| #define XKB_BIN_DIRECTORY "/usr/bin"
| #define XKM_OUTPUT_DIR "/var/lib/xkb/"
| #define XKB_DFLT_RULES "base"
| #define XKB_DFLT_MODEL "pc105"
| #define XKB_DFLT_LAYOUT "us"
| #define XKB_DFLT_VARIANT ""
| #define XKB_DFLT_OPTIONS ""
| #define XDMCP 1
| #define HASXDMAUTH 1
| #define COMPILEDDEFAULTFONTPATH "/usr/share/fonts/X11/misc/,/usr/share/fonts/X11/TTF/,/usr/share/fonts/X11/OTF/,/usr/share/fonts/X11/Type1/,/usr/share/fonts/X11/100dpi/,/usr/share/fonts/X11/75dpi/"
| #define PCI_TXT_IDS_PATH ""
| #define SERVER_MISC_CONFIG_PATH "/usr/lib/xorg"
| #define BASE_FONT_PATH "/usr/share/fonts/X11"
| #define DRI_DRIVER_PATH "/usr/lib/dri"
| #define XVENDORNAME "The X.Org Foundation"
| #define XVENDORNAMESHORT "X.Org"
| #define XORG_DATE "2011-04-15"
| #define XORG_MAN_VERSION "Version 1.10.1"
| #define BUILDERADDR "xorg@lists.freedesktop.org"
| #define OSNAME "Linux 2.6.35-25-server x86_64"
| #define OSVENDOR ""
| #define BUILDERSTRING ""
| #define VENDOR_NAME "The X.Org Foundation"
| #define VENDOR_NAME_SHORT "X.Org"
| #define VENDOR_RELEASE (((1) * 10000000) + ((10) * 100000) + ((1) * 1000) + 0)
| #define VENDOR_MAN_VERSION "Version 1.10.1"
| #define NO_LIBCWRAPPER 1
| #define XTEST 1
| #define XSYNC 1
| #define XCMISC 1
| #define BIGREQS 1
| /* end confdefs.h.  */
| /* Define CC_SHA1_Init to an innocuous variant, in case <limits.h> declares CC_SHA1_Init.
|    For example, HP-UX 11i <limits.h> declares gettimeofday.  */
| #define CC_SHA1_Init innocuous_CC_SHA1_Init
| 
| /* System header to define __stub macros and hopefully few prototypes,
|     which can conflict with char CC_SHA1_Init (); 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 CC_SHA1_Init
| 
| /* 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 CC_SHA1_Init ();
| /* 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_CC_SHA1_Init || defined __stub___CC_SHA1_Init
| choke me
| #endif
| 
| int
| main ()
| {
| return CC_SHA1_Init ();
|   ;
|   return 0;
| }
configure:20265: result: no
configure:20282: checking for SHA1Init in -lmd
configure:20307: i586-poky-linux-gcc -march=i586 --sysroot=/home/kyu3/sdb/test/tmp/sysroots/qemux86 -std=gnu99 -o conftest -O2 -pipe -g -feliminate-unused-debug-types  -Wl,-O1  -Wl,--as-needed conftest.c -lmd  -lm  >&5
/home/kyu3/sdb/test/tmp/sysroots/x86_64-linux/usr/libexec/i586-poky-linux/gcc/i586-poky-linux/4.6.0/ld: cannot find -lmd
collect2: ld returned 1 exit status
configure:20307: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "xorg-server"
| #define PACKAGE_TARNAME "xorg-server"
| #define PACKAGE_VERSION "1.10.1"
| #define PACKAGE_STRING "xorg-server 1.10.1"
| #define PACKAGE_BUGREPORT "https://bugs.freedesktop.org/enter_bug.cgi?product=xorg"
| #define PACKAGE_URL ""
| #define PACKAGE "xorg-server"
| #define VERSION "1.10.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 PACKAGE_VERSION_MAJOR 1
| #define PACKAGE_VERSION_MINOR 10
| #define PACKAGE_VERSION_PATCHLEVEL 1
| #define HAVE_DLFCN_H 1
| #define LT_OBJDIR ".libs/"
| #define YYTEXT_POINTER 1
| #define _FILE_OFFSET_BITS 64
| #define HAVE_DIRENT_H 1
| #define STDC_HEADERS 1
| #define HAVE_FCNTL_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_DLFCN_H 1
| #define HAVE_STROPTS_H 1
| #define HAVE_FNMATCH_H 1
| #define HAVE_SYS_UTSNAME_H 1
| #define SIZEOF_UNSIGNED_LONG 4
| #define HAVE_BYTESWAP_H 1
| #define HAVE_VPRINTF 1
| #define HAVE_GETEUID 1
| #define HAVE_GETUID 1
| #define HAVE_LINK 1
| #define HAVE_MEMMOVE 1
| #define HAVE_MEMSET 1
| #define HAVE_MKSTEMP 1
| #define HAVE_STRCHR 1
| #define HAVE_STRRCHR 1
| #define HAVE_STRTOL 1
| #define HAVE_GETOPT 1
| #define HAVE_GETOPT_LONG 1
| #define HAVE_VSNPRINTF 1
| #define HAVE_BACKTRACE 1
| #define HAVE_STRCASESTR 1
| #define HAVE_FFS 1
| #define HAVE_VASPRINTF 1
| #define HAVE_ALLOCA_H 1
| #define HAVE_ALLOCA 1
| #define HAS_GETDTABLESIZE 1
| #define HAS_GETIFADDRS 1
| #define HAS_MMAP 1
| #define HAVE_LIBM 1
| #define HAVE_CBRT 1
| #define HAVE_LINUX_AGPGART_H 1
| #define HAVE_LINUX_APM_BIOS_H 1
| #define HAVE_LINUX_FB_H 1
| #define HAVE_ASM_MTRR_H 1
| #define HAS_MTRR_SUPPORT 1
| #define HAVE_SYSV_IPC 1
| #define HAVE_BACKTRACE 1
| #define HAVE_EXECINFO_H 1
| #define LAUNCHD_ID_PREFIX "org.x"
| #define TLS __thread
| #define RETSIGTYPE void
| #define UNIXCONN 1
| #define TCPCONN 1
| #define IPv6 1
| #define HAVE_SOCKLEN_T 1
| #define HAVE_AUTHDES_CREATE 1
| #define SECURE_RPC 1
| #define CONFIG_UDEV 1
| #define HAVE_DBUS 1
| #define USE_SIGIO_BY_DEFAULT TRUE
| #define XV 1
| #define XvExtension 1
| #define XvMCExtension 1
| #define XREGISTRY 1
| #define COMPOSITE 1
| #define MITSHM 1
| #define HAS_SHM 1
| #define SCREENSAVER 1
| #define RES 1
| #define DRI2 1
| #define WITH_LIBDRM 1
| #define DRI2_AIGLX 1
| #define XACE 1
| #define DBE 1
| #define DPMSExtension 1
| #define RENDER 1
| #define RANDR 1
| #define XFIXES 1
| #define DAMAGE 1
| #define XINPUT 1
| #define SHAPE 1
| #define XKB_BASE_DIRECTORY "/usr/share/X11/xkb"
| #define XKB_BIN_DIRECTORY "/usr/bin"
| #define XKM_OUTPUT_DIR "/var/lib/xkb/"
| #define XKB_DFLT_RULES "base"
| #define XKB_DFLT_MODEL "pc105"
| #define XKB_DFLT_LAYOUT "us"
| #define XKB_DFLT_VARIANT ""
| #define XKB_DFLT_OPTIONS ""
| #define XDMCP 1
| #define HASXDMAUTH 1
| #define COMPILEDDEFAULTFONTPATH "/usr/share/fonts/X11/misc/,/usr/share/fonts/X11/TTF/,/usr/share/fonts/X11/OTF/,/usr/share/fonts/X11/Type1/,/usr/share/fonts/X11/100dpi/,/usr/share/fonts/X11/75dpi/"
| #define PCI_TXT_IDS_PATH ""
| #define SERVER_MISC_CONFIG_PATH "/usr/lib/xorg"
| #define BASE_FONT_PATH "/usr/share/fonts/X11"
| #define DRI_DRIVER_PATH "/usr/lib/dri"
| #define XVENDORNAME "The X.Org Foundation"
| #define XVENDORNAMESHORT "X.Org"
| #define XORG_DATE "2011-04-15"
| #define XORG_MAN_VERSION "Version 1.10.1"
| #define BUILDERADDR "xorg@lists.freedesktop.org"
| #define OSNAME "Linux 2.6.35-25-server x86_64"
| #define OSVENDOR ""
| #define BUILDERSTRING ""
| #define VENDOR_NAME "The X.Org Foundation"
| #define VENDOR_NAME_SHORT "X.Org"
| #define VENDOR_RELEASE (((1) * 10000000) + ((10) * 100000) + ((1) * 1000) + 0)
| #define VENDOR_MAN_VERSION "Version 1.10.1"
| #define NO_LIBCWRAPPER 1
| #define XTEST 1
| #define XSYNC 1
| #define XCMISC 1
| #define BIGREQS 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 SHA1Init ();
| int
| main ()
| {
| return SHA1Init ();
|   ;
|   return 0;
| }
configure:20316: result: no
configure:20336: checking for LIBSHA1
configure:20343: $PKG_CONFIG --exists --print-errors "libsha1"
Package libsha1 was not found in the pkg-config search path.
Perhaps you should add the directory containing `libsha1.pc'
to the PKG_CONFIG_PATH environment variable
No package 'libsha1' found
configure:20346: $? = 1
configure:20359: $PKG_CONFIG --exists --print-errors "libsha1"
Package libsha1 was not found in the pkg-config search path.
Perhaps you should add the directory containing `libsha1.pc'
to the PKG_CONFIG_PATH environment variable
No package 'libsha1' found
configure:20362: $? = 1
configure:20375: result: no
No package 'libsha1' found
configure:20415: checking for gcry_md_open in -lgcrypt
configure:20440: i586-poky-linux-gcc -march=i586 --sysroot=/home/kyu3/sdb/test/tmp/sysroots/qemux86 -std=gnu99 -o conftest -O2 -pipe -g -feliminate-unused-debug-types  -Wl,-O1  -Wl,--as-needed conftest.c -lgcrypt  -lm  >&5
configure:20440: $? = 0
configure:20449: result: yes
configure:20468: checking for SHA1_Init in -lcrypto
configure:20493: i586-poky-linux-gcc -march=i586 --sysroot=/home/kyu3/sdb/test/tmp/sysroots/qemux86 -std=gnu99 -o conftest -O2 -pipe -g -feliminate-unused-debug-types  -Wl,-O1  -Wl,--as-needed conftest.c -lcrypto  -lm  >&5
configure:20493: $? = 0
configure:20502: result: yes
configure:20510: checking for OPENSSL
configure:20517: $PKG_CONFIG --exists --print-errors "openssl"
configure:20520: $? = 0
configure:20533: $PKG_CONFIG --exists --print-errors "openssl"
configure:20536: $? = 0
configure:20573: result: yes
configure:20594: checking for SHA1 implementation
configure:20599: result: libgcrypt
configure:20606: checking for XSERVERCFLAGS
configure:20613: $PKG_CONFIG --exists --print-errors "$REQUIRED_MODULES $REQUIRED_LIBS"
configure:20616: $? = 0
configure:20629: $PKG_CONFIG --exists --print-errors "$REQUIRED_MODULES $REQUIRED_LIBS"
configure:20632: $? = 0
configure:20689: result: yes
configure:20695: checking for XSERVERLIBS
configure:20702: $PKG_CONFIG --exists --print-errors "$REQUIRED_LIBS"
configure:20705: $? = 0
configure:20718: $PKG_CONFIG --exists --print-errors "$REQUIRED_LIBS"
configure:20721: $? = 0
configure:20778: result: yes
configure:20813: checking if SVR4 needs to be defined
configure:20832: result: no
configure:20842: checking whether to build Xvfb DDX
configure:20844: result: no
configure:20866: checking for XNESTMODULES
configure:20873: $PKG_CONFIG --exists --print-errors "$LIBXEXT x11 xau $XDMCP_MODULES"
configure:20876: $? = 0
configure:20889: $PKG_CONFIG --exists --print-errors "$LIBXEXT x11 xau $XDMCP_MODULES"
configure:20892: $? = 0
configure:20929: result: yes
configure:20933: checking whether to build Xnest DDX
configure:20938: result: no
configure:20961: checking whether to build Xorg DDX
configure:20970: result: yes
configure:20987: checking for symbol visibility support
configure:21023: i586-poky-linux-gcc -march=i586 --sysroot=/home/kyu3/sdb/test/tmp/sysroots/qemux86 -std=gnu99 -c -O2 -pipe -g -feliminate-unused-debug-types -fvisibility=hidden  conftest.c >&5
configure:21023: $? = 0
configure:21031: result: yes
configure:21043: checking for PCIACCESS
configure:21050: $PKG_CONFIG --exists --print-errors "$LIBPCIACCESS"
configure:21053: $? = 0
configure:21066: $PKG_CONFIG --exists --print-errors "$LIBPCIACCESS"
configure:21069: $? = 0
configure:21126: result: yes
configure:21136: checking for pci_system_init_dev_mem
configure:21136: i586-poky-linux-gcc -march=i586 --sysroot=/home/kyu3/sdb/test/tmp/sysroots/qemux86 -std=gnu99 -o conftest    -Wl,-O1  -Wl,--as-needed conftest.c -lpciaccess   >&5
configure:21136: $? = 0
configure:21136: result: yes
configure:21147: checking for pci_device_enable
configure:21147: i586-poky-linux-gcc -march=i586 --sysroot=/home/kyu3/sdb/test/tmp/sysroots/qemux86 -std=gnu99 -o conftest    -Wl,-O1  -Wl,--as-needed conftest.c -lpciaccess   >&5
configure:21147: $? = 0
configure:21147: result: yes
configure:21158: checking for pci_device_is_boot_vga
configure:21158: i586-poky-linux-gcc -march=i586 --sysroot=/home/kyu3/sdb/test/tmp/sysroots/qemux86 -std=gnu99 -o conftest    -Wl,-O1  -Wl,--as-needed conftest.c -lpciaccess   >&5
configure:21158: $? = 0
configure:21158: result: yes
configure:21169: checking for pci_device_vgaarb_init
configure:21169: i586-poky-linux-gcc -march=i586 --sysroot=/home/kyu3/sdb/test/tmp/sysroots/qemux86 -std=gnu99 -o conftest    -Wl,-O1  -Wl,--as-needed conftest.c -lpciaccess   >&5
configure:21169: $? = 0
configure:21169: result: yes
configure:21530: checking for XF86VIDMODE
configure:21537: $PKG_CONFIG --exists --print-errors "$VIDMODEPROTO"
configure:21540: $? = 0
configure:21553: $PKG_CONFIG --exists --print-errors "$VIDMODEPROTO"
configure:21556: $? = 0
configure:21593: result: yes
configure:21602: checking for XF86VIDMODE
configure:21685: result: yes
configure:21697: checking for XORG_MODULES
configure:21704: $PKG_CONFIG --exists --print-errors "$XORG_MODULES"
configure:21707: $? = 0
configure:21720: $PKG_CONFIG --exists --print-errors "$XORG_MODULES"
configure:21723: $? = 0
configure:21780: result: yes
configure:21796: checking for perl
configure:21814: found /home/kyu3/sdb/test/tmp/sysroots/x86_64-linux/usr/bin/perl
configure:21827: result: /home/kyu3/sdb/test/tmp/sysroots/x86_64-linux/usr/bin/perl
configure:22103: checking whether to build XWin DDX
configure:22112: result: no
configure:22737: checking dependency style of $(CC)
configure:22845: result: none
configure:22887: checking for DMXMODULES
configure:22894: $PKG_CONFIG --exists --print-errors "xmuu $LIBXEXT x11 xrender xfixes $LIBXI $DMXPROTO xau $XDMCP_MODULES"
configure:22897: $? = 0
configure:22910: $PKG_CONFIG --exists --print-errors "xmuu $LIBXEXT x11 xrender xfixes $LIBXI $DMXPROTO xau $XDMCP_MODULES"
configure:22913: $? = 0
configure:22950: result: yes
configure:22954: checking for XDMXCONFIG_DEP
configure:22961: $PKG_CONFIG --exists --print-errors "xaw7 xmu xt xpm x11"
Package xaw7 was not found in the pkg-config search path.
Perhaps you should add the directory containing `xaw7.pc'
to the PKG_CONFIG_PATH environment variable
No package 'xaw7' found
Package xpm was not found in the pkg-config search path.
Perhaps you should add the directory containing `xpm.pc'
to the PKG_CONFIG_PATH environment variable
No package 'xpm' found
configure:22964: $? = 1
configure:22977: $PKG_CONFIG --exists --print-errors "xaw7 xmu xt xpm x11"
Package xaw7 was not found in the pkg-config search path.
Perhaps you should add the directory containing `xaw7.pc'
to the PKG_CONFIG_PATH environment variable
No package 'xaw7' found
Package xpm was not found in the pkg-config search path.
Perhaps you should add the directory containing `xpm.pc'
to the PKG_CONFIG_PATH environment variable
No package 'xpm' found
configure:22980: $? = 1
configure:22993: result: no
No package 'xaw7' found
No package 'xpm' found
configure:23022: checking whether to build Xdmx DDX
configure:23031: result: no
configure:24095: i586-poky-linux-gcc -march=i586 --sysroot=/home/kyu3/sdb/test/tmp/sysroots/qemux86 -std=gnu99 -c -O2 -pipe -g -feliminate-unused-debug-types  conftest.c >&5
configure:24095: $? = 0
configure:24674: creating ./config.status

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

This file was extended by xorg-server config.status 1.10.1, which was
generated by GNU Autoconf 2.65.  Invocation command line was

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

on kyu3-ubuntu

config.status:1759: creating Makefile
config.status:1759: creating glx/Makefile
config.status:1759: creating include/Makefile
config.status:1759: creating composite/Makefile
config.status:1759: creating damageext/Makefile
config.status:1759: creating dbe/Makefile
config.status:1759: creating dix/Makefile
config.status:1759: creating doc/Makefile
config.status:1759: creating doc/man/Makefile
config.status:1759: creating doc/xml/Makefile
config.status:1759: creating doc/xml/dtrace/Makefile
config.status:1759: creating doc/xml/xserver.ent
config.status:1759: creating fb/Makefile
config.status:1759: creating record/Makefile
config.status:1759: creating config/Makefile
config.status:1759: creating mi/Makefile
config.status:1759: creating miext/Makefile
config.status:1759: creating miext/sync/Makefile
config.status:1759: creating miext/damage/Makefile
config.status:1759: creating miext/shadow/Makefile
config.status:1759: creating miext/cw/Makefile
config.status:1759: creating miext/rootless/Makefile
config.status:1759: creating os/Makefile
config.status:1759: creating randr/Makefile
config.status:1759: creating render/Makefile
config.status:1759: creating xkb/Makefile
config.status:1759: creating Xext/Makefile
config.status:1759: creating Xi/Makefile
config.status:1759: creating xfixes/Makefile
config.status:1759: creating exa/Makefile
config.status:1759: creating hw/Makefile
config.status:1759: creating hw/xfree86/Makefile
config.status:1759: creating hw/xfree86/common/Makefile
config.status:1759: creating hw/xfree86/common/xf86Build.h
config.status:1759: creating hw/xfree86/ddc/Makefile
config.status:1759: creating hw/xfree86/dixmods/Makefile
config.status:1759: creating hw/xfree86/dixmods/extmod/Makefile
config.status:1759: creating hw/xfree86/doc/Makefile
config.status:1759: creating hw/xfree86/doc/devel/Makefile
config.status:1759: creating hw/xfree86/doc/man/Makefile
config.status:1759: creating hw/xfree86/doc/sgml/Makefile
config.status:1759: creating hw/xfree86/dri/Makefile
config.status:1759: creating hw/xfree86/dri2/Makefile
config.status:1759: creating hw/xfree86/exa/Makefile
config.status:1759: creating hw/xfree86/exa/man/Makefile
config.status:1759: creating hw/xfree86/fbdevhw/Makefile
config.status:1759: creating hw/xfree86/fbdevhw/man/Makefile
config.status:1759: creating hw/xfree86/i2c/Makefile
config.status:1759: creating hw/xfree86/int10/Makefile
config.status:1759: creating hw/xfree86/loader/Makefile
config.status:1759: creating hw/xfree86/modes/Makefile
config.status:1759: creating hw/xfree86/os-support/Makefile
config.status:1759: creating hw/xfree86/os-support/bsd/Makefile
config.status:1759: creating hw/xfree86/os-support/bus/Makefile
config.status:1759: creating hw/xfree86/os-support/hurd/Makefile
config.status:1759: creating hw/xfree86/os-support/misc/Makefile
config.status:1759: creating hw/xfree86/os-support/linux/Makefile
config.status:1759: creating hw/xfree86/os-support/solaris/Makefile
config.status:1759: creating hw/xfree86/parser/Makefile
config.status:1759: creating hw/xfree86/ramdac/Makefile
config.status:1759: creating hw/xfree86/shadowfb/Makefile
config.status:1759: creating hw/xfree86/vbe/Makefile
config.status:1759: creating hw/xfree86/vgahw/Makefile
config.status:1759: creating hw/xfree86/x86emu/Makefile
config.status:1759: creating hw/xfree86/xaa/Makefile
config.status:1759: creating hw/xfree86/utils/Makefile
config.status:1759: creating hw/xfree86/utils/man/Makefile
config.status:1759: creating hw/xfree86/utils/cvt/Makefile
config.status:1759: creating hw/xfree86/utils/gtf/Makefile
config.status:1759: creating hw/dmx/config/Makefile
config.status:1759: creating hw/dmx/config/man/Makefile
config.status:1759: creating hw/dmx/doc/Makefile
config.status:1759: creating hw/dmx/doc/doxygen.conf
config.status:1759: creating hw/dmx/examples/Makefile
config.status:1759: creating hw/dmx/input/Makefile
config.status:1759: creating hw/dmx/glxProxy/Makefile
config.status:1759: creating hw/dmx/Makefile
config.status:1759: creating hw/dmx/man/Makefile
config.status:1759: creating hw/vfb/Makefile
config.status:1759: creating hw/vfb/man/Makefile
config.status:1759: creating hw/xnest/Makefile
config.status:1759: creating hw/xnest/man/Makefile
config.status:1759: creating hw/xwin/Makefile
config.status:1759: creating hw/xwin/glx/Makefile
config.status:1759: creating hw/xwin/man/Makefile
config.status:1759: creating hw/xquartz/Makefile
config.status:1759: creating hw/xquartz/GL/Makefile
config.status:1759: creating hw/xquartz/bundle/Makefile
config.status:1759: creating hw/xquartz/man/Makefile
config.status:1759: creating hw/xquartz/mach-startup/Makefile
config.status:1759: creating hw/xquartz/pbproxy/Makefile
config.status:1759: creating hw/xquartz/xpr/Makefile
config.status:1759: creating hw/kdrive/Makefile
config.status:1759: creating hw/kdrive/ephyr/Makefile
config.status:1759: creating hw/kdrive/ephyr/man/Makefile
config.status:1759: creating hw/kdrive/fake/Makefile
config.status:1759: creating hw/kdrive/fbdev/Makefile
config.status:1759: creating hw/kdrive/linux/Makefile
config.status:1759: creating hw/kdrive/src/Makefile
config.status:1759: creating test/Makefile
config.status:1759: creating test/xi2/Makefile
config.status:1759: creating xorg-server.pc
config.status:1759: creating include/do-not-use-config.h
config.status:1759: creating include/xorg-server.h
config.status:1759: creating include/dix-config.h
config.status:1759: creating include/xorg-config.h
config.status:1759: creating include/xkb-config.h
config.status:1759: creating include/xwin-config.h
config.status:1759: creating include/kdrive-config.h
config.status:1759: creating include/version-config.h
config.status:1979: executing depfiles commands
config.status:1979: executing libtool commands
config.status:1979: executing sdksyms commands
configure:27006: WARNING: unrecognized options: --disable-acfb, --disable-ccfb, --disable-mcfb, --disable-xf86misc, --disable-xorgcfg, --with-fontdir

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

ac_cv___va_copy=yes
ac_cv_af_unix_large_dgram=yes
ac_cv_alignof_CORBA_boolean=1
ac_cv_alignof_CORBA_char=1
ac_cv_alignof_CORBA_double=4
ac_cv_alignof_CORBA_float=4
ac_cv_alignof_CORBA_long=4
ac_cv_alignof_CORBA_long_double=4
ac_cv_alignof_CORBA_long_long=4
ac_cv_alignof_CORBA_octet=1
ac_cv_alignof_CORBA_pointer=4
ac_cv_alignof_CORBA_short=2
ac_cv_alignof_CORBA_struct=4
ac_cv_alignof_CORBA_wchar=2
ac_cv_asm_mtrr_h=yes
ac_cv_build=x86_64-pc-linux-gnu
ac_cv_c_bigendian=no
ac_cv_c_compiler_gnu=yes
ac_cv_c_const=yes
ac_cv_c_littleendian=yes
ac_cv_c_long_double=yes
ac_cv_check_sjlj=ssjlj
ac_cv_conv_longlong_to_float=yes
ac_cv_dirent_have_space_d_name=yes
ac_cv_env_CCASFLAGS_set=
ac_cv_env_CCASFLAGS_value=
ac_cv_env_CCAS_set=
ac_cv_env_CCAS_value=
ac_cv_env_CC_set=set
ac_cv_env_CC_value='i586-poky-linux-gcc -march=i586 --sysroot=/home/kyu3/sdb/test/tmp/sysroots/qemux86'
ac_cv_env_CFLAGS_set=set
ac_cv_env_CFLAGS_value='-O2 -pipe -g -feliminate-unused-debug-types'
ac_cv_env_CPPFLAGS_set=
ac_cv_env_CPPFLAGS_value=
ac_cv_env_CPP_set=set
ac_cv_env_CPP_value='i586-poky-linux-gcc -E --sysroot=/home/kyu3/sdb/test/tmp/sysroots/qemux86'
ac_cv_env_DBUS_CFLAGS_set=
ac_cv_env_DBUS_CFLAGS_value=
ac_cv_env_DBUS_LIBS_set=
ac_cv_env_DBUS_LIBS_value=
ac_cv_env_DGA_CFLAGS_set=
ac_cv_env_DGA_CFLAGS_value=
ac_cv_env_DGA_LIBS_set=
ac_cv_env_DGA_LIBS_value=
ac_cv_env_DMXEXAMPLES_DEP_CFLAGS_set=
ac_cv_env_DMXEXAMPLES_DEP_CFLAGS_value=
ac_cv_env_DMXEXAMPLES_DEP_LIBS_set=
ac_cv_env_DMXEXAMPLES_DEP_LIBS_value=
ac_cv_env_DMXMODULES_CFLAGS_set=
ac_cv_env_DMXMODULES_CFLAGS_value=
ac_cv_env_DMXMODULES_LIBS_set=
ac_cv_env_DMXMODULES_LIBS_value=
ac_cv_env_DMXXIEXAMPLES_DEP_CFLAGS_set=
ac_cv_env_DMXXIEXAMPLES_DEP_CFLAGS_value=
ac_cv_env_DMXXIEXAMPLES_DEP_LIBS_set=
ac_cv_env_DMXXIEXAMPLES_DEP_LIBS_value=
ac_cv_env_DMXXMUEXAMPLES_DEP_CFLAGS_set=
ac_cv_env_DMXXMUEXAMPLES_DEP_CFLAGS_value=
ac_cv_env_DMXXMUEXAMPLES_DEP_LIBS_set=
ac_cv_env_DMXXMUEXAMPLES_DEP_LIBS_value=
ac_cv_env_DOXYGEN_set=
ac_cv_env_DOXYGEN_value=
ac_cv_env_DRI2PROTO_CFLAGS_set=
ac_cv_env_DRI2PROTO_CFLAGS_value=
ac_cv_env_DRI2PROTO_LIBS_set=
ac_cv_env_DRI2PROTO_LIBS_value=
ac_cv_env_DRIPROTO_CFLAGS_set=
ac_cv_env_DRIPROTO_CFLAGS_value=
ac_cv_env_DRIPROTO_LIBS_set=
ac_cv_env_DRIPROTO_LIBS_value=
ac_cv_env_DRI_CFLAGS_set=
ac_cv_env_DRI_CFLAGS_value=
ac_cv_env_DRI_LIBS_set=
ac_cv_env_DRI_LIBS_value=
ac_cv_env_FOP_set=
ac_cv_env_FOP_value=
ac_cv_env_GLIB_CFLAGS_set=
ac_cv_env_GLIB_CFLAGS_value=
ac_cv_env_GLIB_LIBS_set=
ac_cv_env_GLIB_LIBS_value=
ac_cv_env_GL_CFLAGS_set=
ac_cv_env_GL_CFLAGS_value=
ac_cv_env_GL_LIBS_set=
ac_cv_env_GL_LIBS_value=
ac_cv_env_HAL_CFLAGS_set=
ac_cv_env_HAL_CFLAGS_value=
ac_cv_env_HAL_LIBS_set=
ac_cv_env_HAL_LIBS_value=
ac_cv_env_LDFLAGS_set=set
ac_cv_env_LDFLAGS_value='-Wl,-O1  -Wl,--as-needed'
ac_cv_env_LIBDRM_CFLAGS_set=
ac_cv_env_LIBDRM_CFLAGS_value=
ac_cv_env_LIBDRM_LIBS_set=
ac_cv_env_LIBDRM_LIBS_value=
ac_cv_env_LIBSHA1_CFLAGS_set=
ac_cv_env_LIBSHA1_CFLAGS_value=
ac_cv_env_LIBSHA1_LIBS_set=
ac_cv_env_LIBSHA1_LIBS_value=
ac_cv_env_LIBS_set=
ac_cv_env_LIBS_value=
ac_cv_env_OPENSSL_CFLAGS_set=
ac_cv_env_OPENSSL_CFLAGS_value=
ac_cv_env_OPENSSL_LIBS_set=
ac_cv_env_OPENSSL_LIBS_value=
ac_cv_env_PCIACCESS_CFLAGS_set=
ac_cv_env_PCIACCESS_CFLAGS_value=
ac_cv_env_PCIACCESS_LIBS_set=
ac_cv_env_PCIACCESS_LIBS_value=
ac_cv_env_PIXMAN_CFLAGS_set=
ac_cv_env_PIXMAN_CFLAGS_value=
ac_cv_env_PIXMAN_LIBS_set=
ac_cv_env_PIXMAN_LIBS_value=
ac_cv_env_PKG_CONFIG_LIBDIR_set=set
ac_cv_env_PKG_CONFIG_LIBDIR_value=/home/kyu3/sdb/test/tmp/sysroots/qemux86//usr/lib/pkgconfig
ac_cv_env_PKG_CONFIG_PATH_set=set
ac_cv_env_PKG_CONFIG_PATH_value=/home/kyu3/sdb/test/tmp/sysroots/qemux86//usr/lib/pkgconfig:/home/kyu3/sdb/test/tmp/sysroots/qemux86/usr/share/pkgconfig
ac_cv_env_PKG_CONFIG_set=
ac_cv_env_PKG_CONFIG_value=
ac_cv_env_SELINUX_CFLAGS_set=
ac_cv_env_SELINUX_CFLAGS_value=
ac_cv_env_SELINUX_LIBS_set=
ac_cv_env_SELINUX_LIBS_value=
ac_cv_env_TSLIB_CFLAGS_set=
ac_cv_env_TSLIB_CFLAGS_value=
ac_cv_env_TSLIB_LIBS_set=
ac_cv_env_TSLIB_LIBS_value=
ac_cv_env_UDEV_CFLAGS_set=
ac_cv_env_UDEV_CFLAGS_value=
ac_cv_env_UDEV_LIBS_set=
ac_cv_env_UDEV_LIBS_value=
ac_cv_env_WINDOWSWM_CFLAGS_set=
ac_cv_env_WINDOWSWM_CFLAGS_value=
ac_cv_env_WINDOWSWM_LIBS_set=
ac_cv_env_WINDOWSWM_LIBS_value=
ac_cv_env_X11EXAMPLES_DEP_CFLAGS_set=
ac_cv_env_X11EXAMPLES_DEP_CFLAGS_value=
ac_cv_env_X11EXAMPLES_DEP_LIBS_set=
ac_cv_env_X11EXAMPLES_DEP_LIBS_value=
ac_cv_env_XDMCP_CFLAGS_set=
ac_cv_env_XDMCP_CFLAGS_value=
ac_cv_env_XDMCP_LIBS_set=
ac_cv_env_XDMCP_LIBS_value=
ac_cv_env_XDMXCONFIG_DEP_CFLAGS_set=
ac_cv_env_XDMXCONFIG_DEP_CFLAGS_value=
ac_cv_env_XDMXCONFIG_DEP_LIBS_set=
ac_cv_env_XDMXCONFIG_DEP_LIBS_value=
ac_cv_env_XEPHYR_CFLAGS_set=
ac_cv_env_XEPHYR_CFLAGS_value=
ac_cv_env_XEPHYR_LIBS_set=
ac_cv_env_XEPHYR_LIBS_value=
ac_cv_env_XF86VIDMODE_CFLAGS_set=
ac_cv_env_XF86VIDMODE_CFLAGS_value=
ac_cv_env_XF86VIDMODE_LIBS_set=
ac_cv_env_XF86VIDMODE_LIBS_value=
ac_cv_env_XLIB_CFLAGS_set=
ac_cv_env_XLIB_CFLAGS_value=
ac_cv_env_XLIB_LIBS_set=
ac_cv_env_XLIB_LIBS_value=
ac_cv_env_XMLTO_set=
ac_cv_env_XMLTO_value=
ac_cv_env_XNESTMODULES_CFLAGS_set=
ac_cv_env_XNESTMODULES_CFLAGS_value=
ac_cv_env_XNESTMODULES_LIBS_set=
ac_cv_env_XNESTMODULES_LIBS_value=
ac_cv_env_XORG_MODULES_CFLAGS_set=
ac_cv_env_XORG_MODULES_CFLAGS_value=
ac_cv_env_XORG_MODULES_LIBS_set=
ac_cv_env_XORG_MODULES_LIBS_value=
ac_cv_env_XPBPROXY_CFLAGS_set=
ac_cv_env_XPBPROXY_CFLAGS_value=
ac_cv_env_XPBPROXY_LIBS_set=
ac_cv_env_XPBPROXY_LIBS_value=
ac_cv_env_XRESEXAMPLES_DEP_CFLAGS_set=
ac_cv_env_XRESEXAMPLES_DEP_CFLAGS_value=
ac_cv_env_XRESEXAMPLES_DEP_LIBS_set=
ac_cv_env_XRESEXAMPLES_DEP_LIBS_value=
ac_cv_env_XSERVERCFLAGS_CFLAGS_set=
ac_cv_env_XSERVERCFLAGS_CFLAGS_value=
ac_cv_env_XSERVERCFLAGS_LIBS_set=
ac_cv_env_XSERVERCFLAGS_LIBS_value=
ac_cv_env_XSERVERLIBS_CFLAGS_set=
ac_cv_env_XSERVERLIBS_CFLAGS_value=
ac_cv_env_XSERVERLIBS_LIBS_set=
ac_cv_env_XSERVERLIBS_LIBS_value=
ac_cv_env_XTSTEXAMPLES_DEP_CFLAGS_set=
ac_cv_env_XTSTEXAMPLES_DEP_CFLAGS_value=
ac_cv_env_XTSTEXAMPLES_DEP_LIBS_set=
ac_cv_env_XTSTEXAMPLES_DEP_LIBS_value=
ac_cv_env_XWINMODULES_CFLAGS_set=
ac_cv_env_XWINMODULES_CFLAGS_value=
ac_cv_env_XWINMODULES_LIBS_set=
ac_cv_env_XWINMODULES_LIBS_value=
ac_cv_env_YACC_set=
ac_cv_env_YACC_value=
ac_cv_env_YFLAGS_set=
ac_cv_env_YFLAGS_value=
ac_cv_env_build_alias_set=set
ac_cv_env_build_alias_value=x86_64-linux
ac_cv_env_host_alias_set=set
ac_cv_env_host_alias_value=i586-poky-linux
ac_cv_env_target_alias_set=set
ac_cv_env_target_alias_value=i586-poky-linux
ac_cv_epoll_works=yes
ac_cv_file__dev_random=yes
ac_cv_file__usr_share_X11_sgml_defs_ent=no
ac_cv_file__usr_share_sgml_X11_defs_ent=no
ac_cv_file_lib_src_libmad_frame_h=no
ac_cv_func_CC_SHA1_Init=no
ac_cv_func_SHA1Init=no
ac_cv_func___adjtimex=yes
ac_cv_func___argz_count=yes
ac_cv_func___argz_next=yes
ac_cv_func___argz_stringify=yes
ac_cv_func___fpending=yes
ac_cv_func___fsetlocking=yes
ac_cv_func___progname=yes
ac_cv_func___secure_getenv=yes
ac_cv_func___va_copy=yes
ac_cv_func__doprnt=no
ac_cv_func__obstack_free=yes
ac_cv_func__setjmp=yes
ac_cv_func__sys_siglist=yes
ac_cv_func_a64l=yes
ac_cv_func_abs=yes
ac_cv_func_access=yes
ac_cv_func_alarm=yes
ac_cv_func_alloca_works=yes
ac_cv_func_alphasort=yes
ac_cv_func_argz_append=yes
ac_cv_func_argz_create_sep=yes
ac_cv_func_argz_insert=yes
ac_cv_func_argz_next=yes
ac_cv_func_argz_stringify=yes
ac_cv_func_asprintf=yes
ac_cv_func_atexit=yes
ac_cv_func_atof=yes
ac_cv_func_atoi=yes
ac_cv_func_authdes_create=yes
ac_cv_func_authdes_seccreate=no
ac_cv_func_backtrace=yes
ac_cv_func_bcmp=yes
ac_cv_func_bcopy=yes
ac_cv_func_bind_textdomain_codeset=yes
ac_cv_func_bindresvport=yes
ac_cv_func_btowc=yes
ac_cv_func_bzero=yes
ac_cv_func_calloc=yes
ac_cv_func_canonicalize_file_name=yes
ac_cv_func_catgets=yes
ac_cv_func_cfgetospeed=yes
ac_cv_func_cfsetispeed=yes
ac_cv_func_cfsetspeed=yes
ac_cv_func_chmod=yes
ac_cv_func_chown=yes
ac_cv_func_chroot=yes
ac_cv_func_clock=yes
ac_cv_func_clock_gettime=no
ac_cv_func_close=yes
ac_cv_func_closedir=yes
ac_cv_func_closelog=yes
ac_cv_func_confstr=yes
ac_cv_func_connect=yes
ac_cv_func_daemon=yes
ac_cv_func_dcgettext=yes
ac_cv_func_difftime=yes
ac_cv_func_dirfd=yes
ac_cv_func_dirname=yes
ac_cv_func_dlopen=no
ac_cv_func_dngettext=yes
ac_cv_func_dup2=yes
ac_cv_func_ecvt=yes
ac_cv_func_endgrent=yes
ac_cv_func_endmntent=yes
ac_cv_func_endpwent=yes
ac_cv_func_endutent=yes
ac_cv_func_endutxent=yes
ac_cv_func_epoll_ctl=yes
ac_cv_func_err=yes
ac_cv_func_ether_hostton=yes
ac_cv_func_ether_ntohost=yes
ac_cv_func_euidaccess=yes
ac_cv_func_execv=yes
ac_cv_func_fchdir=yes
ac_cv_func_fchmod=yes
ac_cv_func_fchmodat=yes
ac_cv_func_fchown=yes
ac_cv_func_fchownat=yes
ac_cv_func_fcntl=yes
ac_cv_func_fcvt=yes
ac_cv_func_fdatasync=yes
ac_cv_func_fdopendir=yes
ac_cv_func_feof_unlocked=yes
ac_cv_func_ffs=yes
ac_cv_func_fgets_unlocked=yes
ac_cv_func_fgetxattr=yes
ac_cv_func_finite=yes
ac_cv_func_flistxattr=yes
ac_cv_func_flock=yes
ac_cv_func_flockfile=yes
ac_cv_func_fnmatch=yes
ac_cv_func_fnmatch_works=yes
ac_cv_func_fork=yes
ac_cv_func_fpathconf=yes
ac_cv_func_fprintf=yes
ac_cv_func_free=yes
ac_cv_func_freeaddrinfo=yes
ac_cv_func_freeifaddrs=yes
ac_cv_func_fseeko=yes
ac_cv_func_fsetxattr=yes
ac_cv_func_fstat64=yes
ac_cv_func_fstat=yes
ac_cv_func_fstatfs=yes
ac_cv_func_fsync=yes
ac_cv_func_ftello=yes
ac_cv_func_ftime=yes
ac_cv_func_ftruncate=yes
ac_cv_func_funlockfile=yes
ac_cv_func_futimes=yes
ac_cv_func_futimesat=yes
ac_cv_func_gai_strerror=yes
ac_cv_func_gcvt=yes
ac_cv_func_getaddrinfo=yes
ac_cv_func_getc_unlocked=yes
ac_cv_func_getcwd=yes
ac_cv_func_getdelim=yes
ac_cv_func_getdomainname=yes
ac_cv_func_getdtablesize=yes
ac_cv_func_getegid=yes
ac_cv_func_getenv=yes
ac_cv_func_geteuid=yes
ac_cv_func_getgid=yes
ac_cv_func_getgrent=yes
ac_cv_func_getgrent_r=yes
ac_cv_func_getgrgid_r=yes
ac_cv_func_getgrnam=yes
ac_cv_func_getgrnam_r=yes
ac_cv_func_getgrouplist=yes
ac_cv_func_getgroups=yes
ac_cv_func_gethostbyaddr_r=yes
ac_cv_func_gethostbyname2=yes
ac_cv_func_gethostbyname=yes
ac_cv_func_gethostbyname_r=yes
ac_cv_func_gethostent=yes
ac_cv_func_gethostid=yes
ac_cv_func_gethostname=yes
ac_cv_func_getifaddrs=yes
ac_cv_func_getisax=no
ac_cv_func_getline=yes
ac_cv_func_getloadavg=yes
ac_cv_func_getmntent=yes
ac_cv_func_getmsg=yes
ac_cv_func_getnameinfo=yes
ac_cv_func_getnetbyaddr_r=yes
ac_cv_func_getnetgrent_r=yes
ac_cv_func_getopt=yes
ac_cv_func_getopt_long=yes
ac_cv_func_getopt_long_only=yes
ac_cv_func_getpagesize=yes
ac_cv_func_getpass=yes
ac_cv_func_getpeereid=no
ac_cv_func_getpeername=yes
ac_cv_func_getpeerucred=no
ac_cv_func_getpgrp=yes
ac_cv_func_getpgrp_void=yes
ac_cv_func_getpid=yes
ac_cv_func_getppid=yes
ac_cv_func_getprotoent_r=yes
ac_cv_func_getpwent=yes
ac_cv_func_getpwent_r=yes
ac_cv_func_getpwnam=yes
ac_cv_func_getpwnam_r=yes
ac_cv_func_getpwuid=yes
ac_cv_func_getpwuid_r=yes
ac_cv_func_getresuid=yes
ac_cv_func_getrlimit=yes
ac_cv_func_getrusage=yes
ac_cv_func_getservbyname=yes
ac_cv_func_getservbyname_r=yes
ac_cv_func_getservbyport_r=yes
ac_cv_func_getservent=yes
ac_cv_func_getservent_r=yes
ac_cv_func_getspnam=yes
ac_cv_func_getspnam_r=yes
ac_cv_func_gettimeofday=yes
ac_cv_func_getttyent=yes
ac_cv_func_getttynam=yes
ac_cv_func_getuid=yes
ac_cv_func_getusershell=yes
ac_cv_func_getutent=yes
ac_cv_func_getutid=yes
ac_cv_func_getutline=yes
ac_cv_func_getutmp=yes
ac_cv_func_getutmpx=yes
ac_cv_func_getutxent=yes
ac_cv_func_getutxid=yes
ac_cv_func_getutxline=yes
ac_cv_func_getwd=yes
ac_cv_func_getxattr=yes
ac_cv_func_getzoneid=no
ac_cv_func_glob=yes
ac_cv_func_gmtime=yes
ac_cv_func_gmtime_r=yes
ac_cv_func_grantpt=yes
ac_cv_func_group_member=yes
ac_cv_func_herror=yes
ac_cv_func_hstrerror=yes
ac_cv_func_iconv=yes
ac_cv_func_iconv_open=yes
ac_cv_func_if_freenameindex=yes
ac_cv_func_if_indextoname=yes
ac_cv_func_if_nameindex=yes
ac_cv_func_if_nametoindex=yes
ac_cv_func_index=yes
ac_cv_func_inet_addr=yes
ac_cv_func_inet_aton=yes
ac_cv_func_inet_ntoa=yes
ac_cv_func_inet_ntop=yes
ac_cv_func_inet_pton=yes
ac_cv_func_initgroups=yes
ac_cv_func_innetgr=yes
ac_cv_func_iruserok=yes
ac_cv_func_isascii=yes
ac_cv_func_isatty=yes
ac_cv_func_isblank=yes
ac_cv_func_isgraph=yes
ac_cv_func_isinf=yes
ac_cv_func_isnan=yes
ac_cv_func_isprint=yes
ac_cv_func_isspace=yes
ac_cv_func_iswalnum=yes
ac_cv_func_iswcntrl=yes
ac_cv_func_iswctype=yes
ac_cv_func_iswprint=yes
ac_cv_func_iswspace=yes
ac_cv_func_iswupper=yes
ac_cv_func_isxdigit=yes
ac_cv_func_kill=yes
ac_cv_func_killpg=yes
ac_cv_func_lchown=yes
ac_cv_func_lckpwdf=yes
ac_cv_func_lgetxattr=yes
ac_cv_func_link=yes
ac_cv_func_listxattr=yes
ac_cv_func_llistxattr=yes
ac_cv_func_localtime=yes
ac_cv_func_localtime_r=yes
ac_cv_func_lockf=yes
ac_cv_func_lrand48=yes
ac_cv_func_lsearch=yes
ac_cv_func_lseek64=yes
ac_cv_func_lsetxattr=yes
ac_cv_func_lstat=yes
ac_cv_func_lstat_dereferences_slashed_symlink=yes
ac_cv_func_lstat_empty_string_bug=no
ac_cv_func_mallinfo=yes
ac_cv_func_malloc=yes
ac_cv_func_malloc_0_nonnull=yes
ac_cv_func_malloc_works=yes
ac_cv_func_mblen=yes
ac_cv_func_mbrlen=yes
ac_cv_func_mbrtowc=yes
ac_cv_func_mbsinit=yes
ac_cv_func_mbsrtowcs=yes
ac_cv_func_mbtowc=yes
ac_cv_func_memalign=yes
ac_cv_func_memchr=yes
ac_cv_func_memcmp=yes
ac_cv_func_memcmp_working=yes
ac_cv_func_memcpy=yes
ac_cv_func_memmove=yes
ac_cv_func_mempcpy=yes
ac_cv_func_memrchr=yes
ac_cv_func_memset=yes
ac_cv_func_mkdir=yes
ac_cv_func_mkdirat=yes
ac_cv_func_mkdtemp=yes
ac_cv_func_mkfifo=yes
ac_cv_func_mknod=yes
ac_cv_func_mkstemp64=yes
ac_cv_func_mkstemp=yes
ac_cv_func_mktime=yes
ac_cv_func_mlock=yes
ac_cv_func_mmap=yes
ac_cv_func_mmap_fixed_mapped=yes
ac_cv_func_mtrace=yes
ac_cv_func_munlock=yes
ac_cv_func_munmap=yes
ac_cv_func_nanosleep=yes
ac_cv_func_nice=yes
ac_cv_func_nl_langinfo=yes
ac_cv_func_ntp_adjtime=yes
ac_cv_func_ntp_gettime=yes
ac_cv_func_on_exit=yes
ac_cv_func_open64=yes
ac_cv_func_open=yes
ac_cv_func_openat=yes
ac_cv_func_opendir=yes
ac_cv_func_openlog=yes
ac_cv_func_pathconf=yes
ac_cv_func_pci_device_enable=yes
ac_cv_func_pci_device_is_boot_vga=yes
ac_cv_func_pci_device_vgaarb_init=yes
ac_cv_func_pci_system_init_dev_mem=yes
ac_cv_func_pipe=yes
ac_cv_func_poll=yes
ac_cv_func_popen=yes
ac_cv_func_posix_getgrgid_r=yes
ac_cv_func_posix_getpwnam_r=yes
ac_cv_func_posix_getpwuid_r=yes
ac_cv_func_posix_memalign=yes
ac_cv_func_prctl=yes
ac_cv_func_pread=yes
ac_cv_func_printf=yes
ac_cv_func_printf_unix98=yes
ac_cv_func_pselect=yes
ac_cv_func_pthread_attr_getstack=yes
ac_cv_func_pthread_key_delete=yes
ac_cv_func_pthread_mutex_lock=yes
ac_cv_func_ptsname=yes
ac_cv_func_putenv=yes
ac_cv_func_putgrent=yes
ac_cv_func_putpwent=yes
ac_cv_func_putspent=yes
ac_cv_func_pututline=yes
ac_cv_func_pututxline=yes
ac_cv_func_putwc=yes
ac_cv_func_pwrite=yes
ac_cv_func_qsort=yes
ac_cv_func_raise=yes
ac_cv_func_rand=yes
ac_cv_func_rand_r=yes
ac_cv_func_random=yes
ac_cv_func_re_comp=yes
ac_cv_func_re_exec=yes
ac_cv_func_re_search=yes
ac_cv_func_read=yes
ac_cv_func_readdir=yes
ac_cv_func_readdir_r=yes
ac_cv_func_readlink=yes
ac_cv_func_realloc=yes
ac_cv_func_realloc_0_nonnull=yes
ac_cv_func_realpath=yes
ac_cv_func_recvmsg=yes
ac_cv_func_regcomp=yes
ac_cv_func_regexec=yes
ac_cv_func_remove=yes
ac_cv_func_rename=yes
ac_cv_func_rmdir=yes
ac_cv_func_rpmatch=yes
ac_cv_func_rresvport_af=yes
ac_cv_func_ruserok=yes
ac_cv_func_ruserok_af=yes
ac_cv_func_sbrk=yes
ac_cv_func_scandir=yes
ac_cv_func_sched_setscheduler=yes
ac_cv_func_sched_yield=yes
ac_cv_func_select=yes
ac_cv_func_semctl=yes
ac_cv_func_semget=yes
ac_cv_func_sendmsg=yes
ac_cv_func_setbuf=yes
ac_cv_func_setbuffer=yes
ac_cv_func_setegid=yes
ac_cv_func_setenv=yes
ac_cv_func_seteuid=yes
ac_cv_func_setgid=yes
ac_cv_func_setgroups=yes
ac_cv_func_sethostname=yes
ac_cv_func_setitimer=yes
ac_cv_func_setjmp=yes
ac_cv_func_setlinebuf=yes
ac_cv_func_setlocale=yes
ac_cv_func_setmntent=yes
ac_cv_func_setpgid=yes
ac_cv_func_setpgrp=yes
ac_cv_func_setpgrp_void=yes
ac_cv_func_setpriority=yes
ac_cv_func_setregid=yes
ac_cv_func_setresgid=yes
ac_cv_func_setresuid=yes
ac_cv_func_setreuid=yes
ac_cv_func_setrlimit=yes
ac_cv_func_setsid=yes
ac_cv_func_setsockopt=yes
ac_cv_func_settimeofday=yes
ac_cv_func_setuid=yes
ac_cv_func_setutent=yes
ac_cv_func_setutxent=yes
ac_cv_func_setvbuf=yes
ac_cv_func_setvbuf_reversed=no
ac_cv_func_setxattr=yes
ac_cv_func_sgetspent=yes
ac_cv_func_shmat=yes
ac_cv_func_shmctl64=no
ac_cv_func_shmctl=yes
ac_cv_func_shmdt=yes
ac_cv_func_shmget=yes
ac_cv_func_shutdown=yes
ac_cv_func_sigaction=yes
ac_cv_func_sigaddset=yes
ac_cv_func_sigaltstack=yes
ac_cv_func_sigblock=yes
ac_cv_func_sigemptyset=yes
ac_cv_func_sighold=yes
ac_cv_func_siginterrupt=yes
ac_cv_func_signal=yes
ac_cv_func_sigprocmask=yes
ac_cv_func_sigset=yes
ac_cv_func_sigsetmask=yes
ac_cv_func_sigstack=yes
ac_cv_func_sigsuspend=yes
ac_cv_func_sigvec=yes
ac_cv_func_snprintf=yes
ac_cv_func_snprintf_c99=yes
ac_cv_func_socket=yes
ac_cv_func_socketpair=yes
ac_cv_func_sprintf=yes
ac_cv_func_srand48=yes
ac_cv_func_srand=yes
ac_cv_func_srandom=yes
ac_cv_func_sscanf=yes
ac_cv_func_stat=yes
ac_cv_func_stat_empty_string_bug=no
ac_cv_func_stat_ignores_trailing_slash=no
ac_cv_func_statfs=yes
ac_cv_func_statvfs=yes
ac_cv_func_stime=yes
ac_cv_func_stpcpy=yes
ac_cv_func_strcasecmp=yes
ac_cv_func_strcasestr=yes
ac_cv_func_strchr=yes
ac_cv_func_strchrnul=yes
ac_cv_func_strcmp=yes
ac_cv_func_strcspn=yes
ac_cv_func_strdup=yes
ac_cv_func_strerror=yes
ac_cv_func_strerror_r=yes
ac_cv_func_strftime=yes
ac_cv_func_strlcat=no
ac_cv_func_strlcpy=no
ac_cv_func_strlen=yes
ac_cv_func_strncasecmp=yes
ac_cv_func_strncmp=yes
ac_cv_func_strndup=yes
ac_cv_func_strnlen=yes
ac_cv_func_strpbrk=yes
ac_cv_func_strptime=yes
ac_cv_func_strrchr=yes
ac_cv_func_strsep=yes
ac_cv_func_strsignal=yes
ac_cv_func_strspn=yes
ac_cv_func_strstr=yes
ac_cv_func_strtod=yes
ac_cv_func_strtoimax=yes
ac_cv_func_strtok_r=yes
ac_cv_func_strtol=yes
ac_cv_func_strtoll=yes
ac_cv_func_strtoul=yes
ac_cv_func_strtoull=yes
ac_cv_func_strtoumax=yes
ac_cv_func_strverscmp=yes
ac_cv_func_strxfrm=yes
ac_cv_func_symlink=yes
ac_cv_func_sync=yes
ac_cv_func_sys_siglist=yes
ac_cv_func_sysconf=yes
ac_cv_func_sysctl=yes
ac_cv_func_sysinfo=yes
ac_cv_func_syslog=yes
ac_cv_func_system=yes
ac_cv_func_tcgetattr=yes
ac_cv_func_tcgetpgrp=yes
ac_cv_func_tcsetattr=yes
ac_cv_func_tcsetpgrp=yes
ac_cv_func_time=yes
ac_cv_func_timegm=yes
ac_cv_func_times=yes
ac_cv_func_timezone=yes
ac_cv_func_tmpnam=yes
ac_cv_func_towlower=yes
ac_cv_func_towupper=yes
ac_cv_func_truncate=yes
ac_cv_func_tsearch=yes
ac_cv_func_ttyname=yes
ac_cv_func_tzset=yes
ac_cv_func_ulimit=yes
ac_cv_func_umask=yes
ac_cv_func_uname=yes
ac_cv_func_unlink=yes
ac_cv_func_unsetenv=yes
ac_cv_func_unshare=yes
ac_cv_func_updwtmp=yes
ac_cv_func_updwtmpx=yes
ac_cv_func_usleep=yes
ac_cv_func_ustat=yes
ac_cv_func_utime=yes
ac_cv_func_utimes=yes
ac_cv_func_utmpname=yes
ac_cv_func_utmpxname=yes
ac_cv_func_va_copy=yes
ac_cv_func_valloc=yes
ac_cv_func_vasprintf=yes
ac_cv_func_verrx=yes
ac_cv_func_vfork=yes
ac_cv_func_vfprintf=yes
ac_cv_func_vfscanf=yes
ac_cv_func_vhangup=yes
ac_cv_func_vprintf=yes
ac_cv_func_vsnprintf=yes
ac_cv_func_vsnprintf_c99=yes
ac_cv_func_vsprintf=yes
ac_cv_func_wait3=yes
ac_cv_func_wait4=yes
ac_cv_func_waitpid=yes
ac_cv_func_walkcontext=no
ac_cv_func_wcrtomb=yes
ac_cv_func_wcscoll=yes
ac_cv_func_wcsdup=yes
ac_cv_func_wcslen=yes
ac_cv_func_wctob=yes
ac_cv_func_wctomb=yes
ac_cv_func_wctype=yes
ac_cv_func_wcwidth=yes
ac_cv_func_wmemchr=yes
ac_cv_func_wmemcpy=yes
ac_cv_func_wmempcpy=yes
ac_cv_have_abstract_sockets=yes
ac_cv_have_accrights_in_msghdr=no
ac_cv_have_broken_snprintf=no
ac_cv_have_control_in_msghdr=yes
ac_cv_have_decl_sys_siglist=yes
ac_cv_have_openpty_ctty_bug=yes
ac_cv_have_space_d_name_in_struct_dirent=yes
ac_cv_header_aio_h=yes
ac_cv_header_alloca_h=yes
ac_cv_header_argz_h=yes
ac_cv_header_arpa_inet_h=yes
ac_cv_header_arpa_nameser_h=yes
ac_cv_header_asm_byteorder_h=yes
ac_cv_header_asm_ioctls_h=yes
ac_cv_header_asm_mtrr_h=yes
ac_cv_header_asm_page_h=no
ac_cv_header_asm_types_h=yes
ac_cv_header_assert_h=yes
ac_cv_header_byteswap_h=yes
ac_cv_header_crypt_h=yes
ac_cv_header_ctype_h=yes
ac_cv_header_dbm_h=no
ac_cv_header_dirent_dirent_h=yes
ac_cv_header_dirent_h=yes
ac_cv_header_dlfcn_h=yes
ac_cv_header_elf_h=yes
ac_cv_header_endian_h=yes
ac_cv_header_err_h=yes
ac_cv_header_errno_h=yes
ac_cv_header_execinfo_h=yes
ac_cv_header_fcntl_h=yes
ac_cv_header_features_h=yes
ac_cv_header_float_h=yes
ac_cv_header_fnmatch_h=yes
ac_cv_header_fstab_h=yes
ac_cv_header_ftw_h=yes
ac_cv_header_getopt_h=yes
ac_cv_header_glob_h=yes
ac_cv_header_grp_h=yes
ac_cv_header_iconv_h=yes
ac_cv_header_ifaddrs_h=yes
ac_cv_header_inttypes_h=yes
ac_cv_header_langinfo_h=yes
ac_cv_header_lastlog_h=yes
ac_cv_header_libgen_h=yes
ac_cv_header_libintl_h=yes
ac_cv_header_limits_h=yes
ac_cv_header_linux_agpgart_h=yes
ac_cv_header_linux_apm_bios_h=yes
ac_cv_header_linux_capability_h=yes
ac_cv_header_linux_fb_h=yes
ac_cv_header_linux_fd_h=yes
ac_cv_header_linux_fs_h=yes
ac_cv_header_linux_hayesesp_h=no
ac_cv_header_linux_hdreg_h=yes
ac_cv_header_linux_icmp_h=yes
ac_cv_header_linux_in6_h=yes
ac_cv_header_linux_joystick_h=yes
ac_cv_header_linux_ptrace_h=yes
ac_cv_header_linux_serial_h=yes
ac_cv_header_linux_sonypi_h=yes
ac_cv_header_linux_unistd_h=yes
ac_cv_header_linux_utsname_h=yes
ac_cv_header_linux_version_h=yes
ac_cv_header_locale_h=yes
ac_cv_header_machine_apmvar_h=no
ac_cv_header_machine_mtrr_h=no
ac_cv_header_malloc_h=yes
ac_cv_header_math_h=yes
ac_cv_header_mcheck_h=yes
ac_cv_header_memory_h=yes
ac_cv_header_mntent_h=yes
ac_cv_header_mqueue_h=yes
ac_cv_header_ndbm_h=no
ac_cv_header_net_if_h=yes
ac_cv_header_net_route_h=yes
ac_cv_header_netdb_h=yes
ac_cv_header_netinet_ether_h=yes
ac_cv_header_netinet_in_h=yes
ac_cv_header_netinet_ip6_h=yes
ac_cv_header_netinet_ip_h=yes
ac_cv_header_netinet_sctp_h=no
ac_cv_header_netinet_sctp_uio_h=no
ac_cv_header_netinet_tcp_h=yes
ac_cv_header_netinet_udp_h=yes
ac_cv_header_netipx_ipx_h=yes
ac_cv_header_paths_h=yes
ac_cv_header_poll_h=yes
ac_cv_header_pthread_h=yes
ac_cv_header_pty_h=yes
ac_cv_header_pwd_h=yes
ac_cv_header_regex_h=yes
ac_cv_header_resolv_h=yes
ac_cv_header_rpc_rpc_h=yes
ac_cv_header_rpc_types_h=yes
ac_cv_header_rpcsvc_dbm_h=no
ac_cv_header_sched_h=yes
ac_cv_header_scsi_scsi_h=yes
ac_cv_header_search_h=yes
ac_cv_header_semaphore_h=yes
ac_cv_header_setjmp_h=yes
ac_cv_header_sgtty_h=yes
ac_cv_header_shadow_h=yes
ac_cv_header_signal_h=yes
ac_cv_header_stdarg_h=yes
ac_cv_header_stdbool_h=yes
ac_cv_header_stdc=yes
ac_cv_header_stddef_h=yes
ac_cv_header_stdint_h=yes
ac_cv_header_stdio_h=yes
ac_cv_header_stdlib_h=yes
ac_cv_header_string_h=yes
ac_cv_header_strings_h=yes
ac_cv_header_stropts_h=yes
ac_cv_header_sys_agpgart_h=no
ac_cv_header_sys_agpio_h=no
ac_cv_header_sys_bitypes_h=yes
ac_cv_header_sys_cdefs_h=yes
ac_cv_header_sys_dir_h=yes
ac_cv_header_sys_endian_h=no
ac_cv_header_sys_epoll_h=yes
ac_cv_header_sys_fcntl_h=yes
ac_cv_header_sys_file_h=yes
ac_cv_header_sys_fsuid_h=yes
ac_cv_header_sys_ioctl_h=yes
ac_cv_header_sys_ipc_h=yes
ac_cv_header_sys_linker_h=no
ac_cv_header_sys_memrange_h=no
ac_cv_header_sys_mman_h=yes
ac_cv_header_sys_mount_h=yes
ac_cv_header_sys_mtio_h=yes
ac_cv_header_sys_param_h=yes
ac_cv_header_sys_poll_h=yes
ac_cv_header_sys_prctl_h=yes
ac_cv_header_sys_ptrace_h=yes
ac_cv_header_sys_queue_h=yes
ac_cv_header_sys_reg_h=yes
ac_cv_header_sys_resource_h=yes
ac_cv_header_sys_select_h=yes
ac_cv_header_sys_sem_h=yes
ac_cv_header_sys_shm_h=yes
ac_cv_header_sys_signal_h=yes
ac_cv_header_sys_socket_h=yes
ac_cv_header_sys_socketvar_h=yes
ac_cv_header_sys_soundcard_h=yes
ac_cv_header_sys_stat_h=yes
ac_cv_header_sys_statfs_h=yes
ac_cv_header_sys_statvfs_h=yes
ac_cv_header_sys_stropts_h=yes
ac_cv_header_sys_swap_h=yes
ac_cv_header_sys_sysctl_h=yes
ac_cv_header_sys_sysinfo_h=yes
ac_cv_header_sys_sysmacros_h=yes
ac_cv_header_sys_termios_h=yes
ac_cv_header_sys_time_h=yes
ac_cv_header_sys_timeb_h=yes
ac_cv_header_sys_times_h=yes
ac_cv_header_sys_timex_h=yes
ac_cv_header_sys_types_h=yes
ac_cv_header_sys_uio_h=yes
ac_cv_header_sys_un_h=yes
ac_cv_header_sys_unistd_h=yes
ac_cv_header_sys_user_h=yes
ac_cv_header_sys_utsname_h=yes
ac_cv_header_sys_vfs_h=yes
ac_cv_header_sys_wait_h=yes
ac_cv_header_sysexits_h=yes
ac_cv_header_syslog_h=yes
ac_cv_header_termio_h=yes
ac_cv_header_termios_h=yes
ac_cv_header_time_h=yes
ac_cv_header_ttyent_h=yes
ac_cv_header_ulimit_h=yes
ac_cv_header_unistd_h=yes
ac_cv_header_ustat_h=yes
ac_cv_header_utime_h=yes
ac_cv_header_utmp_h=yes
ac_cv_header_utmpx_h=yes
ac_cv_header_values_h=yes
ac_cv_header_wchar_h=yes
ac_cv_header_wctype_h=yes
ac_cv_header_zlib_h=yes
ac_cv_host=i586-poky-linux-gnu
ac_cv_lbl_unaligned_fail=no
ac_cv_lib_Xdmcp_XdmcpWrap=yes
ac_cv_lib_c_backtrace=yes
ac_cv_lib_c_signalfd=yes
ac_cv_lib_crypto_SHA1_Init=yes
ac_cv_lib_dl_dlopen=yes
ac_cv_lib_gcrypt_gcry_md_open=yes
ac_cv_lib_lex=-lfl
ac_cv_lib_m_cbrt=yes
ac_cv_lib_m_sqrt=yes
ac_cv_lib_md_SHA1Init=no
ac_cv_lib_rt_clock_gettime=yes
ac_cv_libiconv_utf8=yes
ac_cv_libnet_endianess=lil
ac_cv_linux_vers=2
ac_cv_member_struct_sockaddr_in_sin_len=no
ac_cv_need_trio=no
ac_cv_objext=o
ac_cv_path_DTRACE=not_found
ac_cv_path_EGREP='/bin/grep -E'
ac_cv_path_ESD_CONFIG=no
ac_cv_path_FGREP='/bin/grep -F'
ac_cv_path_GREP=/bin/grep
ac_cv_path_PERL=/home/kyu3/sdb/test/tmp/sysroots/x86_64-linux/usr/bin/perl
ac_cv_path_PKG_CONFIG=/home/kyu3/sdb/test/tmp/sysroots/x86_64-linux/usr/bin/pkg-config
ac_cv_path_RAWCPP=/usr/bin/cpp
ac_cv_path_SED=/bin/sed
ac_cv_path_XMLTO=/usr/bin/xmlto
ac_cv_path_ac_pt_PKG_CONFIG=/home/kyu3/sdb/test/tmp/sysroots/x86_64-linux/usr/bin/pkg-config
ac_cv_path_install='/usr/bin/install -c'
ac_cv_path_mkdir=/bin/mkdir
ac_cv_pread=no
ac_cv_prog_AR=i586-poky-linux-ar
ac_cv_prog_AWK=gawk
ac_cv_prog_CC='i586-poky-linux-gcc -march=i586 --sysroot=/home/kyu3/sdb/test/tmp/sysroots/qemux86'
ac_cv_prog_CPP='i586-poky-linux-gcc -E --sysroot=/home/kyu3/sdb/test/tmp/sysroots/qemux86'
ac_cv_prog_DLLTOOL=dlltool
ac_cv_prog_LEX=flex
ac_cv_prog_OBJDUMP=i586-poky-linux-objdump
ac_cv_prog_RANLIB=i586-poky-linux-ranlib
ac_cv_prog_STRIP=i586-poky-linux-strip
ac_cv_prog_YACC='bison -y'
ac_cv_prog_ac_ct_MANIFEST_TOOL=mt
ac_cv_prog_cc_c89=
ac_cv_prog_cc_c99=-std=gnu99
ac_cv_prog_cc_g=yes
ac_cv_prog_lex_root=lex.yy
ac_cv_prog_lex_yytext_pointer=yes
ac_cv_prog_make_make_set=yes
ac_cv_pwrite=no
ac_cv_sctp=no
ac_cv_search_gethostbyname='none required'
ac_cv_search_getsecretkey='none required'
ac_cv_search_opendir='none required'
ac_cv_search_socket='none required'
ac_cv_sizeof_char=1
ac_cv_sizeof_char_p=4
ac_cv_sizeof_dev_t=8
ac_cv_sizeof_double=8
ac_cv_sizeof_float=4
ac_cv_sizeof_gid_t=4
ac_cv_sizeof_ino_t=4
ac_cv_sizeof_int=4
ac_cv_sizeof_int_p=4
ac_cv_sizeof_long=4
ac_cv_sizeof_long_double=12
ac_cv_sizeof_long_int=4
ac_cv_sizeof_long_long=8
ac_cv_sizeof_long_long_int=8
ac_cv_sizeof_long_p=4
ac_cv_sizeof_off_t=4
ac_cv_sizeof_short=2
ac_cv_sizeof_short_int=2
ac_cv_sizeof_signed_char=1
ac_cv_sizeof_size_t=4
ac_cv_sizeof_ssize_t=4
ac_cv_sizeof_uid_t=4
ac_cv_sizeof_unsigned_char=1
ac_cv_sizeof_unsigned_char_p=4
ac_cv_sizeof_unsigned_int=1
ac_cv_sizeof_unsigned_long=4
ac_cv_sizeof_unsigned_long_int=4
ac_cv_sizeof_unsigned_long_long=8
ac_cv_sizeof_unsigned_long_long_int=8
ac_cv_sizeof_unsigned_short=2
ac_cv_sizeof_unsigned_short_int=2
ac_cv_sizeof_void_p=4
ac_cv_sizeof_wchar_t=4
ac_cv_sys_file_offset_bits=64
ac_cv_sys_largefile_CC=no
ac_cv_sys_linker_h=no
ac_cv_sys_restartable_syscalls=yes
ac_cv_sysv_ipc=yes
ac_cv_tls=__thread
ac_cv_type_pid_t=yes
ac_cv_type_signal=void
ac_cv_type_socklen_t=yes
ac_cv_type_struct_timespec=yes
ac_cv_type_uid_t='{ac_cv_type_uid_t=yes}'
ac_cv_uchar=no
ac_cv_uint=yes
ac_cv_ulong=yes
ac_cv_ushort=yes
ac_cv_va_copy=no
ac_cv_va_val_copy=yes
ac_cv_working_alloca_h=yes
am_cv_CCAS_dependencies_compiler_type=gcc3
am_cv_CC_dependencies_compiler_type=gcc3
am_cv_OBJC_dependencies_compiler_type=none
am_cv_func_working_getline=yes
am_cv_scanf_lld=yes
apr_cv_process_shared_works=no
apr_cv_tcp_nodelay_with_cork=yes
bash_cv_dup2_broken=no
bash_cv_func_sigsetjmp=missing
bash_cv_func_strcoll_broken=no
bash_cv_getcwd_calls_popen=no
bash_cv_getenv_redef=yes
bash_cv_have_mbstate_t=yes
bash_cv_job_control_missing=present
bash_cv_must_reinstall_sighandlers=no
bash_cv_opendir_not_robust=no
bash_cv_pgrp_pipe=no
bash_cv_printf_a_format=yes
bash_cv_sys_named_pipes=present
bash_cv_sys_siglist=yes
bash_cv_type_rlimit=rlim_t
bash_cv_ulimit_maxfds=yes
bash_cv_under_sys_siglist=yes
bash_cv_unusable_rtsigs=no
cvs_cv_func_printf_ptr=yes
db_cv_align_t='unsigned long long'
db_cv_alignp_t='unsigned long'
db_cv_fcntl_f_setfd=yes
db_cv_mutex=x86/gcc-assembly
db_cv_path_ar=/usr/bin/ar
db_cv_path_chmod=/bin/chmod
db_cv_path_cp=/bin/cp
db_cv_path_ln=/bin/ln
db_cv_path_mkdir=/bin/mkdir
db_cv_path_ranlib=/usr/bin/ranlib
db_cv_path_rm=/bin/rm
db_cv_path_sh=/bin/sh
db_cv_path_strip=/usr/bin/strip
db_cv_posixmutexes=no
db_cv_sprintf_count=yes
db_cv_uimutexes=no
dpkg_cv___va_copy=yes
dpkg_cv_va_copy=no
ettercap_cv_type_socklen_t=yes
gl_cv_func_btowc_eof=yes
gl_cv_func_mbrtowc_incomplete_state=yes
gl_cv_func_mbrtowc_nul_retval=yes
gl_cv_func_mbrtowc_null_arg=yes
gl_cv_func_mbrtowc_retval=yes
gl_cv_func_mbrtowc_sanitycheck=yes
gl_cv_func_wcrtomb_retval=yes
gl_cv_func_wctob_works=yes
glib_cv___va_copy=yes
glib_cv_compliant_posix_memalign=1
glib_cv_has__inline=yes
glib_cv_has__inline__=yes
glib_cv_hasinline=yes
glib_cv_long_long_format=ll
glib_cv_rtldglobal_broken=yes
glib_cv_sane_realloc=yes
glib_cv_sizeof_gmutex=24
glib_cv_sizeof_system_thread=4
glib_cv_stack_grows=no
glib_cv_strlcpy=no
glib_cv_sys_pthread_cond_timedwait_posix=yes
glib_cv_sys_pthread_getspecific_posix=yes
glib_cv_sys_pthread_mutex_trylock_posix=yes
glib_cv_uscore=no
glib_cv_use_pid_surrogate=yes
glib_cv_va_copy=yes
glib_cv_va_val_copy=yes
gt_cv_locale_fr=fr_FR
jm_cv_func_gettimeofday_clobber=no
jm_cv_func_working_readdir=yes
lf_cv_sane_realloc=yes
lftp_cv___va_copy=yes
lftp_cv_va_copy=no
libIDL_cv_long_long_format=ll
lt_cv_ar_at_file=@
lt_cv_archive_cmds_need_lc=no
lt_cv_deplibs_check_method=pass_all
lt_cv_file_magic_cmd='$MAGIC_CMD'
lt_cv_file_magic_test_file=
lt_cv_ld_reload_flag=-r
lt_cv_nm_interface='BSD nm'
lt_cv_objdir=.libs
lt_cv_path_LD='i586-poky-linux-ld --sysroot=/home/kyu3/sdb/test/tmp/sysroots/qemux86'
lt_cv_path_NM=i586-poky-linux-nm
lt_cv_path_mainfest_tool=no
lt_cv_prog_compiler_c_o=yes
lt_cv_prog_compiler_pic='-fPIC -DPIC'
lt_cv_prog_compiler_pic_works=yes
lt_cv_prog_compiler_rtti_exceptions=no
lt_cv_prog_compiler_static_works=yes
lt_cv_prog_gnu_ld=yes
lt_cv_sharedlib_from_linklib_cmd='printf %s\n'
lt_cv_shlibpath_overrides_runpath=no
lt_cv_sys_global_symbol_pipe='sed -n -e '\''s/^.*[	 ]\([ABCDGIRSTW][ABCDGIRSTW]*\)[	 ][	 ]*\([_A-Za-z][_A-Za-z0-9]*\)$/\1 \2 \2/p'\'' | sed '\''/ __gnu_lto/d'\'''
lt_cv_sys_global_symbol_to_c_name_address='sed -n -e '\''s/^: \([^ ]*\)[ ]*$/  {\"\1\", (void *) 0},/p'\'' -e '\''s/^[ABCDGIRSTW]* \([^ ]*\) \([^ ]*\)$/  {"\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=1572864
lt_cv_to_host_file_cmd=func_convert_file_noop
lt_cv_to_tool_file_cmd=func_convert_file_noop
mono_cv_uscore=no
moz_cv_align_of_JS_ALIGN_OF_POINTER=4
moz_cv_size_of_JS_BYTES_PER_DOUBLE=8
moz_cv_size_of_JS_BYTES_PER_WORD=4
mr_cv_target_elf=yes
mysql_cv_func_atomic_add=yes
mysql_cv_func_atomic_sub=yes
nfsd_cv_broken_setfsuid=0
nfsd_cv_bsd_signals=yes
nfsd_cv_func_statfs=statfs2_bsize
php_cv_lib_cookie_io_functions_use_off64_t=yes
pkg_cv_DBUS_CFLAGS='-I/home/kyu3/sdb/test/tmp/sysroots/qemux86/usr/include/dbus-1.0 -I/home/kyu3/sdb/test/tmp/sysroots/qemux86/usr/lib/dbus-1.0/include  '
pkg_cv_DBUS_LIBS='-ldbus-1 -lpthread -lrt  '
pkg_cv_DMXMODULES_CFLAGS=' '
pkg_cv_DMXMODULES_LIBS='-lXmuu -lXext -lXrender -lX11 -lXfixes -lXi -lXau -lXdmcp  '
pkg_cv_DRI2PROTO_CFLAGS=' '
pkg_cv_DRI2PROTO_LIBS=' '
pkg_cv_GLIB_CFLAGS='-I/home/kyu3/sdb/test/tmp/sysroots/qemux86/usr/include/glib-2.0 -I/home/kyu3/sdb/test/tmp/sysroots/qemux86/usr/lib/glib-2.0/include  '
pkg_cv_GLIB_LIBS='-lglib-2.0  '
pkg_cv_HAL_CFLAGS='-DDBUS_API_SUBJECT_TO_CHANGE -I/home/kyu3/sdb/test/tmp/sysroots/qemux86/usr/include/hal -I/home/kyu3/sdb/test/tmp/sysroots/qemux86/usr/include/dbus-1.0 -I/home/kyu3/sdb/test/tmp/sysroots/qemux86/usr/lib/dbus-1.0/include  '
pkg_cv_HAL_LIBS='-lhal -ldbus-1 -lpthread -lrt  '
pkg_cv_LIBDRM_CFLAGS='-I/home/kyu3/sdb/test/tmp/sysroots/qemux86/usr/include/libdrm  '
pkg_cv_LIBDRM_LIBS='-ldrm  '
pkg_cv_OPENSSL_CFLAGS=' '
pkg_cv_OPENSSL_LIBS='-lssl -lcrypto  '
pkg_cv_PCIACCESS_CFLAGS=' '
pkg_cv_PCIACCESS_LIBS='-lpciaccess  '
pkg_cv_PIXMAN_CFLAGS='-I/home/kyu3/sdb/test/tmp/sysroots/qemux86/usr/include/pixman-1  '
pkg_cv_PIXMAN_LIBS='-lpixman-1  '
pkg_cv_UDEV_CFLAGS=' '
pkg_cv_UDEV_LIBS='-ludev  '
pkg_cv_XDMCP_CFLAGS=' '
pkg_cv_XDMCP_LIBS='-lXdmcp  '
pkg_cv_XF86VIDMODE_CFLAGS=' '
pkg_cv_XF86VIDMODE_LIBS=' '
pkg_cv_XNESTMODULES_CFLAGS=' '
pkg_cv_XNESTMODULES_LIBS='-lXext -lX11 -lXau -lXdmcp  '
pkg_cv_XORG_MODULES_CFLAGS=' '
pkg_cv_XORG_MODULES_LIBS=' '
pkg_cv_XSERVERCFLAGS_CFLAGS='-D_BSD_SOURCE -DHAS_FCHOWN -DHAS_STICKY_DIR_BIT -I/home/kyu3/sdb/test/tmp/sysroots/qemux86/usr/include/pixman-1 -I/home/kyu3/sdb/test/tmp/sysroots/qemux86/usr/include/freetype2  '
pkg_cv_XSERVERCFLAGS_LIBS='-lxkbfile -lpixman-1 -lXfont -lXau -lXdmcp  '
pkg_cv_XSERVERLIBS_CFLAGS='-I/home/kyu3/sdb/test/tmp/sysroots/qemux86/usr/include/pixman-1 -I/home/kyu3/sdb/test/tmp/sysroots/qemux86/usr/include/freetype2  '
pkg_cv_XSERVERLIBS_LIBS='-lpixman-1 -lXfont -lXau -lXdmcp  '
racoon_cv_bug_getaddrinfo=no
rpppoe_cv_pack_bitfields=rev
rsync_cv_HAVE_BROKEN_LARGEFILE=no
rsync_cv_HAVE_BROKEN_READDIR=no
rsync_cv_HAVE_C99_VSNPRINTF=yes
rsync_cv_HAVE_GETTIMEOFDAY_TZ=yes
rsync_cv_HAVE_LONGLONG=yes
rsync_cv_HAVE_OFF64_T=no
rsync_cv_HAVE_SECURE_MKSTEMP=yes
rsync_cv_HAVE_SHORT_INO_T=no
rsync_cv_HAVE_SOCKETPAIR=yes
rsync_cv_HAVE_UNSIGNED_CHAR=no
rsync_cv_REPLACE_INET_ATON=no
rsync_cv_REPLACE_INET_NTOA=no
samba_cv_HAVE_GETTIMEOFDAY_TZ=yes
screen_cv_sys_bcopy_overlap=no
screen_cv_sys_fifo_broken_impl=yes
screen_cv_sys_fifo_usable=yes
screen_cv_sys_memcpy_overlap=no
screen_cv_sys_memmove_overlap=no
screen_cv_sys_select_broken_retval=no
screen_cv_sys_sockets_nofs=no
screen_cv_sys_sockets_usable=yes
screen_cv_sys_terminfo_used=yes
shadow_cv_logdir=/var/log
shadow_cv_maildir=/var/spool/mail
shadow_cv_mailfile=Mailbox
shadow_cv_passwd_dir=/usr/bin
shadow_cv_utmpdir=/var/run
slrn_cv___va_copy=yes
slrn_cv_va_copy=no
slrn_cv_va_val_copy=yes
sudo_cv_func_unsetenv_void=no
sudo_cv_uid_t_len=10
utils_cv_sys_open_max=1015
yeti_cv_func_scanf_modif_size_t=yes

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

ACLOCAL='${SHELL} /home/kyu3/sdb/test/tmp/work/i586-poky-linux/xserver-xf86-lite-1.10.1-r0/xorg-server-1.10.1/missing --run aclocal-1.11'
ADMIN_MAN_DIR='$(mandir)/man$(ADMIN_MAN_SUFFIX)'
ADMIN_MAN_SUFFIX='8'
AGP_FALSE='#'
AGP_TRUE=''
AIGLX_FALSE=''
AIGLX_TRUE='#'
ALLOCA=''
ALPHA_VIDEO_FALSE=''
ALPHA_VIDEO_TRUE='#'
AMDEPBACKSLASH='\'
AMDEP_FALSE='#'
AMDEP_TRUE=''
AMTAR='${SHELL} /home/kyu3/sdb/test/tmp/work/i586-poky-linux/xserver-xf86-lite-1.10.1-r0/xorg-server-1.10.1/missing --run tar'
AM_BACKSLASH='\'
AM_DEFAULT_VERBOSITY='1'
APPLE_APPLICATIONS_DIR='/Applications/Utilities'
APPLE_APPLICATION_NAME='X11'
APP_MAN_DIR='$(mandir)/man$(APP_MAN_SUFFIX)'
APP_MAN_SUFFIX='1'
AR='i586-poky-linux-ar'
ARM_BACKTRACE_CFLAGS=''
ARM_VIDEO_FALSE=''
ARM_VIDEO_TRUE='#'
AS='i586-poky-linux-as'
AUTOCONF='${SHELL} /home/kyu3/sdb/test/tmp/work/i586-poky-linux/xserver-xf86-lite-1.10.1-r0/xorg-server-1.10.1/missing --run autoconf'
AUTOHEADER='${SHELL} /home/kyu3/sdb/test/tmp/work/i586-poky-linux/xserver-xf86-lite-1.10.1-r0/xorg-server-1.10.1/missing --run autoheader'
AUTOMAKE='${SHELL} /home/kyu3/sdb/test/tmp/work/i586-poky-linux/xserver-xf86-lite-1.10.1-r0/xorg-server-1.10.1/missing --run automake-1.11'
AWK='gawk'
BASE_FONT_PATH='/usr/share/fonts/X11'
BSD_APM_FALSE=''
BSD_APM_TRUE='#'
BSD_KQUEUE_APM_FALSE=''
BSD_KQUEUE_APM_TRUE='#'
BUILD_DATE='20110528'
BUILD_KDRIVEFBDEVLIB_FALSE=''
BUILD_KDRIVEFBDEVLIB_TRUE='#'
BUILD_TIME='1114940'
CC='i586-poky-linux-gcc -march=i586 --sysroot=/home/kyu3/sdb/test/tmp/sysroots/qemux86 -std=gnu99'
CCAS='i586-poky-linux-gcc -march=i586 --sysroot=/home/kyu3/sdb/test/tmp/sysroots/qemux86 -std=gnu99'
CCASDEPMODE='depmode=gcc3'
CCASFLAGS='-O2 -pipe -g -feliminate-unused-debug-types'
CCDEPMODE='depmode=gcc3'
CFLAGS='-O2 -pipe -g -feliminate-unused-debug-types'
CHANGELOG_CMD='(GIT_DIR=$(top_srcdir)/.git git log > $(top_srcdir)/.changelog.tmp && mv $(top_srcdir)/.changelog.tmp $(top_srcdir)/ChangeLog) || (rm -f $(top_srcdir)/.changelog.tmp; touch $(top_srcdir)/ChangeLog; echo '\''git directory not found: installing possibly empty changelog.'\'' >&2)'
COMPILEDDEFAULTFONTPATH='/usr/share/fonts/X11/misc/,/usr/share/fonts/X11/TTF/,/usr/share/fonts/X11/OTF/,/usr/share/fonts/X11/Type1/,/usr/share/fonts/X11/100dpi/,/usr/share/fonts/X11/75dpi/'
COMPOSITE_FALSE='#'
COMPOSITE_TRUE=''
CONFIG_DBUS_API_FALSE=''
CONFIG_DBUS_API_TRUE='#'
CONFIG_HAL_FALSE=''
CONFIG_HAL_TRUE='#'
CONFIG_NEED_DBUS_FALSE=''
CONFIG_NEED_DBUS_TRUE='#'
CONFIG_UDEV_FALSE='#'
CONFIG_UDEV_TRUE=''
CPP='i586-poky-linux-gcc -E --sysroot=/home/kyu3/sdb/test/tmp/sysroots/qemux86'
CPPFLAGS=''
CWARNFLAGS='-Wall -Wpointer-arith -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -fno-strict-aliasing -Wbad-function-cast -Wformat=2 -Wold-style-definition -Wdeclaration-after-statement '
CYGPATH_W='echo'
DARWIN_LIBS=''
DBE_FALSE='#'
DBE_TRUE=''
DBUS_CFLAGS='-I/home/kyu3/sdb/test/tmp/sysroots/qemux86/usr/include/dbus-1.0 -I/home/kyu3/sdb/test/tmp/sysroots/qemux86/usr/lib/dbus-1.0/include  '
DBUS_LIBS='-ldbus-1 -lpthread -lrt  '
DEBUG_FALSE=''
DEBUG_TRUE='#'
DEFAULT_LIBRARY_PATH='/usr/lib'
DEFAULT_LOGDIR=''
DEFAULT_LOGPREFIX='/var/log/Xorg.'
DEFAULT_MODULE_PATH='/usr/lib/xorg/modules'
DEFS='-DHAVE_CONFIG_H'
DEPDIR='.deps'
DGA_CFLAGS=''
DGA_FALSE=''
DGA_LIBS=''
DGA_TRUE='#'
DIX_CFLAGS='-DHAVE_DIX_CONFIG_H $(CWARNFLAGS) -D_BSD_SOURCE -DHAS_FCHOWN -DHAS_STICKY_DIR_BIT -I/home/kyu3/sdb/test/tmp/sysroots/qemux86/usr/include/pixman-1 -I/home/kyu3/sdb/test/tmp/sysroots/qemux86/usr/include/freetype2   -I$(top_srcdir)/include -I$(top_builddir)/include -I$(top_srcdir)/Xext -I$(top_srcdir)/composite -I$(top_srcdir)/damageext -I$(top_srcdir)/xfixes -I$(top_srcdir)/Xi -I$(top_srcdir)/mi -I$(top_srcdir)/miext/sync -I$(top_srcdir)/miext/shadow  -I$(top_srcdir)/miext/damage -I$(top_srcdir)/render -I$(top_srcdir)/randr -I$(top_srcdir)/fb -fvisibility=hidden'
DIX_LIB='$(top_builddir)/dix/libdix.la'
DLLTOOL='dlltool'
DLOPEN_LIBS='-ldl'
DMXEXAMPLES_DEP_CFLAGS=''
DMXEXAMPLES_DEP_LIBS=''
DMXMODULES_CFLAGS=' '
DMXMODULES_LIBS='-lXmuu -lXext -lXrender -lX11 -lXfixes -lXi -lXau -lXdmcp  '
DMXXIEXAMPLES_DEP_CFLAGS=''
DMXXIEXAMPLES_DEP_LIBS=''
DMXXMUEXAMPLES_DEP_CFLAGS=''
DMXXMUEXAMPLES_DEP_LIBS=''
DMX_BUILD_LNX_FALSE=''
DMX_BUILD_LNX_TRUE='#'
DMX_BUILD_USB_FALSE=''
DMX_BUILD_USB_TRUE='#'
DMX_FALSE=''
DMX_TRUE='#'
DOXYGEN=''
DPMSExtension_FALSE='#'
DPMSExtension_TRUE=''
DRI2PROTO_CFLAGS=' '
DRI2PROTO_LIBS=' '
DRI2_AIGLX_FALSE='#'
DRI2_AIGLX_TRUE=''
DRI2_FALSE='#'
DRI2_TRUE=''
DRIPROTO_CFLAGS=''
DRIPROTO_LIBS=''
DRIVER_MAN_DIR='$(mandir)/man$(DRIVER_MAN_SUFFIX)'
DRIVER_MAN_SUFFIX='4'
DRI_CFLAGS=''
DRI_DRIVER_PATH='/usr/lib/dri'
DRI_FALSE=''
DRI_LIBS=''
DRI_TRUE='#'
DSYMUTIL=''
DTRACE='not_found'
DUMPBIN=''
ECHO_C=''
ECHO_N='-n'
ECHO_T=''
EGREP='/bin/grep -E'
ENABLE_DEVEL_DOCS_FALSE='#'
ENABLE_DEVEL_DOCS_TRUE=''
ENABLE_DOCS_FALSE='#'
ENABLE_DOCS_TRUE=''
EXEEXT=''
FBDEVHW_FALSE='#'
FBDEVHW_TRUE=''
FGREP='/bin/grep -F'
FILE_MAN_DIR='$(mandir)/man$(FILE_MAN_SUFFIX)'
FILE_MAN_SUFFIX='5'
FONT100DPIDIR='${FONTROOTDIR}/100dpi'
FONT75DPIDIR='${FONTROOTDIR}/75dpi'
FONTMISCDIR='${FONTROOTDIR}/misc'
FONTOTFDIR='${FONTROOTDIR}/OTF'
FONTROOTDIR='/usr/share/fonts/X11'
FONTTTFDIR='${FONTROOTDIR}/TTF'
FONTTYPE1DIR='${FONTROOTDIR}/Type1'
FOP=''
FREEBSD_KLDLOAD_FALSE=''
FREEBSD_KLDLOAD_TRUE='#'
GLIB_CFLAGS='-I/home/kyu3/sdb/test/tmp/sysroots/qemux86/usr/include/glib-2.0 -I/home/kyu3/sdb/test/tmp/sysroots/qemux86/usr/lib/glib-2.0/include  '
GLIB_LIBS='-lglib-2.0  '
GLX_ARCH_DEFINES=''
GLX_DEFINES='-DGLX_USE_TLS -DPTHREADS'
GLX_FALSE=''
GLX_TLS='yes'
GLX_TRUE='#'
GL_CFLAGS=''
GL_LIBS=''
GREP='/bin/grep'
HAL_CFLAGS='-DDBUS_API_SUBJECT_TO_CHANGE -I/home/kyu3/sdb/test/tmp/sysroots/qemux86/usr/include/hal -I/home/kyu3/sdb/test/tmp/sysroots/qemux86/usr/include/dbus-1.0 -I/home/kyu3/sdb/test/tmp/sysroots/qemux86/usr/lib/dbus-1.0/include  '
HAL_LIBS='-lhal -ldbus-1 -lpthread -lrt  '
HAVE_DBUS_FALSE='#'
HAVE_DBUS_TRUE=''
HAVE_DOXYGEN_FALSE=''
HAVE_DOXYGEN_TRUE='#'
HAVE_FOP_FALSE=''
HAVE_FOP_TRUE='#'
HAVE_STYLESHEETS_FALSE=''
HAVE_STYLESHEETS_TRUE='#'
HAVE_XMLTO_FALSE='#'
HAVE_XMLTO_TEXT_FALSE='#'
HAVE_XMLTO_TEXT_TRUE=''
HAVE_XMLTO_TRUE=''
I386_VIDEO_FALSE='#'
I386_VIDEO_TRUE=''
INSTALL_CMD='(cp -f /usr/share/util-macros/INSTALL $(top_srcdir)/.INSTALL.tmp && mv $(top_srcdir)/.INSTALL.tmp $(top_srcdir)/INSTALL) || (rm -f $(top_srcdir)/.INSTALL.tmp; touch $(top_srcdir)/INSTALL; echo '\''util-macros "pkgdatadir" from xorg-macros.pc not found: installing possibly empty INSTALL.'\'' >&2)'
INSTALL_DATA='${INSTALL} -m 644'
INSTALL_LIBXF86CONFIG_FALSE=''
INSTALL_LIBXF86CONFIG_TRUE='#'
INSTALL_PROGRAM='${INSTALL}'
INSTALL_SCRIPT='${INSTALL}'
INSTALL_SETUID_FALSE=''
INSTALL_SETUID_TRUE='#'
INSTALL_STRIP_PROGRAM='$(install_sh) -c -s'
INT10MODULE_FALSE='#'
INT10MODULE_TRUE=''
INT10_STUB_FALSE=''
INT10_STUB_TRUE='#'
INT10_VM86_FALSE=''
INT10_VM86_TRUE='#'
INT10_X86EMU_FALSE='#'
INT10_X86EMU_TRUE=''
KDRIVEFBDEV_FALSE=''
KDRIVEFBDEV_TRUE='#'
KDRIVELINUX_FALSE=''
KDRIVELINUX_TRUE='#'
KDRIVE_CFLAGS=''
KDRIVE_EVDEV_FALSE=''
KDRIVE_EVDEV_TRUE='#'
KDRIVE_FALSE=''
KDRIVE_INCS=''
KDRIVE_KBD_FALSE=''
KDRIVE_KBD_TRUE='#'
KDRIVE_LIBS=''
KDRIVE_LOCAL_LIBS=''
KDRIVE_MOUSE_FALSE=''
KDRIVE_MOUSE_TRUE='#'
KDRIVE_PURE_INCS=''
KDRIVE_PURE_LIBS=''
KDRIVE_TRUE='#'
LAUNCHD_ID_PREFIX='org.x'
LD='i586-poky-linux-ld --sysroot=/home/kyu3/sdb/test/tmp/sysroots/qemux86'
LDFLAGS='-Wl,-O1  -Wl,--as-needed'
LD_EXPORT_SYMBOLS_FLAG='-export-dynamic'
LEX='flex'
LEXLIB='-lfl'
LEX_OUTPUT_ROOT='lex.yy'
LIBDRM_CFLAGS='-I/home/kyu3/sdb/test/tmp/sysroots/qemux86/usr/include/libdrm  '
LIBDRM_LIBS='-ldrm  '
LIBOBJS=''
LIBS='-lm '
LIBSHA1_CFLAGS=''
LIBSHA1_LIBS=''
LIBTOOL='$(SHELL) $(top_builddir)/i586-poky-linux-libtool'
LIB_MAN_DIR='$(mandir)/man$(LIB_MAN_SUFFIX)'
LIB_MAN_SUFFIX='3'
LINUX_ALPHA_FALSE=''
LINUX_ALPHA_TRUE='#'
LINUX_IA64_FALSE=''
LINUX_IA64_TRUE='#'
LIPO=''
LNXACPI_FALSE='#'
LNXACPI_TRUE=''
LNXAPM_FALSE='#'
LNXAPM_TRUE=''
LN_S='ln -s'
LTLIBOBJS=''
MAINT='#'
MAINTAINER_MODE_FALSE=''
MAINTAINER_MODE_TRUE='#'
MAIN_LIB='$(top_builddir)/dix/libmain.la'
MAKEINFO='${SHELL} /home/kyu3/sdb/test/tmp/work/i586-poky-linux/xserver-xf86-lite-1.10.1-r0/xorg-server-1.10.1/missing --run makeinfo'
MANIFEST_TOOL=':'
MAN_SUBSTS='	-e '\''s|__vendorversion__|"$(PACKAGE_STRING)" "$(XORG_MAN_PAGE)"|'\'' 	-e '\''s|__xorgversion__|"$(PACKAGE_STRING)" "$(XORG_MAN_PAGE)"|'\'' 	-e '\''s|__xservername__|Xorg|g'\'' 	-e '\''s|__xconfigfile__|xorg.conf|g'\'' 	-e '\''s|__projectroot__|$(prefix)|g'\'' 	-e '\''s|__apploaddir__|$(appdefaultdir)|g'\'' 	-e '\''s|__appmansuffix__|$(APP_MAN_SUFFIX)|g'\'' 	-e '\''s|__drivermansuffix__|$(DRIVER_MAN_SUFFIX)|g'\'' 	-e '\''s|__adminmansuffix__|$(ADMIN_MAN_SUFFIX)|g'\'' 	-e '\''s|__libmansuffix__|$(LIB_MAN_SUFFIX)|g'\'' 	-e '\''s|__miscmansuffix__|$(MISC_MAN_SUFFIX)|g'\'' 	-e '\''s|__filemansuffix__|$(FILE_MAN_SUFFIX)|g'\'''
MISC_MAN_DIR='$(mandir)/man$(MISC_MAN_SUFFIX)'
MISC_MAN_SUFFIX='7'
MITSHM_FALSE='#'
MITSHM_TRUE=''
MKDIR_P='/bin/mkdir -p'
NEED_STRLCAT_FALSE='#'
NEED_STRLCAT_TRUE=''
NEED_VSNPRINTF_FALSE=''
NEED_VSNPRINTF_TRUE='#'
NM='i586-poky-linux-nm'
NMEDIT=''
OBJC='$(CC)'
OBJCCLD=''
OBJCDEPMODE='depmode=none'
OBJCFLAGS='$(CFLAGS)'
OBJCLINK='$(LINK)'
OBJDUMP='i586-poky-linux-objdump'
OBJEXT='o'
OPENSSL_CFLAGS=' '
OPENSSL_LIBS='-lssl -lcrypto  '
OS_LIB='$(top_builddir)/os/libos.la'
OTOOL64=''
OTOOL=''
PACKAGE='xorg-server'
PACKAGE_BUGREPORT='https://bugs.freedesktop.org/enter_bug.cgi?product=xorg'
PACKAGE_NAME='xorg-server'
PACKAGE_STRING='xorg-server 1.10.1'
PACKAGE_TARNAME='xorg-server'
PACKAGE_URL=''
PACKAGE_VERSION='1.10.1'
PATH_SEPARATOR=':'
PCIACCESS_CFLAGS=' '
PCIACCESS_LIBS='-lpciaccess  '
PCI_TXT_IDS_PATH=''
PERL='/home/kyu3/sdb/test/tmp/sysroots/x86_64-linux/usr/bin/perl'
PIXMAN_CFLAGS='-I/home/kyu3/sdb/test/tmp/sysroots/qemux86/usr/include/pixman-1  '
PIXMAN_LIBS='-lpixman-1  '
PKG_CONFIG='/home/kyu3/sdb/test/tmp/sysroots/x86_64-linux/usr/bin/pkg-config'
PKG_CONFIG_LIBDIR='/home/kyu3/sdb/test/tmp/sysroots/qemux86//usr/lib/pkgconfig'
PKG_CONFIG_PATH='/home/kyu3/sdb/test/tmp/sysroots/qemux86//usr/lib/pkgconfig:/home/kyu3/sdb/test/tmp/sysroots/qemux86/usr/share/pkgconfig'
PPC_VIDEO_FALSE=''
PPC_VIDEO_TRUE='#'
PROJECTROOT='/usr'
RANLIB='i586-poky-linux-ranlib'
RAWCPP='/usr/bin/cpp'
RAWCPPFLAGS='-undef -traditional'
RECORD_FALSE=''
RECORD_TRUE='#'
RELEASE_DATE='2011-04-15'
RES_FALSE='#'
RES_TRUE=''
SCREENSAVER_FALSE='#'
SCREENSAVER_TRUE=''
SDK_REQUIRED_MODULES='xproto >= 7.0.17 randrproto >= 1.2.99.3 renderproto >= 0.11 xextproto >= 7.1.99 inputproto >= 1.9.99.902 kbproto >= 1.0.3 fontsproto videoproto dri2proto >= 2.3'
SECURE_RPC_FALSE='#'
SECURE_RPC_TRUE=''
SED='/bin/sed'
SELINUX_CFLAGS=''
SELINUX_LIBS=''
SERVER_MISC_CONFIG_PATH='/usr/lib/xorg'
SET_MAKE=''
SHA1_CFLAGS=''
SHA1_LIBS='-lgcrypt'
SHELL='/bin/sh'
SOLARIS_ASM_CFLAGS=''
SOLARIS_ASM_INLINE_FALSE=''
SOLARIS_ASM_INLINE_TRUE='#'
SOLARIS_INOUT_ARCH=''
SOLARIS_VT_FALSE=''
SOLARIS_VT_TRUE='#'
SPARC64_VIDEO_FALSE=''
SPARC64_VIDEO_TRUE='#'
SPECIAL_DTRACE_OBJECTS_FALSE=''
SPECIAL_DTRACE_OBJECTS_TRUE='#'
STANDALONE_XPBPROXY_FALSE=''
STANDALONE_XPBPROXY_TRUE='#'
STRIP='i586-poky-linux-strip'
STYLESHEET_SRCDIR=''
SYSCONFDIR=''
TSLIB_CFLAGS=''
TSLIB_FALSE=''
TSLIB_LIBS=''
TSLIB_TRUE='#'
UDEV_CFLAGS=' '
UDEV_LIBS='-ludev  '
UNITTESTS_FALSE=''
UNITTESTS_TRUE='#'
UTILS_SYS_LIBS=''
VBE_FALSE='#'
VBE_TRUE=''
VENDOR_NAME_SHORT='X.Org'
VERSION='1.10.1'
VGAHW_FALSE='#'
VGAHW_TRUE=''
WINDOWSWM_CFLAGS=''
WINDOWSWM_LIBS=''
WINDRES=''
X11EXAMPLES_DEP_CFLAGS=''
X11EXAMPLES_DEP_LIBS=''
XAA_FALSE='#'
XAA_TRUE=''
XACE_FALSE='#'
XACE_TRUE=''
XCALIBRATE_FALSE=''
XCALIBRATE_TRUE='#'
XCSECURITY_FALSE=''
XCSECURITY_TRUE='#'
XDMAUTH_FALSE='#'
XDMAUTH_TRUE=''
XDMCP_CFLAGS=' '
XDMCP_FALSE='#'
XDMCP_LIBS='-lXdmcp  '
XDMCP_TRUE=''
XDMXCONFIG_DEP_CFLAGS=''
XDMXCONFIG_DEP_LIBS=''
XDMX_CFLAGS=''
XDMX_LIBS=''
XDMX_SYS_LIBS=''
XEPHYR_CFLAGS=''
XEPHYR_FALSE=''
XEPHYR_INCS=''
XEPHYR_LIBS=''
XEPHYR_TRUE='#'
XF86BIGFONT_FALSE=''
XF86BIGFONT_TRUE='#'
XF86CONFIGDIR='xorg.conf.d'
XF86CONFIGFILE='xorg.conf'
XF86UTILS_FALSE='#'
XF86UTILS_TRUE=''
XF86VIDMODE_CFLAGS=' '
XF86VIDMODE_FALSE='#'
XF86VIDMODE_LIBS=' '
XF86VIDMODE_TRUE=''
XFAKESERVER_FALSE=''
XFAKESERVER_TRUE='#'
XINERAMA_FALSE=''
XINERAMA_TRUE='#'
XKB_BASE_DIRECTORY='/usr/share/X11/xkb'
XKB_BIN_DIRECTORY='/usr/bin'
XKB_COMPILED_DIR='/var/lib/xkb'
XKM_OUTPUT_DIR='/var/lib/xkb/'
XLIB_CFLAGS=''
XLIB_LIBS=''
XMLTO='/usr/bin/xmlto'
XNESTMODULES_CFLAGS=' '
XNESTMODULES_LIBS='-lXext -lX11 -lXau -lXdmcp  '
XNEST_FALSE=''
XNEST_LIBS=''
XNEST_SYS_LIBS=''
XNEST_TRUE='#'
XORG_BUS_BSDPCI_FALSE=''
XORG_BUS_BSDPCI_TRUE='#'
XORG_BUS_LINUXPCI_FALSE='#'
XORG_BUS_LINUXPCI_TRUE=''
XORG_BUS_SPARC_FALSE=''
XORG_BUS_SPARC_TRUE='#'
XORG_CFLAGS=' -DHAVE_XORG_CONFIG_H -fvisibility=hidden   -DXF86PM  '
XORG_FALSE='#'
XORG_INCS='-I$(top_srcdir)/hw/xfree86 -I$(top_srcdir)/hw/xfree86/include -I$(top_srcdir)/hw/xfree86/common -I$(top_srcdir)/hw/xfree86/os-support -I$(top_srcdir)/hw/xfree86/os-support/bus -I$(top_srcdir)/os'
XORG_LIBS='$(top_builddir)/composite/libcomposite.la $(top_builddir)/xfixes/libxfixes.la $(top_builddir)/Xext/libXextbuiltin.la  $(top_builddir)/randr/librandr.la $(top_builddir)/render/librender.la $(top_builddir)/damageext/libdamageext.la $(top_builddir)/miext/sync/libsync.la $(top_builddir)/miext/damage/libdamage.la $(top_builddir)/miext/shadow/libshadow.la $(top_builddir)/Xi/libXi.la $(top_builddir)/xkb/libxkb.la'
XORG_MAN_PAGE='X Version 11'
XORG_MODULES_CFLAGS=' '
XORG_MODULES_LIBS=' '
XORG_OS='linux'
XORG_OS_SUBDIR='linux'
XORG_SGML_PATH=''
XORG_SYS_LIBS=' -lpciaccess    -lpthread  '
XORG_TRUE=''
XPBPROXY_CFLAGS=''
XPBPROXY_LIBS=''
XQUARTZ_FALSE=''
XQUARTZ_SPARKLE='no'
XQUARTZ_SPARKLE_FALSE=''
XQUARTZ_SPARKLE_TRUE='#'
XQUARTZ_TRUE='#'
XREGISTRY_FALSE='#'
XREGISTRY_TRUE=''
XRESEXAMPLES_DEP_CFLAGS=''
XRESEXAMPLES_DEP_LIBS=''
XSELINUX_FALSE=''
XSELINUX_TRUE='#'
XSERVERCFLAGS_CFLAGS='-D_BSD_SOURCE -DHAS_FCHOWN -DHAS_STICKY_DIR_BIT -I/home/kyu3/sdb/test/tmp/sysroots/qemux86/usr/include/pixman-1 -I/home/kyu3/sdb/test/tmp/sysroots/qemux86/usr/include/freetype2  '
XSERVERCFLAGS_LIBS='-lxkbfile -lpixman-1 -lXfont -lXau -lXdmcp  '
XSERVERLIBS_CFLAGS='-I/home/kyu3/sdb/test/tmp/sysroots/qemux86/usr/include/pixman-1 -I/home/kyu3/sdb/test/tmp/sysroots/qemux86/usr/include/freetype2  '
XSERVERLIBS_LIBS='-lpixman-1 -lXfont -lXau -lXdmcp  '
XSERVER_DTRACE_FALSE=''
XSERVER_DTRACE_TRUE='#'
XSERVER_LIBS='$(top_builddir)/dix/libdix.la $(top_builddir)/mi/libmi.la $(top_builddir)/os/libos.la'
XSERVER_SYS_LIBS='-lpixman-1 -lXfont -lXau -lXdmcp    -lm '
XSL_STYLESHEET=''
XTSTEXAMPLES_DEP_CFLAGS=''
XTSTEXAMPLES_DEP_LIBS=''
XVFB_FALSE=''
XVFB_LIBS=''
XVFB_SYS_LIBS=''
XVFB_TRUE='#'
XVMC_FALSE='#'
XVMC_TRUE=''
XV_FALSE='#'
XV_TRUE=''
XWINMODULES_CFLAGS=''
XWINMODULES_LIBS=''
XWIN_CLIPBOARD_FALSE=''
XWIN_CLIPBOARD_TRUE='#'
XWIN_FALSE=''
XWIN_GLX_WINDOWS_FALSE=''
XWIN_GLX_WINDOWS_TRUE='#'
XWIN_LIBS=''
XWIN_MULTIWINDOWEXTWM_FALSE=''
XWIN_MULTIWINDOWEXTWM_TRUE='#'
XWIN_MULTIWINDOW_FALSE=''
XWIN_MULTIWINDOW_TRUE='#'
XWIN_NATIVEGDI_FALSE=''
XWIN_NATIVEGDI_TRUE='#'
XWIN_PRIMARYFB_FALSE=''
XWIN_PRIMARYFB_TRUE='#'
XWIN_RANDR_FALSE=''
XWIN_RANDR_TRUE='#'
XWIN_SERVER_NAME=''
XWIN_SYS_LIBS=''
XWIN_TRUE='#'
XWIN_XV_FALSE=''
XWIN_XV_TRUE='#'
YACC='bison -y'
YFLAGS=''
__XCONFIGDIR__='xorg.conf.d'
__XCONFIGFILE__='xorg.conf'
abi_ansic='0.4'
abi_extension='5.0'
abi_videodrv='10.0'
abi_xinput='12.2'
ac_ct_AR=''
ac_ct_CC=''
ac_ct_DUMPBIN=''
am__EXEEXT_FALSE=''
am__EXEEXT_TRUE='#'
am__fastdepCCAS_FALSE='#'
am__fastdepCCAS_TRUE=''
am__fastdepCC_FALSE='#'
am__fastdepCC_TRUE=''
am__fastdepOBJC_FALSE=''
am__fastdepOBJC_TRUE='#'
am__include='include'
am__isrc=''
am__leading_dot='.'
am__quote=''
am__tar='${AMTAR} chof - "$$tardir"'
am__untar='${AMTAR} xf -'
bindir='/usr/bin'
build='x86_64-pc-linux-gnu'
build_alias='x86_64-linux'
build_cpu='x86_64'
build_os='linux-gnu'
build_vendor='pc'
datadir='/usr/share'
datarootdir='${prefix}/share'
docdir='${datarootdir}/doc/${PACKAGE_TARNAME}'
driverdir='/usr/lib/xorg/modules/drivers'
dvidir='${docdir}'
exec_prefix='/usr'
extdir='/usr/include/X11/extensions'
host='i586-poky-linux-gnu'
host_alias='i586-poky-linux'
host_cpu='i586'
host_os='linux-gnu'
host_vendor='poky'
htmldir='${docdir}'
includedir='/usr/include'
infodir='/usr/share/info'
install_sh='${SHELL} /home/kyu3/sdb/test/tmp/work/i586-poky-linux/xserver-xf86-lite-1.10.1-r0/xorg-server-1.10.1/install-sh'
libdir='/usr/lib'
libexecdir='/usr/libexec'
localedir='${datarootdir}/locale'
localstatedir='/var'
logdir='/var/log'
mandir='/usr/share/man'
mkdir_p='/bin/mkdir -p'
moduledir='/usr/lib/xorg/modules'
oldincludedir='/usr/include'
pdfdir='${docdir}'
prefix='/usr'
program_transform_name='s,x,x,'
psdir='${docdir}'
sbindir='/usr/sbin'
sdkdir='/usr/include/xorg'
sharedstatedir='/com'
symbol_visibility='-fvisibility=hidden'
sysconfdir='/etc/X11'
sysconfigdir='/usr/share/X11/xorg.conf.d'
target_alias='i586-poky-linux'

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

/* confdefs.h */
#define PACKAGE_NAME "xorg-server"
#define PACKAGE_TARNAME "xorg-server"
#define PACKAGE_VERSION "1.10.1"
#define PACKAGE_STRING "xorg-server 1.10.1"
#define PACKAGE_BUGREPORT "https://bugs.freedesktop.org/enter_bug.cgi?product=xorg"
#define PACKAGE_URL ""
#define PACKAGE "xorg-server"
#define VERSION "1.10.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 PACKAGE_VERSION_MAJOR 1
#define PACKAGE_VERSION_MINOR 10
#define PACKAGE_VERSION_PATCHLEVEL 1
#define HAVE_DLFCN_H 1
#define LT_OBJDIR ".libs/"
#define YYTEXT_POINTER 1
#define _FILE_OFFSET_BITS 64
#define HAVE_DIRENT_H 1
#define STDC_HEADERS 1
#define HAVE_FCNTL_H 1
#define HAVE_STDLIB_H 1
#define HAVE_STRING_H 1
#define HAVE_UNISTD_H 1
#define HAVE_DLFCN_H 1
#define HAVE_STROPTS_H 1
#define HAVE_FNMATCH_H 1
#define HAVE_SYS_UTSNAME_H 1
#define SIZEOF_UNSIGNED_LONG 4
#define HAVE_BYTESWAP_H 1
#define HAVE_VPRINTF 1
#define HAVE_GETEUID 1
#define HAVE_GETUID 1
#define HAVE_LINK 1
#define HAVE_MEMMOVE 1
#define HAVE_MEMSET 1
#define HAVE_MKSTEMP 1
#define HAVE_STRCHR 1
#define HAVE_STRRCHR 1
#define HAVE_STRTOL 1
#define HAVE_GETOPT 1
#define HAVE_GETOPT_LONG 1
#define HAVE_VSNPRINTF 1
#define HAVE_BACKTRACE 1
#define HAVE_STRCASESTR 1
#define HAVE_FFS 1
#define HAVE_VASPRINTF 1
#define HAVE_ALLOCA_H 1
#define HAVE_ALLOCA 1
#define HAS_GETDTABLESIZE 1
#define HAS_GETIFADDRS 1
#define HAS_MMAP 1
#define HAVE_LIBM 1
#define HAVE_CBRT 1
#define HAVE_LINUX_AGPGART_H 1
#define HAVE_LINUX_APM_BIOS_H 1
#define HAVE_LINUX_FB_H 1
#define HAVE_ASM_MTRR_H 1
#define HAS_MTRR_SUPPORT 1
#define HAVE_SYSV_IPC 1
#define HAVE_BACKTRACE 1
#define HAVE_EXECINFO_H 1
#define LAUNCHD_ID_PREFIX "org.x"
#define TLS __thread
#define RETSIGTYPE void
#define UNIXCONN 1
#define TCPCONN 1
#define IPv6 1
#define HAVE_SOCKLEN_T 1
#define HAVE_AUTHDES_CREATE 1
#define SECURE_RPC 1
#define CONFIG_UDEV 1
#define HAVE_DBUS 1
#define USE_SIGIO_BY_DEFAULT TRUE
#define XV 1
#define XvExtension 1
#define XvMCExtension 1
#define XREGISTRY 1
#define COMPOSITE 1
#define MITSHM 1
#define HAS_SHM 1
#define SCREENSAVER 1
#define RES 1
#define DRI2 1
#define WITH_LIBDRM 1
#define DRI2_AIGLX 1
#define XACE 1
#define DBE 1
#define DPMSExtension 1
#define RENDER 1
#define RANDR 1
#define XFIXES 1
#define DAMAGE 1
#define XINPUT 1
#define SHAPE 1
#define XKB_BASE_DIRECTORY "/usr/share/X11/xkb"
#define XKB_BIN_DIRECTORY "/usr/bin"
#define XKM_OUTPUT_DIR "/var/lib/xkb/"
#define XKB_DFLT_RULES "base"
#define XKB_DFLT_MODEL "pc105"
#define XKB_DFLT_LAYOUT "us"
#define XKB_DFLT_VARIANT ""
#define XKB_DFLT_OPTIONS ""
#define XDMCP 1
#define HASXDMAUTH 1
#define COMPILEDDEFAULTFONTPATH "/usr/share/fonts/X11/misc/,/usr/share/fonts/X11/TTF/,/usr/share/fonts/X11/OTF/,/usr/share/fonts/X11/Type1/,/usr/share/fonts/X11/100dpi/,/usr/share/fonts/X11/75dpi/"
#define PCI_TXT_IDS_PATH ""
#define SERVER_MISC_CONFIG_PATH "/usr/lib/xorg"
#define BASE_FONT_PATH "/usr/share/fonts/X11"
#define DRI_DRIVER_PATH "/usr/lib/dri"
#define XVENDORNAME "The X.Org Foundation"
#define XVENDORNAMESHORT "X.Org"
#define XORG_DATE "2011-04-15"
#define XORG_MAN_VERSION "Version 1.10.1"
#define BUILDERADDR "xorg@lists.freedesktop.org"
#define OSNAME "Linux 2.6.35-25-server x86_64"
#define OSVENDOR ""
#define BUILDERSTRING ""
#define VENDOR_NAME "The X.Org Foundation"
#define VENDOR_NAME_SHORT "X.Org"
#define VENDOR_RELEASE (((1) * 10000000) + ((10) * 100000) + ((1) * 1000) + 0)
#define VENDOR_MAN_VERSION "Version 1.10.1"
#define NO_LIBCWRAPPER 1
#define XTEST 1
#define XSYNC 1
#define XCMISC 1
#define BIGREQS 1
#define HAVE_SHA1_IN_LIBGCRYPT 1
#define HAVE_PCI_SYSTEM_INIT_DEV_MEM 1
#define HAVE_PCI_DEVICE_ENABLE 1
#define HAVE_PCI_DEVICE_IS_BOOT_VGA 1
#define HAVE_PCI_DEVICE_VGAARB_INIT 1
#define SUPPORT_PC98 1
#define XF86VIDMODE 1
#define XORG_SERVER 1
#define XORGSERVER 1
#define XFree86Server 1
#define XFree86LOADER 1
#define XORG_VERSION_CURRENT (((1) * 10000000) + ((10) * 100000) + ((1) * 1000) + 0)
#define NEED_XF86_TYPES 1
#define NEED_XF86_PROTOTYPES 1
#define __XSERVERNAME__ "Xorg"
#define __XCONFIGFILE__ "xorg.conf"
#define XF86CONFIGFILE "xorg.conf"
#define __XCONFIGDIR__ "xorg.conf.d"
#define DEFAULT_MODULE_PATH "/usr/lib/xorg/modules"
#define DEFAULT_LIBRARY_PATH "/usr/lib"
#define DEFAULT_LOGPREFIX "/var/log/Xorg."
#define __VENDORDWEBSUPPORT__ "http://wiki.x.org"
#define XSERVER_LIBPCIACCESS 1
#define WITH_VGAHW 1
#define _GNU_SOURCE 1
#define PROJECTROOT "/usr"

configure: exit 0

^ permalink raw reply	[flat|nested] 9+ messages in thread

* Re: [PATCH 1/1] xserver: force to use libdl
  2011-05-28  4:45       ` Yu Ke
@ 2011-05-28  8:07         ` Richard Purdie
  2011-05-30  6:10           ` Yu Ke
  0 siblings, 1 reply; 9+ messages in thread
From: Richard Purdie @ 2011-05-28  8:07 UTC (permalink / raw)
  To: Yu Ke; +Cc: Koen Kooi, Patches and discussions about the oe-core layer

On Sat, 2011-05-28 at 12:45 +0800, Yu Ke wrote:
> The marco in question is in xorg-server-1.10.1/configure.ac
> "
> AC_CHECK_FUNC([dlopen], [],
>      AC_CHECK_LIB([dl], [dlopen], DLOPEN_LIBS="-ldl"))
> AC_SUBST(DLOPEN_LIBS)
> "
> 
> Ideally, the dlopen test should fail since dlopen is not available in 
> libc, and then DLOPEN_LIBS="-ldl" is executed. In this case, the later 
> build will correctly link libdl. qemux86 fall into this case.
> 
> But in ppc case, the dlopen test unfortunately pass, and DLOPEN_LIBS 
> become "", which caused later linker error of unresolved dlopen 
> reference. but I did not yet understand why ppc is so special.
> 
> For detail, I've attached two config.log, one for ppc, one for qemux86.
> in ppc,
> configure:15235: checking for dlopen
> configure:15235: result: yes

Thanks. If you look at config.log you'll see this near the top:

| #modphp 
| ac_cv_c_bigendian_php=${ac_cv_c_bigendian_php=yes}
| ac_cv_sizeof_ptrdiff_t=${ac_cv_sizeof_ptrdiff_t=4}
| ac_cv_func_dlopen=${ac_cv_func_dlopen=yes}
| lt_cv_dlopen_self=${lt_cv_dlopen_self=yes}

and then if you look at the configure script for the xserver you'll see
${ac_cv_func_dlopen} being set to yes is likely triggering the bad
result.

These are coming from the powerpc site files:

richard@rex:poky/meta/site$ grep dlopen * -r
powerpc-common:ac_cv_func_dlopen=${ac_cv_func_dlopen=yes}
powerpc-common:lt_cv_dlopen_self=${lt_cv_dlopen_self=yes}

and I suspect if you remove those two lines, things will work a lot
better!

Only powerpc has the broken site file which is why only powerpc is
affected.

Cheers,

Richard




^ permalink raw reply	[flat|nested] 9+ messages in thread

* Re: [PATCH 1/1] xserver: force to use libdl
  2011-05-28  8:07         ` Richard Purdie
@ 2011-05-30  6:10           ` Yu Ke
  0 siblings, 0 replies; 9+ messages in thread
From: Yu Ke @ 2011-05-30  6:10 UTC (permalink / raw)
  To: Patches and discussions about the oe-core layer; +Cc: Koen Kooi

on 2011-5-28 16:07, Richard Purdie wrote:
> On Sat, 2011-05-28 at 12:45 +0800, Yu Ke wrote:
>> The marco in question is in xorg-server-1.10.1/configure.ac
>> "
>> AC_CHECK_FUNC([dlopen], [],
>>       AC_CHECK_LIB([dl], [dlopen], DLOPEN_LIBS="-ldl"))
>> AC_SUBST(DLOPEN_LIBS)
>> "
>>
>> Ideally, the dlopen test should fail since dlopen is not available in
>> libc, and then DLOPEN_LIBS="-ldl" is executed. In this case, the later
>> build will correctly link libdl. qemux86 fall into this case.
>>
>> But in ppc case, the dlopen test unfortunately pass, and DLOPEN_LIBS
>> become "", which caused later linker error of unresolved dlopen
>> reference. but I did not yet understand why ppc is so special.
>>
>> For detail, I've attached two config.log, one for ppc, one for qemux86.
>> in ppc,
>> configure:15235: checking for dlopen
>> configure:15235: result: yes
>
> Thanks. If you look at config.log you'll see this near the top:
>
> | #modphp
> | ac_cv_c_bigendian_php=${ac_cv_c_bigendian_php=yes}
> | ac_cv_sizeof_ptrdiff_t=${ac_cv_sizeof_ptrdiff_t=4}
> | ac_cv_func_dlopen=${ac_cv_func_dlopen=yes}
> | lt_cv_dlopen_self=${lt_cv_dlopen_self=yes}
>
> and then if you look at the configure script for the xserver you'll see
> ${ac_cv_func_dlopen} being set to yes is likely triggering the bad
> result.
>
> These are coming from the powerpc site files:
>
> richard@rex:poky/meta/site$ grep dlopen * -r
> powerpc-common:ac_cv_func_dlopen=${ac_cv_func_dlopen=yes}
> powerpc-common:lt_cv_dlopen_self=${lt_cv_dlopen_self=yes}
>
> and I suspect if you remove those two lines, things will work a lot
> better!
>
> Only powerpc has the broken site file which is why only powerpc is
> affected.
>

Thanks Richard. This make sense and explain why only powerpc has this 
issue. I've remove these two line, and build the core-image-sato-sdk 
qemuppc, it passed. I will send out the patch.

Regards
Ke



^ permalink raw reply	[flat|nested] 9+ messages in thread

* Re: [PATCH 1/1] xserver: force to use libdl
  2011-05-27 22:35       ` Koen Kooi
@ 2011-05-30  7:35         ` Richard Purdie
  0 siblings, 0 replies; 9+ messages in thread
From: Richard Purdie @ 2011-05-30  7:35 UTC (permalink / raw)
  To: Patches and discussions about the oe-core layer

On Sat, 2011-05-28 at 00:35 +0200, Koen Kooi wrote:
> Op 28 mei 2011, om 00:23 heeft Richard Purdie het volgende geschreven:
> 
> > On Fri, 2011-05-27 at 22:24 +0100, Phil Blundell wrote:
> >> On Fri, 2011-05-27 at 14:09 -0700, Saul Wold wrote:
> >>> From: Yu Ke <ke.yu@intel.com>
> >>> 
> >>> [YOCTO #737]
> >>> 
> >>> The AC_CHECK_FUNC([dlopen], [], AC_CHECK_LIB([dl], [dlopen], DLOPEN_LIBS="-ldl"))
> >>> macro seems not work well in ppc arch, so this patch force the DLOPEN_LIBS="-ldl"
> >>> 
> >> 
> >> That's a bit of a weird report.  Do we know why it doesn't work?  I
> >> guess we don't care all that much about Solaris targets, but equally I
> >> can't think of any reason why ppc should be special.
> > 
> > Seconded. I'd like to see the config.log of that failing on ppc...
> 
> That reminds me of http://cgit.openembedded.org/cgit.cgi/openembedded/commit/?id=87d9fca0fc4112b5ca07d92af10a2e9ef1bf8d0b which I still can't really explain....

It would be interesting to see if the fix I've just merged addresses
that too...

Cheers,

Richard




^ permalink raw reply	[flat|nested] 9+ messages in thread

end of thread, other threads:[~2011-05-30  7:38 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2011-05-27 21:09 [PATCH 0/1] Fix for build failure of xserver on mpc build Saul Wold
2011-05-27 21:09 ` [PATCH 1/1] xserver: force to use libdl Saul Wold
2011-05-27 21:24   ` Phil Blundell
2011-05-27 22:23     ` Richard Purdie
2011-05-27 22:35       ` Koen Kooi
2011-05-30  7:35         ` Richard Purdie
2011-05-28  4:45       ` Yu Ke
2011-05-28  8:07         ` Richard Purdie
2011-05-30  6:10           ` Yu Ke

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.