From 713dc7012af249b7102faabb27e0fe88ea39be57 Mon Sep 17 00:00:00 2001 From: Waldemar Brodkorb Date: Thu, 10 Nov 2011 19:03:11 +0100 Subject: fix make bulk on OpenADK buildserver --- package/ruby/Makefile | 16 ++++++++-------- package/ruby/patches/patch-Makefile_in | 11 ----------- package/ruby/patches/patch-configure | 11 ----------- 3 files changed, 8 insertions(+), 30 deletions(-) delete mode 100644 package/ruby/patches/patch-Makefile_in delete mode 100644 package/ruby/patches/patch-configure (limited to 'package/ruby') diff --git a/package/ruby/Makefile b/package/ruby/Makefile index 4afec030e..03494272b 100644 --- a/package/ruby/Makefile +++ b/package/ruby/Makefile @@ -4,14 +4,14 @@ include ${TOPDIR}/rules.mk PKG_NAME:= ruby -PKG_VERSION:= 1.9.2 -PKG_EXTRAVER:= 180 +PKG_VERSION:= 1.9.3 +PKG_EXTRAVER:= 0 PKG_RELEASE:= 1 -PKG_MD5SUM:= 0d6953820c9918820dd916e79f4bfde8 +PKG_MD5SUM:= 8e2fef56185cfbaf29d0c8329fc77c05 PKG_DESCR:= interpreter for the ruby language PKG_SECTION:= lang PKG_URL:= http://www.ruby-lang.org/ -PKG_SITES:= ftp://ftp.ruby-lang.org/pub/ruby/ +PKG_SITES:= http://ftp.ruby-lang.org/pub/ruby/1.9/ PKG_NOPARALLEL:= 1 PKG_HOST_DEPENDS:= !freebsd !cygwin @@ -25,9 +25,9 @@ $(eval $(call PKG_template,RUBY,${PKG_NAME},${PKG_VERSION}-${PKG_RELEASE},${PKG_ MAKE_FILE:= GNUmakefile XAKE_FLAGS+= optflags='' debugflags='' BASERUBY="${WRKBUILD}/hostruby" \ - dldflags="$(TARGET_LDFLAGS)" + dldflags="$(TARGET_LDFLAGS)" # uClibc setpgrp does not take arguments -CONFIGURE_ENV+= ac_cv_func_setpgrp_void=yes +CONFIGURE_ENV+= ac_cv_func_setpgrp_void=yes CONFIGURE_ARGS+= --disable-install-doc ALL_TARGET:= main INSTALL_TARGET:= install-nodoc @@ -36,9 +36,9 @@ pre-configure: cp ${WRKBUILD}/ext/Setup ${WRKBUILD}/ext/Setup.orig echo "option nodynamic" >> ${WRKBUILD}/ext/Setup (cd ${WRKBUILD}; rm -rf config.{cache,status} ; \ - ./configure --prefix=$(STAGING_HOST_DIR) --disable-install-doc \ + LDSHARED="${CC} -shared" DLDFLAGS="-fPIC" CFLAGS="-fPIC" ./configure --prefix=$(STAGING_HOST_DIR) --disable-install-doc \ ); - $(MAKE) -C ${WRKBUILD} main + $(MAKE) -C ${WRKBUILD} main Q="" cp ${WRKBUILD}/ruby ${WRKBUILD}/hostruby cp ${WRKBUILD}/ext/Setup.orig ${WRKBUILD}/ext/Setup $(MAKE) -C ${WRKBUILD} install-nodoc diff --git a/package/ruby/patches/patch-Makefile_in b/package/ruby/patches/patch-Makefile_in deleted file mode 100644 index e97548bc2..000000000 --- a/package/ruby/patches/patch-Makefile_in +++ /dev/null @@ -1,11 +0,0 @@ ---- ruby-1.9.2-p0.orig/Makefile.in 2010-07-11 08:15:13.000000000 +0200 -+++ ruby-1.9.2-p0/Makefile.in 2011-01-16 22:34:17.000000000 +0100 -@@ -157,7 +157,7 @@ $(LIBRUBY_A): - - $(LIBRUBY_SO): - @-$(PRE_LIBRUBY_UPDATE) -- $(LDSHARED) $(DLDFLAGS) $(OBJS) $(DLDOBJS) $(SOLIBS) $(OUTFLAG)$@ -+ $(LDSHARED) $(LDFLAGS) $(DLDFLAGS) $(OBJS) $(DLDOBJS) $(SOLIBS) $(OUTFLAG)$@ - -$(OBJCOPY) -w -L '@EXPORT_PREFIX@Init_*' -L '@EXPORT_PREFIX@*_threadptr_*' $@ - @-$(MINIRUBY) -e 'ARGV.each{|link| File.delete link if File.exist? link; \ - File.symlink "$(LIBRUBY_SO)", link}' \ diff --git a/package/ruby/patches/patch-configure b/package/ruby/patches/patch-configure deleted file mode 100644 index efd25b6ff..000000000 --- a/package/ruby/patches/patch-configure +++ /dev/null @@ -1,11 +0,0 @@ ---- ruby-1.9.2-p0.orig/configure 2010-08-18 07:56:27.000000000 +0200 -+++ ruby-1.9.2-p0/configure 2010-11-08 18:00:26.561241080 +0100 -@@ -15431,7 +15431,7 @@ esac - esac - fi - if test "$enable_rpath" = yes; then -- LIBRUBY_RPATHFLAGS="${linker_flag}-R ${linker_flag}\$(libdir) -L\$(libdir)" -+ LIBRUBY_RPATHFLAGS="${linker_flag}-R ${linker_flag}\$(libdir)" - LIBRUBYARG_SHARED="$LIBRUBY_RPATHFLAGS $LIBRUBYARG_SHARED" - LIBRUBYARG_STATIC="$LIBRUBY_RPATHFLAGS $LIBRUBYARG_STATIC" - fi -- cgit v1.2.3 From 7162d597bf52b0a10f94fe5b205848c5c8f19018 Mon Sep 17 00:00:00 2001 From: Waldemar Brodkorb Date: Mon, 14 Nov 2011 14:06:14 +0100 Subject: unbreak building --- package/ruby/Makefile | 14 +++++--------- 1 file changed, 5 insertions(+), 9 deletions(-) (limited to 'package/ruby') diff --git a/package/ruby/Makefile b/package/ruby/Makefile index 03494272b..ea2159d1c 100644 --- a/package/ruby/Makefile +++ b/package/ruby/Makefile @@ -24,23 +24,19 @@ include ${TOPDIR}/mk/package.mk $(eval $(call PKG_template,RUBY,${PKG_NAME},${PKG_VERSION}-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION})) MAKE_FILE:= GNUmakefile -XAKE_FLAGS+= optflags='' debugflags='' BASERUBY="${WRKBUILD}/hostruby" \ - dldflags="$(TARGET_LDFLAGS)" +XAKE_FLAGS+= optflags='' debugflags='' dldflags="$(TARGET_LDFLAGS)" # uClibc setpgrp does not take arguments -CONFIGURE_ENV+= ac_cv_func_setpgrp_void=yes -CONFIGURE_ARGS+= --disable-install-doc +CONFIGURE_ENV+= ac_cv_func_setpgrp_void=yes rb_cv_binary_elf=yes +CONFIGURE_ARGS+= --disable-install-doc --with-baseruby=${WRKBUILD}/hostruby ALL_TARGET:= main INSTALL_TARGET:= install-nodoc pre-configure: - cp ${WRKBUILD}/ext/Setup ${WRKBUILD}/ext/Setup.orig - echo "option nodynamic" >> ${WRKBUILD}/ext/Setup (cd ${WRKBUILD}; rm -rf config.{cache,status} ; \ - LDSHARED="${CC} -shared" DLDFLAGS="-fPIC" CFLAGS="-fPIC" ./configure --prefix=$(STAGING_HOST_DIR) --disable-install-doc \ + rb_cv_binary_elf=yes ./configure --prefix=$(STAGING_HOST_DIR) --disable-install-doc \ ); - $(MAKE) -C ${WRKBUILD} main Q="" + -$(MAKE) -C ${WRKBUILD} main Q="" cp ${WRKBUILD}/ruby ${WRKBUILD}/hostruby - cp ${WRKBUILD}/ext/Setup.orig ${WRKBUILD}/ext/Setup $(MAKE) -C ${WRKBUILD} install-nodoc $(MAKE) -C ${WRKBUILD} clean -- cgit v1.2.3 From f2be2541fb632d922286a32fe7082446c88aa01a Mon Sep 17 00:00:00 2001 From: Waldemar Brodkorb Date: Thu, 17 Nov 2011 11:53:08 +0100 Subject: add ruby-ldap --- package/ruby-ldap/Makefile | 40 ++ package/ruby-ldap/mkmf.log | 1192 ++++++++++++++++++++++++++++++++ package/ruby-ldap/patches/patch-conn_c | 24 + package/ruby-ldap/patches/patch-ldap_c | 13 + package/ruby/Makefile | 4 +- 5 files changed, 1271 insertions(+), 2 deletions(-) create mode 100644 package/ruby-ldap/Makefile create mode 100644 package/ruby-ldap/mkmf.log create mode 100644 package/ruby-ldap/patches/patch-conn_c create mode 100644 package/ruby-ldap/patches/patch-ldap_c (limited to 'package/ruby') diff --git a/package/ruby-ldap/Makefile b/package/ruby-ldap/Makefile new file mode 100644 index 000000000..8f26ca0ef --- /dev/null +++ b/package/ruby-ldap/Makefile @@ -0,0 +1,40 @@ +# This file is part of the OpenADK project. OpenADK is copyrighted +# material, please see the LICENCE file in the top-level directory. + +include $(TOPDIR)/rules.mk + +PKG_NAME:= ruby-ldap +PKG_VERSION:= 0.9.8 +PKG_RELEASE:= 1 +PKG_MD5SUM:= 83240451aa43de447d48035dc2d10dee +PKG_DESCR:= Ruby LDAP extension +PKG_SECTION:= lang +PKG_DEPENDS:= ruby libopenldap +PKG_BUILDDEP:= ruby openldap +PKG_URL:= http://ruby-ldap.sourceforge.net/ +PKG_SITES:= ${MASTER_SITE_SOURCEFORGE:=ruby-ldap/0.9.8/} + +DISTFILES:= ${PKG_NAME}-${PKG_VERSION}.tar.bz2 + +include $(TOPDIR)/mk/package.mk + +$(eval $(call PKG_template,RUBY_LDAP,ruby-ldap,$(PKG_VERSION)-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION})) + +CONFIG_STYLE:= manual +FAKE_FLAGS+= DESTDIR="/" + +do-configure: + (cd $(WRKBUILD) && $(STAGING_DIR)/bin/ruby -I$(STAGING_DIR)/usr/lib/ruby/1.9.1/$(CPU_ARCH)-linux/ extconf.rb \ + --with-openldap2 \ + --with-ldap-lib=$(STAGING_DIR)/usr/lib \ + --with-ldap-include=$(STAGING_DIR)/usr/include) + +ruby-ldap-install: + $(INSTALL_DIR) $(IDIR_RUBY_LDAP)/usr/lib/ruby/site_ruby/1.9.1/$(CPU_ARCH)-linux + $(INSTALL_DIR) $(IDIR_RUBY_LDAP)/usr/lib/ruby/site_ruby/1.9.1/ldap + $(CP) $(STAGING_DIR)/usr/lib/ruby/site_ruby/1.9.1/$(CPU_ARCH)-linux/ldap.so \ + $(IDIR_RUBY_LDAP)/usr/lib/ruby/site_ruby/1.9.1/$(CPU_ARCH)-linux + $(CP) $(STAGING_DIR)//usr/lib/ruby/site_ruby/1.9.1/ldap/*.rb \ + $(IDIR_RUBY_LDAP)/usr/lib/ruby/site_ruby/1.9.1/ldap + +include ${TOPDIR}/mk/pkg-bottom.mk diff --git a/package/ruby-ldap/mkmf.log b/package/ruby-ldap/mkmf.log new file mode 100644 index 000000000..127806d6e --- /dev/null +++ b/package/ruby-ldap/mkmf.log @@ -0,0 +1,1192 @@ +have_header: checking for ldap.h... -------------------- yes + +"gcc -o conftest -I/home/wbx/openadk/host_i586_eglibc/include/ruby-1.9.1/x86_64-linux -I/home/wbx/openadk/host_i586_eglibc/include/ruby-1.9.1/ruby/backward -I/home/wbx/openadk/host_i586_eglibc/include/ruby-1.9.1 -I/home/wbx/openadk/build_pcengines-alix1c_i586_eglibc/w-ruby-ldap-0.9.8-1/ruby-ldap-0.9.8 -I/home/wbx/openadk/target_i586_eglibc/usr/include -O3 -ggdb -Wextra -Wno-unused-parameter -Wno-parentheses -Wno-long-long -Wno-missing-field-initializers -Wpointer-arith -Wwrite-strings -Wdeclaration-after-statement -Wimplicit-function-declaration conftest.c -L. -L/home/wbx/openadk/host_i586_eglibc/lib -Wl,-R/home/wbx/openadk/host_i586_eglibc/lib -L. -rdynamic -Wl,-export-dynamic -Wl,-R -Wl,/home/wbx/openadk/host_i586_eglibc/lib -L/home/wbx/openadk/host_i586_eglibc/lib -lruby-static -lpthread -lrt -ldl -lcrypt -lm -lc" +In file included from /home/wbx/openadk/host_i586_eglibc/include/ruby-1.9.1/ruby/ruby.h:58:0, + from /home/wbx/openadk/host_i586_eglibc/include/ruby-1.9.1/ruby.h:32, + from conftest.c:1: +/home/wbx/openadk/target_i586_eglibc/usr/include/stdint.h:153:0: warning: "__INT64_C" redefined +:0:0: note: this is the location of the previous definition +/home/wbx/openadk/target_i586_eglibc/usr/include/stdint.h:154:0: warning: "__UINT64_C" redefined +:0:0: note: this is the location of the previous definition +checked program was: +/* begin */ +1: #include "ruby.h" +2: +3: int main() {return 0;} +/* end */ + +"gcc -E -I/home/wbx/openadk/host_i586_eglibc/include/ruby-1.9.1/x86_64-linux -I/home/wbx/openadk/host_i586_eglibc/include/ruby-1.9.1/ruby/backward -I/home/wbx/openadk/host_i586_eglibc/include/ruby-1.9.1 -I/home/wbx/openadk/build_pcengines-alix1c_i586_eglibc/w-ruby-ldap-0.9.8-1/ruby-ldap-0.9.8 -I/home/wbx/openadk/target_i586_eglibc/usr/include -O3 -ggdb -Wextra -Wno-unused-parameter -Wno-parentheses -Wno-long-long -Wno-missing-field-initializers -Wpointer-arith -Wwrite-strings -Wdeclaration-after-statement -Wimplicit-function-declaration conftest.c -o conftest.i" +In file included from /home/wbx/openadk/host_i586_eglibc/include/ruby-1.9.1/ruby/ruby.h:58:0, + from /home/wbx/openadk/host_i586_eglibc/include/ruby-1.9.1/ruby.h:32, + from conftest.c:1: +/home/wbx/openadk/target_i586_eglibc/usr/include/stdint.h:153:0: warning: "__INT64_C" redefined +:0:0: note: this is the location of the previous definition +/home/wbx/openadk/target_i586_eglibc/usr/include/stdint.h:154:0: warning: "__UINT64_C" redefined +:0:0: note: this is the location of the previous definition +checked program was: +/* begin */ +1: #include "ruby.h" +2: +3: #include +/* end */ + +-------------------- + +have_header: checking for lber.h... -------------------- yes + +"gcc -E -I/home/wbx/openadk/host_i586_eglibc/include/ruby-1.9.1/x86_64-linux -I/home/wbx/openadk/host_i586_eglibc/include/ruby-1.9.1/ruby/backward -I/home/wbx/openadk/host_i586_eglibc/include/ruby-1.9.1 -I/home/wbx/openadk/build_pcengines-alix1c_i586_eglibc/w-ruby-ldap-0.9.8-1/ruby-ldap-0.9.8 -I/home/wbx/openadk/target_i586_eglibc/usr/include -O3 -ggdb -Wextra -Wno-unused-parameter -Wno-parentheses -Wno-long-long -Wno-missing-field-initializers -Wpointer-arith -Wwrite-strings -Wdeclaration-after-statement -Wimplicit-function-declaration conftest.c -o conftest.i" +In file included from /home/wbx/openadk/host_i586_eglibc/include/ruby-1.9.1/ruby/ruby.h:58:0, + from /home/wbx/openadk/host_i586_eglibc/include/ruby-1.9.1/ruby.h:32, + from conftest.c:1: +/home/wbx/openadk/target_i586_eglibc/usr/include/stdint.h:153:0: warning: "__INT64_C" redefined +:0:0: note: this is the location of the previous definition +/home/wbx/openadk/target_i586_eglibc/usr/include/stdint.h:154:0: warning: "__UINT64_C" redefined +:0:0: note: this is the location of the previous definition +checked program was: +/* begin */ +1: #include "ruby.h" +2: +3: #include +/* end */ + +-------------------- + +have_header: checking for ldap_ssl.h... -------------------- no + +"gcc -E -I/home/wbx/openadk/host_i586_eglibc/include/ruby-1.9.1/x86_64-linux -I/home/wbx/openadk/host_i586_eglibc/include/ruby-1.9.1/ruby/backward -I/home/wbx/openadk/host_i586_eglibc/include/ruby-1.9.1 -I/home/wbx/openadk/build_pcengines-alix1c_i586_eglibc/w-ruby-ldap-0.9.8-1/ruby-ldap-0.9.8 -I/home/wbx/openadk/target_i586_eglibc/usr/include -O3 -ggdb -Wextra -Wno-unused-parameter -Wno-parentheses -Wno-long-long -Wno-missing-field-initializers -Wpointer-arith -Wwrite-strings -Wdeclaration-after-statement -Wimplicit-function-declaration conftest.c -o conftest.i" +In file included from /home/wbx/openadk/host_i586_eglibc/include/ruby-1.9.1/ruby/ruby.h:58:0, + from /home/wbx/openadk/host_i586_eglibc/include/ruby-1.9.1/ruby.h:32, + from conftest.c:1: +/home/wbx/openadk/target_i586_eglibc/usr/include/stdint.h:153:0: warning: "__INT64_C" redefined +:0:0: note: this is the location of the previous definition +/home/wbx/openadk/target_i586_eglibc/usr/include/stdint.h:154:0: warning: "__UINT64_C" redefined +:0:0: note: this is the location of the previous definition +conftest.c:3:22: fatal error: ldap_ssl.h: No such file or directory +compilation terminated. +checked program was: +/* begin */ +1: #include "ruby.h" +2: +3: #include +/* end */ + +-------------------- + +have_header: checking for openssl/ssl.h... -------------------- yes + +"gcc -E -I/home/wbx/openadk/host_i586_eglibc/include/ruby-1.9.1/x86_64-linux -I/home/wbx/openadk/host_i586_eglibc/include/ruby-1.9.1/ruby/backward -I/home/wbx/openadk/host_i586_eglibc/include/ruby-1.9.1 -I/home/wbx/openadk/build_pcengines-alix1c_i586_eglibc/w-ruby-ldap-0.9.8-1/ruby-ldap-0.9.8 -I/home/wbx/openadk/target_i586_eglibc/usr/include -O3 -ggdb -Wextra -Wno-unused-parameter -Wno-parentheses -Wno-long-long -Wno-missing-field-initializers -Wpointer-arith -Wwrite-strings -Wdeclaration-after-statement -Wimplicit-function-declaration conftest.c -o conftest.i" +In file included from /home/wbx/openadk/host_i586_eglibc/include/ruby-1.9.1/ruby/ruby.h:58:0, + from /home/wbx/openadk/host_i586_eglibc/include/ruby-1.9.1/ruby.h:32, + from conftest.c:1: +/home/wbx/openadk/target_i586_eglibc/usr/include/stdint.h:153:0: warning: "__INT64_C" redefined +:0:0: note: this is the location of the previous definition +/home/wbx/openadk/target_i586_eglibc/usr/include/stdint.h:154:0: warning: "__UINT64_C" redefined +:0:0: note: this is the location of the previous definition +checked program was: +/* begin */ +1: #include "ruby.h" +2: +3: #include +/* end */ + +-------------------- + +have_header: checking for openssl/crypto.h... -------------------- yes + +"gcc -E -I/home/wbx/openadk/host_i586_eglibc/include/ruby-1.9.1/x86_64-linux -I/home/wbx/openadk/host_i586_eglibc/include/ruby-1.9.1/ruby/backward -I/home/wbx/openadk/host_i586_eglibc/include/ruby-1.9.1 -I/home/wbx/openadk/build_pcengines-alix1c_i586_eglibc/w-ruby-ldap-0.9.8-1/ruby-ldap-0.9.8 -I/home/wbx/openadk/target_i586_eglibc/usr/include -O3 -ggdb -Wextra -Wno-unused-parameter -Wno-parentheses -Wno-long-long -Wno-missing-field-initializers -Wpointer-arith -Wwrite-strings -Wdeclaration-after-statement -Wimplicit-function-declaration conftest.c -o conftest.i" +In file included from /home/wbx/openadk/host_i586_eglibc/include/ruby-1.9.1/ruby/ruby.h:58:0, + from /home/wbx/openadk/host_i586_eglibc/include/ruby-1.9.1/ruby.h:32, + from conftest.c:1: +/home/wbx/openadk/target_i586_eglibc/usr/include/stdint.h:153:0: warning: "__INT64_C" redefined +:0:0: note: this is the location of the previous definition +/home/wbx/openadk/target_i586_eglibc/usr/include/stdint.h:154:0: warning: "__UINT64_C" redefined +:0:0: note: this is the location of the previous definition +checked program was: +/* begin */ +1: #include "ruby.h" +2: +3: #include +/* end */ + +-------------------- + +have_library: checking for main() in -lcrypto... -------------------- yes + +"gcc -o conftest -I/home/wbx/openadk/host_i586_eglibc/include/ruby-1.9.1/x86_64-linux -I/home/wbx/openadk/host_i586_eglibc/include/ruby-1.9.1/ruby/backward -I/home/wbx/openadk/host_i586_eglibc/include/ruby-1.9.1 -I/home/wbx/openadk/build_pcengines-alix1c_i586_eglibc/w-ruby-ldap-0.9.8-1/ruby-ldap-0.9.8 -I/home/wbx/openadk/target_i586_eglibc/usr/include -O3 -ggdb -Wextra -Wno-unused-parameter -Wno-parentheses -Wno-long-long -Wno-missing-field-initializers -Wpointer-arith -Wwrite-strings -Wdeclaration-after-statement -Wimplicit-function-declaration conftest.c -L. -L/home/wbx/openadk/host_i586_eglibc/lib -Wl,-R/home/wbx/openadk/host_i586_eglibc/lib -L. -rdynamic -Wl,-export-dynamic -Wl,-R -Wl,/home/wbx/openadk/host_i586_eglibc/lib -L/home/wbx/openadk/host_i586_eglibc/lib -lruby-static -lcrypto -lpthread -lrt -ldl -lcrypt -lm -lc" +In file included from /home/wbx/openadk/host_i586_eglibc/include/ruby-1.9.1/ruby/ruby.h:58:0, + from /home/wbx/openadk/host_i586_eglibc/include/ruby-1.9.1/ruby.h:32, + from conftest.c:1: +/home/wbx/openadk/target_i586_eglibc/usr/include/stdint.h:153:0: warning: "__INT64_C" redefined +:0:0: note: this is the location of the previous definition +/home/wbx/openadk/target_i586_eglibc/usr/include/stdint.h:154:0: warning: "__UINT64_C" redefined +:0:0: note: this is the location of the previous definition +checked program was: +/* begin */ +1: #include "ruby.h" +2: +3: /*top*/ +4: int main() {return 0;} +5: int t() { void ((*volatile p)()); p = (void ((*)()))main; return 0; } +/* end */ + +-------------------- + +have_library: checking for main() in -lssl... -------------------- yes + +"gcc -o conftest -I/home/wbx/openadk/host_i586_eglibc/include/ruby-1.9.1/x86_64-linux -I/home/wbx/openadk/host_i586_eglibc/include/ruby-1.9.1/ruby/backward -I/home/wbx/openadk/host_i586_eglibc/include/ruby-1.9.1 -I/home/wbx/openadk/build_pcengines-alix1c_i586_eglibc/w-ruby-ldap-0.9.8-1/ruby-ldap-0.9.8 -I/home/wbx/openadk/target_i586_eglibc/usr/include -O3 -ggdb -Wextra -Wno-unused-parameter -Wno-parentheses -Wno-long-long -Wno-missing-field-initializers -Wpointer-arith -Wwrite-strings -Wdeclaration-after-statement -Wimplicit-function-declaration conftest.c -L. -L/home/wbx/openadk/host_i586_eglibc/lib -Wl,-R/home/wbx/openadk/host_i586_eglibc/lib -L. -rdynamic -Wl,-export-dynamic -lcrypto -Wl,-R -Wl,/home/wbx/openadk/host_i586_eglibc/lib -L/home/wbx/openadk/host_i586_eglibc/lib -lruby-static -lssl -lcrypto -lpthread -lrt -ldl -lcrypt -lm -lc" +In file included from /home/wbx/openadk/host_i586_eglibc/include/ruby-1.9.1/ruby/ruby.h:58:0, + from /home/wbx/openadk/host_i586_eglibc/include/ruby-1.9.1/ruby.h:32, + from conftest.c:1: +/home/wbx/openadk/target_i586_eglibc/usr/include/stdint.h:153:0: warning: "__INT64_C" redefined +:0:0: note: this is the location of the previous definition +/home/wbx/openadk/target_i586_eglibc/usr/include/stdint.h:154:0: warning: "__UINT64_C" redefined +:0:0: note: this is the location of the previous definition +checked program was: +/* begin */ +1: #include "ruby.h" +2: +3: /*top*/ +4: int main() {return 0;} +5: int t() { void ((*volatile p)()); p = (void ((*)()))main; return 0; } +/* end */ + +-------------------- + +have_library: checking for main() in -lnsl... -------------------- no + +"gcc -o conftest -I/home/wbx/openadk/host_i586_eglibc/include/ruby-1.9.1/x86_64-linux -I/home/wbx/openadk/host_i586_eglibc/include/ruby-1.9.1/ruby/backward -I/home/wbx/openadk/host_i586_eglibc/include/ruby-1.9.1 -I/home/wbx/openadk/build_pcengines-alix1c_i586_eglibc/w-ruby-ldap-0.9.8-1/ruby-ldap-0.9.8 -I/home/wbx/openadk/target_i586_eglibc/usr/include -O3 -ggdb -Wextra -Wno-unused-parameter -Wno-parentheses -Wno-long-long -Wno-missing-field-initializers -Wpointer-arith -Wwrite-strings -Wdeclaration-after-statement -Wimplicit-function-declaration conftest.c -L. -L/home/wbx/openadk/host_i586_eglibc/lib -Wl,-R/home/wbx/openadk/host_i586_eglibc/lib -L. -rdynamic -Wl,-export-dynamic -lssl -lcrypto -Wl,-R -Wl,/home/wbx/openadk/host_i586_eglibc/lib -L/home/wbx/openadk/host_i586_eglibc/lib -lruby-static -lnsl -lssl -lcrypto -lpthread -lrt -ldl -lcrypt -lm -lc" +In file included from /home/wbx/openadk/host_i586_eglibc/include/ruby-1.9.1/ruby/ruby.h:58:0, + from /home/wbx/openadk/host_i586_eglibc/include/ruby-1.9.1/ruby.h:32, + from conftest.c:1: +/home/wbx/openadk/target_i586_eglibc/usr/include/stdint.h:153:0: warning: "__INT64_C" redefined +:0:0: note: this is the location of the previous definition +/home/wbx/openadk/target_i586_eglibc/usr/include/stdint.h:154:0: warning: "__UINT64_C" redefined +:0:0: note: this is the location of the previous definition +/usr/bin/ld: cannot find -lnsl +collect2: ld returned 1 exit status +checked program was: +/* begin */ +1: #include "ruby.h" +2: +3: /*top*/ +4: int main() {return 0;} +5: int t() { void ((*volatile p)()); p = (void ((*)()))main; return 0; } +/* end */ + +"gcc -o conftest -I/home/wbx/openadk/host_i586_eglibc/include/ruby-1.9.1/x86_64-linux -I/home/wbx/openadk/host_i586_eglibc/include/ruby-1.9.1/ruby/backward -I/home/wbx/openadk/host_i586_eglibc/include/ruby-1.9.1 -I/home/wbx/openadk/build_pcengines-alix1c_i586_eglibc/w-ruby-ldap-0.9.8-1/ruby-ldap-0.9.8 -I/home/wbx/openadk/target_i586_eglibc/usr/include -O3 -ggdb -Wextra -Wno-unused-parameter -Wno-parentheses -Wno-long-long -Wno-missing-field-initializers -Wpointer-arith -Wwrite-strings -Wdeclaration-after-statement -Wimplicit-function-declaration conftest.c -L. -L/home/wbx/openadk/host_i586_eglibc/lib -Wl,-R/home/wbx/openadk/host_i586_eglibc/lib -L. -rdynamic -Wl,-export-dynamic -lssl -lcrypto -Wl,-R -Wl,/home/wbx/openadk/host_i586_eglibc/lib -L/home/wbx/openadk/host_i586_eglibc/lib -lruby-static -lnsl -lssl -lcrypto -lpthread -lrt -ldl -lcrypt -lm -lc" +In file included from /home/wbx/openadk/host_i586_eglibc/include/ruby-1.9.1/ruby/ruby.h:58:0, + from /home/wbx/openadk/host_i586_eglibc/include/ruby-1.9.1/ruby.h:32, + from conftest.c:1: +/home/wbx/openadk/target_i586_eglibc/usr/include/stdint.h:153:0: warning: "__INT64_C" redefined +:0:0: note: this is the location of the previous definition +/home/wbx/openadk/target_i586_eglibc/usr/include/stdint.h:154:0: warning: "__UINT64_C" redefined +:0:0: note: this is the location of the previous definition +/usr/bin/ld: cannot find -lnsl +collect2: ld returned 1 exit status +checked program was: +/* begin */ +1: #include "ruby.h" +2: +3: /*top*/ +4: int main() {return 0;} +5: int t() { main(); return 0; } +/* end */ + +-------------------- + +have_library: checking for main() in -lpthread... -------------------- yes + +"gcc -o conftest -I/home/wbx/openadk/host_i586_eglibc/include/ruby-1.9.1/x86_64-linux -I/home/wbx/openadk/host_i586_eglibc/include/ruby-1.9.1/ruby/backward -I/home/wbx/openadk/host_i586_eglibc/include/ruby-1.9.1 -I/home/wbx/openadk/build_pcengines-alix1c_i586_eglibc/w-ruby-ldap-0.9.8-1/ruby-ldap-0.9.8 -I/home/wbx/openadk/target_i586_eglibc/usr/include -O3 -ggdb -Wextra -Wno-unused-parameter -Wno-parentheses -Wno-long-long -Wno-missing-field-initializers -Wpointer-arith -Wwrite-strings -Wdeclaration-after-statement -Wimplicit-function-declaration conftest.c -L. -L/home/wbx/openadk/host_i586_eglibc/lib -Wl,-R/home/wbx/openadk/host_i586_eglibc/lib -L. -rdynamic -Wl,-export-dynamic -lssl -lcrypto -Wl,-R -Wl,/home/wbx/openadk/host_i586_eglibc/lib -L/home/wbx/openadk/host_i586_eglibc/lib -lruby-static -lpthread -lssl -lcrypto -lpthread -lrt -ldl -lcrypt -lm -lc" +In file included from /home/wbx/openadk/host_i586_eglibc/include/ruby-1.9.1/ruby/ruby.h:58:0, + from /home/wbx/openadk/host_i586_eglibc/include/ruby-1.9.1/ruby.h:32, + from conftest.c:1: +/home/wbx/openadk/target_i586_eglibc/usr/include/stdint.h:153:0: warning: "__INT64_C" redefined +:0:0: note: this is the location of the previous definition +/home/wbx/openadk/target_i586_eglibc/usr/include/stdint.h:154:0: warning: "__UINT64_C" redefined +:0:0: note: this is the location of the previous definition +checked program was: +/* begin */ +1: #include "ruby.h" +2: +3: /*top*/ +4: int main() {return 0;} +5: int t() { void ((*volatile p)()); p = (void ((*)()))main; return 0; } +/* end */ + +-------------------- + +have_library: checking for main() in -lresolv... -------------------- yes + +"gcc -o conftest -I/home/wbx/openadk/host_i586_eglibc/include/ruby-1.9.1/x86_64-linux -I/home/wbx/openadk/host_i586_eglibc/include/ruby-1.9.1/ruby/backward -I/home/wbx/openadk/host_i586_eglibc/include/ruby-1.9.1 -I/home/wbx/openadk/build_pcengines-alix1c_i586_eglibc/w-ruby-ldap-0.9.8-1/ruby-ldap-0.9.8 -I/home/wbx/openadk/target_i586_eglibc/usr/include -O3 -ggdb -Wextra -Wno-unused-parameter -Wno-parentheses -Wno-long-long -Wno-missing-field-initializers -Wpointer-arith -Wwrite-strings -Wdeclaration-after-statement -Wimplicit-function-declaration conftest.c -L. -L/home/wbx/openadk/host_i586_eglibc/lib -Wl,-R/home/wbx/openadk/host_i586_eglibc/lib -L. -rdynamic -Wl,-export-dynamic -lpthread -lssl -lcrypto -Wl,-R -Wl,/home/wbx/openadk/host_i586_eglibc/lib -L/home/wbx/openadk/host_i586_eglibc/lib -lruby-static -lresolv -lpthread -lssl -lcrypto -lpthread -lrt -ldl -lcrypt -lm -lc" +In file included from /home/wbx/openadk/host_i586_eglibc/include/ruby-1.9.1/ruby/ruby.h:58:0, + from /home/wbx/openadk/host_i586_eglibc/include/ruby-1.9.1/ruby.h:32, + from conftest.c:1: +/home/wbx/openadk/target_i586_eglibc/usr/include/stdint.h:153:0: warning: "__INT64_C" redefined +:0:0: note: this is the location of the previous definition +/home/wbx/openadk/target_i586_eglibc/usr/include/stdint.h:154:0: warning: "__UINT64_C" redefined +:0:0: note: this is the location of the previous definition +checked program was: +/* begin */ +1: #include "ruby.h" +2: +3: /*top*/ +4: int main() {return 0;} +5: int t() { void ((*volatile p)()); p = (void ((*)()))main; return 0; } +/* end */ + +-------------------- + +have_library: checking for main() in -llber... -------------------- no + +"gcc -o conftest -I/home/wbx/openadk/host_i586_eglibc/include/ruby-1.9.1/x86_64-linux -I/home/wbx/openadk/host_i586_eglibc/include/ruby-1.9.1/ruby/backward -I/home/wbx/openadk/host_i586_eglibc/include/ruby-1.9.1 -I/home/wbx/openadk/build_pcengines-alix1c_i586_eglibc/w-ruby-ldap-0.9.8-1/ruby-ldap-0.9.8 -I/home/wbx/openadk/target_i586_eglibc/usr/include -O3 -ggdb -Wextra -Wno-unused-parameter -Wno-parentheses -Wno-long-long -Wno-missing-field-initializers -Wpointer-arith -Wwrite-strings -Wdeclaration-after-statement -Wimplicit-function-declaration conftest.c -L. -L/home/wbx/openadk/host_i586_eglibc/lib -Wl,-R/home/wbx/openadk/host_i586_eglibc/lib -L. -rdynamic -Wl,-export-dynamic -lresolv -lpthread -lssl -lcrypto -Wl,-R -Wl,/home/wbx/openadk/host_i586_eglibc/lib -L/home/wbx/openadk/host_i586_eglibc/lib -lruby-static -llber -lresolv -lpthread -lssl -lcrypto -lpthread -lrt -ldl -lcrypt -lm -lc" +In file included from /home/wbx/openadk/host_i586_eglibc/include/ruby-1.9.1/ruby/ruby.h:58:0, + from /home/wbx/openadk/host_i586_eglibc/include/ruby-1.9.1/ruby.h:32, + from conftest.c:1: +/home/wbx/openadk/target_i586_eglibc/usr/include/stdint.h:153:0: warning: "__INT64_C" redefined +:0:0: note: this is the location of the previous definition +/home/wbx/openadk/target_i586_eglibc/usr/include/stdint.h:154:0: warning: "__UINT64_C" redefined +:0:0: note: this is the location of the previous definition +/usr/bin/ld: cannot find -llber +collect2: ld returned 1 exit status +checked program was: +/* begin */ +1: #include "ruby.h" +2: +3: /*top*/ +4: int main() {return 0;} +5: int t() { void ((*volatile p)()); p = (void ((*)()))main; return 0; } +/* end */ + +"gcc -o conftest -I/home/wbx/openadk/host_i586_eglibc/include/ruby-1.9.1/x86_64-linux -I/home/wbx/openadk/host_i586_eglibc/include/ruby-1.9.1/ruby/backward -I/home/wbx/openadk/host_i586_eglibc/include/ruby-1.9.1 -I/home/wbx/openadk/build_pcengines-alix1c_i586_eglibc/w-ruby-ldap-0.9.8-1/ruby-ldap-0.9.8 -I/home/wbx/openadk/target_i586_eglibc/usr/include -O3 -ggdb -Wextra -Wno-unused-parameter -Wno-parentheses -Wno-long-long -Wno-missing-field-initializers -Wpointer-arith -Wwrite-strings -Wdeclaration-after-statement -Wimplicit-function-declaration conftest.c -L. -L/home/wbx/openadk/host_i586_eglibc/lib -Wl,-R/home/wbx/openadk/host_i586_eglibc/lib -L. -rdynamic -Wl,-export-dynamic -lresolv -lpthread -lssl -lcrypto -Wl,-R -Wl,/home/wbx/openadk/host_i586_eglibc/lib -L/home/wbx/openadk/host_i586_eglibc/lib -lruby-static -llber -lresolv -lpthread -lssl -lcrypto -lpthread -lrt -ldl -lcrypt -lm -lc" +In file included from /home/wbx/openadk/host_i586_eglibc/include/ruby-1.9.1/ruby/ruby.h:58:0, + from /home/wbx/openadk/host_i586_eglibc/include/ruby-1.9.1/ruby.h:32, + from conftest.c:1: +/home/wbx/openadk/target_i586_eglibc/usr/include/stdint.h:153:0: warning: "__INT64_C" redefined +:0:0: note: this is the location of the previous definition +/home/wbx/openadk/target_i586_eglibc/usr/include/stdint.h:154:0: warning: "__UINT64_C" redefined +:0:0: note: this is the location of the previous definition +/usr/bin/ld: cannot find -llber +collect2: ld returned 1 exit status +checked program was: +/* begin */ +1: #include "ruby.h" +2: +3: /*top*/ +4: int main() {return 0;} +5: int t() { main(); return 0; } +/* end */ + +-------------------- + +have_library: checking for main() in -lldap_r... -------------------- no + +"gcc -o conftest -I/home/wbx/openadk/host_i586_eglibc/include/ruby-1.9.1/x86_64-linux -I/home/wbx/openadk/host_i586_eglibc/include/ruby-1.9.1/ruby/backward -I/home/wbx/openadk/host_i586_eglibc/include/ruby-1.9.1 -I/home/wbx/openadk/build_pcengines-alix1c_i586_eglibc/w-ruby-ldap-0.9.8-1/ruby-ldap-0.9.8 -I/home/wbx/openadk/target_i586_eglibc/usr/include -O3 -ggdb -Wextra -Wno-unused-parameter -Wno-parentheses -Wno-long-long -Wno-missing-field-initializers -Wpointer-arith -Wwrite-strings -Wdeclaration-after-statement -Wimplicit-function-declaration conftest.c -L. -L/home/wbx/openadk/host_i586_eglibc/lib -Wl,-R/home/wbx/openadk/host_i586_eglibc/lib -L. -rdynamic -Wl,-export-dynamic -lresolv -lpthread -lssl -lcrypto -Wl,-R -Wl,/home/wbx/openadk/host_i586_eglibc/lib -L/home/wbx/openadk/host_i586_eglibc/lib -lruby-static -lldap_r -lresolv -lpthread -lssl -lcrypto -lpthread -lrt -ldl -lcrypt -lm -lc" +In file included from /home/wbx/openadk/host_i586_eglibc/include/ruby-1.9.1/ruby/ruby.h:58:0, + from /home/wbx/openadk/host_i586_eglibc/include/ruby-1.9.1/ruby.h:32, + from conftest.c:1: +/home/wbx/openadk/target_i586_eglibc/usr/include/stdint.h:153:0: warning: "__INT64_C" redefined +:0:0: note: this is the location of the previous definition +/home/wbx/openadk/target_i586_eglibc/usr/include/stdint.h:154:0: warning: "__UINT64_C" redefined +:0:0: note: this is the location of the previous definition +/usr/bin/ld: cannot find -lldap_r +collect2: ld returned 1 exit status +checked program was: +/* begin */ +1: #include "ruby.h" +2: +3: /*top*/ +4: int main() {return 0;} +5: int t() { void ((*volatile p)()); p = (void ((*)()))main; return 0; } +/* end */ + +"gcc -o conftest -I/home/wbx/openadk/host_i586_eglibc/include/ruby-1.9.1/x86_64-linux -I/home/wbx/openadk/host_i586_eglibc/include/ruby-1.9.1/ruby/backward -I/home/wbx/openadk/host_i586_eglibc/include/ruby-1.9.1 -I/home/wbx/openadk/build_pcengines-alix1c_i586_eglibc/w-ruby-ldap-0.9.8-1/ruby-ldap-0.9.8 -I/home/wbx/openadk/target_i586_eglibc/usr/include -O3 -ggdb -Wextra -Wno-unused-parameter -Wno-parentheses -Wno-long-long -Wno-missing-field-initializers -Wpointer-arith -Wwrite-strings -Wdeclaration-after-statement -Wimplicit-function-declaration conftest.c -L. -L/home/wbx/openadk/host_i586_eglibc/lib -Wl,-R/home/wbx/openadk/host_i586_eglibc/lib -L. -rdynamic -Wl,-export-dynamic -lresolv -lpthread -lssl -lcrypto -Wl,-R -Wl,/home/wbx/openadk/host_i586_eglibc/lib -L/home/wbx/openadk/host_i586_eglibc/lib -lruby-static -lldap_r -lresolv -lpthread -lssl -lcrypto -lpthread -lrt -ldl -lcrypt -lm -lc" +In file included from /home/wbx/openadk/host_i586_eglibc/include/ruby-1.9.1/ruby/ruby.h:58:0, + from /home/wbx/openadk/host_i586_eglibc/include/ruby-1.9.1/ruby.h:32, + from conftest.c:1: +/home/wbx/openadk/target_i586_eglibc/usr/include/stdint.h:153:0: warning: "__INT64_C" redefined +:0:0: note: this is the location of the previous definition +/home/wbx/openadk/target_i586_eglibc/usr/include/stdint.h:154:0: warning: "__UINT64_C" redefined +:0:0: note: this is the location of the previous definition +/usr/bin/ld: cannot find -lldap_r +collect2: ld returned 1 exit status +checked program was: +/* begin */ +1: #include "ruby.h" +2: +3: /*top*/ +4: int main() {return 0;} +5: int t() { main(); return 0; } +/* end */ + +-------------------- + +have_library: checking for main() in -lldap... -------------------- no + +"gcc -o conftest -I/home/wbx/openadk/host_i586_eglibc/include/ruby-1.9.1/x86_64-linux -I/home/wbx/openadk/host_i586_eglibc/include/ruby-1.9.1/ruby/backward -I/home/wbx/openadk/host_i586_eglibc/include/ruby-1.9.1 -I/home/wbx/openadk/build_pcengines-alix1c_i586_eglibc/w-ruby-ldap-0.9.8-1/ruby-ldap-0.9.8 -I/home/wbx/openadk/target_i586_eglibc/usr/include -O3 -ggdb -Wextra -Wno-unused-parameter -Wno-parentheses -Wno-long-long -Wno-missing-field-initializers -Wpointer-arith -Wwrite-strings -Wdeclaration-after-statement -Wimplicit-function-declaration conftest.c -L. -L/home/wbx/openadk/host_i586_eglibc/lib -Wl,-R/home/wbx/openadk/host_i586_eglibc/lib -L. -rdynamic -Wl,-export-dynamic -lresolv -lpthread -lssl -lcrypto -Wl,-R -Wl,/home/wbx/openadk/host_i586_eglibc/lib -L/home/wbx/openadk/host_i586_eglibc/lib -lruby-static -lldap -lresolv -lpthread -lssl -lcrypto -lpthread -lrt -ldl -lcrypt -lm -lc" +In file included from /home/wbx/openadk/host_i586_eglibc/include/ruby-1.9.1/ruby/ruby.h:58:0, + from /home/wbx/openadk/host_i586_eglibc/include/ruby-1.9.1/ruby.h:32, + from conftest.c:1: +/home/wbx/openadk/target_i586_eglibc/usr/include/stdint.h:153:0: warning: "__INT64_C" redefined +:0:0: note: this is the location of the previous definition +/home/wbx/openadk/target_i586_eglibc/usr/include/stdint.h:154:0: warning: "__UINT64_C" redefined +:0:0: note: this is the location of the previous definition +/usr/bin/ld: cannot find -lldap +collect2: ld returned 1 exit status +checked program was: +/* begin */ +1: #include "ruby.h" +2: +3: /*top*/ +4: int main() {return 0;} +5: int t() { void ((*volatile p)()); p = (void ((*)()))main; return 0; } +/* end */ + +"gcc -o conftest -I/home/wbx/openadk/host_i586_eglibc/include/ruby-1.9.1/x86_64-linux -I/home/wbx/openadk/host_i586_eglibc/include/ruby-1.9.1/ruby/backward -I/home/wbx/openadk/host_i586_eglibc/include/ruby-1.9.1 -I/home/wbx/openadk/build_pcengines-alix1c_i586_eglibc/w-ruby-ldap-0.9.8-1/ruby-ldap-0.9.8 -I/home/wbx/openadk/target_i586_eglibc/usr/include -O3 -ggdb -Wextra -Wno-unused-parameter -Wno-parentheses -Wno-long-long -Wno-missing-field-initializers -Wpointer-arith -Wwrite-strings -Wdeclaration-after-statement -Wimplicit-function-declaration conftest.c -L. -L/home/wbx/openadk/host_i586_eglibc/lib -Wl,-R/home/wbx/openadk/host_i586_eglibc/lib -L. -rdynamic -Wl,-export-dynamic -lresolv -lpthread -lssl -lcrypto -Wl,-R -Wl,/home/wbx/openadk/host_i586_eglibc/lib -L/home/wbx/openadk/host_i586_eglibc/lib -lruby-static -lldap -lresolv -lpthread -lssl -lcrypto -lpthread -lrt -ldl -lcrypt -lm -lc" +In file included from /home/wbx/openadk/host_i586_eglibc/include/ruby-1.9.1/ruby/ruby.h:58:0, + from /home/wbx/openadk/host_i586_eglibc/include/ruby-1.9.1/ruby.h:32, + from conftest.c:1: +/home/wbx/openadk/target_i586_eglibc/usr/include/stdint.h:153:0: warning: "__INT64_C" redefined +:0:0: note: this is the location of the previous definition +/home/wbx/openadk/target_i586_eglibc/usr/include/stdint.h:154:0: warning: "__UINT64_C" redefined +:0:0: note: this is the location of the previous definition +/usr/bin/ld: cannot find -lldap +collect2: ld returned 1 exit status +checked program was: +/* begin */ +1: #include "ruby.h" +2: +3: /*top*/ +4: int main() {return 0;} +5: int t() { main(); return 0; } +/* end */ + +-------------------- + +have_func: checking for ldap_init()... -------------------- no + +"gcc -o conftest -I/home/wbx/openadk/host_i586_eglibc/include/ruby-1.9.1/x86_64-linux -I/home/wbx/openadk/host_i586_eglibc/include/ruby-1.9.1/ruby/backward -I/home/wbx/openadk/host_i586_eglibc/include/ruby-1.9.1 -I/home/wbx/openadk/build_pcengines-alix1c_i586_eglibc/w-ruby-ldap-0.9.8-1/ruby-ldap-0.9.8 -I/home/wbx/openadk/target_i586_eglibc/usr/include -O3 -ggdb -Wextra -Wno-unused-parameter -Wno-parentheses -Wno-long-long -Wno-missing-field-initializers -Wpointer-arith -Wwrite-strings -Wdeclaration-after-statement -Wimplicit-function-declaration conftest.c -L. -L/home/wbx/openadk/host_i586_eglibc/lib -Wl,-R/home/wbx/openadk/host_i586_eglibc/lib -L. -rdynamic -Wl,-export-dynamic -lresolv -lpthread -lssl -lcrypto -Wl,-R -Wl,/home/wbx/openadk/host_i586_eglibc/lib -L/home/wbx/openadk/host_i586_eglibc/lib -lruby-static -lresolv -lpthread -lssl -lcrypto -lpthread -lrt -ldl -lcrypt -lm -lc" +In file included from /home/wbx/openadk/host_i586_eglibc/include/ruby-1.9.1/ruby/ruby.h:58:0, + from /home/wbx/openadk/host_i586_eglibc/include/ruby-1.9.1/ruby.h:32, + from conftest.c:1: +/home/wbx/openadk/target_i586_eglibc/usr/include/stdint.h:153:0: warning: "__INT64_C" redefined +:0:0: note: this is the location of the previous definition +/home/wbx/openadk/target_i586_eglibc/usr/include/stdint.h:154:0: warning: "__UINT64_C" redefined +:0:0: note: this is the location of the previous definition +conftest.c: In function 't': +conftest.c:5:53: error: 'ldap_init' undeclared (first use in this function) +conftest.c:5:53: note: each undeclared identifier is reported only once for each function it appears in +checked program was: +/* begin */ +1: #include "ruby.h" +2: +3: /*top*/ +4: int main() {return 0;} +5: int t() { void ((*volatile p)()); p = (void ((*)()))ldap_init; return 0; } +/* end */ + +"gcc -o conftest -I/home/wbx/openadk/host_i586_eglibc/include/ruby-1.9.1/x86_64-linux -I/home/wbx/openadk/host_i586_eglibc/include/ruby-1.9.1/ruby/backward -I/home/wbx/openadk/host_i586_eglibc/include/ruby-1.9.1 -I/home/wbx/openadk/build_pcengines-alix1c_i586_eglibc/w-ruby-ldap-0.9.8-1/ruby-ldap-0.9.8 -I/home/wbx/openadk/target_i586_eglibc/usr/include -O3 -ggdb -Wextra -Wno-unused-parameter -Wno-parentheses -Wno-long-long -Wno-missing-field-initializers -Wpointer-arith -Wwrite-strings -Wdeclaration-after-statement -Wimplicit-function-declaration conftest.c -L. -L/home/wbx/openadk/host_i586_eglibc/lib -Wl,-R/home/wbx/openadk/host_i586_eglibc/lib -L. -rdynamic -Wl,-export-dynamic -lresolv -lpthread -lssl -lcrypto -Wl,-R -Wl,/home/wbx/openadk/host_i586_eglibc/lib -L/home/wbx/openadk/host_i586_eglibc/lib -lruby-static -lresolv -lpthread -lssl -lcrypto -lpthread -lrt -ldl -lcrypt -lm -lc" +In file included from /home/wbx/openadk/host_i586_eglibc/include/ruby-1.9.1/ruby/ruby.h:58:0, + from /home/wbx/openadk/host_i586_eglibc/include/ruby-1.9.1/ruby.h:32, + from conftest.c:1: +/home/wbx/openadk/target_i586_eglibc/usr/include/stdint.h:153:0: warning: "__INT64_C" redefined +:0:0: note: this is the location of the previous definition +/home/wbx/openadk/target_i586_eglibc/usr/include/stdint.h:154:0: warning: "__UINT64_C" redefined +:0:0: note: this is the location of the previous definition +conftest.c: In function 't': +conftest.c:5:1: warning: implicit declaration of function 'ldap_init' +/tmp/cczyGi6h.o: In function `t': +/home/wbx/openadk/package/ruby-ldap/conftest.c:5: undefined reference to `ldap_init' +collect2: ld returned 1 exit status +checked program was: +/* begin */ +1: #include "ruby.h" +2: +3: /*top*/ +4: int main() {return 0;} +5: int t() { ldap_init(); return 0; } +/* end */ + +-------------------- + +have_func: checking for ldap_set_option()... -------------------- no + +"gcc -o conftest -I/home/wbx/openadk/host_i586_eglibc/include/ruby-1.9.1/x86_64-linux -I/home/wbx/openadk/host_i586_eglibc/include/ruby-1.9.1/ruby/backward -I/home/wbx/openadk/host_i586_eglibc/include/ruby-1.9.1 -I/home/wbx/openadk/build_pcengines-alix1c_i586_eglibc/w-ruby-ldap-0.9.8-1/ruby-ldap-0.9.8 -I/home/wbx/openadk/target_i586_eglibc/usr/include -O3 -ggdb -Wextra -Wno-unused-parameter -Wno-parentheses -Wno-long-long -Wno-missing-field-initializers -Wpointer-arith -Wwrite-strings -Wdeclaration-after-statement -Wimplicit-function-declaration conftest.c -L. -L/home/wbx/openadk/host_i586_eglibc/lib -Wl,-R/home/wbx/openadk/host_i586_eglibc/lib -L. -rdynamic -Wl,-export-dynamic -lresolv -lpthread -lssl -lcrypto -Wl,-R -Wl,/home/wbx/openadk/host_i586_eglibc/lib -L/home/wbx/openadk/host_i586_eglibc/lib -lruby-static -lresolv -lpthread -lssl -lcrypto -lpthread -lrt -ldl -lcrypt -lm -lc" +In file included from /home/wbx/openadk/host_i586_eglibc/include/ruby-1.9.1/ruby/ruby.h:58:0, + from /home/wbx/openadk/host_i586_eglibc/include/ruby-1.9.1/ruby.h:32, + from conftest.c:1: +/home/wbx/openadk/target_i586_eglibc/usr/include/stdint.h:153:0: warning: "__INT64_C" redefined +:0:0: note: this is the location of the previous definition +/home/wbx/openadk/target_i586_eglibc/usr/include/stdint.h:154:0: warning: "__UINT64_C" redefined +:0:0: note: this is the location of the previous definition +conftest.c: In function 't': +conftest.c:5:53: error: 'ldap_set_option' undeclared (first use in this function) +conftest.c:5:53: note: each undeclared identifier is reported only once for each function it appears in +checked program was: +/* begin */ +1: #include "ruby.h" +2: +3: /*top*/ +4: int main() {return 0;} +5: int t() { void ((*volatile p)()); p = (void ((*)()))ldap_set_option; return 0; } +/* end */ + +"gcc -o conftest -I/home/wbx/openadk/host_i586_eglibc/include/ruby-1.9.1/x86_64-linux -I/home/wbx/openadk/host_i586_eglibc/include/ruby-1.9.1/ruby/backward -I/home/wbx/openadk/host_i586_eglibc/include/ruby-1.9.1 -I/home/wbx/openadk/build_pcengines-alix1c_i586_eglibc/w-ruby-ldap-0.9.8-1/ruby-ldap-0.9.8 -I/home/wbx/openadk/target_i586_eglibc/usr/include -O3 -ggdb -Wextra -Wno-unused-parameter -Wno-parentheses -Wno-long-long -Wno-missing-field-initializers -Wpointer-arith -Wwrite-strings -Wdeclaration-after-statement -Wimplicit-function-declaration conftest.c -L. -L/home/wbx/openadk/host_i586_eglibc/lib -Wl,-R/home/wbx/openadk/host_i586_eglibc/lib -L. -rdynamic -Wl,-export-dynamic -lresolv -lpthread -lssl -lcrypto -Wl,-R -Wl,/home/wbx/openadk/host_i586_eglibc/lib -L/home/wbx/openadk/host_i586_eglibc/lib -lruby-static -lresolv -lpthread -lssl -lcrypto -lpthread -lrt -ldl -lcrypt -lm -lc" +In file included from /home/wbx/openadk/host_i586_eglibc/include/ruby-1.9.1/ruby/ruby.h:58:0, + from /home/wbx/openadk/host_i586_eglibc/include/ruby-1.9.1/ruby.h:32, + from conftest.c:1: +/home/wbx/openadk/target_i586_eglibc/usr/include/stdint.h:153:0: warning: "__INT64_C" redefined +:0:0: note: this is the location of the previous definition +/home/wbx/openadk/target_i586_eglibc/usr/include/stdint.h:154:0: warning: "__UINT64_C" redefined +:0:0: note: this is the location of the previous definition +conftest.c: In function 't': +conftest.c:5:1: warning: implicit declaration of function 'ldap_set_option' +/tmp/ccZARfGk.o: In function `t': +/home/wbx/openadk/package/ruby-ldap/conftest.c:5: undefined reference to `ldap_set_option' +collect2: ld returned 1 exit status +checked program was: +/* begin */ +1: #include "ruby.h" +2: +3: /*top*/ +4: int main() {return 0;} +5: int t() { ldap_set_option(); return 0; } +/* end */ + +-------------------- + +have_func: checking for ldap_get_option()... -------------------- no + +"gcc -o conftest -I/home/wbx/openadk/host_i586_eglibc/include/ruby-1.9.1/x86_64-linux -I/home/wbx/openadk/host_i586_eglibc/include/ruby-1.9.1/ruby/backward -I/home/wbx/openadk/host_i586_eglibc/include/ruby-1.9.1 -I/home/wbx/openadk/build_pcengines-alix1c_i586_eglibc/w-ruby-ldap-0.9.8-1/ruby-ldap-0.9.8 -I/home/wbx/openadk/target_i586_eglibc/usr/include -O3 -ggdb -Wextra -Wno-unused-parameter -Wno-parentheses -Wno-long-long -Wno-missing-field-initializers -Wpointer-arith -Wwrite-strings -Wdeclaration-after-statement -Wimplicit-function-declaration conftest.c -L. -L/home/wbx/openadk/host_i586_eglibc/lib -Wl,-R/home/wbx/openadk/host_i586_eglibc/lib -L. -rdynamic -Wl,-export-dynamic -lresolv -lpthread -lssl -lcrypto -Wl,-R -Wl,/home/wbx/openadk/host_i586_eglibc/lib -L/home/wbx/openadk/host_i586_eglibc/lib -lruby-static -lresolv -lpthread -lssl -lcrypto -lpthread -lrt -ldl -lcrypt -lm -lc" +In file included from /home/wbx/openadk/host_i586_eglibc/include/ruby-1.9.1/ruby/ruby.h:58:0, + from /home/wbx/openadk/host_i586_eglibc/include/ruby-1.9.1/ruby.h:32, + from conftest.c:1: +/home/wbx/openadk/target_i586_eglibc/usr/include/stdint.h:153:0: warning: "__INT64_C" redefined +:0:0: note: this is the location of the previous definition +/home/wbx/openadk/target_i586_eglibc/usr/include/stdint.h:154:0: warning: "__UINT64_C" redefined +:0:0: note: this is the location of the previous definition +conftest.c: In function 't': +conftest.c:5:53: error: 'ldap_get_option' undeclared (first use in this function) +conftest.c:5:53: note: each undeclared identifier is reported only once for each function it appears in +checked program was: +/* begin */ +1: #include "ruby.h" +2: +3: /*top*/ +4: int main() {return 0;} +5: int t() { void ((*volatile p)()); p = (void ((*)()))ldap_get_option; return 0; } +/* end */ + +"gcc -o conftest -I/home/wbx/openadk/host_i586_eglibc/include/ruby-1.9.1/x86_64-linux -I/home/wbx/openadk/host_i586_eglibc/include/ruby-1.9.1/ruby/backward -I/home/wbx/openadk/host_i586_eglibc/include/ruby-1.9.1 -I/home/wbx/openadk/build_pcengines-alix1c_i586_eglibc/w-ruby-ldap-0.9.8-1/ruby-ldap-0.9.8 -I/home/wbx/openadk/target_i586_eglibc/usr/include -O3 -ggdb -Wextra -Wno-unused-parameter -Wno-parentheses -Wno-long-long -Wno-missing-field-initializers -Wpointer-arith -Wwrite-strings -Wdeclaration-after-statement -Wimplicit-function-declaration conftest.c -L. -L/home/wbx/openadk/host_i586_eglibc/lib -Wl,-R/home/wbx/openadk/host_i586_eglibc/lib -L. -rdynamic -Wl,-export-dynamic -lresolv -lpthread -lssl -lcrypto -Wl,-R -Wl,/home/wbx/openadk/host_i586_eglibc/lib -L/home/wbx/openadk/host_i586_eglibc/lib -lruby-static -lresolv -lpthread -lssl -lcrypto -lpthread -lrt -ldl -lcrypt -lm -lc" +In file included from /home/wbx/openadk/host_i586_eglibc/include/ruby-1.9.1/ruby/ruby.h:58:0, + from /home/wbx/openadk/host_i586_eglibc/include/ruby-1.9.1/ruby.h:32, + from conftest.c:1: +/home/wbx/openadk/target_i586_eglibc/usr/include/stdint.h:153:0: warning: "__INT64_C" redefined +:0:0: note: this is the location of the previous definition +/home/wbx/openadk/target_i586_eglibc/usr/include/stdint.h:154:0: warning: "__UINT64_C" redefined +:0:0: note: this is the location of the previous definition +conftest.c: In function 't': +conftest.c:5:1: warning: implicit declaration of function 'ldap_get_option' +/tmp/ccY8BHKt.o: In function `t': +/home/wbx/openadk/package/ruby-ldap/conftest.c:5: undefined reference to `ldap_get_option' +collect2: ld returned 1 exit status +checked program was: +/* begin */ +1: #include "ruby.h" +2: +3: /*top*/ +4: int main() {return 0;} +5: int t() { ldap_get_option(); return 0; } +/* end */ + +-------------------- + +have_func: checking for ldap_start_tls_s()... -------------------- no + +"gcc -o conftest -I/home/wbx/openadk/host_i586_eglibc/include/ruby-1.9.1/x86_64-linux -I/home/wbx/openadk/host_i586_eglibc/include/ruby-1.9.1/ruby/backward -I/home/wbx/openadk/host_i586_eglibc/include/ruby-1.9.1 -I/home/wbx/openadk/build_pcengines-alix1c_i586_eglibc/w-ruby-ldap-0.9.8-1/ruby-ldap-0.9.8 -I/home/wbx/openadk/target_i586_eglibc/usr/include -O3 -ggdb -Wextra -Wno-unused-parameter -Wno-parentheses -Wno-long-long -Wno-missing-field-initializers -Wpointer-arith -Wwrite-strings -Wdeclaration-after-statement -Wimplicit-function-declaration conftest.c -L. -L/home/wbx/openadk/host_i586_eglibc/lib -Wl,-R/home/wbx/openadk/host_i586_eglibc/lib -L. -rdynamic -Wl,-export-dynamic -lresolv -lpthread -lssl -lcrypto -Wl,-R -Wl,/home/wbx/openadk/host_i586_eglibc/lib -L/home/wbx/openadk/host_i586_eglibc/lib -lruby-static -lresolv -lpthread -lssl -lcrypto -lpthread -lrt -ldl -lcrypt -lm -lc" +In file included from /home/wbx/openadk/host_i586_eglibc/include/ruby-1.9.1/ruby/ruby.h:58:0, + from /home/wbx/openadk/host_i586_eglibc/include/ruby-1.9.1/ruby.h:32, + from conftest.c:1: +/home/wbx/openadk/target_i586_eglibc/usr/include/stdint.h:153:0: warning: "__INT64_C" redefined +:0:0: note: this is the location of the previous definition +/home/wbx/openadk/target_i586_eglibc/usr/include/stdint.h:154:0: warning: "__UINT64_C" redefined +:0:0: note: this is the location of the previous definition +conftest.c: In function 't': +conftest.c:5:53: error: 'ldap_start_tls_s' undeclared (first use in this function) +conftest.c:5:53: note: each undeclared identifier is reported only once for each function it appears in +checked program was: +/* begin */ +1: #include "ruby.h" +2: +3: /*top*/ +4: int main() {return 0;} +5: int t() { void ((*volatile p)()); p = (void ((*)()))ldap_start_tls_s; return 0; } +/* end */ + +"gcc -o conftest -I/home/wbx/openadk/host_i586_eglibc/include/ruby-1.9.1/x86_64-linux -I/home/wbx/openadk/host_i586_eglibc/include/ruby-1.9.1/ruby/backward -I/home/wbx/openadk/host_i586_eglibc/include/ruby-1.9.1 -I/home/wbx/openadk/build_pcengines-alix1c_i586_eglibc/w-ruby-ldap-0.9.8-1/ruby-ldap-0.9.8 -I/home/wbx/openadk/target_i586_eglibc/usr/include -O3 -ggdb -Wextra -Wno-unused-parameter -Wno-parentheses -Wno-long-long -Wno-missing-field-initializers -Wpointer-arith -Wwrite-strings -Wdeclaration-after-statement -Wimplicit-function-declaration conftest.c -L. -L/home/wbx/openadk/host_i586_eglibc/lib -Wl,-R/home/wbx/openadk/host_i586_eglibc/lib -L. -rdynamic -Wl,-export-dynamic -lresolv -lpthread -lssl -lcrypto -Wl,-R -Wl,/home/wbx/openadk/host_i586_eglibc/lib -L/home/wbx/openadk/host_i586_eglibc/lib -lruby-static -lresolv -lpthread -lssl -lcrypto -lpthread -lrt -ldl -lcrypt -lm -lc" +In file included from /home/wbx/openadk/host_i586_eglibc/include/ruby-1.9.1/ruby/ruby.h:58:0, + from /home/wbx/openadk/host_i586_eglibc/include/ruby-1.9.1/ruby.h:32, + from conftest.c:1: +/home/wbx/openadk/target_i586_eglibc/usr/include/stdint.h:153:0: warning: "__INT64_C" redefined +:0:0: note: this is the location of the previous definition +/home/wbx/openadk/target_i586_eglibc/usr/include/stdint.h:154:0: warning: "__UINT64_C" redefined +:0:0: note: this is the location of the previous definition +conftest.c: In function 't': +conftest.c:5:1: warning: implicit declaration of function 'ldap_start_tls_s' +/tmp/ccvjTi9H.o: In function `t': +/home/wbx/openadk/package/ruby-ldap/conftest.c:5: undefined reference to `ldap_start_tls_s' +collect2: ld returned 1 exit status +checked program was: +/* begin */ +1: #include "ruby.h" +2: +3: /*top*/ +4: int main() {return 0;} +5: int t() { ldap_start_tls_s(); return 0; } +/* end */ + +-------------------- + +have_func: checking for ldap_memfree()... -------------------- no + +"gcc -o conftest -I/home/wbx/openadk/host_i586_eglibc/include/ruby-1.9.1/x86_64-linux -I/home/wbx/openadk/host_i586_eglibc/include/ruby-1.9.1/ruby/backward -I/home/wbx/openadk/host_i586_eglibc/include/ruby-1.9.1 -I/home/wbx/openadk/build_pcengines-alix1c_i586_eglibc/w-ruby-ldap-0.9.8-1/ruby-ldap-0.9.8 -I/home/wbx/openadk/target_i586_eglibc/usr/include -O3 -ggdb -Wextra -Wno-unused-parameter -Wno-parentheses -Wno-long-long -Wno-missing-field-initializers -Wpointer-arith -Wwrite-strings -Wdeclaration-after-statement -Wimplicit-function-declaration conftest.c -L. -L/home/wbx/openadk/host_i586_eglibc/lib -Wl,-R/home/wbx/openadk/host_i586_eglibc/lib -L. -rdynamic -Wl,-export-dynamic -lresolv -lpthread -lssl -lcrypto -Wl,-R -Wl,/home/wbx/openadk/host_i586_eglibc/lib -L/home/wbx/openadk/host_i586_eglibc/lib -lruby-static -lresolv -lpthread -lssl -lcrypto -lpthread -lrt -ldl -lcrypt -lm -lc" +In file included from /home/wbx/openadk/host_i586_eglibc/include/ruby-1.9.1/ruby/ruby.h:58:0, + from /home/wbx/openadk/host_i586_eglibc/include/ruby-1.9.1/ruby.h:32, + from conftest.c:1: +/home/wbx/openadk/target_i586_eglibc/usr/include/stdint.h:153:0: warning: "__INT64_C" redefined +:0:0: note: this is the location of the previous definition +/home/wbx/openadk/target_i586_eglibc/usr/include/stdint.h:154:0: warning: "__UINT64_C" redefined +:0:0: note: this is the location of the previous definition +conftest.c: In function 't': +conftest.c:5:53: error: 'ldap_memfree' undeclared (first use in this function) +conftest.c:5:53: note: each undeclared identifier is reported only once for each function it appears in +checked program was: +/* begin */ +1: #include "ruby.h" +2: +3: /*top*/ +4: int main() {return 0;} +5: int t() { void ((*volatile p)()); p = (void ((*)()))ldap_memfree; return 0; } +/* end */ + +"gcc -o conftest -I/home/wbx/openadk/host_i586_eglibc/include/ruby-1.9.1/x86_64-linux -I/home/wbx/openadk/host_i586_eglibc/include/ruby-1.9.1/ruby/backward -I/home/wbx/openadk/host_i586_eglibc/include/ruby-1.9.1 -I/home/wbx/openadk/build_pcengines-alix1c_i586_eglibc/w-ruby-ldap-0.9.8-1/ruby-ldap-0.9.8 -I/home/wbx/openadk/target_i586_eglibc/usr/include -O3 -ggdb -Wextra -Wno-unused-parameter -Wno-parentheses -Wno-long-long -Wno-missing-field-initializers -Wpointer-arith -Wwrite-strings -Wdeclaration-after-statement -Wimplicit-function-declaration conftest.c -L. -L/home/wbx/openadk/host_i586_eglibc/lib -Wl,-R/home/wbx/openadk/host_i586_eglibc/lib -L. -rdynamic -Wl,-export-dynamic -lresolv -lpthread -lssl -lcrypto -Wl,-R -Wl,/home/wbx/openadk/host_i586_eglibc/lib -L/home/wbx/openadk/host_i586_eglibc/lib -lruby-static -lresolv -lpthread -lssl -lcrypto -lpthread -lrt -ldl -lcrypt -lm -lc" +In file included from /home/wbx/openadk/host_i586_eglibc/include/ruby-1.9.1/ruby/ruby.h:58:0, + from /home/wbx/openadk/host_i586_eglibc/include/ruby-1.9.1/ruby.h:32, + from conftest.c:1: +/home/wbx/openadk/target_i586_eglibc/usr/include/stdint.h:153:0: warning: "__INT64_C" redefined +:0:0: note: this is the location of the previous definition +/home/wbx/openadk/target_i586_eglibc/usr/include/stdint.h:154:0: warning: "__UINT64_C" redefined +:0:0: note: this is the location of the previous definition +conftest.c: In function 't': +conftest.c:5:1: warning: implicit declaration of function 'ldap_memfree' +/tmp/ccPVMxgR.o: In function `t': +/home/wbx/openadk/package/ruby-ldap/conftest.c:5: undefined reference to `ldap_memfree' +collect2: ld returned 1 exit status +checked program was: +/* begin */ +1: #include "ruby.h" +2: +3: /*top*/ +4: int main() {return 0;} +5: int t() { ldap_memfree(); return 0; } +/* end */ + +-------------------- + +have_func: checking for ldap_perror()... -------------------- no + +"gcc -o conftest -I/home/wbx/openadk/host_i586_eglibc/include/ruby-1.9.1/x86_64-linux -I/home/wbx/openadk/host_i586_eglibc/include/ruby-1.9.1/ruby/backward -I/home/wbx/openadk/host_i586_eglibc/include/ruby-1.9.1 -I/home/wbx/openadk/build_pcengines-alix1c_i586_eglibc/w-ruby-ldap-0.9.8-1/ruby-ldap-0.9.8 -I/home/wbx/openadk/target_i586_eglibc/usr/include -O3 -ggdb -Wextra -Wno-unused-parameter -Wno-parentheses -Wno-long-long -Wno-missing-field-initializers -Wpointer-arith -Wwrite-strings -Wdeclaration-after-statement -Wimplicit-function-declaration conftest.c -L. -L/home/wbx/openadk/host_i586_eglibc/lib -Wl,-R/home/wbx/openadk/host_i586_eglibc/lib -L. -rdynamic -Wl,-export-dynamic -lresolv -lpthread -lssl -lcrypto -Wl,-R -Wl,/home/wbx/openadk/host_i586_eglibc/lib -L/home/wbx/openadk/host_i586_eglibc/lib -lruby-static -lresolv -lpthread -lssl -lcrypto -lpthread -lrt -ldl -lcrypt -lm -lc" +In file included from /home/wbx/openadk/host_i586_eglibc/include/ruby-1.9.1/ruby/ruby.h:58:0, + from /home/wbx/openadk/host_i586_eglibc/include/ruby-1.9.1/ruby.h:32, + from conftest.c:1: +/home/wbx/openadk/target_i586_eglibc/usr/include/stdint.h:153:0: warning: "__INT64_C" redefined +:0:0: note: this is the location of the previous definition +/home/wbx/openadk/target_i586_eglibc/usr/include/stdint.h:154:0: warning: "__UINT64_C" redefined +:0:0: note: this is the location of the previous definition +conftest.c: In function 't': +conftest.c:5:53: error: 'ldap_perror' undeclared (first use in this function) +conftest.c:5:53: note: each undeclared identifier is reported only once for each function it appears in +checked program was: +/* begin */ +1: #include "ruby.h" +2: +3: /*top*/ +4: int main() {return 0;} +5: int t() { void ((*volatile p)()); p = (void ((*)()))ldap_perror; return 0; } +/* end */ + +"gcc -o conftest -I/home/wbx/openadk/host_i586_eglibc/include/ruby-1.9.1/x86_64-linux -I/home/wbx/openadk/host_i586_eglibc/include/ruby-1.9.1/ruby/backward -I/home/wbx/openadk/host_i586_eglibc/include/ruby-1.9.1 -I/home/wbx/openadk/build_pcengines-alix1c_i586_eglibc/w-ruby-ldap-0.9.8-1/ruby-ldap-0.9.8 -I/home/wbx/openadk/target_i586_eglibc/usr/include -O3 -ggdb -Wextra -Wno-unused-parameter -Wno-parentheses -Wno-long-long -Wno-missing-field-initializers -Wpointer-arith -Wwrite-strings -Wdeclaration-after-statement -Wimplicit-function-declaration conftest.c -L. -L/home/wbx/openadk/host_i586_eglibc/lib -Wl,-R/home/wbx/openadk/host_i586_eglibc/lib -L. -rdynamic -Wl,-export-dynamic -lresolv -lpthread -lssl -lcrypto -Wl,-R -Wl,/home/wbx/openadk/host_i586_eglibc/lib -L/home/wbx/openadk/host_i586_eglibc/lib -lruby-static -lresolv -lpthread -lssl -lcrypto -lpthread -lrt -ldl -lcrypt -lm -lc" +In file included from /home/wbx/openadk/host_i586_eglibc/include/ruby-1.9.1/ruby/ruby.h:58:0, + from /home/wbx/openadk/host_i586_eglibc/include/ruby-1.9.1/ruby.h:32, + from conftest.c:1: +/home/wbx/openadk/target_i586_eglibc/usr/include/stdint.h:153:0: warning: "__INT64_C" redefined +:0:0: note: this is the location of the previous definition +/home/wbx/openadk/target_i586_eglibc/usr/include/stdint.h:154:0: warning: "__UINT64_C" redefined +:0:0: note: this is the location of the previous definition +conftest.c: In function 't': +conftest.c:5:1: warning: implicit declaration of function 'ldap_perror' +/tmp/ccDKXqa3.o: In function `t': +/home/wbx/openadk/package/ruby-ldap/conftest.c:5: undefined reference to `ldap_perror' +collect2: ld returned 1 exit status +checked program was: +/* begin */ +1: #include "ruby.h" +2: +3: /*top*/ +4: int main() {return 0;} +5: int t() { ldap_perror(); return 0; } +/* end */ + +-------------------- + +have_func: checking for ldap_sort_entries()... -------------------- no + +"gcc -o conftest -I/home/wbx/openadk/host_i586_eglibc/include/ruby-1.9.1/x86_64-linux -I/home/wbx/openadk/host_i586_eglibc/include/ruby-1.9.1/ruby/backward -I/home/wbx/openadk/host_i586_eglibc/include/ruby-1.9.1 -I/home/wbx/openadk/build_pcengines-alix1c_i586_eglibc/w-ruby-ldap-0.9.8-1/ruby-ldap-0.9.8 -I/home/wbx/openadk/target_i586_eglibc/usr/include -O3 -ggdb -Wextra -Wno-unused-parameter -Wno-parentheses -Wno-long-long -Wno-missing-field-initializers -Wpointer-arith -Wwrite-strings -Wdeclaration-after-statement -Wimplicit-function-declaration conftest.c -L. -L/home/wbx/openadk/host_i586_eglibc/lib -Wl,-R/home/wbx/openadk/host_i586_eglibc/lib -L. -rdynamic -Wl,-export-dynamic -lresolv -lpthread -lssl -lcrypto -Wl,-R -Wl,/home/wbx/openadk/host_i586_eglibc/lib -L/home/wbx/openadk/host_i586_eglibc/lib -lruby-static -lresolv -lpthread -lssl -lcrypto -lpthread -lrt -ldl -lcrypt -lm -lc" +In file included from /home/wbx/openadk/host_i586_eglibc/include/ruby-1.9.1/ruby/ruby.h:58:0, + from /home/wbx/openadk/host_i586_eglibc/include/ruby-1.9.1/ruby.h:32, + from conftest.c:1: +/home/wbx/openadk/target_i586_eglibc/usr/include/stdint.h:153:0: warning: "__INT64_C" redefined +:0:0: note: this is the location of the previous definition +/home/wbx/openadk/target_i586_eglibc/usr/include/stdint.h:154:0: warning: "__UINT64_C" redefined +:0:0: note: this is the location of the previous definition +conftest.c: In function 't': +conftest.c:5:53: error: 'ldap_sort_entries' undeclared (first use in this function) +conftest.c:5:53: note: each undeclared identifier is reported only once for each function it appears in +checked program was: +/* begin */ +1: #include "ruby.h" +2: +3: /*top*/ +4: int main() {return 0;} +5: int t() { void ((*volatile p)()); p = (void ((*)()))ldap_sort_entries; return 0; } +/* end */ + +"gcc -o conftest -I/home/wbx/openadk/host_i586_eglibc/include/ruby-1.9.1/x86_64-linux -I/home/wbx/openadk/host_i586_eglibc/include/ruby-1.9.1/ruby/backward -I/home/wbx/openadk/host_i586_eglibc/include/ruby-1.9.1 -I/home/wbx/openadk/build_pcengines-alix1c_i586_eglibc/w-ruby-ldap-0.9.8-1/ruby-ldap-0.9.8 -I/home/wbx/openadk/target_i586_eglibc/usr/include -O3 -ggdb -Wextra -Wno-unused-parameter -Wno-parentheses -Wno-long-long -Wno-missing-field-initializers -Wpointer-arith -Wwrite-strings -Wdeclaration-after-statement -Wimplicit-function-declaration conftest.c -L. -L/home/wbx/openadk/host_i586_eglibc/lib -Wl,-R/home/wbx/openadk/host_i586_eglibc/lib -L. -rdynamic -Wl,-export-dynamic -lresolv -lpthread -lssl -lcrypto -Wl,-R -Wl,/home/wbx/openadk/host_i586_eglibc/lib -L/home/wbx/openadk/host_i586_eglibc/lib -lruby-static -lresolv -lpthread -lssl -lcrypto -lpthread -lrt -ldl -lcrypt -lm -lc" +In file included from /home/wbx/openadk/host_i586_eglibc/include/ruby-1.9.1/ruby/ruby.h:58:0, + from /home/wbx/openadk/host_i586_eglibc/include/ruby-1.9.1/ruby.h:32, + from conftest.c:1: +/home/wbx/openadk/target_i586_eglibc/usr/include/stdint.h:153:0: warning: "__INT64_C" redefined +:0:0: note: this is the location of the previous definition +/home/wbx/openadk/target_i586_eglibc/usr/include/stdint.h:154:0: warning: "__UINT64_C" redefined +:0:0: note: this is the location of the previous definition +conftest.c: In function 't': +conftest.c:5:1: warning: implicit declaration of function 'ldap_sort_entries' +/tmp/ccq7L8vh.o: In function `t': +/home/wbx/openadk/package/ruby-ldap/conftest.c:5: undefined reference to `ldap_sort_entries' +collect2: ld returned 1 exit status +checked program was: +/* begin */ +1: #include "ruby.h" +2: +3: /*top*/ +4: int main() {return 0;} +5: int t() { ldap_sort_entries(); return 0; } +/* end */ + +-------------------- + +have_func: checking for ldapssl_init()... -------------------- no + +"gcc -o conftest -I/home/wbx/openadk/host_i586_eglibc/include/ruby-1.9.1/x86_64-linux -I/home/wbx/openadk/host_i586_eglibc/include/ruby-1.9.1/ruby/backward -I/home/wbx/openadk/host_i586_eglibc/include/ruby-1.9.1 -I/home/wbx/openadk/build_pcengines-alix1c_i586_eglibc/w-ruby-ldap-0.9.8-1/ruby-ldap-0.9.8 -I/home/wbx/openadk/target_i586_eglibc/usr/include -O3 -ggdb -Wextra -Wno-unused-parameter -Wno-parentheses -Wno-long-long -Wno-missing-field-initializers -Wpointer-arith -Wwrite-strings -Wdeclaration-after-statement -Wimplicit-function-declaration conftest.c -L. -L/home/wbx/openadk/host_i586_eglibc/lib -Wl,-R/home/wbx/openadk/host_i586_eglibc/lib -L. -rdynamic -Wl,-export-dynamic -lresolv -lpthread -lssl -lcrypto -Wl,-R -Wl,/home/wbx/openadk/host_i586_eglibc/lib -L/home/wbx/openadk/host_i586_eglibc/lib -lruby-static -lresolv -lpthread -lssl -lcrypto -lpthread -lrt -ldl -lcrypt -lm -lc" +In file included from /home/wbx/openadk/host_i586_eglibc/include/ruby-1.9.1/ruby/ruby.h:58:0, + from /home/wbx/openadk/host_i586_eglibc/include/ruby-1.9.1/ruby.h:32, + from conftest.c:1: +/home/wbx/openadk/target_i586_eglibc/usr/include/stdint.h:153:0: warning: "__INT64_C" redefined +:0:0: note: this is the location of the previous definition +/home/wbx/openadk/target_i586_eglibc/usr/include/stdint.h:154:0: warning: "__UINT64_C" redefined +:0:0: note: this is the location of the previous definition +conftest.c: In function 't': +conftest.c:5:53: error: 'ldapssl_init' undeclared (first use in this function) +conftest.c:5:53: note: each undeclared identifier is reported only once for each function it appears in +checked program was: +/* begin */ +1: #include "ruby.h" +2: +3: /*top*/ +4: int main() {return 0;} +5: int t() { void ((*volatile p)()); p = (void ((*)()))ldapssl_init; return 0; } +/* end */ + +"gcc -o conftest -I/home/wbx/openadk/host_i586_eglibc/include/ruby-1.9.1/x86_64-linux -I/home/wbx/openadk/host_i586_eglibc/include/ruby-1.9.1/ruby/backward -I/home/wbx/openadk/host_i586_eglibc/include/ruby-1.9.1 -I/home/wbx/openadk/build_pcengines-alix1c_i586_eglibc/w-ruby-ldap-0.9.8-1/ruby-ldap-0.9.8 -I/home/wbx/openadk/target_i586_eglibc/usr/include -O3 -ggdb -Wextra -Wno-unused-parameter -Wno-parentheses -Wno-long-long -Wno-missing-field-initializers -Wpointer-arith -Wwrite-strings -Wdeclaration-after-statement -Wimplicit-function-declaration conftest.c -L. -L/home/wbx/openadk/host_i586_eglibc/lib -Wl,-R/home/wbx/openadk/host_i586_eglibc/lib -L. -rdynamic -Wl,-export-dynamic -lresolv -lpthread -lssl -lcrypto -Wl,-R -Wl,/home/wbx/openadk/host_i586_eglibc/lib -L/home/wbx/openadk/host_i586_eglibc/lib -lruby-static -lresolv -lpthread -lssl -lcrypto -lpthread -lrt -ldl -lcrypt -lm -lc" +In file included from /home/wbx/openadk/host_i586_eglibc/include/ruby-1.9.1/ruby/ruby.h:58:0, + from /home/wbx/openadk/host_i586_eglibc/include/ruby-1.9.1/ruby.h:32, + from conftest.c:1: +/home/wbx/openadk/target_i586_eglibc/usr/include/stdint.h:153:0: warning: "__INT64_C" redefined +:0:0: note: this is the location of the previous definition +/home/wbx/openadk/target_i586_eglibc/usr/include/stdint.h:154:0: warning: "__UINT64_C" redefined +:0:0: note: this is the location of the previous definition +conftest.c: In function 't': +conftest.c:5:1: warning: implicit declaration of function 'ldapssl_init' +/tmp/cc50P3Bq.o: In function `t': +/home/wbx/openadk/package/ruby-ldap/conftest.c:5: undefined reference to `ldapssl_init' +collect2: ld returned 1 exit status +checked program was: +/* begin */ +1: #include "ruby.h" +2: +3: /*top*/ +4: int main() {return 0;} +5: int t() { ldapssl_init(); return 0; } +/* end */ + +-------------------- + +have_func: checking for ldap_sslinit()... -------------------- no + +"gcc -o conftest -I/home/wbx/openadk/host_i586_eglibc/include/ruby-1.9.1/x86_64-linux -I/home/wbx/openadk/host_i586_eglibc/include/ruby-1.9.1/ruby/backward -I/home/wbx/openadk/host_i586_eglibc/include/ruby-1.9.1 -I/home/wbx/openadk/build_pcengines-alix1c_i586_eglibc/w-ruby-ldap-0.9.8-1/ruby-ldap-0.9.8 -I/home/wbx/openadk/target_i586_eglibc/usr/include -O3 -ggdb -Wextra -Wno-unused-parameter -Wno-parentheses -Wno-long-long -Wno-missing-field-initializers -Wpointer-arith -Wwrite-strings -Wdeclaration-after-statement -Wimplicit-function-declaration conftest.c -L. -L/home/wbx/openadk/host_i586_eglibc/lib -Wl,-R/home/wbx/openadk/host_i586_eglibc/lib -L. -rdynamic -Wl,-export-dynamic -lresolv -lpthread -lssl -lcrypto -Wl,-R -Wl,/home/wbx/openadk/host_i586_eglibc/lib -L/home/wbx/openadk/host_i586_eglibc/lib -lruby-static -lresolv -lpthread -lssl -lcrypto -lpthread -lrt -ldl -lcrypt -lm -lc" +In file included from /home/wbx/openadk/host_i586_eglibc/include/ruby-1.9.1/ruby/ruby.h:58:0, + from /home/wbx/openadk/host_i586_eglibc/include/ruby-1.9.1/ruby.h:32, + from conftest.c:1: +/home/wbx/openadk/target_i586_eglibc/usr/include/stdint.h:153:0: warning: "__INT64_C" redefined +:0:0: note: this is the location of the previous definition +/home/wbx/openadk/target_i586_eglibc/usr/include/stdint.h:154:0: warning: "__UINT64_C" redefined +:0:0: note: this is the location of the previous definition +conftest.c: In function 't': +conftest.c:5:53: error: 'ldap_sslinit' undeclared (first use in this function) +conftest.c:5:53: note: each undeclared identifier is reported only once for each function it appears in +checked program was: +/* begin */ +1: #include "ruby.h" +2: +3: /*top*/ +4: int main() {return 0;} +5: int t() { void ((*volatile p)()); p = (void ((*)()))ldap_sslinit; return 0; } +/* end */ + +"gcc -o conftest -I/home/wbx/openadk/host_i586_eglibc/include/ruby-1.9.1/x86_64-linux -I/home/wbx/openadk/host_i586_eglibc/include/ruby-1.9.1/ruby/backward -I/home/wbx/openadk/host_i586_eglibc/include/ruby-1.9.1 -I/home/wbx/openadk/build_pcengines-alix1c_i586_eglibc/w-ruby-ldap-0.9.8-1/ruby-ldap-0.9.8 -I/home/wbx/openadk/target_i586_eglibc/usr/include -O3 -ggdb -Wextra -Wno-unused-parameter -Wno-parentheses -Wno-long-long -Wno-missing-field-initializers -Wpointer-arith -Wwrite-strings -Wdeclaration-after-statement -Wimplicit-function-declaration conftest.c -L. -L/home/wbx/openadk/host_i586_eglibc/lib -Wl,-R/home/wbx/openadk/host_i586_eglibc/lib -L. -rdynamic -Wl,-export-dynamic -lresolv -lpthread -lssl -lcrypto -Wl,-R -Wl,/home/wbx/openadk/host_i586_eglibc/lib -L/home/wbx/openadk/host_i586_eglibc/lib -lruby-static -lresolv -lpthread -lssl -lcrypto -lpthread -lrt -ldl -lcrypt -lm -lc" +In file included from /home/wbx/openadk/host_i586_eglibc/include/ruby-1.9.1/ruby/ruby.h:58:0, + from /home/wbx/openadk/host_i586_eglibc/include/ruby-1.9.1/ruby.h:32, + from conftest.c:1: +/home/wbx/openadk/target_i586_eglibc/usr/include/stdint.h:153:0: warning: "__INT64_C" redefined +:0:0: note: this is the location of the previous definition +/home/wbx/openadk/target_i586_eglibc/usr/include/stdint.h:154:0: warning: "__UINT64_C" redefined +:0:0: note: this is the location of the previous definition +conftest.c: In function 't': +conftest.c:5:1: warning: implicit declaration of function 'ldap_sslinit' +/tmp/cc1tcAEs.o: In function `t': +/home/wbx/openadk/package/ruby-ldap/conftest.c:5: undefined reference to `ldap_sslinit' +collect2: ld returned 1 exit status +checked program was: +/* begin */ +1: #include "ruby.h" +2: +3: /*top*/ +4: int main() {return 0;} +5: int t() { ldap_sslinit(); return 0; } +/* end */ + +-------------------- + +have_func: checking for ldap_sasl_bind_s()... -------------------- no + +"gcc -o conftest -I/home/wbx/openadk/host_i586_eglibc/include/ruby-1.9.1/x86_64-linux -I/home/wbx/openadk/host_i586_eglibc/include/ruby-1.9.1/ruby/backward -I/home/wbx/openadk/host_i586_eglibc/include/ruby-1.9.1 -I/home/wbx/openadk/build_pcengines-alix1c_i586_eglibc/w-ruby-ldap-0.9.8-1/ruby-ldap-0.9.8 -I/home/wbx/openadk/target_i586_eglibc/usr/include -O3 -ggdb -Wextra -Wno-unused-parameter -Wno-parentheses -Wno-long-long -Wno-missing-field-initializers -Wpointer-arith -Wwrite-strings -Wdeclaration-after-statement -Wimplicit-function-declaration conftest.c -L. -L/home/wbx/openadk/host_i586_eglibc/lib -Wl,-R/home/wbx/openadk/host_i586_eglibc/lib -L. -rdynamic -Wl,-export-dynamic -lresolv -lpthread -lssl -lcrypto -Wl,-R -Wl,/home/wbx/openadk/host_i586_eglibc/lib -L/home/wbx/openadk/host_i586_eglibc/lib -lruby-static -lresolv -lpthread -lssl -lcrypto -lpthread -lrt -ldl -lcrypt -lm -lc" +In file included from /home/wbx/openadk/host_i586_eglibc/include/ruby-1.9.1/ruby/ruby.h:58:0, + from /home/wbx/openadk/host_i586_eglibc/include/ruby-1.9.1/ruby.h:32, + from conftest.c:1: +/home/wbx/openadk/target_i586_eglibc/usr/include/stdint.h:153:0: warning: "__INT64_C" redefined +:0:0: note: this is the location of the previous definition +/home/wbx/openadk/target_i586_eglibc/usr/include/stdint.h:154:0: warning: "__UINT64_C" redefined +:0:0: note: this is the location of the previous definition +conftest.c: In function 't': +conftest.c:5:53: error: 'ldap_sasl_bind_s' undeclared (first use in this function) +conftest.c:5:53: note: each undeclared identifier is reported only once for each function it appears in +checked program was: +/* begin */ +1: #include "ruby.h" +2: +3: /*top*/ +4: int main() {return 0;} +5: int t() { void ((*volatile p)()); p = (void ((*)()))ldap_sasl_bind_s; return 0; } +/* end */ + +"gcc -o conftest -I/home/wbx/openadk/host_i586_eglibc/include/ruby-1.9.1/x86_64-linux -I/home/wbx/openadk/host_i586_eglibc/include/ruby-1.9.1/ruby/backward -I/home/wbx/openadk/host_i586_eglibc/include/ruby-1.9.1 -I/home/wbx/openadk/build_pcengines-alix1c_i586_eglibc/w-ruby-ldap-0.9.8-1/ruby-ldap-0.9.8 -I/home/wbx/openadk/target_i586_eglibc/usr/include -O3 -ggdb -Wextra -Wno-unused-parameter -Wno-parentheses -Wno-long-long -Wno-missing-field-initializers -Wpointer-arith -Wwrite-strings -Wdeclaration-after-statement -Wimplicit-function-declaration conftest.c -L. -L/home/wbx/openadk/host_i586_eglibc/lib -Wl,-R/home/wbx/openadk/host_i586_eglibc/lib -L. -rdynamic -Wl,-export-dynamic -lresolv -lpthread -lssl -lcrypto -Wl,-R -Wl,/home/wbx/openadk/host_i586_eglibc/lib -L/home/wbx/openadk/host_i586_eglibc/lib -lruby-static -lresolv -lpthread -lssl -lcrypto -lpthread -lrt -ldl -lcrypt -lm -lc" +In file included from /home/wbx/openadk/host_i586_eglibc/include/ruby-1.9.1/ruby/ruby.h:58:0, + from /home/wbx/openadk/host_i586_eglibc/include/ruby-1.9.1/ruby.h:32, + from conftest.c:1: +/home/wbx/openadk/target_i586_eglibc/usr/include/stdint.h:153:0: warning: "__INT64_C" redefined +:0:0: note: this is the location of the previous definition +/home/wbx/openadk/target_i586_eglibc/usr/include/stdint.h:154:0: warning: "__UINT64_C" redefined +:0:0: note: this is the location of the previous definition +conftest.c: In function 't': +conftest.c:5:1: warning: implicit declaration of function 'ldap_sasl_bind_s' +/tmp/ccIHLVZG.o: In function `t': +/home/wbx/openadk/package/ruby-ldap/conftest.c:5: undefined reference to `ldap_sasl_bind_s' +collect2: ld returned 1 exit status +checked program was: +/* begin */ +1: #include "ruby.h" +2: +3: /*top*/ +4: int main() {return 0;} +5: int t() { ldap_sasl_bind_s(); return 0; } +/* end */ + +-------------------- + +have_func: checking for ldap_compare_s()... -------------------- no + +"gcc -o conftest -I/home/wbx/openadk/host_i586_eglibc/include/ruby-1.9.1/x86_64-linux -I/home/wbx/openadk/host_i586_eglibc/include/ruby-1.9.1/ruby/backward -I/home/wbx/openadk/host_i586_eglibc/include/ruby-1.9.1 -I/home/wbx/openadk/build_pcengines-alix1c_i586_eglibc/w-ruby-ldap-0.9.8-1/ruby-ldap-0.9.8 -I/home/wbx/openadk/target_i586_eglibc/usr/include -O3 -ggdb -Wextra -Wno-unused-parameter -Wno-parentheses -Wno-long-long -Wno-missing-field-initializers -Wpointer-arith -Wwrite-strings -Wdeclaration-after-statement -Wimplicit-function-declaration conftest.c -L. -L/home/wbx/openadk/host_i586_eglibc/lib -Wl,-R/home/wbx/openadk/host_i586_eglibc/lib -L. -rdynamic -Wl,-export-dynamic -lresolv -lpthread -lssl -lcrypto -Wl,-R -Wl,/home/wbx/openadk/host_i586_eglibc/lib -L/home/wbx/openadk/host_i586_eglibc/lib -lruby-static -lresolv -lpthread -lssl -lcrypto -lpthread -lrt -ldl -lcrypt -lm -lc" +In file included from /home/wbx/openadk/host_i586_eglibc/include/ruby-1.9.1/ruby/ruby.h:58:0, + from /home/wbx/openadk/host_i586_eglibc/include/ruby-1.9.1/ruby.h:32, + from conftest.c:1: +/home/wbx/openadk/target_i586_eglibc/usr/include/stdint.h:153:0: warning: "__INT64_C" redefined +:0:0: note: this is the location of the previous definition +/home/wbx/openadk/target_i586_eglibc/usr/include/stdint.h:154:0: warning: "__UINT64_C" redefined +:0:0: note: this is the location of the previous definition +conftest.c: In function 't': +conftest.c:5:53: error: 'ldap_compare_s' undeclared (first use in this function) +conftest.c:5:53: note: each undeclared identifier is reported only once for each function it appears in +checked program was: +/* begin */ +1: #include "ruby.h" +2: +3: /*top*/ +4: int main() {return 0;} +5: int t() { void ((*volatile p)()); p = (void ((*)()))ldap_compare_s; return 0; } +/* end */ + +"gcc -o conftest -I/home/wbx/openadk/host_i586_eglibc/include/ruby-1.9.1/x86_64-linux -I/home/wbx/openadk/host_i586_eglibc/include/ruby-1.9.1/ruby/backward -I/home/wbx/openadk/host_i586_eglibc/include/ruby-1.9.1 -I/home/wbx/openadk/build_pcengines-alix1c_i586_eglibc/w-ruby-ldap-0.9.8-1/ruby-ldap-0.9.8 -I/home/wbx/openadk/target_i586_eglibc/usr/include -O3 -ggdb -Wextra -Wno-unused-parameter -Wno-parentheses -Wno-long-long -Wno-missing-field-initializers -Wpointer-arith -Wwrite-strings -Wdeclaration-after-statement -Wimplicit-function-declaration conftest.c -L. -L/home/wbx/openadk/host_i586_eglibc/lib -Wl,-R/home/wbx/openadk/host_i586_eglibc/lib -L. -rdynamic -Wl,-export-dynamic -lresolv -lpthread -lssl -lcrypto -Wl,-R -Wl,/home/wbx/openadk/host_i586_eglibc/lib -L/home/wbx/openadk/host_i586_eglibc/lib -lruby-static -lresolv -lpthread -lssl -lcrypto -lpthread -lrt -ldl -lcrypt -lm -lc" +In file included from /home/wbx/openadk/host_i586_eglibc/include/ruby-1.9.1/ruby/ruby.h:58:0, + from /home/wbx/openadk/host_i586_eglibc/include/ruby-1.9.1/ruby.h:32, + from conftest.c:1: +/home/wbx/openadk/target_i586_eglibc/usr/include/stdint.h:153:0: warning: "__INT64_C" redefined +:0:0: note: this is the location of the previous definition +/home/wbx/openadk/target_i586_eglibc/usr/include/stdint.h:154:0: warning: "__UINT64_C" redefined +:0:0: note: this is the location of the previous definition +conftest.c: In function 't': +conftest.c:5:1: warning: implicit declaration of function 'ldap_compare_s' +/tmp/ccUe1xDQ.o: In function `t': +/home/wbx/openadk/package/ruby-ldap/conftest.c:5: undefined reference to `ldap_compare_s' +collect2: ld returned 1 exit status +checked program was: +/* begin */ +1: #include "ruby.h" +2: +3: /*top*/ +4: int main() {return 0;} +5: int t() { ldap_compare_s(); return 0; } +/* end */ + +-------------------- + +have_func: checking for ldap_add_ext_s()... -------------------- no + +"gcc -o conftest -I/home/wbx/openadk/host_i586_eglibc/include/ruby-1.9.1/x86_64-linux -I/home/wbx/openadk/host_i586_eglibc/include/ruby-1.9.1/ruby/backward -I/home/wbx/openadk/host_i586_eglibc/include/ruby-1.9.1 -I/home/wbx/openadk/build_pcengines-alix1c_i586_eglibc/w-ruby-ldap-0.9.8-1/ruby-ldap-0.9.8 -I/home/wbx/openadk/target_i586_eglibc/usr/include -O3 -ggdb -Wextra -Wno-unused-parameter -Wno-parentheses -Wno-long-long -Wno-missing-field-initializers -Wpointer-arith -Wwrite-strings -Wdeclaration-after-statement -Wimplicit-function-declaration conftest.c -L. -L/home/wbx/openadk/host_i586_eglibc/lib -Wl,-R/home/wbx/openadk/host_i586_eglibc/lib -L. -rdynamic -Wl,-export-dynamic -lresolv -lpthread -lssl -lcrypto -Wl,-R -Wl,/home/wbx/openadk/host_i586_eglibc/lib -L/home/wbx/openadk/host_i586_eglibc/lib -lruby-static -lresolv -lpthread -lssl -lcrypto -lpthread -lrt -ldl -lcrypt -lm -lc" +In file included from /home/wbx/openadk/host_i586_eglibc/include/ruby-1.9.1/ruby/ruby.h:58:0, + from /home/wbx/openadk/host_i586_eglibc/include/ruby-1.9.1/ruby.h:32, + from conftest.c:1: +/home/wbx/openadk/target_i586_eglibc/usr/include/stdint.h:153:0: warning: "__INT64_C" redefined +:0:0: note: this is the location of the previous definition +/home/wbx/openadk/target_i586_eglibc/usr/include/stdint.h:154:0: warning: "__UINT64_C" redefined +:0:0: note: this is the location of the previous definition +conftest.c: In function 't': +conftest.c:5:53: error: 'ldap_add_ext_s' undeclared (first use in this function) +conftest.c:5:53: note: each undeclared identifier is reported only once for each function it appears in +checked program was: +/* begin */ +1: #include "ruby.h" +2: +3: /*top*/ +4: int main() {return 0;} +5: int t() { void ((*volatile p)()); p = (void ((*)()))ldap_add_ext_s; return 0; } +/* end */ + +"gcc -o conftest -I/home/wbx/openadk/host_i586_eglibc/include/ruby-1.9.1/x86_64-linux -I/home/wbx/openadk/host_i586_eglibc/include/ruby-1.9.1/ruby/backward -I/home/wbx/openadk/host_i586_eglibc/include/ruby-1.9.1 -I/home/wbx/openadk/build_pcengines-alix1c_i586_eglibc/w-ruby-ldap-0.9.8-1/ruby-ldap-0.9.8 -I/home/wbx/openadk/target_i586_eglibc/usr/include -O3 -ggdb -Wextra -Wno-unused-parameter -Wno-parentheses -Wno-long-long -Wno-missing-field-initializers -Wpointer-arith -Wwrite-strings -Wdeclaration-after-statement -Wimplicit-function-declaration conftest.c -L. -L/home/wbx/openadk/host_i586_eglibc/lib -Wl,-R/home/wbx/openadk/host_i586_eglibc/lib -L. -rdynamic -Wl,-export-dynamic -lresolv -lpthread -lssl -lcrypto -Wl,-R -Wl,/home/wbx/openadk/host_i586_eglibc/lib -L/home/wbx/openadk/host_i586_eglibc/lib -lruby-static -lresolv -lpthread -lssl -lcrypto -lpthread -lrt -ldl -lcrypt -lm -lc" +In file included from /home/wbx/openadk/host_i586_eglibc/include/ruby-1.9.1/ruby/ruby.h:58:0, + from /home/wbx/openadk/host_i586_eglibc/include/ruby-1.9.1/ruby.h:32, + from conftest.c:1: +/home/wbx/openadk/target_i586_eglibc/usr/include/stdint.h:153:0: warning: "__INT64_C" redefined +:0:0: note: this is the location of the previous definition +/home/wbx/openadk/target_i586_eglibc/usr/include/stdint.h:154:0: warning: "__UINT64_C" redefined +:0:0: note: this is the location of the previous definition +conftest.c: In function 't': +conftest.c:5:1: warning: implicit declaration of function 'ldap_add_ext_s' +/tmp/ccG0uqq4.o: In function `t': +/home/wbx/openadk/package/ruby-ldap/conftest.c:5: undefined reference to `ldap_add_ext_s' +collect2: ld returned 1 exit status +checked program was: +/* begin */ +1: #include "ruby.h" +2: +3: /*top*/ +4: int main() {return 0;} +5: int t() { ldap_add_ext_s(); return 0; } +/* end */ + +-------------------- + +have_func: checking for ldap_compare_ext_s()... -------------------- no + +"gcc -o conftest -I/home/wbx/openadk/host_i586_eglibc/include/ruby-1.9.1/x86_64-linux -I/home/wbx/openadk/host_i586_eglibc/include/ruby-1.9.1/ruby/backward -I/home/wbx/openadk/host_i586_eglibc/include/ruby-1.9.1 -I/home/wbx/openadk/build_pcengines-alix1c_i586_eglibc/w-ruby-ldap-0.9.8-1/ruby-ldap-0.9.8 -I/home/wbx/openadk/target_i586_eglibc/usr/include -O3 -ggdb -Wextra -Wno-unused-parameter -Wno-parentheses -Wno-long-long -Wno-missing-field-initializers -Wpointer-arith -Wwrite-strings -Wdeclaration-after-statement -Wimplicit-function-declaration conftest.c -L. -L/home/wbx/openadk/host_i586_eglibc/lib -Wl,-R/home/wbx/openadk/host_i586_eglibc/lib -L. -rdynamic -Wl,-export-dynamic -lresolv -lpthread -lssl -lcrypto -Wl,-R -Wl,/home/wbx/openadk/host_i586_eglibc/lib -L/home/wbx/openadk/host_i586_eglibc/lib -lruby-static -lresolv -lpthread -lssl -lcrypto -lpthread -lrt -ldl -lcrypt -lm -lc" +In file included from /home/wbx/openadk/host_i586_eglibc/include/ruby-1.9.1/ruby/ruby.h:58:0, + from /home/wbx/openadk/host_i586_eglibc/include/ruby-1.9.1/ruby.h:32, + from conftest.c:1: +/home/wbx/openadk/target_i586_eglibc/usr/include/stdint.h:153:0: warning: "__INT64_C" redefined +:0:0: note: this is the location of the previous definition +/home/wbx/openadk/target_i586_eglibc/usr/include/stdint.h:154:0: warning: "__UINT64_C" redefined +:0:0: note: this is the location of the previous definition +conftest.c: In function 't': +conftest.c:5:53: error: 'ldap_compare_ext_s' undeclared (first use in this function) +conftest.c:5:53: note: each undeclared identifier is reported only once for each function it appears in +checked program was: +/* begin */ +1: #include "ruby.h" +2: +3: /*top*/ +4: int main() {return 0;} +5: int t() { void ((*volatile p)()); p = (void ((*)()))ldap_compare_ext_s; return 0; } +/* end */ + +"gcc -o conftest -I/home/wbx/openadk/host_i586_eglibc/include/ruby-1.9.1/x86_64-linux -I/home/wbx/openadk/host_i586_eglibc/include/ruby-1.9.1/ruby/backward -I/home/wbx/openadk/host_i586_eglibc/include/ruby-1.9.1 -I/home/wbx/openadk/build_pcengines-alix1c_i586_eglibc/w-ruby-ldap-0.9.8-1/ruby-ldap-0.9.8 -I/home/wbx/openadk/target_i586_eglibc/usr/include -O3 -ggdb -Wextra -Wno-unused-parameter -Wno-parentheses -Wno-long-long -Wno-missing-field-initializers -Wpointer-arith -Wwrite-strings -Wdeclaration-after-statement -Wimplicit-function-declaration conftest.c -L. -L/home/wbx/openadk/host_i586_eglibc/lib -Wl,-R/home/wbx/openadk/host_i586_eglibc/lib -L. -rdynamic -Wl,-export-dynamic -lresolv -lpthread -lssl -lcrypto -Wl,-R -Wl,/home/wbx/openadk/host_i586_eglibc/lib -L/home/wbx/openadk/host_i586_eglibc/lib -lruby-static -lresolv -lpthread -lssl -lcrypto -lpthread -lrt -ldl -lcrypt -lm -lc" +In file included from /home/wbx/openadk/host_i586_eglibc/include/ruby-1.9.1/ruby/ruby.h:58:0, + from /home/wbx/openadk/host_i586_eglibc/include/ruby-1.9.1/ruby.h:32, + from conftest.c:1: +/home/wbx/openadk/target_i586_eglibc/usr/include/stdint.h:153:0: warning: "__INT64_C" redefined +:0:0: note: this is the location of the previous definition +/home/wbx/openadk/target_i586_eglibc/usr/include/stdint.h:154:0: warning: "__UINT64_C" redefined +:0:0: note: this is the location of the previous definition +conftest.c: In function 't': +conftest.c:5:1: warning: implicit declaration of function 'ldap_compare_ext_s' +/tmp/cckVkksg.o: In function `t': +/home/wbx/openadk/package/ruby-ldap/conftest.c:5: undefined reference to `ldap_compare_ext_s' +collect2: ld returned 1 exit status +checked program was: +/* begin */ +1: #include "ruby.h" +2: +3: /*top*/ +4: int main() {return 0;} +5: int t() { ldap_compare_ext_s(); return 0; } +/* end */ + +-------------------- + +have_func: checking for ldap_delete_ext_s()... -------------------- no + +"gcc -o conftest -I/home/wbx/openadk/host_i586_eglibc/include/ruby-1.9.1/x86_64-linux -I/home/wbx/openadk/host_i586_eglibc/include/ruby-1.9.1/ruby/backward -I/home/wbx/openadk/host_i586_eglibc/include/ruby-1.9.1 -I/home/wbx/openadk/build_pcengines-alix1c_i586_eglibc/w-ruby-ldap-0.9.8-1/ruby-ldap-0.9.8 -I/home/wbx/openadk/target_i586_eglibc/usr/include -O3 -ggdb -Wextra -Wno-unused-parameter -Wno-parentheses -Wno-long-long -Wno-missing-field-initializers -Wpointer-arith -Wwrite-strings -Wdeclaration-after-statement -Wimplicit-function-declaration conftest.c -L. -L/home/wbx/openadk/host_i586_eglibc/lib -Wl,-R/home/wbx/openadk/host_i586_eglibc/lib -L. -rdynamic -Wl,-export-dynamic -lresolv -lpthread -lssl -lcrypto -Wl,-R -Wl,/home/wbx/openadk/host_i586_eglibc/lib -L/home/wbx/openadk/host_i586_eglibc/lib -lruby-static -lresolv -lpthread -lssl -lcrypto -lpthread -lrt -ldl -lcrypt -lm -lc" +In file included from /home/wbx/openadk/host_i586_eglibc/include/ruby-1.9.1/ruby/ruby.h:58:0, + from /home/wbx/openadk/host_i586_eglibc/include/ruby-1.9.1/ruby.h:32, + from conftest.c:1: +/home/wbx/openadk/target_i586_eglibc/usr/include/stdint.h:153:0: warning: "__INT64_C" redefined +:0:0: note: this is the location of the previous definition +/home/wbx/openadk/target_i586_eglibc/usr/include/stdint.h:154:0: warning: "__UINT64_C" redefined +:0:0: note: this is the location of the previous definition +conftest.c: In function 't': +conftest.c:5:53: error: 'ldap_delete_ext_s' undeclared (first use in this function) +conftest.c:5:53: note: each undeclared identifier is reported only once for each function it appears in +checked program was: +/* begin */ +1: #include "ruby.h" +2: +3: /*top*/ +4: int main() {return 0;} +5: int t() { void ((*volatile p)()); p = (void ((*)()))ldap_delete_ext_s; return 0; } +/* end */ + +"gcc -o conftest -I/home/wbx/openadk/host_i586_eglibc/include/ruby-1.9.1/x86_64-linux -I/home/wbx/openadk/host_i586_eglibc/include/ruby-1.9.1/ruby/backward -I/home/wbx/openadk/host_i586_eglibc/include/ruby-1.9.1 -I/home/wbx/openadk/build_pcengines-alix1c_i586_eglibc/w-ruby-ldap-0.9.8-1/ruby-ldap-0.9.8 -I/home/wbx/openadk/target_i586_eglibc/usr/include -O3 -ggdb -Wextra -Wno-unused-parameter -Wno-parentheses -Wno-long-long -Wno-missing-field-initializers -Wpointer-arith -Wwrite-strings -Wdeclaration-after-statement -Wimplicit-function-declaration conftest.c -L. -L/home/wbx/openadk/host_i586_eglibc/lib -Wl,-R/home/wbx/openadk/host_i586_eglibc/lib -L. -rdynamic -Wl,-export-dynamic -lresolv -lpthread -lssl -lcrypto -Wl,-R -Wl,/home/wbx/openadk/host_i586_eglibc/lib -L/home/wbx/openadk/host_i586_eglibc/lib -lruby-static -lresolv -lpthread -lssl -lcrypto -lpthread -lrt -ldl -lcrypt -lm -lc" +In file included from /home/wbx/openadk/host_i586_eglibc/include/ruby-1.9.1/ruby/ruby.h:58:0, + from /home/wbx/openadk/host_i586_eglibc/include/ruby-1.9.1/ruby.h:32, + from conftest.c:1: +/home/wbx/openadk/target_i586_eglibc/usr/include/stdint.h:153:0: warning: "__INT64_C" redefined +:0:0: note: this is the location of the previous definition +/home/wbx/openadk/target_i586_eglibc/usr/include/stdint.h:154:0: warning: "__UINT64_C" redefined +:0:0: note: this is the location of the previous definition +conftest.c: In function 't': +conftest.c:5:1: warning: implicit declaration of function 'ldap_delete_ext_s' +/tmp/ccpiZQwp.o: In function `t': +/home/wbx/openadk/package/ruby-ldap/conftest.c:5: undefined reference to `ldap_delete_ext_s' +collect2: ld returned 1 exit status +checked program was: +/* begin */ +1: #include "ruby.h" +2: +3: /*top*/ +4: int main() {return 0;} +5: int t() { ldap_delete_ext_s(); return 0; } +/* end */ + +-------------------- + +have_func: checking for ldap_modify_ext_s()... -------------------- no + +"gcc -o conftest -I/home/wbx/openadk/host_i586_eglibc/include/ruby-1.9.1/x86_64-linux -I/home/wbx/openadk/host_i586_eglibc/include/ruby-1.9.1/ruby/backward -I/home/wbx/openadk/host_i586_eglibc/include/ruby-1.9.1 -I/home/wbx/openadk/build_pcengines-alix1c_i586_eglibc/w-ruby-ldap-0.9.8-1/ruby-ldap-0.9.8 -I/home/wbx/openadk/target_i586_eglibc/usr/include -O3 -ggdb -Wextra -Wno-unused-parameter -Wno-parentheses -Wno-long-long -Wno-missing-field-initializers -Wpointer-arith -Wwrite-strings -Wdeclaration-after-statement -Wimplicit-function-declaration conftest.c -L. -L/home/wbx/openadk/host_i586_eglibc/lib -Wl,-R/home/wbx/openadk/host_i586_eglibc/lib -L. -rdynamic -Wl,-export-dynamic -lresolv -lpthread -lssl -lcrypto -Wl,-R -Wl,/home/wbx/openadk/host_i586_eglibc/lib -L/home/wbx/openadk/host_i586_eglibc/lib -lruby-static -lresolv -lpthread -lssl -lcrypto -lpthread -lrt -ldl -lcrypt -lm -lc" +In file included from /home/wbx/openadk/host_i586_eglibc/include/ruby-1.9.1/ruby/ruby.h:58:0, + from /home/wbx/openadk/host_i586_eglibc/include/ruby-1.9.1/ruby.h:32, + from conftest.c:1: +/home/wbx/openadk/target_i586_eglibc/usr/include/stdint.h:153:0: warning: "__INT64_C" redefined +:0:0: note: this is the location of the previous definition +/home/wbx/openadk/target_i586_eglibc/usr/include/stdint.h:154:0: warning: "__UINT64_C" redefined +:0:0: note: this is the location of the previous definition +conftest.c: In function 't': +conftest.c:5:53: error: 'ldap_modify_ext_s' undeclared (first use in this function) +conftest.c:5:53: note: each undeclared identifier is reported only once for each function it appears in +checked program was: +/* begin */ +1: #include "ruby.h" +2: +3: /*top*/ +4: int main() {return 0;} +5: int t() { void ((*volatile p)()); p = (void ((*)()))ldap_modify_ext_s; return 0; } +/* end */ + +"gcc -o conftest -I/home/wbx/openadk/host_i586_eglibc/include/ruby-1.9.1/x86_64-linux -I/home/wbx/openadk/host_i586_eglibc/include/ruby-1.9.1/ruby/backward -I/home/wbx/openadk/host_i586_eglibc/include/ruby-1.9.1 -I/home/wbx/openadk/build_pcengines-alix1c_i586_eglibc/w-ruby-ldap-0.9.8-1/ruby-ldap-0.9.8 -I/home/wbx/openadk/target_i586_eglibc/usr/include -O3 -ggdb -Wextra -Wno-unused-parameter -Wno-parentheses -Wno-long-long -Wno-missing-field-initializers -Wpointer-arith -Wwrite-strings -Wdeclaration-after-statement -Wimplicit-function-declaration conftest.c -L. -L/home/wbx/openadk/host_i586_eglibc/lib -Wl,-R/home/wbx/openadk/host_i586_eglibc/lib -L. -rdynamic -Wl,-export-dynamic -lresolv -lpthread -lssl -lcrypto -Wl,-R -Wl,/home/wbx/openadk/host_i586_eglibc/lib -L/home/wbx/openadk/host_i586_eglibc/lib -lruby-static -lresolv -lpthread -lssl -lcrypto -lpthread -lrt -ldl -lcrypt -lm -lc" +In file included from /home/wbx/openadk/host_i586_eglibc/include/ruby-1.9.1/ruby/ruby.h:58:0, + from /home/wbx/openadk/host_i586_eglibc/include/ruby-1.9.1/ruby.h:32, + from conftest.c:1: +/home/wbx/openadk/target_i586_eglibc/usr/include/stdint.h:153:0: warning: "__INT64_C" redefined +:0:0: note: this is the location of the previous definition +/home/wbx/openadk/target_i586_eglibc/usr/include/stdint.h:154:0: warning: "__UINT64_C" redefined +:0:0: note: this is the location of the previous definition +conftest.c: In function 't': +conftest.c:5:1: warning: implicit declaration of function 'ldap_modify_ext_s' +/tmp/ccKSlZ7r.o: In function `t': +/home/wbx/openadk/package/ruby-ldap/conftest.c:5: undefined reference to `ldap_modify_ext_s' +collect2: ld returned 1 exit status +checked program was: +/* begin */ +1: #include "ruby.h" +2: +3: /*top*/ +4: int main() {return 0;} +5: int t() { ldap_modify_ext_s(); return 0; } +/* end */ + +-------------------- + +have_func: checking for ldap_search_ext_s()... -------------------- no + +"gcc -o conftest -I/home/wbx/openadk/host_i586_eglibc/include/ruby-1.9.1/x86_64-linux -I/home/wbx/openadk/host_i586_eglibc/include/ruby-1.9.1/ruby/backward -I/home/wbx/openadk/host_i586_eglibc/include/ruby-1.9.1 -I/home/wbx/openadk/build_pcengines-alix1c_i586_eglibc/w-ruby-ldap-0.9.8-1/ruby-ldap-0.9.8 -I/home/wbx/openadk/target_i586_eglibc/usr/include -O3 -ggdb -Wextra -Wno-unused-parameter -Wno-parentheses -Wno-long-long -Wno-missing-field-initializers -Wpointer-arith -Wwrite-strings -Wdeclaration-after-statement -Wimplicit-function-declaration conftest.c -L. -L/home/wbx/openadk/host_i586_eglibc/lib -Wl,-R/home/wbx/openadk/host_i586_eglibc/lib -L. -rdynamic -Wl,-export-dynamic -lresolv -lpthread -lssl -lcrypto -Wl,-R -Wl,/home/wbx/openadk/host_i586_eglibc/lib -L/home/wbx/openadk/host_i586_eglibc/lib -lruby-static -lresolv -lpthread -lssl -lcrypto -lpthread -lrt -ldl -lcrypt -lm -lc" +In file included from /home/wbx/openadk/host_i586_eglibc/include/ruby-1.9.1/ruby/ruby.h:58:0, + from /home/wbx/openadk/host_i586_eglibc/include/ruby-1.9.1/ruby.h:32, + from conftest.c:1: +/home/wbx/openadk/target_i586_eglibc/usr/include/stdint.h:153:0: warning: "__INT64_C" redefined +:0:0: note: this is the location of the previous definition +/home/wbx/openadk/target_i586_eglibc/usr/include/stdint.h:154:0: warning: "__UINT64_C" redefined +:0:0: note: this is the location of the previous definition +conftest.c: In function 't': +conftest.c:5:53: error: 'ldap_search_ext_s' undeclared (first use in this function) +conftest.c:5:53: note: each undeclared identifier is reported only once for each function it appears in +checked program was: +/* begin */ +1: #include "ruby.h" +2: +3: /*top*/ +4: int main() {return 0;} +5: int t() { void ((*volatile p)()); p = (void ((*)()))ldap_search_ext_s; return 0; } +/* end */ + +"gcc -o conftest -I/home/wbx/openadk/host_i586_eglibc/include/ruby-1.9.1/x86_64-linux -I/home/wbx/openadk/host_i586_eglibc/include/ruby-1.9.1/ruby/backward -I/home/wbx/openadk/host_i586_eglibc/include/ruby-1.9.1 -I/home/wbx/openadk/build_pcengines-alix1c_i586_eglibc/w-ruby-ldap-0.9.8-1/ruby-ldap-0.9.8 -I/home/wbx/openadk/target_i586_eglibc/usr/include -O3 -ggdb -Wextra -Wno-unused-parameter -Wno-parentheses -Wno-long-long -Wno-missing-field-initializers -Wpointer-arith -Wwrite-strings -Wdeclaration-after-statement -Wimplicit-function-declaration conftest.c -L. -L/home/wbx/openadk/host_i586_eglibc/lib -Wl,-R/home/wbx/openadk/host_i586_eglibc/lib -L. -rdynamic -Wl,-export-dynamic -lresolv -lpthread -lssl -lcrypto -Wl,-R -Wl,/home/wbx/openadk/host_i586_eglibc/lib -L/home/wbx/openadk/host_i586_eglibc/lib -lruby-static -lresolv -lpthread -lssl -lcrypto -lpthread -lrt -ldl -lcrypt -lm -lc" +In file included from /home/wbx/openadk/host_i586_eglibc/include/ruby-1.9.1/ruby/ruby.h:58:0, + from /home/wbx/openadk/host_i586_eglibc/include/ruby-1.9.1/ruby.h:32, + from conftest.c:1: +/home/wbx/openadk/target_i586_eglibc/usr/include/stdint.h:153:0: warning: "__INT64_C" redefined +:0:0: note: this is the location of the previous definition +/home/wbx/openadk/target_i586_eglibc/usr/include/stdint.h:154:0: warning: "__UINT64_C" redefined +:0:0: note: this is the location of the previous definition +conftest.c: In function 't': +conftest.c:5:1: warning: implicit declaration of function 'ldap_search_ext_s' +/tmp/ccqWVYUF.o: In function `t': +/home/wbx/openadk/package/ruby-ldap/conftest.c:5: undefined reference to `ldap_search_ext_s' +collect2: ld returned 1 exit status +checked program was: +/* begin */ +1: #include "ruby.h" +2: +3: /*top*/ +4: int main() {return 0;} +5: int t() { ldap_search_ext_s(); return 0; } +/* end */ + +-------------------- + +have_func: checking for ldap_unbind_ext_s()... -------------------- no + +"gcc -o conftest -I/home/wbx/openadk/host_i586_eglibc/include/ruby-1.9.1/x86_64-linux -I/home/wbx/openadk/host_i586_eglibc/include/ruby-1.9.1/ruby/backward -I/home/wbx/openadk/host_i586_eglibc/include/ruby-1.9.1 -I/home/wbx/openadk/build_pcengines-alix1c_i586_eglibc/w-ruby-ldap-0.9.8-1/ruby-ldap-0.9.8 -I/home/wbx/openadk/target_i586_eglibc/usr/include -O3 -ggdb -Wextra -Wno-unused-parameter -Wno-parentheses -Wno-long-long -Wno-missing-field-initializers -Wpointer-arith -Wwrite-strings -Wdeclaration-after-statement -Wimplicit-function-declaration conftest.c -L. -L/home/wbx/openadk/host_i586_eglibc/lib -Wl,-R/home/wbx/openadk/host_i586_eglibc/lib -L. -rdynamic -Wl,-export-dynamic -lresolv -lpthread -lssl -lcrypto -Wl,-R -Wl,/home/wbx/openadk/host_i586_eglibc/lib -L/home/wbx/openadk/host_i586_eglibc/lib -lruby-static -lresolv -lpthread -lssl -lcrypto -lpthread -lrt -ldl -lcrypt -lm -lc" +In file included from /home/wbx/openadk/host_i586_eglibc/include/ruby-1.9.1/ruby/ruby.h:58:0, + from /home/wbx/openadk/host_i586_eglibc/include/ruby-1.9.1/ruby.h:32, + from conftest.c:1: +/home/wbx/openadk/target_i586_eglibc/usr/include/stdint.h:153:0: warning: "__INT64_C" redefined +:0:0: note: this is the location of the previous definition +/home/wbx/openadk/target_i586_eglibc/usr/include/stdint.h:154:0: warning: "__UINT64_C" redefined +:0:0: note: this is the location of the previous definition +conftest.c: In function 't': +conftest.c:5:53: error: 'ldap_unbind_ext_s' undeclared (first use in this function) +conftest.c:5:53: note: each undeclared identifier is reported only once for each function it appears in +checked program was: +/* begin */ +1: #include "ruby.h" +2: +3: /*top*/ +4: int main() {return 0;} +5: int t() { void ((*volatile p)()); p = (void ((*)()))ldap_unbind_ext_s; return 0; } +/* end */ + +"gcc -o conftest -I/home/wbx/openadk/host_i586_eglibc/include/ruby-1.9.1/x86_64-linux -I/home/wbx/openadk/host_i586_eglibc/include/ruby-1.9.1/ruby/backward -I/home/wbx/openadk/host_i586_eglibc/include/ruby-1.9.1 -I/home/wbx/openadk/build_pcengines-alix1c_i586_eglibc/w-ruby-ldap-0.9.8-1/ruby-ldap-0.9.8 -I/home/wbx/openadk/target_i586_eglibc/usr/include -O3 -ggdb -Wextra -Wno-unused-parameter -Wno-parentheses -Wno-long-long -Wno-missing-field-initializers -Wpointer-arith -Wwrite-strings -Wdeclaration-after-statement -Wimplicit-function-declaration conftest.c -L. -L/home/wbx/openadk/host_i586_eglibc/lib -Wl,-R/home/wbx/openadk/host_i586_eglibc/lib -L. -rdynamic -Wl,-export-dynamic -lresolv -lpthread -lssl -lcrypto -Wl,-R -Wl,/home/wbx/openadk/host_i586_eglibc/lib -L/home/wbx/openadk/host_i586_eglibc/lib -lruby-static -lresolv -lpthread -lssl -lcrypto -lpthread -lrt -ldl -lcrypt -lm -lc" +In file included from /home/wbx/openadk/host_i586_eglibc/include/ruby-1.9.1/ruby/ruby.h:58:0, + from /home/wbx/openadk/host_i586_eglibc/include/ruby-1.9.1/ruby.h:32, + from conftest.c:1: +/home/wbx/openadk/target_i586_eglibc/usr/include/stdint.h:153:0: warning: "__INT64_C" redefined +:0:0: note: this is the location of the previous definition +/home/wbx/openadk/target_i586_eglibc/usr/include/stdint.h:154:0: warning: "__UINT64_C" redefined +:0:0: note: this is the location of the previous definition +conftest.c: In function 't': +conftest.c:5:1: warning: implicit declaration of function 'ldap_unbind_ext_s' +/tmp/ccxzROBP.o: In function `t': +/home/wbx/openadk/package/ruby-ldap/conftest.c:5: undefined reference to `ldap_unbind_ext_s' +collect2: ld returned 1 exit status +checked program was: +/* begin */ +1: #include "ruby.h" +2: +3: /*top*/ +4: int main() {return 0;} +5: int t() { ldap_unbind_ext_s(); return 0; } +/* end */ + +-------------------- + +have_func: checking for ldap_sasl_interactive_bind_s()... -------------------- no + +"gcc -o conftest -I/home/wbx/openadk/host_i586_eglibc/include/ruby-1.9.1/x86_64-linux -I/home/wbx/openadk/host_i586_eglibc/include/ruby-1.9.1/ruby/backward -I/home/wbx/openadk/host_i586_eglibc/include/ruby-1.9.1 -I/home/wbx/openadk/build_pcengines-alix1c_i586_eglibc/w-ruby-ldap-0.9.8-1/ruby-ldap-0.9.8 -I/home/wbx/openadk/target_i586_eglibc/usr/include -O3 -ggdb -Wextra -Wno-unused-parameter -Wno-parentheses -Wno-long-long -Wno-missing-field-initializers -Wpointer-arith -Wwrite-strings -Wdeclaration-after-statement -Wimplicit-function-declaration conftest.c -L. -L/home/wbx/openadk/host_i586_eglibc/lib -Wl,-R/home/wbx/openadk/host_i586_eglibc/lib -L. -rdynamic -Wl,-export-dynamic -lresolv -lpthread -lssl -lcrypto -Wl,-R -Wl,/home/wbx/openadk/host_i586_eglibc/lib -L/home/wbx/openadk/host_i586_eglibc/lib -lruby-static -lresolv -lpthread -lssl -lcrypto -lpthread -lrt -ldl -lcrypt -lm -lc" +In file included from /home/wbx/openadk/host_i586_eglibc/include/ruby-1.9.1/ruby/ruby.h:58:0, + from /home/wbx/openadk/host_i586_eglibc/include/ruby-1.9.1/ruby.h:32, + from conftest.c:1: +/home/wbx/openadk/target_i586_eglibc/usr/include/stdint.h:153:0: warning: "__INT64_C" redefined +:0:0: note: this is the location of the previous definition +/home/wbx/openadk/target_i586_eglibc/usr/include/stdint.h:154:0: warning: "__UINT64_C" redefined +:0:0: note: this is the location of the previous definition +conftest.c: In function 't': +conftest.c:5:53: error: 'ldap_sasl_interactive_bind_s' undeclared (first use in this function) +conftest.c:5:53: note: each undeclared identifier is reported only once for each function it appears in +checked program was: +/* begin */ +1: #include "ruby.h" +2: +3: /*top*/ +4: int main() {return 0;} +5: int t() { void ((*volatile p)()); p = (void ((*)()))ldap_sasl_interactive_bind_s; return 0; } +/* end */ + +"gcc -o conftest -I/home/wbx/openadk/host_i586_eglibc/include/ruby-1.9.1/x86_64-linux -I/home/wbx/openadk/host_i586_eglibc/include/ruby-1.9.1/ruby/backward -I/home/wbx/openadk/host_i586_eglibc/include/ruby-1.9.1 -I/home/wbx/openadk/build_pcengines-alix1c_i586_eglibc/w-ruby-ldap-0.9.8-1/ruby-ldap-0.9.8 -I/home/wbx/openadk/target_i586_eglibc/usr/include -O3 -ggdb -Wextra -Wno-unused-parameter -Wno-parentheses -Wno-long-long -Wno-missing-field-initializers -Wpointer-arith -Wwrite-strings -Wdeclaration-after-statement -Wimplicit-function-declaration conftest.c -L. -L/home/wbx/openadk/host_i586_eglibc/lib -Wl,-R/home/wbx/openadk/host_i586_eglibc/lib -L. -rdynamic -Wl,-export-dynamic -lresolv -lpthread -lssl -lcrypto -Wl,-R -Wl,/home/wbx/openadk/host_i586_eglibc/lib -L/home/wbx/openadk/host_i586_eglibc/lib -lruby-static -lresolv -lpthread -lssl -lcrypto -lpthread -lrt -ldl -lcrypt -lm -lc" +In file included from /home/wbx/openadk/host_i586_eglibc/include/ruby-1.9.1/ruby/ruby.h:58:0, + from /home/wbx/openadk/host_i586_eglibc/include/ruby-1.9.1/ruby.h:32, + from conftest.c:1: +/home/wbx/openadk/target_i586_eglibc/usr/include/stdint.h:153:0: warning: "__INT64_C" redefined +:0:0: note: this is the location of the previous definition +/home/wbx/openadk/target_i586_eglibc/usr/include/stdint.h:154:0: warning: "__UINT64_C" redefined +:0:0: note: this is the location of the previous definition +conftest.c: In function 't': +conftest.c:5:1: warning: implicit declaration of function 'ldap_sasl_interactive_bind_s' +/tmp/ccaSddl3.o: In function `t': +/home/wbx/openadk/package/ruby-ldap/conftest.c:5: undefined reference to `ldap_sasl_interactive_bind_s' +collect2: ld returned 1 exit status +checked program was: +/* begin */ +1: #include "ruby.h" +2: +3: /*top*/ +4: int main() {return 0;} +5: int t() { ldap_sasl_interactive_bind_s(); return 0; } +/* end */ + +-------------------- + diff --git a/package/ruby-ldap/patches/patch-conn_c b/package/ruby-ldap/patches/patch-conn_c new file mode 100644 index 000000000..368f3bc01 --- /dev/null +++ b/package/ruby-ldap/patches/patch-conn_c @@ -0,0 +1,24 @@ +--- ruby-ldap-0.9.8.orig/conn.c 2009-03-25 10:25:27.000000000 +0100 ++++ ruby-ldap-0.9.8/conn.c 2011-11-15 10:22:30.847665438 +0100 +@@ -497,8 +497,8 @@ rb_ldap_conn_set_option (VALUE self, VAL + #ifdef LDAP_OPT_X_TLS_KEYFILE + case LDAP_OPT_X_TLS_KEYFILE: + #endif +-#ifdef LDAP_OPT_X_TLS_PROTOCOL +- case LDAP_OPT_X_TLS_PROTOCOL: ++#ifdef LDAP_OPT_X_TLS_PROTOCOL_MIN ++ case LDAP_OPT_X_TLS_PROTOCOL_MIN: + #endif + #ifdef LDAP_OPT_X_TLS_CIPHER_SUITE + case LDAP_OPT_X_TLS_CIPHER_SUITE: +@@ -627,8 +627,8 @@ rb_ldap_conn_get_option (VALUE self, VAL + #ifdef LDAP_OPT_X_TLS_KEYFILE + case LDAP_OPT_X_TLS_KEYFILE: + #endif +-#ifdef LDAP_OPT_X_TLS_PROTOCOL +- case LDAP_OPT_X_TLS_PROTOCOL: ++#ifdef LDAP_OPT_X_TLS_PROTOCOL_MIN ++ case LDAP_OPT_X_TLS_PROTOCOL_MIN: + #endif + #ifdef LDAP_OPT_X_TLS_CIPHER_SUITE + case LDAP_OPT_X_TLS_CIPHER_SUITE: diff --git a/package/ruby-ldap/patches/patch-ldap_c b/package/ruby-ldap/patches/patch-ldap_c new file mode 100644 index 000000000..09972e77c --- /dev/null +++ b/package/ruby-ldap/patches/patch-ldap_c @@ -0,0 +1,13 @@ +--- ruby-ldap-0.9.8.orig/ldap.c 2009-03-25 10:25:27.000000000 +0100 ++++ ruby-ldap-0.9.8/ldap.c 2011-11-15 10:22:06.187664814 +0100 +@@ -420,8 +420,8 @@ Init_ldap () + #ifdef LDAP_OPT_X_TLS + rb_ldap_define_opt (LDAP_OPT_X_TLS); + #endif +-#ifdef LDAP_OPT_X_TLS_PROTOCOL +- rb_ldap_define_opt (LDAP_OPT_X_TLS_PROTOCOL); ++#ifdef LDAP_OPT_X_TLS_PROTOCOL_MIN ++ rb_ldap_define_opt (LDAP_OPT_X_TLS_PROTOCOL_MIN); + #endif + #ifdef LDAP_OPT_X_TLS_CIPHER_SUITE + rb_ldap_define_opt (LDAP_OPT_X_TLS_CIPHER_SUITE); diff --git a/package/ruby/Makefile b/package/ruby/Makefile index ea2159d1c..d8d5f061a 100644 --- a/package/ruby/Makefile +++ b/package/ruby/Makefile @@ -27,7 +27,7 @@ MAKE_FILE:= GNUmakefile XAKE_FLAGS+= optflags='' debugflags='' dldflags="$(TARGET_LDFLAGS)" # uClibc setpgrp does not take arguments CONFIGURE_ENV+= ac_cv_func_setpgrp_void=yes rb_cv_binary_elf=yes -CONFIGURE_ARGS+= --disable-install-doc --with-baseruby=${WRKBUILD}/hostruby +CONFIGURE_ARGS+= --disable-install-doc --with-baseruby=${STAGING_DIR}/bin/ruby ALL_TARGET:= main INSTALL_TARGET:= install-nodoc @@ -36,7 +36,7 @@ pre-configure: rb_cv_binary_elf=yes ./configure --prefix=$(STAGING_HOST_DIR) --disable-install-doc \ ); -$(MAKE) -C ${WRKBUILD} main Q="" - cp ${WRKBUILD}/ruby ${WRKBUILD}/hostruby + cp ${WRKBUILD}/ruby ${STAGING_DIR}/bin/ruby $(MAKE) -C ${WRKBUILD} install-nodoc $(MAKE) -C ${WRKBUILD} clean -- cgit v1.2.3