public inbox for cygwin@cygwin.com
 help / color / mirror / Atom feed
* Build script error (libiconv + custom prefix)
@ 2012-08-28  3:45 Tasos Laskos
  2012-08-28  7:12 ` marco atzeri
  2012-08-28 18:30 ` Larry Hall (Cygwin)
  0 siblings, 2 replies; 10+ messages in thread
From: Tasos Laskos @ 2012-08-28  3:45 UTC (permalink / raw)
  To: cygwin

Hi folks,

I'm trying to port my project's [1] build/package script to Cygwin but 
I'm facing some difficulties during runtime.

It runs fine under Linux and OSX but I'm not sure if that's because 
these environments fulfil a dependency I'm unaware of, while Cygwin 
being a stripped down system does not, or something else.

Here's how to go about reproducing it.

To setup the Cygwin environment:
----------------------------
setup.exe -q -R c:\cygwin -l c:\cygwin-packages -P make,gcc,g++,perl,wget
----------------------------

To reproduce the issue open up the Cygwin shell:
----------------------------
mkdir lib
cd lib
wget --no-check-certificate 
https://raw.github.com/Arachni/arachni/experimental/external/scripts/lib/readlink_f.sh
cd ..
wget --no-check-certificate 
https://raw.github.com/Arachni/arachni/experimental/external/scripts/build.sh
bash build.sh
----------------------------

It fails when it tries to build the first dependency, libiconv, but I'm 
not sure why.
For some reason it looks for a /usr/lib/libiconv.la while it has been 
configured with a different prefix.

Anyone have any ideas?

Regards,
Tasos L.

[1] Arachni - http://arachni-scanner.com

--
Problem reports:       http://cygwin.com/problems.html
FAQ:                   http://cygwin.com/faq/
Documentation:         http://cygwin.com/docs.html
Unsubscribe info:      http://cygwin.com/ml/#unsubscribe-simple

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

* Re: Build script error (libiconv + custom prefix)
  2012-08-28  3:45 Build script error (libiconv + custom prefix) Tasos Laskos
@ 2012-08-28  7:12 ` marco atzeri
  2012-08-28 18:30 ` Larry Hall (Cygwin)
  1 sibling, 0 replies; 10+ messages in thread
From: marco atzeri @ 2012-08-28  7:12 UTC (permalink / raw)
  To: cygwin

On 8/28/2012 2:08 AM, Tasos Laskos wrote:
> Hi folks,
>
> I'm trying to port my project's [1] build/package script to Cygwin but
> I'm facing some difficulties during runtime.
>
> It runs fine under Linux and OSX but I'm not sure if that's because
> these environments fulfil a dependency I'm unaware of, while Cygwin
> being a stripped down system does not, or something else.
>
> Here's how to go about reproducing it.
>
> To setup the Cygwin environment:
> ----------------------------
> setup.exe -q -R c:\cygwin -l c:\cygwin-packages -P make,gcc,g++,perl,wget
> ----------------------------
>
> To reproduce the issue open up the Cygwin shell:
> ----------------------------
> mkdir lib
> cd lib
> wget --no-check-certificate
> https://raw.github.com/Arachni/arachni/experimental/external/scripts/lib/readlink_f.sh
>
> cd ..
> wget --no-check-certificate
> https://raw.github.com/Arachni/arachni/experimental/external/scripts/build.sh
>
> bash build.sh
> ----------------------------
>
> It fails when it tries to build the first dependency, libiconv, but I'm
> not sure why.
> For some reason it looks for a /usr/lib/libiconv.la while it has been
> configured with a different prefix.
>
> Anyone have any ideas?
>
> Regards,
> Tasos L.
>
> [1] Arachni - http://arachni-scanner.com
>

what about using the cygwin libiconv ?

$ cygcheck -f /usr/lib/libiconv.la
libiconv-1.14-2

To successfully port a software to multiple platforms, I suggest you
to use Autoconf/Automake and use standard test to verify your dependency

     http://ftp.gnu.org/pub/gnu/libiconv/libiconv-1.14.tar.gz
     http://zlib.net/zlib-1.2.7.tar.gz
     http://www.openssl.org/source/openssl-1.0.1c.tar.gz
     http://www.sqlite.org/sqlite-autoconf-3071300.tar.gz
     ftp://xmlsoft.org/libxml2/libxml2-2.8.0.tar.gz
     ftp://xmlsoft.org/libxslt/libxslt-1.1.26.tar.gz
     http://curl.haxx.se/download/curl-7.26.0.tar.gz
     https://rvm.io/src/yaml-0.1.4.tar.gz
     http://ftp.ruby-lang.org/pub/ruby/1.9/ruby-1.9.3-p194.tar.gz

Please also look on existing cygwin packages at
http://cygwin.com/packages/
and install the relative devel packages

Regards
Marco


--
Problem reports:       http://cygwin.com/problems.html
FAQ:                   http://cygwin.com/faq/
Documentation:         http://cygwin.com/docs.html
Unsubscribe info:      http://cygwin.com/ml/#unsubscribe-simple

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

* Re: Build script error (libiconv + custom prefix)
  2012-08-28  3:45 Build script error (libiconv + custom prefix) Tasos Laskos
  2012-08-28  7:12 ` marco atzeri
@ 2012-08-28 18:30 ` Larry Hall (Cygwin)
  2012-08-28 19:52   ` Tasos Laskos
  1 sibling, 1 reply; 10+ messages in thread
From: Larry Hall (Cygwin) @ 2012-08-28 18:30 UTC (permalink / raw)
  To: cygwin

On 8/27/2012 8:08 PM, Tasos Laskos wrote:
> Hi folks,
>
> I'm trying to port my project's [1] build/package script to Cygwin but I'm
> facing some difficulties during runtime.
>
> It runs fine under Linux and OSX but I'm not sure if that's because these
> environments fulfil a dependency I'm unaware of, while Cygwin being a
> stripped down system does not, or something else.
>
> Here's how to go about reproducing it.
>
> To setup the Cygwin environment:
> ----------------------------
> setup.exe -q -R c:\cygwin -l c:\cygwin-packages -P make,gcc,g++,perl,wget
> ----------------------------
>
> To reproduce the issue open up the Cygwin shell:
> ----------------------------
> mkdir lib
> cd lib
> wget --no-check-certificate
> https://raw.github.com/Arachni/arachni/experimental/external/scripts/lib/readlink_f.sh
>
> cd ..
> wget --no-check-certificate
> https://raw.github.com/Arachni/arachni/experimental/external/scripts/build.sh
> bash build.sh
> ----------------------------
>
> It fails when it tries to build the first dependency, libiconv, but I'm not
> sure why.
> For some reason it looks for a /usr/lib/libiconv.la while it has been
> configured with a different prefix.
>
> Anyone have any ideas?

What's the failure?  Following your steps above I found build.sh built
libiconv fine for me.  If you're still having trouble and want to
follow-up, please send along your cygcheck -srv output as an attachment.
And of course there's Marco's point that libiconv-1.14 is available
already as a package, if that's all you need.

-- 
Larry

_____________________________________________________________________

A: Yes.
 > Q: Are you sure?
 >> A: Because it reverses the logical flow of conversation.
 >>> Q: Why is top posting annoying in email?

--
Problem reports:       http://cygwin.com/problems.html
FAQ:                   http://cygwin.com/faq/
Documentation:         http://cygwin.com/docs.html
Unsubscribe info:      http://cygwin.com/ml/#unsubscribe-simple

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

* Re: Build script error (libiconv + custom prefix)
  2012-08-28 18:30 ` Larry Hall (Cygwin)
@ 2012-08-28 19:52   ` Tasos Laskos
  2012-08-28 20:48     ` Larry Hall (Cygwin)
  0 siblings, 1 reply; 10+ messages in thread
From: Tasos Laskos @ 2012-08-28 19:52 UTC (permalink / raw)
  To: cygwin

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

Hi,

Thanks for the replies guys.

The purpose of the build.sh script is to setup a full env under the 
"arachni" dir which will include all system libs and other dependencies.

It also creates wrappers for the application's executables which setup 
env variables like PATH and LD_LIBRARY_PATH before running them.

The point of all this is that you'll be able to package up that dir and 
transfer it between boxes without worrying about dependencies.

It's meant to create a self-contained package, so I don't want to rely 
on what's already on the system.

I've attached the libiconv logfile and the cygcheck output.

Thanks again.


PS. Please skip any lectures you might be inclined to give, I know that 
this is a suboptimal solution for packaging and distribution but I've 
been through support hell in the past due to inconsistent system libs 
and messed up Ruby environments and problems with Ruby Gem versions.
No-matter the shortcomings, a fully controlled and self-contained 
environment is necessary.

On 08/28/2012 05:59 PM, Larry Hall (Cygwin) wrote:
> On 8/27/2012 8:08 PM, Tasos Laskos wrote:
>> Hi folks,
>>
>> I'm trying to port my project's [1] build/package script to Cygwin but
>> I'm
>> facing some difficulties during runtime.
>>
>> It runs fine under Linux and OSX but I'm not sure if that's because these
>> environments fulfil a dependency I'm unaware of, while Cygwin being a
>> stripped down system does not, or something else.
>>
>> Here's how to go about reproducing it.
>>
>> To setup the Cygwin environment:
>> ----------------------------
>> setup.exe -q -R c:\cygwin -l c:\cygwin-packages -P make,gcc,g++,perl,wget
>> ----------------------------
>>
>> To reproduce the issue open up the Cygwin shell:
>> ----------------------------
>> mkdir lib
>> cd lib
>> wget --no-check-certificate
>> https://raw.github.com/Arachni/arachni/experimental/external/scripts/lib/readlink_f.sh
>>
>>
>> cd ..
>> wget --no-check-certificate
>> https://raw.github.com/Arachni/arachni/experimental/external/scripts/build.sh
>>
>> bash build.sh
>> ----------------------------
>>
>> It fails when it tries to build the first dependency, libiconv, but
>> I'm not
>> sure why.
>> For some reason it looks for a /usr/lib/libiconv.la while it has been
>> configured with a different prefix.
>>
>> Anyone have any ideas?
>
> What's the failure?  Following your steps above I found build.sh built
> libiconv fine for me.  If you're still having trouble and want to
> follow-up, please send along your cygcheck -srv output as an attachment.
> And of course there's Marco's point that libiconv-1.14 is available
> already as a package, if that's all you need.
>


[-- Attachment #2: libiconv-error.txt --]
[-- Type: text/plain, Size: 103554 bytes --]

libiconv-1.14/
libiconv-1.14/libcharset/
libiconv-1.14/libcharset/configure
libiconv-1.14/libcharset/lib/
libiconv-1.14/libcharset/lib/relocatable.c
libiconv-1.14/libcharset/lib/localcharset.c
libiconv-1.14/libcharset/lib/relocatable.h
libiconv-1.14/libcharset/lib/ChangeLog
libiconv-1.14/libcharset/lib/ref-add.sin
libiconv-1.14/libcharset/lib/Makefile.in
libiconv-1.14/libcharset/lib/config.charset
libiconv-1.14/libcharset/lib/ref-del.sin
libiconv-1.14/libcharset/AUTHORS
libiconv-1.14/libcharset/DEPENDENCIES
libiconv-1.14/libcharset/autogen.sh
libiconv-1.14/libcharset/ChangeLog
libiconv-1.14/libcharset/configure.ac
libiconv-1.14/libcharset/include/
libiconv-1.14/libcharset/include/libcharset.h.in
libiconv-1.14/libcharset/include/export.h
libiconv-1.14/libcharset/include/localcharset.h.in
libiconv-1.14/libcharset/include/localcharset.h.build.in
libiconv-1.14/libcharset/INSTALL.generic
libiconv-1.14/libcharset/Makefile.in
libiconv-1.14/libcharset/djgpp/
libiconv-1.14/libcharset/djgpp/config.sed
libiconv-1.14/libcharset/djgpp/fnchange.lst
libiconv-1.14/libcharset/djgpp/fnchange.in
libiconv-1.14/libcharset/djgpp/config.site
libiconv-1.14/libcharset/djgpp/README.in
libiconv-1.14/libcharset/djgpp/Makefile.maint
libiconv-1.14/libcharset/djgpp/README
libiconv-1.14/libcharset/djgpp/config.bat
libiconv-1.14/libcharset/README.djgpp
libiconv-1.14/libcharset/README.woe32
libiconv-1.14/libcharset/config.h.in
libiconv-1.14/libcharset/tools/
libiconv-1.14/libcharset/tools/glibc-2.2-XF86-4.0.1f
libiconv-1.14/libcharset/tools/osf1-4.0d
libiconv-1.14/libcharset/tools/solaris-2.4
libiconv-1.14/libcharset/tools/aix-4.3.2
libiconv-1.14/libcharset/tools/solaris-2.7
libiconv-1.14/libcharset/tools/solaris-2.5.1
libiconv-1.14/libcharset/tools/solaris-2.6-cjk
libiconv-1.14/libcharset/tools/cygwin-1.7.2
libiconv-1.14/libcharset/tools/darwin-9.5
libiconv-1.14/libcharset/tools/darwin-6.8
libiconv-1.14/libcharset/tools/irix-6.5
libiconv-1.14/libcharset/tools/darwin-7.5
libiconv-1.14/libcharset/tools/all-charsets
libiconv-1.14/libcharset/tools/locale_codeset.c
libiconv-1.14/libcharset/tools/glibc-2.1.90
libiconv-1.14/libcharset/tools/osf1-5.1
libiconv-1.14/libcharset/tools/win32
libiconv-1.14/libcharset/tools/locale_x11encoding.c
libiconv-1.14/libcharset/tools/locale_charset.c
libiconv-1.14/libcharset/tools/glibc-2.2-XF86-3.3.6
libiconv-1.14/libcharset/tools/osf1-4.0a
libiconv-1.14/libcharset/tools/aix-4.2.0
libiconv-1.14/libcharset/tools/netbsd-3.0
libiconv-1.14/libcharset/tools/hpux-10.01
libiconv-1.14/libcharset/tools/all-locales
libiconv-1.14/libcharset/tools/aix-4.1.5
libiconv-1.14/libcharset/tools/hpux-11.00
libiconv-1.14/libcharset/tools/locale_monthnames.c
libiconv-1.14/libcharset/tools/freebsd-3.3
libiconv-1.14/libcharset/tools/locale_charmap
libiconv-1.14/libcharset/tools/aix-3.2.5
libiconv-1.14/libcharset/tools/glibc-2.1.3
libiconv-1.14/libcharset/tools/beos-5
libiconv-1.14/libcharset/tools/all-charsets-X11
libiconv-1.14/libcharset/tools/README
libiconv-1.14/libcharset/tools/hpux-10.20
libiconv-1.14/libcharset/tools/glibc-2.2
libiconv-1.14/libcharset/tools/solaris-2.6
libiconv-1.14/libcharset/tools/sunos-4.1.4
libiconv-1.14/libcharset/tools/openbsd-4.1
libiconv-1.14/libcharset/INTEGRATE
libiconv-1.14/libcharset/COPYING.LIB
libiconv-1.14/libcharset/NEWS
libiconv-1.14/libcharset/autoconf/
libiconv-1.14/libcharset/autoconf/aclocal.m4
libiconv-1.14/libcharset/README
libiconv-1.14/libcharset/Makefile.devel
libiconv-1.14/libcharset/HACKING
libiconv-1.14/libcharset/build-aux/
libiconv-1.14/libcharset/build-aux/mkinstalldirs
libiconv-1.14/libcharset/build-aux/config.guess
libiconv-1.14/libcharset/build-aux/install-sh
libiconv-1.14/libcharset/build-aux/config.libpath
libiconv-1.14/libcharset/build-aux/ltmain.sh
libiconv-1.14/libcharset/build-aux/config.sub
libiconv-1.14/libcharset/m4/
libiconv-1.14/libcharset/m4/lt~obsolete.m4
libiconv-1.14/libcharset/m4/libtool.m4
libiconv-1.14/libcharset/m4/ltoptions.m4
libiconv-1.14/libcharset/m4/relocatable-lib.m4
libiconv-1.14/libcharset/m4/glibc21.m4
libiconv-1.14/libcharset/m4/visibility.m4
libiconv-1.14/libcharset/m4/codeset.m4
libiconv-1.14/libcharset/m4/ltversion.m4
libiconv-1.14/libcharset/m4/fcntl-o.m4
libiconv-1.14/libcharset/m4/ltsugar.m4
libiconv-1.14/configure
libiconv-1.14/srclib/
libiconv-1.14/srclib/xreadlink.c
libiconv-1.14/srclib/read.c
libiconv-1.14/srclib/safe-read.c
libiconv-1.14/srclib/xmalloc.c
libiconv-1.14/srclib/relocwrapper.c
libiconv-1.14/srclib/stdio-write.c
libiconv-1.14/srclib/strerror-override.h
libiconv-1.14/srclib/relocatable.c
libiconv-1.14/srclib/unlocked-io.h
libiconv-1.14/srclib/stdlib.in.h
libiconv-1.14/srclib/areadlink.h
libiconv-1.14/srclib/sigprocmask.c
libiconv-1.14/srclib/progreloc.c
libiconv-1.14/srclib/error.c
libiconv-1.14/srclib/errno.in.h
libiconv-1.14/srclib/binary-io.h
libiconv-1.14/srclib/strerror.c
libiconv-1.14/srclib/sys_stat.in.h
libiconv-1.14/srclib/intprops.h
libiconv-1.14/srclib/relocatable.h
libiconv-1.14/srclib/setenv.c
libiconv-1.14/srclib/readlink.c
libiconv-1.14/srclib/uniwidth.in.h
libiconv-1.14/srclib/alloca.in.h
libiconv-1.14/srclib/streq.h
libiconv-1.14/srclib/dosname.h
libiconv-1.14/srclib/malloca.c
libiconv-1.14/srclib/localcharset.h
libiconv-1.14/srclib/Makefile.am
libiconv-1.14/srclib/malloca.valgrind
libiconv-1.14/srclib/careadlinkat.h
libiconv-1.14/srclib/memmove.c
libiconv-1.14/srclib/uniwidth/
libiconv-1.14/srclib/uniwidth/width.c
libiconv-1.14/srclib/uniwidth/cjk.h
libiconv-1.14/srclib/stdio.in.h
libiconv-1.14/srclib/safe-read.h
libiconv-1.14/srclib/progname.h
libiconv-1.14/srclib/xalloc.h
libiconv-1.14/srclib/c-ctype.c
libiconv-1.14/srclib/strerror-override.c
libiconv-1.14/srclib/Makefile.in
libiconv-1.14/srclib/allocator.c
libiconv-1.14/srclib/pathmax.h
libiconv-1.14/srclib/Makefile.gnulib
libiconv-1.14/srclib/careadlinkat.c
libiconv-1.14/srclib/canonicalize-lgpl.c
libiconv-1.14/srclib/verify.h
libiconv-1.14/srclib/areadlink.c
libiconv-1.14/srclib/stdint.in.h
libiconv-1.14/srclib/unitypes.in.h
libiconv-1.14/srclib/error.h
libiconv-1.14/srclib/xreadlink.h
libiconv-1.14/srclib/malloca.h
libiconv-1.14/srclib/c-ctype.h
libiconv-1.14/srclib/allocator.h
libiconv-1.14/srclib/unistd.in.h
libiconv-1.14/srclib/string.in.h
libiconv-1.14/srclib/stdbool.in.h
libiconv-1.14/srclib/stat.c
libiconv-1.14/srclib/time.in.h
libiconv-1.14/srclib/progname.c
libiconv-1.14/srclib/gettext.h
libiconv-1.14/srclib/xstrdup.c
libiconv-1.14/srclib/fcntl.in.h
libiconv-1.14/srclib/lstat.c
libiconv-1.14/srclib/stddef.in.h
libiconv-1.14/srclib/signal.in.h
libiconv-1.14/THANKS
libiconv-1.14/COPYING
libiconv-1.14/woe32dll/
libiconv-1.14/woe32dll/export.h
libiconv-1.14/woe32dll/iconv-exports.c
libiconv-1.14/aclocal.m4
libiconv-1.14/preload/
libiconv-1.14/preload/configure
libiconv-1.14/preload/aclocal.m4
libiconv-1.14/preload/configure.ac
libiconv-1.14/preload/Makefile.in
libiconv-1.14/preload/Makefile.devel
libiconv-1.14/os2/
libiconv-1.14/os2/iconv.def
libiconv-1.14/windows/
libiconv-1.14/windows/windres-options
libiconv-1.14/windows/iconv.rc
libiconv-1.14/windows/libiconv.rc
libiconv-1.14/PORTS
libiconv-1.14/po/
libiconv-1.14/po/zh_CN.po
libiconv-1.14/po/tr.po
libiconv-1.14/po/af.gmo
libiconv-1.14/po/de.gmo
libiconv-1.14/po/fi.gmo
libiconv-1.14/po/uk.gmo
libiconv-1.14/po/gl.gmo
libiconv-1.14/po/bg.po
libiconv-1.14/po/sl.po
libiconv-1.14/po/ja.po
libiconv-1.14/po/en@boldquot.header
libiconv-1.14/po/el.gmo
libiconv-1.14/po/pt_BR.gmo
libiconv-1.14/po/gl.po
libiconv-1.14/po/ru.gmo
libiconv-1.14/po/remove-potcdate.sin
libiconv-1.14/po/zh_TW.gmo
libiconv-1.14/po/pt_BR.po
libiconv-1.14/po/sv.gmo
libiconv-1.14/po/el.po
libiconv-1.14/po/fi.po
libiconv-1.14/po/eo.po
libiconv-1.14/po/POTFILES.in
libiconv-1.14/po/ro.po
libiconv-1.14/po/sk.gmo
libiconv-1.14/po/Makevars
libiconv-1.14/po/id.po
libiconv-1.14/po/insert-header.sin
libiconv-1.14/po/eo.gmo
libiconv-1.14/po/id.gmo
libiconv-1.14/po/sq.po
libiconv-1.14/po/en@quot.header
libiconv-1.14/po/ja.gmo
libiconv-1.14/po/es.gmo
libiconv-1.14/po/hr.gmo
libiconv-1.14/po/it.po
libiconv-1.14/po/uk.po
libiconv-1.14/po/ca.po
libiconv-1.14/po/fr.gmo
libiconv-1.14/po/ChangeLog
libiconv-1.14/po/tr.gmo
libiconv-1.14/po/wa.gmo
libiconv-1.14/po/ga.po
libiconv-1.14/po/cs.po
libiconv-1.14/po/vi.gmo
libiconv-1.14/po/Makefile.in.in
libiconv-1.14/po/da.po
libiconv-1.14/po/et.po
libiconv-1.14/po/rm.po
libiconv-1.14/po/boldquot.sed
libiconv-1.14/po/sr.po
libiconv-1.14/po/ca.gmo
libiconv-1.14/po/libiconv.pot
libiconv-1.14/po/de.po
libiconv-1.14/po/fr.po
libiconv-1.14/po/pl.gmo
libiconv-1.14/po/af.po
libiconv-1.14/po/quot.sed
libiconv-1.14/po/ga.gmo
libiconv-1.14/po/hu.gmo
libiconv-1.14/po/rm.gmo
libiconv-1.14/po/sq.gmo
libiconv-1.14/po/ro.gmo
libiconv-1.14/po/Rules-quot
libiconv-1.14/po/stamp-po
libiconv-1.14/po/da.gmo
libiconv-1.14/po/sl.gmo
libiconv-1.14/po/pl.po
libiconv-1.14/po/ru.po
libiconv-1.14/po/wa.po
libiconv-1.14/po/sk.po
libiconv-1.14/po/cs.gmo
libiconv-1.14/po/hr.po
libiconv-1.14/po/es.po
libiconv-1.14/po/vi.po
libiconv-1.14/po/hu.po
libiconv-1.14/po/it.gmo
libiconv-1.14/po/nl.po
libiconv-1.14/po/et.gmo
libiconv-1.14/po/LINGUAS
libiconv-1.14/po/sr.gmo
libiconv-1.14/po/zh_CN.gmo
libiconv-1.14/po/nl.gmo
libiconv-1.14/po/zh_TW.po
libiconv-1.14/po/bg.gmo
libiconv-1.14/po/sv.po
libiconv-1.14/src/
libiconv-1.14/src/Makefile.in
libiconv-1.14/src/iconv_no_i18n.c
libiconv-1.14/src/iconv.c
libiconv-1.14/man/
libiconv-1.14/man/iconvctl.3.html
libiconv-1.14/man/iconv_open.3
libiconv-1.14/man/iconv.1
libiconv-1.14/man/iconv_close.3
libiconv-1.14/man/iconvctl.3
libiconv-1.14/man/iconv_open_into.3.html
libiconv-1.14/man/Makefile.in
libiconv-1.14/man/iconv_close.3.html
libiconv-1.14/man/iconv.1.html
libiconv-1.14/man/iconv_open.3.html
libiconv-1.14/man/iconv.3.html
libiconv-1.14/man/iconv_open_into.3
libiconv-1.14/man/iconv.3
libiconv-1.14/ABOUT-NLS
libiconv-1.14/lib/
libiconv-1.14/lib/aliases_sysosf1.gperf
libiconv-1.14/lib/cp864.h
libiconv-1.14/lib/gbkext1.h
libiconv-1.14/lib/big5_2003.h
libiconv-1.14/lib/converters.h
libiconv-1.14/lib/cp1129.h
libiconv-1.14/lib/cp1133.h
libiconv-1.14/lib/tis620.h
libiconv-1.14/lib/utf7.h
libiconv-1.14/lib/utf32le.h
libiconv-1.14/lib/hkscs1999.h
libiconv-1.14/lib/mulelao.h
libiconv-1.14/lib/relocatable.c
libiconv-1.14/lib/gb18030.h
libiconv-1.14/lib/koi8_r.h
libiconv-1.14/lib/iso8859_6.h
libiconv-1.14/lib/utf16le.h
libiconv-1.14/lib/canonical_sysosf1.h
libiconv-1.14/lib/loops.h
libiconv-1.14/lib/isoir165ext.h
libiconv-1.14/lib/cns11643_6.h
libiconv-1.14/lib/gbkext_inv.h
libiconv-1.14/lib/shift_jisx0213.h
libiconv-1.14/lib/utf8.h
libiconv-1.14/lib/cns11643_inv.h
libiconv-1.14/lib/mac_iceland.h
libiconv-1.14/lib/cp936.h
libiconv-1.14/lib/cp775.h
libiconv-1.14/lib/cp1254.h
libiconv-1.14/lib/mac_arabic.h
libiconv-1.14/lib/canonical_aix_sysaix.h
libiconv-1.14/lib/cp852.h
libiconv-1.14/lib/hkscs2008.h
libiconv-1.14/lib/cp856.h
libiconv-1.14/lib/aliases.h
libiconv-1.14/lib/koi8_ru.h
libiconv-1.14/lib/aliases_aix.h
libiconv-1.14/lib/big5hkscs1999.h
libiconv-1.14/lib/cns11643_4.h
libiconv-1.14/lib/johab.h
libiconv-1.14/lib/loop_unicode.h
libiconv-1.14/lib/iso2022_jp2.h
libiconv-1.14/lib/iso8859_9.h
libiconv-1.14/lib/canonical_local_sysaix.h
libiconv-1.14/lib/ucs2internal.h
libiconv-1.14/lib/mac_roman.h
libiconv-1.14/lib/tds565.h
libiconv-1.14/lib/java.h
libiconv-1.14/lib/cp1046.h
libiconv-1.14/lib/euc_kr.h
libiconv-1.14/lib/canonical_extra.h
libiconv-1.14/lib/aliases_syshpux.gperf
libiconv-1.14/lib/cp950.h
libiconv-1.14/lib/mac_cyrillic.h
libiconv-1.14/lib/iso2022_jp.h
libiconv-1.14/lib/big5.h
libiconv-1.14/lib/iso2022_cn.h
libiconv-1.14/lib/ascii.h
libiconv-1.14/lib/hp_roman8.h
libiconv-1.14/lib/iconv_open1.h
libiconv-1.14/lib/dec_kanji.h
libiconv-1.14/lib/ces_big5.h
libiconv-1.14/lib/mac_romania.h
libiconv-1.14/lib/mac_greek.h
libiconv-1.14/lib/sjis.h
libiconv-1.14/lib/euc_jisx0213.h
libiconv-1.14/lib/vietcomb.h
libiconv-1.14/lib/aliases_sysaix.h
libiconv-1.14/lib/genflags.c
libiconv-1.14/lib/canonical_osf1_sysosf1.h
libiconv-1.14/lib/canonical_osf1.h
libiconv-1.14/lib/relocatable.h
libiconv-1.14/lib/aliases.gperf
libiconv-1.14/lib/gb18030ext.h
libiconv-1.14/lib/cp1252.h
libiconv-1.14/lib/iso8859_11.h
libiconv-1.14/lib/cp1253.h
libiconv-1.14/lib/cp943.h
libiconv-1.14/lib/iso8859_2.h
libiconv-1.14/lib/cns11643_15.h
libiconv-1.14/lib/ucs2be.h
libiconv-1.14/lib/cns11643_3.h
libiconv-1.14/lib/genaliases.c
libiconv-1.14/lib/cp1255.h
libiconv-1.14/lib/cp949.h
libiconv-1.14/lib/aliases_sysosf1.h
libiconv-1.14/lib/cp1131.h
libiconv-1.14/lib/aliases_syshpux.h
libiconv-1.14/lib/aliases_syssolaris.gperf
libiconv-1.14/lib/encodings_dos.def
libiconv-1.14/lib/iso8859_1.h
libiconv-1.14/lib/aliases_sysaix.gperf
libiconv-1.14/lib/cp860.h
libiconv-1.14/lib/isoir165.h
libiconv-1.14/lib/cp1256.h
libiconv-1.14/lib/big5hkscs2001.h
libiconv-1.14/lib/ucs4swapped.h
libiconv-1.14/lib/ces_gbk.h
libiconv-1.14/lib/cp1163.h
libiconv-1.14/lib/rk1048.h
libiconv-1.14/lib/aliases_dos.h
libiconv-1.14/lib/cns11643_5.h
libiconv-1.14/lib/encodings.def
libiconv-1.14/lib/cp950ext.h
libiconv-1.14/lib/big5hkscs2008.h
libiconv-1.14/lib/mac_ukraine.h
libiconv-1.14/lib/cp858.h
libiconv-1.14/lib/cjk_variants.h
libiconv-1.14/lib/iconv_open2.h
libiconv-1.14/lib/cp850.h
libiconv-1.14/lib/iso8859_15.h
libiconv-1.14/lib/canonical_sysaix.h
libiconv-1.14/lib/euc_jp.h
libiconv-1.14/lib/aliases_osf1_sysosf1.h
libiconv-1.14/lib/cp855.h
libiconv-1.14/lib/ucs2le.h
libiconv-1.14/lib/utf32be.h
libiconv-1.14/lib/iso8859_14.h
libiconv-1.14/lib/cp861.h
libiconv-1.14/lib/cns11643_2.h
libiconv-1.14/lib/cp1257.h
libiconv-1.14/lib/utf16.h
libiconv-1.14/lib/utf32.h
libiconv-1.14/lib/cp1251.h
libiconv-1.14/lib/translit.def
libiconv-1.14/lib/cp869.h
libiconv-1.14/lib/canonical.h
libiconv-1.14/lib/cp1162.h
libiconv-1.14/lib/ucs4le.h
libiconv-1.14/lib/hz.h
libiconv-1.14/lib/gentranslit.c
libiconv-1.14/lib/mac_turkish.h
libiconv-1.14/lib/iso8859_5.h
libiconv-1.14/lib/aliases_extra.h
libiconv-1.14/lib/gb2312.h
libiconv-1.14/lib/ucs4.h
libiconv-1.14/lib/Makefile.in
libiconv-1.14/lib/aliases2.h
libiconv-1.14/lib/iso2022_jp3.h
libiconv-1.14/lib/loop_wchar.h
libiconv-1.14/lib/mac_centraleurope.h
libiconv-1.14/lib/nextstep.h
libiconv-1.14/lib/hkscs2004.h
libiconv-1.14/lib/uhc_1.h
libiconv-1.14/lib/utf16be.h
libiconv-1.14/lib/jisx0201.h
libiconv-1.14/lib/canonical_syssolaris.h
libiconv-1.14/lib/aliases_syssolaris.h
libiconv-1.14/lib/translit.h
libiconv-1.14/lib/iso2022_jp1.h
libiconv-1.14/lib/cp857.h
libiconv-1.14/lib/cp1250.h
libiconv-1.14/lib/ksc5601.h
libiconv-1.14/lib/gb12345ext.h
libiconv-1.14/lib/cns11643_7.h
libiconv-1.14/lib/cp874.h
libiconv-1.14/lib/ucs4internal.h
libiconv-1.14/lib/config.h.in
libiconv-1.14/lib/dec_hanyu.h
libiconv-1.14/lib/cp863.h
libiconv-1.14/lib/encodings_local.def
libiconv-1.14/lib/jisx0208.h
libiconv-1.14/lib/iso2022_cnext.h
libiconv-1.14/lib/c99.h
libiconv-1.14/lib/euc_cn.h
libiconv-1.14/lib/koi8_t.h
libiconv-1.14/lib/canonical_aix.h
libiconv-1.14/lib/cp1161.h
libiconv-1.14/lib/gb18030uni.h
libiconv-1.14/lib/euc_tw.h
libiconv-1.14/lib/mac_croatian.h
libiconv-1.14/lib/georgian_academy.h
libiconv-1.14/lib/cp866.h
libiconv-1.14/lib/cp865.h
libiconv-1.14/lib/cp737.h
libiconv-1.14/lib/cns11643_1.h
libiconv-1.14/lib/hkscs2001.h
libiconv-1.14/lib/ucs2.h
libiconv-1.14/lib/cp922.h
libiconv-1.14/lib/cp862.h
libiconv-1.14/lib/uhc_2.h
libiconv-1.14/lib/iso8859_10.h
libiconv-1.14/lib/canonical_local_sysosf1.h
libiconv-1.14/lib/mac_thai.h
libiconv-1.14/lib/canonical_syshpux.h
libiconv-1.14/lib/canonical_dos.h
libiconv-1.14/lib/cns11643.h
libiconv-1.14/lib/johab_hangul.h
libiconv-1.14/lib/flushwc.h
libiconv-1.14/lib/genaliases2.c
libiconv-1.14/lib/iso8859_4.h
libiconv-1.14/lib/encodings_aix.def
libiconv-1.14/lib/iso646_cn.h
libiconv-1.14/lib/cp1258.h
libiconv-1.14/lib/cns11643_4b.h
libiconv-1.14/lib/canonical_local_syssolaris.h
libiconv-1.14/lib/iso8859_7.h
libiconv-1.14/lib/ucs2swapped.h
libiconv-1.14/lib/canonical_local.h
libiconv-1.14/lib/cp932.h
libiconv-1.14/lib/mac_hebrew.h
libiconv-1.14/lib/cp932ext.h
libiconv-1.14/lib/iso8859_8.h
libiconv-1.14/lib/encodings_osf1.def
libiconv-1.14/lib/cp936ext.h
libiconv-1.14/lib/encodings_extra.def
libiconv-1.14/lib/cp853.h
libiconv-1.14/lib/iso8859_13.h
libiconv-1.14/lib/iso2022_kr.h
libiconv-1.14/lib/iso8859_16.h
libiconv-1.14/lib/iconv.c
libiconv-1.14/lib/cp437.h
libiconv-1.14/lib/iso8859_3.h
libiconv-1.14/lib/gbkext2.h
libiconv-1.14/lib/pt154.h
libiconv-1.14/lib/cp1124.h
libiconv-1.14/lib/canonical_local_syshpux.h
libiconv-1.14/lib/gb12345.h
libiconv-1.14/lib/koi8_u.h
libiconv-1.14/lib/cp1125.h
libiconv-1.14/lib/atarist.h
libiconv-1.14/lib/tcvn.h
libiconv-1.14/lib/flags.h
libiconv-1.14/lib/georgian_ps.h
libiconv-1.14/lib/gbk.h
libiconv-1.14/lib/armscii_8.h
libiconv-1.14/lib/jisx0213.h
libiconv-1.14/lib/ucs4be.h
libiconv-1.14/lib/cns11643_4a.h
libiconv-1.14/lib/big5hkscs2004.h
libiconv-1.14/lib/aliases_osf1.h
libiconv-1.14/lib/riscos1.h
libiconv-1.14/lib/jisx0212.h
libiconv-1.14/lib/iso646_jp.h
libiconv-1.14/lib/viscii.h
libiconv-1.14/lib/aliases_aix_sysaix.h
libiconv-1.14/AUTHORS
libiconv-1.14/DEPENDENCIES
libiconv-1.14/extras/
libiconv-1.14/extras/ChangeLog
libiconv-1.14/extras/iconv_string.c
libiconv-1.14/extras/iconv_string.h
libiconv-1.14/autogen.sh
libiconv-1.14/ChangeLog
libiconv-1.14/configure.ac
libiconv-1.14/include/
libiconv-1.14/include/export.h
libiconv-1.14/include/iconv.h.build.in
libiconv-1.14/include/iconv.h.in
libiconv-1.14/INSTALL.generic
libiconv-1.14/gnulib-local/
libiconv-1.14/gnulib-local/lib/
libiconv-1.14/gnulib-local/lib/xmalloc.c
libiconv-1.14/gnulib-local/lib/progname.h.diff
libiconv-1.14/gnulib-local/lib/error.h.diff
libiconv-1.14/gnulib-local/lib/alloca.in.h
libiconv-1.14/gnulib-local/lib/xalloc.h
libiconv-1.14/gnulib-local/lib/xstrdup.c
libiconv-1.14/gnulib-local/modules/
libiconv-1.14/gnulib-local/modules/mbstate
libiconv-1.14/gnulib-local/modules/xalloc
libiconv-1.14/gnulib-local/modules/libiconv-misc
libiconv-1.14/gnulib-local/m4/
libiconv-1.14/gnulib-local/m4/alloca.m4
libiconv-1.14/Makefile.in
libiconv-1.14/djgpp/
libiconv-1.14/djgpp/makefile.sed
libiconv-1.14/djgpp/config.sed
libiconv-1.14/djgpp/fnchange.lst
libiconv-1.14/djgpp/fnchange.in
libiconv-1.14/djgpp/config.site
libiconv-1.14/djgpp/README.in
libiconv-1.14/djgpp/edtest.bat
libiconv-1.14/djgpp/Makefile.maint
libiconv-1.14/djgpp/sources.sed
libiconv-1.14/djgpp/stateless-check.sed
libiconv-1.14/djgpp/README
libiconv-1.14/djgpp/translit-check.sed
libiconv-1.14/djgpp/config.bat
libiconv-1.14/djgpp/stateful-check.sed
libiconv-1.14/README.djgpp
libiconv-1.14/tests/
libiconv-1.14/tests/ISO-2022-JP-1-snippet
libiconv-1.14/tests/check-subst
libiconv-1.14/tests/MacCroatian.TXT
libiconv-1.14/tests/CP922.TXT
libiconv-1.14/tests/MacRoman.TXT
libiconv-1.14/tests/ISO-8859-10.TXT
libiconv-1.14/tests/CP1129.TXT
libiconv-1.14/tests/Translit1.ISO-8859-1
libiconv-1.14/tests/BIG5-HKSCS-2001.TXT
libiconv-1.14/tests/ISO-8859-14.TXT
libiconv-1.14/tests/BIG5-HKSCS-2001-snippet
libiconv-1.14/tests/BIG5-2003.TXT
libiconv-1.14/tests/check-translit.bat
libiconv-1.14/tests/GBK.TXT
libiconv-1.14/tests/Translit1.ASCII
libiconv-1.14/tests/PT154.TXT
libiconv-1.14/tests/CP1258.IRREVERSIBLE.TXT
libiconv-1.14/tests/check-stateless.bat
libiconv-1.14/tests/BIG5-HKSCS-1999.IRREVERSIBLE.TXT
libiconv-1.14/tests/CP1133.TXT
libiconv-1.14/tests/CP1254.TXT
libiconv-1.14/tests/CP858.TXT
libiconv-1.14/tests/Georgian-PS.TXT
libiconv-1.14/tests/CP857.TXT
libiconv-1.14/tests/CP1253.TXT
libiconv-1.14/tests/ISO-8859-3.TXT
libiconv-1.14/tests/CP1163.IRREVERSIBLE.TXT
libiconv-1.14/tests/CP874.TXT
libiconv-1.14/tests/ISO-8859-6.TXT
libiconv-1.14/tests/ISO-2022-CN-EXT-snippet.UTF-8
libiconv-1.14/tests/GB18030.IRREVERSIBLE.TXT
libiconv-1.14/tests/UCS-2BE-snippet
libiconv-1.14/tests/NEXTSTEP.TXT
libiconv-1.14/tests/CP932.IRREVERSIBLE.TXT
libiconv-1.14/tests/HP-ROMAN8.TXT
libiconv-1.14/tests/Georgian-Academy.TXT
libiconv-1.14/tests/UTF-7-snippet
libiconv-1.14/tests/CP866.TXT
libiconv-1.14/tests/MacThai.TXT
libiconv-1.14/tests/CP1255.TXT
libiconv-1.14/tests/MacHebrew.TXT
libiconv-1.14/tests/CP856.TXT
libiconv-1.14/tests/CP1258-snippet
libiconv-1.14/tests/TCVN-snippet
libiconv-1.14/tests/check-translit
libiconv-1.14/tests/ISO-2022-JP-2-snippet.UTF-8
libiconv-1.14/tests/SHIFT_JISX0213.TXT
libiconv-1.14/tests/TranslitFail1.ISO-8859-1
libiconv-1.14/tests/ISO-8859-5.TXT
libiconv-1.14/tests/DEC-HANYU.TXT
libiconv-1.14/tests/ISO646-JP.TXT
libiconv-1.14/tests/CP1258-snippet.UTF-8
libiconv-1.14/tests/ISO-2022-CN-snippet.UTF-8
libiconv-1.14/tests/ISO-2022-JP-snippet
libiconv-1.14/tests/RISCOS-LATIN1.TXT
libiconv-1.14/tests/ISO-8859-7.TXT
libiconv-1.14/tests/BIG5-HKSCS-2004.IRREVERSIBLE.TXT
libiconv-1.14/tests/ISO-8859-4.TXT
libiconv-1.14/tests/EUC-TW.IRREVERSIBLE.TXT
libiconv-1.14/tests/UCS-4BE-snippet.UTF-8
libiconv-1.14/tests/MacRomania.TXT
libiconv-1.14/tests/CP1131.TXT
libiconv-1.14/tests/UCS-2BE-snippet.UTF-8
libiconv-1.14/tests/EUC-JP.IRREVERSIBLE.TXT
libiconv-1.14/tests/CP1255-snippet.UTF-8
libiconv-1.14/tests/CP1124.TXT
libiconv-1.14/tests/CP855.TXT
libiconv-1.14/tests/check-stateful.bat
libiconv-1.14/tests/UCS-4LE-snippet
libiconv-1.14/tests/BIG5-HKSCS-1999-snippet.UTF-8
libiconv-1.14/tests/ISO-8859-2.TXT
libiconv-1.14/tests/CP869.TXT
libiconv-1.14/tests/CP1161.TXT
libiconv-1.14/tests/ISO-8859-15.TXT
libiconv-1.14/tests/ISO-8859-1.TXT
libiconv-1.14/tests/CP1256.TXT
libiconv-1.14/tests/ISO-IR-165.TXT
libiconv-1.14/tests/ISO-2022-JP-snippet.UTF-8
libiconv-1.14/tests/KOI8-RU.TXT
libiconv-1.14/tests/UCS-4BE-snippet
libiconv-1.14/tests/check-stateless
libiconv-1.14/tests/CP853.TXT
libiconv-1.14/tests/UTF-32BE-snippet
libiconv-1.14/tests/genutf8.c
libiconv-1.14/tests/CP852.TXT
libiconv-1.14/tests/ISO-2022-KR-snippet.UTF-8
libiconv-1.14/tests/CP1251.TXT
libiconv-1.14/tests/BIG5-HKSCS-2008-snippet
libiconv-1.14/tests/ISO-2022-CN-snippet
libiconv-1.14/tests/MacCentralEurope.TXT
libiconv-1.14/tests/UCS-4LE-snippet.UTF-8
libiconv-1.14/tests/EUC-JISX0213.TXT
libiconv-1.14/tests/TCVN-snippet.UTF-8
libiconv-1.14/tests/SHIFT_JIS.TXT
libiconv-1.14/tests/MacCyrillic.TXT
libiconv-1.14/tests/CP932.TXT
libiconv-1.14/tests/CP950.TXT
libiconv-1.14/tests/MacUkraine.TXT
libiconv-1.14/tests/CP775.TXT
libiconv-1.14/tests/UTF-16-snippet.UTF-8
libiconv-1.14/tests/table-from.c
libiconv-1.14/tests/CP850.TXT
libiconv-1.14/tests/check-translitfailure
libiconv-1.14/tests/ISO-2022-JP-3-snippet
libiconv-1.14/tests/UTF-32LE-snippet.UTF-8
libiconv-1.14/tests/CP863.TXT
libiconv-1.14/tests/CP1252.TXT
libiconv-1.14/tests/CP1125.TXT
libiconv-1.14/tests/CP936.TXT
libiconv-1.14/tests/UTF-16BE-snippet.UTF-8
libiconv-1.14/tests/TCVN.TXT
libiconv-1.14/tests/UTF-16-snippet
libiconv-1.14/tests/ISO-8859-9.TXT
libiconv-1.14/tests/EUC-TW.TXT
libiconv-1.14/tests/test-shiftseq.c
libiconv-1.14/tests/UCS-2LE-snippet
libiconv-1.14/tests/CP1163.TXT
libiconv-1.14/tests/Makefile.in
libiconv-1.14/tests/EUC-KR.TXT
libiconv-1.14/tests/ISO-2022-JP-1-snippet.UTF-8
libiconv-1.14/tests/Quotes.ISO-8859-1
libiconv-1.14/tests/EUC-JP.TXT
libiconv-1.14/tests/UTF-32-snippet
libiconv-1.14/tests/BIG5-HKSCS-2008.IRREVERSIBLE.TXT
libiconv-1.14/tests/DEC-KANJI.TXT
libiconv-1.14/tests/EUC-CN.TXT
libiconv-1.14/tests/CP950.IRREVERSIBLE.TXT
libiconv-1.14/tests/BIG5-2003.IRREVERSIBLE.TXT
libiconv-1.14/tests/BIG5-HKSCS-2004-snippet.UTF-8
libiconv-1.14/tests/uniq-u.c
libiconv-1.14/tests/ASCII.TXT
libiconv-1.14/tests/BIG5-HKSCS-2001.IRREVERSIBLE.TXT
libiconv-1.14/tests/ISO-IR-165.IRREVERSIBLE.TXT
libiconv-1.14/tests/BIG5-HKSCS-2001-snippet.UTF-8
libiconv-1.14/tests/RK1048.TXT
libiconv-1.14/tests/BIG5-HKSCS-2004.TXT
libiconv-1.14/tests/BIG5-HKSCS-2004-snippet
libiconv-1.14/tests/HZ-snippet.UTF-8
libiconv-1.14/tests/CP861.TXT
libiconv-1.14/tests/ISO-2022-KR-snippet
libiconv-1.14/tests/JIS_X0201.TXT
libiconv-1.14/tests/UTF-32-snippet.UTF-8
libiconv-1.14/tests/BIG5-HKSCS-2008.TXT
libiconv-1.14/tests/CP737.TXT
libiconv-1.14/tests/CP949.TXT
libiconv-1.14/tests/Quotes.ASCII
libiconv-1.14/tests/KOI8-R.TXT
libiconv-1.14/tests/BIG5.TXT
libiconv-1.14/tests/MacArabic.TXT
libiconv-1.14/tests/KOI8-U.TXT
libiconv-1.14/tests/GB18030-BMP.TXT
libiconv-1.14/tests/Quotes.UTF-8
libiconv-1.14/tests/CP1046.TXT
libiconv-1.14/tests/MacIceland.TXT
libiconv-1.14/tests/ISO-2022-JP-3-snippet.UTF-8
libiconv-1.14/tests/CP1258.TXT
libiconv-1.14/tests/UTF-32LE-snippet
libiconv-1.14/tests/UTF-16BE-snippet
libiconv-1.14/tests/gengb18030z.c
libiconv-1.14/tests/BIG5-HKSCS-1999.TXT
libiconv-1.14/tests/CP1257.TXT
libiconv-1.14/tests/CP860.TXT
libiconv-1.14/tests/CP1161.IRREVERSIBLE.TXT
libiconv-1.14/tests/UCS-2LE-snippet.UTF-8
libiconv-1.14/tests/ISO-8859-11.TXT
libiconv-1.14/tests/ISO-8859-8.TXT
libiconv-1.14/tests/CP1255-snippet
libiconv-1.14/tests/ISO-2022-JP-2-snippet
libiconv-1.14/tests/CP1255.IRREVERSIBLE.TXT
libiconv-1.14/tests/UTF-7-snippet.UTF-8
libiconv-1.14/tests/CP1250.TXT
libiconv-1.14/tests/MacTurkish.TXT
libiconv-1.14/tests/CP437.TXT
libiconv-1.14/tests/CP864.TXT
libiconv-1.14/tests/ARMSCII-8.TXT
libiconv-1.14/tests/TIS-620.TXT
libiconv-1.14/tests/CP865.TXT
libiconv-1.14/tests/ATARIST.TXT
libiconv-1.14/tests/UTF-16LE-snippet
libiconv-1.14/tests/HZ-snippet
libiconv-1.14/tests/CP862.TXT
libiconv-1.14/tests/CP1162.TXT
libiconv-1.14/tests/ARMSCII-8.IRREVERSIBLE.TXT
libiconv-1.14/tests/DEC-HANYU.IRREVERSIBLE.TXT
libiconv-1.14/tests/MacGreek.TXT
libiconv-1.14/tests/table-to.c
libiconv-1.14/tests/BIG5-HKSCS-1999-snippet
libiconv-1.14/tests/KOI8-T.TXT
libiconv-1.14/tests/TCVN.IRREVERSIBLE.TXT
libiconv-1.14/tests/UTF-16LE-snippet.UTF-8
libiconv-1.14/tests/MuleLao-1.TXT
libiconv-1.14/tests/VISCII.TXT
libiconv-1.14/tests/test-to-wchar.c
libiconv-1.14/tests/ISO646-CN.TXT
libiconv-1.14/tests/TDS565.TXT
libiconv-1.14/tests/ISO-8859-16.TXT
libiconv-1.14/tests/ISO-2022-CN-EXT-snippet
libiconv-1.14/tests/UTF-32BE-snippet.UTF-8
libiconv-1.14/tests/check-stateful
libiconv-1.14/tests/JOHAB.TXT
libiconv-1.14/tests/ISO-8859-13.TXT
libiconv-1.14/tests/BIG5-HKSCS-2008-snippet.UTF-8
libiconv-1.14/doc/
libiconv-1.14/doc/relocatable.texi
libiconv-1.14/README.woe32
libiconv-1.14/config.h.in
libiconv-1.14/tools/
libiconv-1.14/tools/cjk_tab_to_h.c
libiconv-1.14/tools/8bit_tab_to_h.c
libiconv-1.14/tools/JISX0213.TXT
libiconv-1.14/tools/Makefile
libiconv-1.14/tools/cjk_variants.c
libiconv-1.14/COPYING.LIB
libiconv-1.14/NEWS
libiconv-1.14/README
libiconv-1.14/Makefile.devel
libiconv-1.14/HACKING
libiconv-1.14/NOTES
libiconv-1.14/srcm4/
libiconv-1.14/srcm4/signalblocking.m4
libiconv-1.14/srcm4/po.m4
libiconv-1.14/srcm4/fcntl_h.m4
libiconv-1.14/srcm4/lib-link.m4
libiconv-1.14/srcm4/intmax.m4
libiconv-1.14/srcm4/inttypes_h.m4
libiconv-1.14/srcm4/sys_socket_h.m4
libiconv-1.14/srcm4/setenv.m4
libiconv-1.14/srcm4/extensions.m4
libiconv-1.14/srcm4/relocatable-lib.m4
libiconv-1.14/srcm4/size_max.m4
libiconv-1.14/srcm4/stdlib_h.m4
libiconv-1.14/srcm4/longlong.m4
libiconv-1.14/srcm4/stdint.m4
libiconv-1.14/srcm4/glibc21.m4
libiconv-1.14/srcm4/stdbool.m4
libiconv-1.14/srcm4/relocatable.m4
libiconv-1.14/srcm4/alloca.m4
libiconv-1.14/srcm4/glibc2.m4
libiconv-1.14/srcm4/visibility.m4
libiconv-1.14/srcm4/strerror.m4
libiconv-1.14/srcm4/intl.m4
libiconv-1.14/srcm4/wchar_t.m4
libiconv-1.14/srcm4/safe-read.m4
libiconv-1.14/srcm4/printf-posix.m4
libiconv-1.14/srcm4/sigpipe.m4
libiconv-1.14/srcm4/intdiv0.m4
libiconv-1.14/srcm4/include_next.m4
libiconv-1.14/srcm4/sys_stat_h.m4
libiconv-1.14/srcm4/stdio_h.m4
libiconv-1.14/srcm4/stdint_h.m4
libiconv-1.14/srcm4/environ.m4
libiconv-1.14/srcm4/lcmessage.m4
libiconv-1.14/srcm4/gnulib-common.m4
libiconv-1.14/srcm4/lib-prefix.m4
libiconv-1.14/srcm4/unlocked-io.m4
libiconv-1.14/srcm4/readlink.m4
libiconv-1.14/srcm4/codeset.m4
libiconv-1.14/srcm4/gnulib-comp.m4
libiconv-1.14/srcm4/errno_h.m4
libiconv-1.14/srcm4/time_h.m4
libiconv-1.14/srcm4/uintmax_t.m4
libiconv-1.14/srcm4/intlmacosx.m4
libiconv-1.14/srcm4/xsize.m4
libiconv-1.14/srcm4/iconv.m4
libiconv-1.14/srcm4/mbstate_t.m4
libiconv-1.14/srcm4/libunistring-base.m4
libiconv-1.14/srcm4/ssize_t.m4
libiconv-1.14/srcm4/lib-ld.m4
libiconv-1.14/srcm4/gnulib-tool.m4
libiconv-1.14/srcm4/unistd_h.m4
libiconv-1.14/srcm4/wint_t.m4
libiconv-1.14/srcm4/threadlib.m4
libiconv-1.14/srcm4/read.m4
libiconv-1.14/srcm4/largefile.m4
libiconv-1.14/srcm4/warn-on-use.m4
libiconv-1.14/srcm4/stat.m4
libiconv-1.14/srcm4/nls.m4
libiconv-1.14/srcm4/string_h.m4
libiconv-1.14/srcm4/double-slash-root.m4
libiconv-1.14/srcm4/lock.m4
libiconv-1.14/srcm4/asm-underscore.m4
libiconv-1.14/srcm4/multiarch.m4
libiconv-1.14/srcm4/eealloc.m4
libiconv-1.14/srcm4/memmove.m4
libiconv-1.14/srcm4/canonicalize.m4
libiconv-1.14/srcm4/pathmax.m4
libiconv-1.14/srcm4/fcntl-o.m4
libiconv-1.14/srcm4/lstat.m4
libiconv-1.14/srcm4/stddef_h.m4
libiconv-1.14/srcm4/nocrash.m4
libiconv-1.14/srcm4/00gnulib.m4
libiconv-1.14/srcm4/inttypes-pri.m4
libiconv-1.14/srcm4/progtest.m4
libiconv-1.14/srcm4/error.m4
libiconv-1.14/srcm4/signal_h.m4
libiconv-1.14/srcm4/gettext.m4
libiconv-1.14/srcm4/malloca.m4
libiconv-1.14/srcm4/intldir.m4
libiconv-1.14/srcm4/gnulib-cache.m4
libiconv-1.14/DESIGN
libiconv-1.14/build-aux/
libiconv-1.14/build-aux/install-reloc
libiconv-1.14/build-aux/mkinstalldirs
libiconv-1.14/build-aux/reloc-ldflags
libiconv-1.14/build-aux/config.guess
libiconv-1.14/build-aux/install-sh
libiconv-1.14/build-aux/snippet/
libiconv-1.14/build-aux/snippet/_Noreturn.h
libiconv-1.14/build-aux/snippet/warn-on-use.h
libiconv-1.14/build-aux/snippet/arg-nonnull.h
libiconv-1.14/build-aux/snippet/c++defs.h
libiconv-1.14/build-aux/missing
libiconv-1.14/build-aux/config.libpath
libiconv-1.14/build-aux/config.rpath
libiconv-1.14/build-aux/ltmain.sh
libiconv-1.14/build-aux/config.sub
libiconv-1.14/.gitattributes
libiconv-1.14/m4/
libiconv-1.14/m4/ln.m4
libiconv-1.14/m4/lt~obsolete.m4
libiconv-1.14/m4/libtool.m4
libiconv-1.14/m4/ltoptions.m4
libiconv-1.14/m4/proto.m4
libiconv-1.14/m4/endian.m4
libiconv-1.14/m4/cp.m4
libiconv-1.14/m4/ltversion.m4
libiconv-1.14/m4/general.m4
libiconv-1.14/m4/fcntl-o.m4
libiconv-1.14/m4/eilseq.m4
libiconv-1.14/m4/ltsugar.m4
make: *** No rule to make target `clean'.  Stop.
Configuring with: ./configure --prefix=/home/Administrator/arachni/usr
checking for a BSD-compatible install... /usr/bin/install -c
checking whether build environment is sane... yes
checking for a thread-safe mkdir -p... /usr/bin/mkdir -p
checking for gawk... gawk
checking whether make sets $(MAKE)... yes
checking whether make sets $(MAKE)... (cached) yes
checking for gcc... gcc
checking whether the C compiler works... yes
checking for C compiler default output file name... a.exe
checking for suffix of executables... .exe
checking whether we are cross compiling... no
checking for suffix of object files... o
checking whether we are using the GNU C compiler... yes
checking whether gcc accepts -g... yes
checking for gcc option to accept ISO C89... none needed
checking for style of include used by make... GNU
checking dependency style of gcc... none
checking how to run the C preprocessor... gcc -E
checking for strip... /usr/bin/strip
checking build system type... i686-pc-cygwin
checking host system type... i686-pc-cygwin
checking for grep that handles long lines and -e... /usr/bin/grep
checking for egrep... /usr/bin/grep -E
checking for ranlib... ranlib
checking whether gcc and cc understand -c and -o together... yes
checking for ANSI C header files... yes
checking for sys/types.h... yes
checking for sys/stat.h... yes
checking for stdlib.h... yes
checking for string.h... yes
checking for memory.h... yes
checking for strings.h... yes
checking for inttypes.h... yes
checking for stdint.h... yes
checking for unistd.h... yes
checking minix/config.h usability... no
checking minix/config.h presence... no
checking for minix/config.h... no
checking whether it is safe to define __EXTENSIONS__... yes
checking for ld used by GCC... /usr/i686-pc-cygwin/bin/ld.exe
checking if the linker (/usr/i686-pc-cygwin/bin/ld.exe) is GNU ld... yes
checking for shared library path variable... PATH
checking whether to activate relocatable installation... no
checking how to copy files... cp -p
checking how to make hard links... ln
checking whether ln -s works... yes
checking how to print strings... printf
checking for a sed that does not truncate output... /usr/bin/sed
checking for fgrep... /usr/bin/grep -F
checking for ld used by gcc... /usr/i686-pc-cygwin/bin/ld.exe
checking if the linker (/usr/i686-pc-cygwin/bin/ld.exe) is GNU ld... yes
checking for BSD- or MS-compatible name lister (nm)... /usr/bin/nm -B
checking the name lister (/usr/bin/nm -B) interface... BSD nm
checking the maximum length of command line arguments... 8192
checking whether the shell understands some XSI constructs... yes
checking whether the shell understands "+="... yes
checking how to convert i686-pc-cygwin file names to i686-pc-cygwin format... func_convert_file_noop
checking how to convert i686-pc-cygwin file names to toolchain format... func_convert_file_noop
checking for /usr/i686-pc-cygwin/bin/ld.exe option to reload object files... -r
checking for objdump... objdump
checking how to recognize dependent libraries... file_magic ^x86 archive import|^x86 DLL
checking for dlltool... dlltool
checking how to associate runtime and link libraries... func_cygming_dll_for_implib
checking for archiver @FILE support... @
checking for strip... /usr/bin/strip
checking for ranlib... (cached) ranlib
checking command to parse /usr/bin/nm -B output from gcc object... ok
checking for sysroot... no
checking for mt... no
checking if : is a manifest tool... no
checking for dlfcn.h... yes
checking for as... as
checking for dlltool... (cached) dlltool
checking for objdump... (cached) objdump
checking for objdir... .libs
checking if gcc supports -fno-rtti -fno-exceptions... no
checking for gcc option to produce PIC... -DDLL_EXPORT -DPIC
checking if gcc PIC flag -DDLL_EXPORT -DPIC works... yes
checking if gcc static flag -static works... yes
checking if gcc supports -c -o file.o... yes
checking if gcc supports -c -o file.o... (cached) yes
checking whether the gcc linker (/usr/i686-pc-cygwin/bin/ld.exe) supports shared libraries... yes
checking whether -lc should be explicitly linked in... yes
checking dynamic linker characteristics... Win32 ld.exe
checking how to hardcode library paths into programs... immediate
checking whether stripping libraries is possible... yes
checking if libtool supports shared libraries... yes
checking whether to build shared libraries... yes
checking whether to build static libraries... no
checking for windres... windres
checking for windres... windres
checking whether the -Werror option is usable... yes
checking for simple visibility declarations... no
checking for shared library run path origin... done
checking for iconv... no, consider installing GNU libiconv
checking whether NLS is requested... yes
checking for msgfmt... no
checking for gmsgfmt... :
checking for xgettext... no
checking for msgmerge... no
checking for CFPreferencesCopyAppValue... no
checking for CFLocaleCopyCurrent... no
checking for GNU gettext in libc... no
checking for iconv... (cached) no, consider installing GNU libiconv
checking for GNU gettext in libintl... yes
checking whether to use NLS... yes
checking where the gettext function comes from... external libintl
checking how to link with libintl... -lintl
checking for mbstate_t... yes
checking for wchar_t... yes
checking for getc_unlocked... yes
checking for mbrtowc... yes
checking for wcrtomb... yes
checking for mbsinit... yes
checking for setlocale... yes
checking whether <wchar.h> is standalone... yes
checking for memmove... yes
checking for nl_langinfo and CODESET... yes
checking for working fcntl.h... no (bad O_NOATIME)
checking wchar.h usability... yes
checking wchar.h presence... yes
checking for wchar.h... yes
checking for EILSEQ... yes
checking byte ordering... little endian
checking for size_t... yes
checking for working alloca.h... yes
checking for alloca... yes
checking for stdlib.h... (cached) yes
checking for string.h... (cached) yes
checking for sys/param.h... yes
checking for unistd.h... (cached) yes
checking for wchar.h... (cached) yes
checking for stdint.h... (cached) yes
checking for sys/socket.h... yes
checking for sys/stat.h... (cached) yes
checking for sys/time.h... yes
checking for canonicalize_file_name... yes
checking for getcwd... yes
checking for readlink... yes
checking for realpath... yes
checking for readlinkat... yes
checking for lstat... yes
checking for setenv... yes
checking whether // is distinct from /... yes
checking whether realpath works... no
checking if environ is properly declared... yes
checking whether the preprocessor supports include_next... yes
checking whether system header files limit the line length... no
checking for complete errno.h... yes
checking whether strerror_r is declared... yes
checking for strerror_r... yes
checking whether strerror_r returns char *... yes
checking for inline... inline
checking whether lstat correctly handles trailing slash... yes
checking for stdlib.h... (cached) yes
checking for GNU libc compatible malloc... yes
checking for unsigned long long int... yes
checking for long long int... yes
checking whether setenv is declared... yes
checking for ssize_t... yes
checking for sigset_t... yes
checking for uid_t in sys/types.h... yes
checking for SIGPIPE... yes
checking whether C symbols are prefixed with underscore at the linker level... yes
checking for stdbool.h that conforms to C99... yes
checking for _Bool... yes
checking whether stdint.h conforms to C99... yes
checking whether strerror(0) succeeds... yes
checking for C/C++ restrict keyword... __restrict
checking whether ffsl is declared without a macro... no
checking whether ffsll is declared without a macro... no
checking whether memmem is declared without a macro... yes
checking whether mempcpy is declared without a macro... yes
checking whether memrchr is declared without a macro... yes
checking whether rawmemchr is declared without a macro... no
checking whether stpcpy is declared without a macro... yes
checking whether stpncpy is declared without a macro... yes
checking whether strchrnul is declared without a macro... yes
checking whether strdup is declared without a macro... yes
checking whether strncat is declared without a macro... yes
checking whether strndup is declared without a macro... yes
checking whether strnlen is declared without a macro... yes
checking whether strpbrk is declared without a macro... yes
checking whether strsep is declared without a macro... yes
checking whether strcasestr is declared without a macro... yes
checking whether strtok_r is declared without a macro... yes
checking whether strerror_r is declared without a macro... yes
checking whether strsignal is declared without a macro... yes
checking whether strverscmp is declared without a macro... no
checking whether stat file-mode macros are broken... no
checking for struct timespec in <time.h>... yes
checking whether clearerr_unlocked is declared... no
checking whether feof_unlocked is declared... no
checking whether ferror_unlocked is declared... no
checking whether fflush_unlocked is declared... no
checking whether fgets_unlocked is declared... no
checking whether fputc_unlocked is declared... no
checking whether fputs_unlocked is declared... no
checking whether fread_unlocked is declared... no
checking whether fwrite_unlocked is declared... no
checking whether getc_unlocked is declared... yes
checking whether getchar_unlocked is declared... yes
checking whether putc_unlocked is declared... yes
checking whether putchar_unlocked is declared... yes
checking whether // is distinct from /... (cached) yes
checking for error_at_line... yes
checking whether fcntl is declared without a macro... yes
checking whether openat is declared without a macro... yes
checking for mbstate_t... (cached) yes
checking for memmove... (cached) yes
checking whether program_invocation_name is declared... yes
checking whether program_invocation_short_name is declared... yes
checking whether readlink signature is correct... yes
checking whether readlink handles trailing slash correctly... yes
checking search.h usability... yes
checking search.h presence... yes
checking for search.h... yes
checking for tsearch... yes
checking for volatile sig_atomic_t... yes
checking for sighandler_t... yes
checking whether pthread_sigmask is declared without a macro... yes
checking whether sigaction is declared without a macro... yes
checking whether sigaddset is declared without a macro... yes
checking whether sigdelset is declared without a macro... yes
checking whether sigemptyset is declared without a macro... yes
checking whether sigfillset is declared without a macro... yes
checking whether sigismember is declared without a macro... yes
checking whether sigpending is declared without a macro... yes
checking whether sigprocmask is declared without a macro... yes
checking for sigprocmask... yes
checking for ssize_t... (cached) yes
checking whether stat handles trailing slashes on directories... yes
checking whether stat handles trailing slashes on files... yes
checking whether NULL can be used in arbitrary expressions... yes
checking whether dprintf is declared without a macro... yes
checking whether fpurge is declared without a macro... yes
checking whether fseeko is declared without a macro... yes
checking whether ftello is declared without a macro... yes
checking whether getdelim is declared without a macro... yes
checking whether getline is declared without a macro... yes
checking whether popen is declared without a macro... yes
checking whether renameat is declared without a macro... yes
checking whether snprintf is declared without a macro... yes
checking whether tmpfile is declared without a macro... yes
checking whether vdprintf is declared without a macro... yes
checking whether vsnprintf is declared without a macro... yes
checking whether _Exit is declared without a macro... yes
checking whether atoll is declared without a macro... yes
checking whether canonicalize_file_name is declared without a macro... yes
checking whether getloadavg is declared without a macro... no
checking whether getsubopt is declared without a macro... yes
checking whether grantpt is declared without a macro... yes
checking whether mkdtemp is declared without a macro... yes
checking whether mkostemp is declared without a macro... yes
checking whether mkostemps is declared without a macro... yes
checking whether mkstemp is declared without a macro... yes
checking whether mkstemps is declared without a macro... yes
checking whether ptsname is declared without a macro... yes
checking whether random_r is declared without a macro... no
checking whether initstat_r is declared without a macro... no
checking whether srandom_r is declared without a macro... no
checking whether setstate_r is declared without a macro... no
checking whether realpath is declared without a macro... yes
checking whether rpmatch is declared without a macro... no
checking whether setenv is declared without a macro... yes
checking whether strtod is declared without a macro... yes
checking whether strtoll is declared without a macro... yes
checking whether strtoull is declared without a macro... yes
checking whether unlockpt is declared without a macro... yes
checking whether unsetenv is declared without a macro... yes
checking for working strerror function... yes
checking for nlink_t... yes
checking whether fchmodat is declared without a macro... yes
checking whether fstatat is declared without a macro... yes
checking whether futimens is declared without a macro... yes
checking whether lchmod is declared without a macro... no
checking whether lstat is declared without a macro... yes
checking whether mkdirat is declared without a macro... yes
checking whether mkfifo is declared without a macro... yes
checking whether mkfifoat is declared without a macro... yes
checking whether mknod is declared without a macro... yes
checking whether mknodat is declared without a macro... yes
checking whether stat is declared without a macro... yes
checking whether utimensat is declared without a macro... yes
checking whether chown is declared without a macro... yes
checking whether dup2 is declared without a macro... yes
checking whether dup3 is declared without a macro... yes
checking whether environ is declared without a macro... yes
checking whether euidaccess is declared without a macro... yes
checking whether faccessat is declared without a macro... yes
checking whether fchdir is declared without a macro... yes
checking whether fchownat is declared without a macro... yes
checking whether fsync is declared without a macro... yes
checking whether ftruncate is declared without a macro... yes
checking whether getcwd is declared without a macro... yes
checking whether getdomainname is declared without a macro... yes
checking whether getdtablesize is declared without a macro... yes
checking whether getgroups is declared without a macro... yes
checking whether gethostname is declared without a macro... yes
checking whether getlogin is declared without a macro... yes
checking whether getlogin_r is declared without a macro... yes
checking whether getpagesize is declared without a macro... yes
checking whether getusershell is declared without a macro... yes
checking whether setusershell is declared without a macro... yes
checking whether endusershell is declared without a macro... yes
checking whether group_member is declared without a macro... no
checking whether lchown is declared without a macro... yes
checking whether link is declared without a macro... yes
checking whether linkat is declared without a macro... yes
checking whether lseek is declared without a macro... yes
checking whether pipe is declared without a macro... yes
checking whether pipe2 is declared without a macro... yes
checking whether pread is declared without a macro... yes
checking whether pwrite is declared without a macro... yes
checking whether readlink is declared without a macro... yes
checking whether readlinkat is declared without a macro... yes
checking whether rmdir is declared without a macro... yes
checking whether sleep is declared without a macro... yes
checking whether symlink is declared without a macro... yes
checking whether symlinkat is declared without a macro... yes
checking whether ttyname_r is declared without a macro... yes
checking whether unlink is declared without a macro... yes
checking whether unlinkat is declared without a macro... yes
checking whether usleep is declared without a macro... yes
configure: creating ./config.status
config.status: creating Makefile
config.status: creating lib/Makefile
config.status: creating srclib/Makefile
config.status: creating src/Makefile
config.status: creating po/Makefile.in
config.status: creating man/Makefile
config.status: creating tests/Makefile
config.status: creating include/iconv.h
config.status: creating include/iconv.h.inst
config.status: creating config.h
config.status: creating lib/config.h
config.status: executing depfiles commands
config.status: executing libtool commands
config.status: executing po-directories commands
config.status: creating po/POTFILES
config.status: creating po/Makefile
=== configuring in libcharset (/home/Administrator/arachni/src/libiconv-1.14/libcharset)
configure: running /bin/sh ./configure --disable-option-checking '--prefix=/home/Administrator/arachni/usr'  --cache-file=/dev/null --srcdir=.
checking whether make sets $(MAKE)... yes
checking for gcc... gcc
checking whether the C compiler works... yes
checking for C compiler default output file name... a.exe
checking for suffix of executables... .exe
checking whether we are cross compiling... no
checking for suffix of object files... o
checking whether we are using the GNU C compiler... yes
checking whether gcc accepts -g... yes
checking for gcc option to accept ISO C89... none needed
checking how to run the C preprocessor... gcc -E
checking for a BSD-compatible install... /usr/bin/install -c
checking build system type... i686-pc-cygwin
checking host system type... i686-pc-cygwin
checking whether to activate relocatable installation... no
checking for grep that handles long lines and -e... /usr/bin/grep
checking for egrep... /usr/bin/grep -E
checking for ANSI C header files... yes
checking for sys/types.h... yes
checking for sys/stat.h... yes
checking for stdlib.h... yes
checking for string.h... yes
checking for memory.h... yes
checking for strings.h... yes
checking for inttypes.h... yes
checking for stdint.h... yes
checking for unistd.h... yes
checking minix/config.h usability... no
checking minix/config.h presence... no
checking for minix/config.h... no
checking whether it is safe to define __EXTENSIONS__... yes
checking how to print strings... printf
checking for a sed that does not truncate output... /usr/bin/sed
checking for fgrep... /usr/bin/grep -F
checking for ld used by gcc... /usr/i686-pc-cygwin/bin/ld.exe
checking if the linker (/usr/i686-pc-cygwin/bin/ld.exe) is GNU ld... yes
checking for BSD- or MS-compatible name lister (nm)... /usr/bin/nm -B
checking the name lister (/usr/bin/nm -B) interface... BSD nm
checking whether ln -s works... yes
checking the maximum length of command line arguments... 8192
checking whether the shell understands some XSI constructs... yes
checking whether the shell understands "+="... yes
checking how to convert i686-pc-cygwin file names to i686-pc-cygwin format... func_convert_file_noop
checking how to convert i686-pc-cygwin file names to toolchain format... func_convert_file_noop
checking for /usr/i686-pc-cygwin/bin/ld.exe option to reload object files... -r
checking for objdump... objdump
checking how to recognize dependent libraries... file_magic ^x86 archive import|^x86 DLL
checking for dlltool... dlltool
checking how to associate runtime and link libraries... func_cygming_dll_for_implib
checking for ar... ar
checking for archiver @FILE support... @
checking for strip... strip
checking for ranlib... ranlib
checking for gawk... gawk
checking command to parse /usr/bin/nm -B output from gcc object... ok
checking for sysroot... no
checking for mt... no
checking if : is a manifest tool... no
checking for dlfcn.h... yes
checking for as... as
checking for dlltool... (cached) dlltool
checking for objdump... (cached) objdump
checking for objdir... .libs
checking if gcc supports -fno-rtti -fno-exceptions... no
checking for gcc option to produce PIC... -DDLL_EXPORT -DPIC
checking if gcc PIC flag -DDLL_EXPORT -DPIC works... yes
checking if gcc static flag -static works... yes
checking if gcc supports -c -o file.o... yes
checking if gcc supports -c -o file.o... (cached) yes
checking whether the gcc linker (/usr/i686-pc-cygwin/bin/ld.exe) supports shared libraries... yes
checking whether -lc should be explicitly linked in... yes
checking dynamic linker characteristics... Win32 ld.exe
checking how to hardcode library paths into programs... immediate
checking whether stripping libraries is possible... yes
checking if libtool supports shared libraries... yes
checking whether to build shared libraries... yes
checking whether to build static libraries... yes
checking for simple visibility declarations... no
checking for nl_langinfo and CODESET... yes
checking for working fcntl.h... no (bad O_NOATIME)
checking whether we are using the GNU C Library 2.1 or newer... no
checking for setlocale... yes
configure: creating ./config.status
config.status: creating Makefile
config.status: creating lib/Makefile
config.status: creating include/localcharset.h
config.status: creating include/localcharset.h.inst
config.status: creating config.h
config.status: executing libtool commands
=== configuring in preload (/home/Administrator/arachni/src/libiconv-1.14/preload)
configure: running /bin/sh ./configure --disable-option-checking '--prefix=/home/Administrator/arachni/usr'  --cache-file=/dev/null --srcdir=.
checking whether make sets $(MAKE)... yes
checking for gcc... gcc
checking whether the C compiler works... yes
checking for C compiler default output file name... a.exe
checking for suffix of executables... .exe
checking whether we are cross compiling... no
checking for suffix of object files... o
checking whether we are using the GNU C compiler... yes
checking whether gcc accepts -g... yes
checking for gcc option to accept ISO C89... none needed
checking how to run the C preprocessor... gcc -E
checking for a BSD-compatible install... /usr/bin/install -c
checking build system type... i686-pc-cygwin
checking host system type... i686-pc-cygwin
checking whether to activate relocatable installation... no
checking whether ln -s works... yes
checking for grep that handles long lines and -e... /usr/bin/grep
checking for egrep... /usr/bin/grep -E
checking for ANSI C header files... yes
checking for sys/types.h... yes
checking for sys/stat.h... yes
checking for stdlib.h... yes
checking for string.h... yes
checking for memory.h... yes
checking for strings.h... yes
checking for inttypes.h... yes
checking for stdint.h... yes
checking for unistd.h... yes
checking minix/config.h usability... no
checking minix/config.h presence... no
checking for minix/config.h... no
checking whether it is safe to define __EXTENSIONS__... yes
checking how to print strings... printf
checking for a sed that does not truncate output... /usr/bin/sed
checking for fgrep... /usr/bin/grep -F
checking for ld used by gcc... /usr/i686-pc-cygwin/bin/ld.exe
checking if the linker (/usr/i686-pc-cygwin/bin/ld.exe) is GNU ld... yes
checking for BSD- or MS-compatible name lister (nm)... /usr/bin/nm -B
checking the name lister (/usr/bin/nm -B) interface... BSD nm
checking the maximum length of command line arguments... 8192
checking whether the shell understands some XSI constructs... yes
checking whether the shell understands "+="... yes
checking how to convert i686-pc-cygwin file names to i686-pc-cygwin format... func_convert_file_noop
checking how to convert i686-pc-cygwin file names to toolchain format... func_convert_file_noop
checking for /usr/i686-pc-cygwin/bin/ld.exe option to reload object files... -r
checking for objdump... objdump
checking how to recognize dependent libraries... file_magic ^x86 archive import|^x86 DLL
checking for dlltool... dlltool
checking how to associate runtime and link libraries... func_cygming_dll_for_implib
checking for ar... ar
checking for archiver @FILE support... @
checking for strip... strip
checking for ranlib... ranlib
checking for gawk... gawk
checking command to parse /usr/bin/nm -B output from gcc object... ok
checking for sysroot... no
checking for mt... no
checking if : is a manifest tool... no
checking for dlfcn.h... yes
checking for as... as
checking for dlltool... (cached) dlltool
checking for objdump... (cached) objdump
checking for objdir... .libs
checking if gcc supports -fno-rtti -fno-exceptions... no
checking for gcc option to produce PIC... -DDLL_EXPORT -DPIC
checking if gcc PIC flag -DDLL_EXPORT -DPIC works... yes
checking if gcc static flag -static works... yes
checking if gcc supports -c -o file.o... yes
checking if gcc supports -c -o file.o... (cached) yes
checking whether the gcc linker (/usr/i686-pc-cygwin/bin/ld.exe) supports shared libraries... yes
checking whether -lc should be explicitly linked in... yes
checking dynamic linker characteristics... Win32 ld.exe
checking how to hardcode library paths into programs... immediate
checking whether stripping libraries is possible... yes
checking if libtool supports shared libraries... yes
checking whether to build shared libraries... yes
checking whether to build static libraries... no
checking whether the -Werror option is usable... yes
checking for simple visibility declarations... no
configure: creating ./config.status
config.status: creating Makefile
config.status: executing libtool commands
builddir="`pwd`"; cd libcharset && make all && make install-lib libdir="$builddir/lib" includedir="$builddir/lib"
make[1]: Entering directory `/home/Administrator/arachni/src/libiconv-1.14/libcharset'
if [ ! -d include ] ; then mkdir include ; fi
cp ./include/libcharset.h.in include/libcharset.h
cd lib && make all
make[2]: Entering directory `/home/Administrator/arachni/src/libiconv-1.14/libcharset/lib'
/bin/sh ../libtool --mode=compile gcc -I. -I. -I.. -I./.. -I../include -g -O2   -DLIBDIR=\"/home/Administrator/arachni/usr/lib\" -DBUILDING_LIBCHARSET -DBUILDING_DLL  -DENABLE_RELOCATABLE=1 -DIN_LIBRARY -DINSTALLDIR=\"/home/Administrator/arachni/usr/lib\" -DNO_XMALLOC  -Dset_relocation_prefix=libcharset_set_relocation_prefix  -Drelocate=libcharset_relocate -DHAVE_CONFIG_H -c ./localcharset.c
libtool: compile:  gcc -I. -I. -I.. -I./.. -I../include -g -O2 -DLIBDIR=\"/home/Administrator/arachni/usr/lib\" -DBUILDING_LIBCHARSET -DBUILDING_DLL -DENABLE_RELOCATABLE=1 -DIN_LIBRARY -DINSTALLDIR=\"/home/Administrator/arachni/usr/lib\" -DNO_XMALLOC -Dset_relocation_prefix=libcharset_set_relocation_prefix -Drelocate=libcharset_relocate -DHAVE_CONFIG_H -c ./localcharset.c  -DDLL_EXPORT -DPIC -o .libs/localcharset.o
libtool: compile:  gcc -I. -I. -I.. -I./.. -I../include -g -O2 -DLIBDIR=\"/home/Administrator/arachni/usr/lib\" -DBUILDING_LIBCHARSET -DBUILDING_DLL -DENABLE_RELOCATABLE=1 -DIN_LIBRARY -DINSTALLDIR=\"/home/Administrator/arachni/usr/lib\" -DNO_XMALLOC -Dset_relocation_prefix=libcharset_set_relocation_prefix -Drelocate=libcharset_relocate -DHAVE_CONFIG_H -c ./localcharset.c -o localcharset.o >/dev/null 2>&1
/bin/sh ../libtool --mode=compile gcc -I. -I. -I.. -I./.. -I../include -g -O2   -DLIBDIR=\"/home/Administrator/arachni/usr/lib\" -DBUILDING_LIBCHARSET -DBUILDING_DLL  -DENABLE_RELOCATABLE=1 -DIN_LIBRARY -DINSTALLDIR=\"/home/Administrator/arachni/usr/lib\" -DNO_XMALLOC  -Dset_relocation_prefix=libcharset_set_relocation_prefix  -Drelocate=libcharset_relocate -DHAVE_CONFIG_H -c ./relocatable.c
libtool: compile:  gcc -I. -I. -I.. -I./.. -I../include -g -O2 -DLIBDIR=\"/home/Administrator/arachni/usr/lib\" -DBUILDING_LIBCHARSET -DBUILDING_DLL -DENABLE_RELOCATABLE=1 -DIN_LIBRARY -DINSTALLDIR=\"/home/Administrator/arachni/usr/lib\" -DNO_XMALLOC -Dset_relocation_prefix=libcharset_set_relocation_prefix -Drelocate=libcharset_relocate -DHAVE_CONFIG_H -c ./relocatable.c  -DDLL_EXPORT -DPIC -o .libs/relocatable.o
libtool: compile:  gcc -I. -I. -I.. -I./.. -I../include -g -O2 -DLIBDIR=\"/home/Administrator/arachni/usr/lib\" -DBUILDING_LIBCHARSET -DBUILDING_DLL -DENABLE_RELOCATABLE=1 -DIN_LIBRARY -DINSTALLDIR=\"/home/Administrator/arachni/usr/lib\" -DNO_XMALLOC -Dset_relocation_prefix=libcharset_set_relocation_prefix -Drelocate=libcharset_relocate -DHAVE_CONFIG_H -c ./relocatable.c -o relocatable.o >/dev/null 2>&1
/bin/sh ../libtool --mode=link gcc  -g -O2  -o libcharset.la -rpath /home/Administrator/arachni/usr/lib -version-info 1:0:0 -no-undefined localcharset.lo relocatable.lo
libtool: link: gcc -shared  .libs/localcharset.o .libs/relocatable.o    -O2   -o .libs/cygcharset-1.dll -Wl,--enable-auto-image-base -Xlinker --out-implib -Xlinker .libs/libcharset.dll.a
Creating library file: .libs/libcharset.dll.a
libtool: link: ar cru .libs/libcharset.a  localcharset.o relocatable.o
libtool: link: ranlib .libs/libcharset.a
libtool: link: ( cd ".libs" && rm -f "libcharset.la" && ln -s "../libcharset.la" "libcharset.la" )
/bin/sh ./config.charset 'i686-pc-cygwin' > t-charset.alias
mv t-charset.alias charset.alias
sed -e '/^#/d' -e 's/@''PACKAGE''@//g' ./ref-add.sin > t-ref-add.sed
mv t-ref-add.sed ref-add.sed
sed -e '/^#/d' -e 's/@''PACKAGE''@//g' ./ref-del.sin > t-ref-del.sed
mv t-ref-del.sed ref-del.sed
make[2]: Leaving directory `/home/Administrator/arachni/src/libiconv-1.14/libcharset/lib'
make[1]: Leaving directory `/home/Administrator/arachni/src/libiconv-1.14/libcharset'
make[1]: Entering directory `/home/Administrator/arachni/src/libiconv-1.14/libcharset'
cd lib && make all
make[2]: Entering directory `/home/Administrator/arachni/src/libiconv-1.14/libcharset/lib'
make[2]: Nothing to be done for `all'.
make[2]: Leaving directory `/home/Administrator/arachni/src/libiconv-1.14/libcharset/lib'
cd lib && make install-lib libdir='/home/Administrator/arachni/src/libiconv-1.14/lib' includedir='/home/Administrator/arachni/src/libiconv-1.14/lib'
make[2]: Entering directory `/home/Administrator/arachni/src/libiconv-1.14/libcharset/lib'
/bin/sh ../build-aux/mkinstalldirs /home/Administrator/arachni/src/libiconv-1.14/lib
/bin/sh ../libtool --mode=install /usr/bin/install -c -m 644 libcharset.la /home/Administrator/arachni/src/libiconv-1.14/lib/libcharset.la
libtool: install: /usr/bin/install -c -m 644 .libs/libcharset.dll.a /home/Administrator/arachni/src/libiconv-1.14/lib/libcharset.dll.a
libtool: install: base_file=`basename libcharset.la`
libtool: install:  dlpath=`/bin/sh 2>&1 -c '. .libs/'libcharset.la'i; echo cygcharset-1.dll'`
libtool: install:  dldir=/home/Administrator/arachni/src/libiconv-1.14/lib/`dirname ../bin/cygcharset-1.dll`
libtool: install:  test -d /home/Administrator/arachni/src/libiconv-1.14/lib/../bin || mkdir -p /home/Administrator/arachni/src/libiconv-1.14/lib/../bin
libtool: install:  /usr/bin/install -c -m 644 .libs/cygcharset-1.dll /home/Administrator/arachni/src/libiconv-1.14/lib/../bin/cygcharset-1.dll
libtool: install:  chmod a+x /home/Administrator/arachni/src/libiconv-1.14/lib/../bin/cygcharset-1.dll
libtool: install:  if test -n '' && test -n 'strip --strip-unneeded'; then eval 'strip --strip-unneeded /home/Administrator/arachni/src/libiconv-1.14/lib/../bin/cygcharset-1.dll' || exit 0; fi
libtool: install: /usr/bin/install -c -m 644 .libs/libcharset.lai /home/Administrator/arachni/src/libiconv-1.14/lib/libcharset.la
libtool: install: /usr/bin/install -c -m 644 .libs/libcharset.a /home/Administrator/arachni/src/libiconv-1.14/lib/libcharset.a
libtool: install: chmod 644 /home/Administrator/arachni/src/libiconv-1.14/lib/libcharset.a
libtool: install: ranlib /home/Administrator/arachni/src/libiconv-1.14/lib/libcharset.a
libtool: install: warning: remember to run `libtool --finish /home/Administrator/arachni/usr/lib'
test -f /home/Administrator/arachni/src/libiconv-1.14/lib/charset.alias && orig=/home/Administrator/arachni/src/libiconv-1.14/lib/charset.alias \
                                || orig=charset.alias; \
sed -f ref-add.sed $orig > /home/Administrator/arachni/src/libiconv-1.14/lib/t-charset.alias; \
/usr/bin/install -c -m 644 /home/Administrator/arachni/src/libiconv-1.14/lib/t-charset.alias /home/Administrator/arachni/src/libiconv-1.14/lib/charset.alias; \
rm -f /home/Administrator/arachni/src/libiconv-1.14/lib/t-charset.alias
make[2]: Leaving directory `/home/Administrator/arachni/src/libiconv-1.14/libcharset/lib'
/bin/sh ./build-aux/mkinstalldirs /home/Administrator/arachni/src/libiconv-1.14/lib
/usr/bin/install -c -m 644 include/libcharset.h /home/Administrator/arachni/src/libiconv-1.14/lib/libcharset.h
/usr/bin/install -c -m 644 include/localcharset.h.inst /home/Administrator/arachni/src/libiconv-1.14/lib/localcharset.h
make[1]: Leaving directory `/home/Administrator/arachni/src/libiconv-1.14/libcharset'
cd lib && make all
make[1]: Entering directory `/home/Administrator/arachni/src/libiconv-1.14/lib'
/bin/sh ../libtool --mode=compile gcc -I. -I. -I../include -I./../include -I.. -I./..  -g -O2  -DLIBDIR=\"/home/Administrator/arachni/usr/lib\" -DBUILDING_LIBICONV -DBUILDING_DLL  -DENABLE_RELOCATABLE=1 -DIN_LIBRARY -DINSTALLDIR=\"/home/Administrator/arachni/usr/lib\" -DNO_XMALLOC  -Dset_relocation_prefix=libiconv_set_relocation_prefix  -Drelocate=libiconv_relocate -DHAVE_CONFIG_H -c ./iconv.c
libtool: compile:  gcc -I. -I. -I../include -I./../include -I.. -I./.. -g -O2 -DLIBDIR=\"/home/Administrator/arachni/usr/lib\" -DBUILDING_LIBICONV -DBUILDING_DLL -DENABLE_RELOCATABLE=1 -DIN_LIBRARY -DINSTALLDIR=\"/home/Administrator/arachni/usr/lib\" -DNO_XMALLOC -Dset_relocation_prefix=libiconv_set_relocation_prefix -Drelocate=libiconv_relocate -DHAVE_CONFIG_H -c ./iconv.c  -DDLL_EXPORT -DPIC -o .libs/iconv.o
/bin/sh ../libtool --mode=compile gcc -I. -I. -I../include -I./../include -I.. -I./..  -g -O2  -DLIBDIR=\"/home/Administrator/arachni/usr/lib\" -DBUILDING_LIBICONV -DBUILDING_DLL  -DENABLE_RELOCATABLE=1 -DIN_LIBRARY -DINSTALLDIR=\"/home/Administrator/arachni/usr/lib\" -DNO_XMALLOC  -Dset_relocation_prefix=libiconv_set_relocation_prefix  -Drelocate=libiconv_relocate -DHAVE_CONFIG_H -c ./../libcharset/lib/localcharset.c
libtool: compile:  gcc -I. -I. -I../include -I./../include -I.. -I./.. -g -O2 -DLIBDIR=\"/home/Administrator/arachni/usr/lib\" -DBUILDING_LIBICONV -DBUILDING_DLL -DENABLE_RELOCATABLE=1 -DIN_LIBRARY -DINSTALLDIR=\"/home/Administrator/arachni/usr/lib\" -DNO_XMALLOC -Dset_relocation_prefix=libiconv_set_relocation_prefix -Drelocate=libiconv_relocate -DHAVE_CONFIG_H -c ./../libcharset/lib/localcharset.c  -DDLL_EXPORT -DPIC -o .libs/localcharset.o
/bin/sh ../libtool --mode=compile gcc -I. -I. -I../include -I./../include -I.. -I./..  -g -O2  -DLIBDIR=\"/home/Administrator/arachni/usr/lib\" -DBUILDING_LIBICONV -DBUILDING_DLL  -DENABLE_RELOCATABLE=1 -DIN_LIBRARY -DINSTALLDIR=\"/home/Administrator/arachni/usr/lib\" -DNO_XMALLOC  -Dset_relocation_prefix=libiconv_set_relocation_prefix  -Drelocate=libiconv_relocate -DHAVE_CONFIG_H -c ./relocatable.c
libtool: compile:  gcc -I. -I. -I../include -I./../include -I.. -I./.. -g -O2 -DLIBDIR=\"/home/Administrator/arachni/usr/lib\" -DBUILDING_LIBICONV -DBUILDING_DLL -DENABLE_RELOCATABLE=1 -DIN_LIBRARY -DINSTALLDIR=\"/home/Administrator/arachni/usr/lib\" -DNO_XMALLOC -Dset_relocation_prefix=libiconv_set_relocation_prefix -Drelocate=libiconv_relocate -DHAVE_CONFIG_H -c ./relocatable.c  -DDLL_EXPORT -DPIC -o .libs/relocatable.o
/bin/sh ../libtool --mode=compile gcc -I. -I. -I../include -I./../include -I.. -I./..  -g -O2  -DLIBDIR=\"/home/Administrator/arachni/usr/lib\" -DBUILDING_LIBICONV -DBUILDING_DLL  -DENABLE_RELOCATABLE=1 -DIN_LIBRARY -DINSTALLDIR=\"/home/Administrator/arachni/usr/lib\" -DNO_XMALLOC  -Dset_relocation_prefix=libiconv_set_relocation_prefix  -Drelocate=libiconv_relocate -DHAVE_CONFIG_H -c ./../woe32dll/iconv-exports.c
libtool: compile:  gcc -I. -I. -I../include -I./../include -I.. -I./.. -g -O2 -DLIBDIR=\"/home/Administrator/arachni/usr/lib\" -DBUILDING_LIBICONV -DBUILDING_DLL -DENABLE_RELOCATABLE=1 -DIN_LIBRARY -DINSTALLDIR=\"/home/Administrator/arachni/usr/lib\" -DNO_XMALLOC -Dset_relocation_prefix=libiconv_set_relocation_prefix -Drelocate=libiconv_relocate -DHAVE_CONFIG_H -c ./../woe32dll/iconv-exports.c  -DDLL_EXPORT -DPIC -o .libs/iconv-exports.o
/bin/sh ../libtool --mode=compile --tag=RC windres `/bin/sh ./../windows/windres-options --escape 1.14` -i ./../windows/libiconv.rc -o libiconv.res.lo --output-format=coff
libtool: compile:  windres -DPACKAGE_VERSION_STRING=\\\"1.14\\\" -DPACKAGE_VERSION_MAJOR=1 -DPACKAGE_VERSION_MINOR=14 -DPACKAGE_VERSION_SUBMINOR=0 -i ./../windows/libiconv.rc --output-format=coff  -o .libs/libiconv.res.o
/bin/sh ../libtool --mode=link gcc -Wl,--export-all-symbols -g -O2  -o libiconv.la -rpath /home/Administrator/arachni/usr/lib -version-info 7:1:5 -no-undefined iconv.lo localcharset.lo relocatable.lo iconv-exports.lo libiconv.res.lo
libtool: link: gcc -shared  .libs/iconv.o .libs/localcharset.o .libs/relocatable.o .libs/iconv-exports.o .libs/libiconv.res.o    -Wl,--export-all-symbols -O2   -o .libs/cygiconv-2.dll -Wl,--enable-auto-image-base -Xlinker --out-implib -Xlinker .libs/libiconv.dll.a
Creating library file: .libs/libiconv.dll.a
libtool: link: ( cd ".libs" && rm -f "libiconv.la" && ln -s "../libiconv.la" "libiconv.la" )
make[1]: Leaving directory `/home/Administrator/arachni/src/libiconv-1.14/lib'
cd preload && make all
make[1]: Entering directory `/home/Administrator/arachni/src/libiconv-1.14/preload'
make[1]: Nothing to be done for `all'.
make[1]: Leaving directory `/home/Administrator/arachni/src/libiconv-1.14/preload'
cd srclib && make all
make[1]: Entering directory `/home/Administrator/arachni/src/libiconv-1.14/srclib'
make[2]: Entering directory `/home/Administrator/arachni/src/libiconv-1.14'
make[2]: Nothing to be done for `am--refresh'.
make[2]: Leaving directory `/home/Administrator/arachni/src/libiconv-1.14'
rm -f alloca.h-t alloca.h && \
{ echo '/* DO NOT EDIT! GENERATED AUTOMATICALLY! */'; \
  cat ./alloca.in.h; \
} > alloca.h-t && \
mv -f alloca.h-t alloca.h
rm -f c++defs.h-t c++defs.h && \
sed -n -e '/_GL_CXXDEFS/,$p' \
  < ../build-aux/snippet/c++defs.h \
  > c++defs.h-t && \
mv c++defs.h-t c++defs.h
rm -f arg-nonnull.h-t arg-nonnull.h && \
sed -n -e '/GL_ARG_NONNULL/,$p' \
  < ../build-aux/snippet/arg-nonnull.h \
  > arg-nonnull.h-t && \
mv arg-nonnull.h-t arg-nonnull.h
rm -f warn-on-use.h-t warn-on-use.h && \
sed -n -e '/^.ifndef/,$p' \
  < ../build-aux/snippet/warn-on-use.h \
  > warn-on-use.h-t && \
mv warn-on-use.h-t warn-on-use.h
rm -f fcntl.h-t fcntl.h && \
{ echo '/* DO NOT EDIT! GENERATED AUTOMATICALLY! */'; \
  sed -e 's|@''GUARD_PREFIX''@|GL|g' \
      -e 's|@''INCLUDE_NEXT''@|include_next|g' \
      -e 's|@''PRAGMA_SYSTEM_HEADER''@|#pragma GCC system_header|g' \
      -e 's|@''PRAGMA_COLUMNS''@||g' \
      -e 's|@''NEXT_FCNTL_H''@|<fcntl.h>|g' \
      -e 's/@''GNULIB_FCNTL''@/0/g' \
      -e 's/@''GNULIB_NONBLOCKING''@/0/g' \
      -e 's/@''GNULIB_OPEN''@/0/g' \
      -e 's/@''GNULIB_OPENAT''@/0/g' \
      -e 's|@''HAVE_FCNTL''@|1|g' \
      -e 's|@''HAVE_OPENAT''@|1|g' \
      -e 's|@''REPLACE_FCNTL''@|0|g' \
      -e 's|@''REPLACE_OPEN''@|0|g' \
      -e 's|@''REPLACE_OPENAT''@|0|g' \
      -e '/definitions of _GL_FUNCDECL_RPL/r c++defs.h' \
      -e '/definition of _GL_ARG_NONNULL/r arg-nonnull.h' \
      -e '/definition of _GL_WARN_ON_USE/r warn-on-use.h' \
      < ./fcntl.in.h; \
} > fcntl.h-t && \
mv fcntl.h-t fcntl.h
rm -f signal.h-t signal.h && \
{ echo '/* DO NOT EDIT! GENERATED AUTOMATICALLY! */' && \
  sed -e 's|@''GUARD_PREFIX''@|GL|g' \
      -e 's|@''INCLUDE_NEXT''@|include_next|g' \
      -e 's|@''PRAGMA_SYSTEM_HEADER''@|#pragma GCC system_header|g' \
      -e 's|@''PRAGMA_COLUMNS''@||g' \
      -e 's|@''NEXT_SIGNAL_H''@|<signal.h>|g' \
      -e 's|@''GNULIB_PTHREAD_SIGMASK''@|0|g' \
      -e 's/@''GNULIB_SIGNAL_H_SIGPIPE''@/1/g' \
      -e 's/@''GNULIB_SIGPROCMASK''@/1/g' \
      -e 's/@''GNULIB_SIGACTION''@/0/g' \
      -e 's|@''HAVE_POSIX_SIGNALBLOCKING''@|1|g' \
      -e 's|@''HAVE_PTHREAD_SIGMASK''@|1|g' \
      -e 's|@''HAVE_SIGSET_T''@|1|g' \
      -e 's|@''HAVE_SIGINFO_T''@|1|g' \
      -e 's|@''HAVE_SIGACTION''@|1|g' \
      -e 's|@''HAVE_STRUCT_SIGACTION_SA_SIGACTION''@|1|g' \
      -e 's|@''HAVE_TYPE_VOLATILE_SIG_ATOMIC_T''@|1|g' \
      -e 's|@''HAVE_SIGHANDLER_T''@|1|g' \
      -e 's|@''REPLACE_PTHREAD_SIGMASK''@|0|g' \
      -e '/definitions of _GL_FUNCDECL_RPL/r c++defs.h' \
      -e '/definition of _GL_ARG_NONNULL/r arg-nonnull.h' \
      -e '/definition of _GL_WARN_ON_USE/r warn-on-use.h' \
      < ./signal.in.h; \
} > signal.h-t && \
mv signal.h-t signal.h
rm -f stdio.h-t stdio.h && \
{ echo '/* DO NOT EDIT! GENERATED AUTOMATICALLY! */' && \
  sed -e 's|@''GUARD_PREFIX''@|GL|g' \
      -e 's|@''INCLUDE_NEXT''@|include_next|g' \
      -e 's|@''PRAGMA_SYSTEM_HEADER''@|#pragma GCC system_header|g' \
      -e 's|@''PRAGMA_COLUMNS''@||g' \
      -e 's|@''NEXT_STDIO_H''@|<stdio.h>|g' \
      -e 's/@''GNULIB_DPRINTF''@/0/g' \
      -e 's/@''GNULIB_FCLOSE''@/0/g' \
      -e 's/@''GNULIB_FFLUSH''@/0/g' \
      -e 's/@''GNULIB_FGETC''@/1/g' \
      -e 's/@''GNULIB_FGETS''@/1/g' \
      -e 's/@''GNULIB_FOPEN''@/0/g' \
      -e 's/@''GNULIB_FPRINTF''@/1/g' \
      -e 's/@''GNULIB_FPRINTF_POSIX''@/0/g' \
      -e 's/@''GNULIB_FPURGE''@/0/g' \
      -e 's/@''GNULIB_FPUTC''@/1/g' \
      -e 's/@''GNULIB_FPUTS''@/1/g' \
      -e 's/@''GNULIB_FREAD''@/1/g' \
      -e 's/@''GNULIB_FREOPEN''@/0/g' \
      -e 's/@''GNULIB_FSCANF''@/1/g' \
      -e 's/@''GNULIB_FSEEK''@/0/g' \
      -e 's/@''GNULIB_FSEEKO''@/0/g' \
      -e 's/@''GNULIB_FTELL''@/0/g' \
      -e 's/@''GNULIB_FTELLO''@/0/g' \
      -e 's/@''GNULIB_FWRITE''@/1/g' \
      -e 's/@''GNULIB_GETC''@/1/g' \
      -e 's/@''GNULIB_GETCHAR''@/1/g' \
      -e 's/@''GNULIB_GETDELIM''@/0/g' \
      -e 's/@''GNULIB_GETLINE''@/0/g' \
      -e 's/@''GNULIB_GETS''@/1/g' \
      -e 's/@''GNULIB_OBSTACK_PRINTF''@/0/g' \
      -e 's/@''GNULIB_OBSTACK_PRINTF_POSIX''@/0/g' \
      -e 's/@''GNULIB_PERROR''@/0/g' \
      -e 's/@''GNULIB_POPEN''@/0/g' \
      -e 's/@''GNULIB_PRINTF''@/1/g' \
      -e 's/@''GNULIB_PRINTF_POSIX''@/0/g' \
      -e 's/@''GNULIB_PUTC''@/1/g' \
      -e 's/@''GNULIB_PUTCHAR''@/1/g' \
      -e 's/@''GNULIB_PUTS''@/1/g' \
      -e 's/@''GNULIB_REMOVE''@/0/g' \
      -e 's/@''GNULIB_RENAME''@/0/g' \
      -e 's/@''GNULIB_RENAMEAT''@/0/g' \
      -e 's/@''GNULIB_SCANF''@/1/g' \
      -e 's/@''GNULIB_SNPRINTF''@/0/g' \
      -e 's/@''GNULIB_SPRINTF_POSIX''@/0/g' \
      -e 's/@''GNULIB_STDIO_H_NONBLOCKING''@/0/g' \
      -e 's/@''GNULIB_STDIO_H_SIGPIPE''@/1/g' \
      -e 's/@''GNULIB_TMPFILE''@/0/g' \
      -e 's/@''GNULIB_VASPRINTF''@/0/g' \
      -e 's/@''GNULIB_VDPRINTF''@/0/g' \
      -e 's/@''GNULIB_VFPRINTF''@/1/g' \
      -e 's/@''GNULIB_VFPRINTF_POSIX''@/0/g' \
      -e 's/@''GNULIB_VFSCANF''@/0/g' \
      -e 's/@''GNULIB_VSCANF''@/0/g' \
      -e 's/@''GNULIB_VPRINTF''@/1/g' \
      -e 's/@''GNULIB_VPRINTF_POSIX''@/0/g' \
      -e 's/@''GNULIB_VSNPRINTF''@/0/g' \
      -e 's/@''GNULIB_VSPRINTF_POSIX''@/0/g' \
      < ./stdio.in.h | \
  sed -e 's|@''HAVE_DECL_FPURGE''@|1|g' \
      -e 's|@''HAVE_DECL_FSEEKO''@|1|g' \
      -e 's|@''HAVE_DECL_FTELLO''@|1|g' \
      -e 's|@''HAVE_DECL_GETDELIM''@|1|g' \
      -e 's|@''HAVE_DECL_GETLINE''@|1|g' \
      -e 's|@''HAVE_DECL_OBSTACK_PRINTF''@|1|g' \
      -e 's|@''HAVE_DECL_SNPRINTF''@|1|g' \
      -e 's|@''HAVE_DECL_VSNPRINTF''@|1|g' \
      -e 's|@''HAVE_DPRINTF''@|1|g' \
      -e 's|@''HAVE_FSEEKO''@|1|g' \
      -e 's|@''HAVE_FTELLO''@|1|g' \
      -e 's|@''HAVE_RENAMEAT''@|1|g' \
      -e 's|@''HAVE_VASPRINTF''@|1|g' \
      -e 's|@''HAVE_VDPRINTF''@|1|g' \
      -e 's|@''REPLACE_DPRINTF''@|0|g' \
      -e 's|@''REPLACE_FCLOSE''@|0|g' \
      -e 's|@''REPLACE_FFLUSH''@|0|g' \
      -e 's|@''REPLACE_FOPEN''@|0|g' \
      -e 's|@''REPLACE_FPRINTF''@|0|g' \
      -e 's|@''REPLACE_FPURGE''@|0|g' \
      -e 's|@''REPLACE_FREOPEN''@|0|g' \
      -e 's|@''REPLACE_FSEEK''@|0|g' \
      -e 's|@''REPLACE_FSEEKO''@|0|g' \
      -e 's|@''REPLACE_FTELL''@|0|g' \
      -e 's|@''REPLACE_FTELLO''@|0|g' \
      -e 's|@''REPLACE_GETDELIM''@|0|g' \
      -e 's|@''REPLACE_GETLINE''@|0|g' \
      -e 's|@''REPLACE_OBSTACK_PRINTF''@|0|g' \
      -e 's|@''REPLACE_PERROR''@|0|g' \
      -e 's|@''REPLACE_POPEN''@|0|g' \
      -e 's|@''REPLACE_PRINTF''@|0|g' \
      -e 's|@''REPLACE_REMOVE''@|0|g' \
      -e 's|@''REPLACE_RENAME''@|0|g' \
      -e 's|@''REPLACE_RENAMEAT''@|0|g' \
      -e 's|@''REPLACE_SNPRINTF''@|0|g' \
      -e 's|@''REPLACE_SPRINTF''@|0|g' \
      -e 's|@''REPLACE_STDIO_READ_FUNCS''@|0|g' \
      -e 's|@''REPLACE_STDIO_WRITE_FUNCS''@|0|g' \
      -e 's|@''REPLACE_TMPFILE''@|0|g' \
      -e 's|@''REPLACE_VASPRINTF''@|0|g' \
      -e 's|@''REPLACE_VDPRINTF''@|0|g' \
      -e 's|@''REPLACE_VFPRINTF''@|0|g' \
      -e 's|@''REPLACE_VPRINTF''@|0|g' \
      -e 's|@''REPLACE_VSNPRINTF''@|0|g' \
      -e 's|@''REPLACE_VSPRINTF''@|0|g' \
      -e 's|@''ASM_SYMBOL_PREFIX''@|"_"|g' \
      -e '/definitions of _GL_FUNCDECL_RPL/r c++defs.h' \
      -e '/definition of _GL_ARG_NONNULL/r arg-nonnull.h' \
      -e '/definition of _GL_WARN_ON_USE/r warn-on-use.h'; \
} > stdio.h-t && \
mv stdio.h-t stdio.h
rm -f stdlib.h-t stdlib.h && \
{ echo '/* DO NOT EDIT! GENERATED AUTOMATICALLY! */' && \
  sed -e 's|@''GUARD_PREFIX''@|GL|g' \
      -e 's|@''INCLUDE_NEXT''@|include_next|g' \
      -e 's|@''PRAGMA_SYSTEM_HEADER''@|#pragma GCC system_header|g' \
      -e 's|@''PRAGMA_COLUMNS''@||g' \
      -e 's|@''NEXT_STDLIB_H''@|<stdlib.h>|g' \
      -e 's/@''GNULIB__EXIT''@/0/g' \
      -e 's/@''GNULIB_ATOLL''@/0/g' \
      -e 's/@''GNULIB_CALLOC_POSIX''@/0/g' \
      -e 's/@''GNULIB_CANONICALIZE_FILE_NAME''@/1/g' \
      -e 's/@''GNULIB_GETLOADAVG''@/0/g' \
      -e 's/@''GNULIB_GETSUBOPT''@/0/g' \
      -e 's/@''GNULIB_GRANTPT''@/0/g' \
      -e 's/@''GNULIB_MALLOC_POSIX''@/0/g' \
      -e 's/@''GNULIB_MBTOWC''@/0/g' \
      -e 's/@''GNULIB_MKDTEMP''@/0/g' \
      -e 's/@''GNULIB_MKOSTEMP''@/0/g' \
      -e 's/@''GNULIB_MKOSTEMPS''@/0/g' \
      -e 's/@''GNULIB_MKSTEMP''@/0/g' \
      -e 's/@''GNULIB_MKSTEMPS''@/0/g' \
      -e 's/@''GNULIB_PTSNAME''@/0/g' \
      -e 's/@''GNULIB_PUTENV''@/0/g' \
      -e 's/@''GNULIB_RANDOM_R''@/0/g' \
      -e 's/@''GNULIB_REALLOC_POSIX''@/0/g' \
      -e 's/@''GNULIB_REALPATH''@/1/g' \
      -e 's/@''GNULIB_RPMATCH''@/0/g' \
      -e 's/@''GNULIB_SETENV''@/0/g' \
      -e 's/@''GNULIB_STRTOD''@/0/g' \
      -e 's/@''GNULIB_STRTOLL''@/0/g' \
      -e 's/@''GNULIB_STRTOULL''@/0/g' \
      -e 's/@''GNULIB_SYSTEM_POSIX''@/0/g' \
      -e 's/@''GNULIB_UNLOCKPT''@/0/g' \
      -e 's/@''GNULIB_UNSETENV''@/0/g' \
      -e 's/@''GNULIB_WCTOMB''@/0/g' \
      < ./stdlib.in.h | \
  sed -e 's|@''HAVE__EXIT''@|1|g' \
      -e 's|@''HAVE_ATOLL''@|1|g' \
      -e 's|@''HAVE_CANONICALIZE_FILE_NAME''@|1|g' \
      -e 's|@''HAVE_DECL_GETLOADAVG''@|1|g' \
      -e 's|@''HAVE_GETSUBOPT''@|1|g' \
      -e 's|@''HAVE_GRANTPT''@|1|g' \
      -e 's|@''HAVE_MKDTEMP''@|1|g' \
      -e 's|@''HAVE_MKOSTEMP''@|1|g' \
      -e 's|@''HAVE_MKOSTEMPS''@|1|g' \
      -e 's|@''HAVE_MKSTEMP''@|1|g' \
      -e 's|@''HAVE_MKSTEMPS''@|1|g' \
      -e 's|@''HAVE_PTSNAME''@|1|g' \
      -e 's|@''HAVE_RANDOM_H''@|1|g' \
      -e 's|@''HAVE_RANDOM_R''@|1|g' \
      -e 's|@''HAVE_REALPATH''@|1|g' \
      -e 's|@''HAVE_RPMATCH''@|1|g' \
      -e 's|@''HAVE_DECL_SETENV''@|1|g' \
      -e 's|@''HAVE_STRTOD''@|1|g' \
      -e 's|@''HAVE_STRTOLL''@|1|g' \
      -e 's|@''HAVE_STRTOULL''@|1|g' \
      -e 's|@''HAVE_STRUCT_RANDOM_DATA''@|1|g' \
      -e 's|@''HAVE_SYS_LOADAVG_H''@|0|g' \
      -e 's|@''HAVE_UNLOCKPT''@|1|g' \
      -e 's|@''HAVE_DECL_UNSETENV''@|1|g' \
      -e 's|@''REPLACE_CALLOC''@|0|g' \
      -e 's|@''REPLACE_CANONICALIZE_FILE_NAME''@|1|g' \
      -e 's|@''REPLACE_MALLOC''@|0|g' \
      -e 's|@''REPLACE_MBTOWC''@|0|g' \
      -e 's|@''REPLACE_MKSTEMP''@|0|g' \
      -e 's|@''REPLACE_PUTENV''@|0|g' \
      -e 's|@''REPLACE_REALLOC''@|0|g' \
      -e 's|@''REPLACE_REALPATH''@|1|g' \
      -e 's|@''REPLACE_SETENV''@|0|g' \
      -e 's|@''REPLACE_STRTOD''@|0|g' \
      -e 's|@''REPLACE_UNSETENV''@|0|g' \
      -e 's|@''REPLACE_WCTOMB''@|0|g' \
      -e '/definitions of _GL_FUNCDECL_RPL/r c++defs.h' \
      -e '/definition of _Noreturn/r ../build-aux/snippet/_Noreturn.h' \
      -e '/definition of _GL_ARG_NONNULL/r arg-nonnull.h' \
      -e '/definition of _GL_WARN_ON_USE/r warn-on-use.h'; \
} > stdlib.h-t && \
mv stdlib.h-t stdlib.h
rm -f string.h-t string.h && \
{ echo '/* DO NOT EDIT! GENERATED AUTOMATICALLY! */' && \
  sed -e 's|@''GUARD_PREFIX''@|GL|g' \
      -e 's|@''INCLUDE_NEXT''@|include_next|g' \
      -e 's|@''PRAGMA_SYSTEM_HEADER''@|#pragma GCC system_header|g' \
      -e 's|@''PRAGMA_COLUMNS''@||g' \
      -e 's|@''NEXT_STRING_H''@|<string.h>|g' \
      -e 's/@''GNULIB_FFSL''@/0/g' \
      -e 's/@''GNULIB_FFSLL''@/0/g' \
      -e 's/@''GNULIB_MBSLEN''@/0/g' \
      -e 's/@''GNULIB_MBSNLEN''@/0/g' \
      -e 's/@''GNULIB_MBSCHR''@/0/g' \
      -e 's/@''GNULIB_MBSRCHR''@/0/g' \
      -e 's/@''GNULIB_MBSSTR''@/0/g' \
      -e 's/@''GNULIB_MBSCASECMP''@/0/g' \
      -e 's/@''GNULIB_MBSNCASECMP''@/0/g' \
      -e 's/@''GNULIB_MBSPCASECMP''@/0/g' \
      -e 's/@''GNULIB_MBSCASESTR''@/0/g' \
      -e 's/@''GNULIB_MBSCSPN''@/0/g' \
      -e 's/@''GNULIB_MBSPBRK''@/0/g' \
      -e 's/@''GNULIB_MBSSPN''@/0/g' \
      -e 's/@''GNULIB_MBSSEP''@/0/g' \
      -e 's/@''GNULIB_MBSTOK_R''@/0/g' \
      -e 's/@''GNULIB_MEMCHR''@/0/g' \
      -e 's/@''GNULIB_MEMMEM''@/0/g' \
      -e 's/@''GNULIB_MEMPCPY''@/0/g' \
      -e 's/@''GNULIB_MEMRCHR''@/0/g' \
      -e 's/@''GNULIB_RAWMEMCHR''@/0/g' \
      -e 's/@''GNULIB_STPCPY''@/0/g' \
      -e 's/@''GNULIB_STPNCPY''@/0/g' \
      -e 's/@''GNULIB_STRCHRNUL''@/0/g' \
      -e 's/@''GNULIB_STRDUP''@/0/g' \
      -e 's/@''GNULIB_STRNCAT''@/0/g' \
      -e 's/@''GNULIB_STRNDUP''@/0/g' \
      -e 's/@''GNULIB_STRNLEN''@/0/g' \
      -e 's/@''GNULIB_STRPBRK''@/0/g' \
      -e 's/@''GNULIB_STRSEP''@/0/g' \
      -e 's/@''GNULIB_STRSTR''@/0/g' \
      -e 's/@''GNULIB_STRCASESTR''@/0/g' \
      -e 's/@''GNULIB_STRTOK_R''@/0/g' \
      -e 's/@''GNULIB_STRERROR''@/1/g' \
      -e 's/@''GNULIB_STRERROR_R''@/0/g' \
      -e 's/@''GNULIB_STRSIGNAL''@/0/g' \
      -e 's/@''GNULIB_STRVERSCMP''@/0/g' \
      < ./string.in.h | \
  sed -e 's|@''HAVE_FFSL''@|1|g' \
      -e 's|@''HAVE_FFSLL''@|1|g' \
      -e 's|@''HAVE_MBSLEN''@|0|g' \
      -e 's|@''HAVE_MEMCHR''@|1|g' \
      -e 's|@''HAVE_DECL_MEMMEM''@|1|g' \
      -e 's|@''HAVE_MEMPCPY''@|1|g' \
      -e 's|@''HAVE_DECL_MEMRCHR''@|1|g' \
      -e 's|@''HAVE_RAWMEMCHR''@|1|g' \
      -e 's|@''HAVE_STPCPY''@|1|g' \
      -e 's|@''HAVE_STPNCPY''@|1|g' \
      -e 's|@''HAVE_STRCHRNUL''@|1|g' \
      -e 's|@''HAVE_DECL_STRDUP''@|1|g' \
      -e 's|@''HAVE_DECL_STRNDUP''@|1|g' \
      -e 's|@''HAVE_DECL_STRNLEN''@|1|g' \
      -e 's|@''HAVE_STRPBRK''@|1|g' \
      -e 's|@''HAVE_STRSEP''@|1|g' \
      -e 's|@''HAVE_STRCASESTR''@|1|g' \
      -e 's|@''HAVE_DECL_STRTOK_R''@|1|g' \
      -e 's|@''HAVE_DECL_STRERROR_R''@|1|g' \
      -e 's|@''HAVE_DECL_STRSIGNAL''@|1|g' \
      -e 's|@''HAVE_STRVERSCMP''@|1|g' \
      -e 's|@''REPLACE_STPNCPY''@|0|g' \
      -e 's|@''REPLACE_MEMCHR''@|0|g' \
      -e 's|@''REPLACE_MEMMEM''@|0|g' \
      -e 's|@''REPLACE_STRCASESTR''@|0|g' \
      -e 's|@''REPLACE_STRCHRNUL''@|0|g' \
      -e 's|@''REPLACE_STRDUP''@|0|g' \
      -e 's|@''REPLACE_STRSTR''@|0|g' \
      -e 's|@''REPLACE_STRERROR''@|0|g' \
      -e 's|@''REPLACE_STRERROR_R''@|0|g' \
      -e 's|@''REPLACE_STRNCAT''@|0|g' \
      -e 's|@''REPLACE_STRNDUP''@|0|g' \
      -e 's|@''REPLACE_STRNLEN''@|0|g' \
      -e 's|@''REPLACE_STRSIGNAL''@|0|g' \
      -e 's|@''REPLACE_STRTOK_R''@|0|g' \
      -e 's|@''UNDEFINE_STRTOK_R''@|0|g' \
      -e '/definitions of _GL_FUNCDECL_RPL/r c++defs.h' \
      -e '/definition of _GL_ARG_NONNULL/r arg-nonnull.h' \
      -e '/definition of _GL_WARN_ON_USE/r warn-on-use.h'; \
      < ./string.in.h; \
} > string.h-t && \
mv string.h-t string.h
/usr/bin/mkdir -p sys
rm -f sys/stat.h-t sys/stat.h && \
{ echo '/* DO NOT EDIT! GENERATED AUTOMATICALLY! */'; \
  sed -e 's|@''GUARD_PREFIX''@|GL|g' \
      -e 's|@''INCLUDE_NEXT''@|include_next|g' \
      -e 's|@''PRAGMA_SYSTEM_HEADER''@|#pragma GCC system_header|g' \
      -e 's|@''PRAGMA_COLUMNS''@||g' \
      -e 's|@''NEXT_SYS_STAT_H''@|<sys/stat.h>|g' \
      -e 's/@''GNULIB_FCHMODAT''@/0/g' \
      -e 's/@''GNULIB_FSTATAT''@/0/g' \
      -e 's/@''GNULIB_FUTIMENS''@/0/g' \
      -e 's/@''GNULIB_LCHMOD''@/0/g' \
      -e 's/@''GNULIB_LSTAT''@/1/g' \
      -e 's/@''GNULIB_MKDIRAT''@/0/g' \
      -e 's/@''GNULIB_MKFIFO''@/0/g' \
      -e 's/@''GNULIB_MKFIFOAT''@/0/g' \
      -e 's/@''GNULIB_MKNOD''@/0/g' \
      -e 's/@''GNULIB_MKNODAT''@/0/g' \
      -e 's/@''GNULIB_STAT''@/1/g' \
      -e 's/@''GNULIB_UTIMENSAT''@/0/g' \
      -e 's|@''HAVE_FCHMODAT''@|1|g' \
      -e 's|@''HAVE_FSTATAT''@|1|g' \
      -e 's|@''HAVE_FUTIMENS''@|1|g' \
      -e 's|@''HAVE_LCHMOD''@|1|g' \
      -e 's|@''HAVE_LSTAT''@|1|g' \
      -e 's|@''HAVE_MKDIRAT''@|1|g' \
      -e 's|@''HAVE_MKFIFO''@|1|g' \
      -e 's|@''HAVE_MKFIFOAT''@|1|g' \
      -e 's|@''HAVE_MKNOD''@|1|g' \
      -e 's|@''HAVE_MKNODAT''@|1|g' \
      -e 's|@''HAVE_UTIMENSAT''@|1|g' \
      -e 's|@''REPLACE_FSTAT''@|0|g' \
      -e 's|@''REPLACE_FSTATAT''@|0|g' \
      -e 's|@''REPLACE_FUTIMENS''@|0|g' \
      -e 's|@''REPLACE_LSTAT''@|0|g' \
      -e 's|@''REPLACE_MKDIR''@|0|g' \
      -e 's|@''REPLACE_MKFIFO''@|0|g' \
      -e 's|@''REPLACE_MKNOD''@|0|g' \
      -e 's|@''REPLACE_STAT''@|0|g' \
      -e 's|@''REPLACE_UTIMENSAT''@|0|g' \
      -e '/definitions of _GL_FUNCDECL_RPL/r c++defs.h' \
      -e '/definition of _GL_ARG_NONNULL/r arg-nonnull.h' \
      -e '/definition of _GL_WARN_ON_USE/r warn-on-use.h' \
      < ./sys_stat.in.h; \
} > sys/stat.h-t && \
mv sys/stat.h-t sys/stat.h
rm -f time.h-t time.h && \
{ echo '/* DO NOT EDIT! GENERATED AUTOMATICALLY! */' && \
  sed -e 's|@''GUARD_PREFIX''@|GL|g' \
      -e 's|@''INCLUDE_NEXT''@|include_next|g' \
      -e 's|@''PRAGMA_SYSTEM_HEADER''@|#pragma GCC system_header|g' \
      -e 's|@''PRAGMA_COLUMNS''@||g' \
      -e 's|@''NEXT_TIME_H''@|<time.h>|g' \
      -e 's/@''GNULIB_MKTIME''@/0/g' \
      -e 's/@''GNULIB_NANOSLEEP''@/0/g' \
      -e 's/@''GNULIB_STRPTIME''@/0/g' \
      -e 's/@''GNULIB_TIMEGM''@/0/g' \
      -e 's/@''GNULIB_TIME_R''@/0/g' \
      -e 's|@''HAVE_DECL_LOCALTIME_R''@|1|g' \
      -e 's|@''HAVE_NANOSLEEP''@|1|g' \
      -e 's|@''HAVE_STRPTIME''@|1|g' \
      -e 's|@''HAVE_TIMEGM''@|1|g' \
      -e 's|@''REPLACE_LOCALTIME_R''@|GNULIB_PORTCHECK|g' \
      -e 's|@''REPLACE_MKTIME''@|GNULIB_PORTCHECK|g' \
      -e 's|@''REPLACE_NANOSLEEP''@|GNULIB_PORTCHECK|g' \
      -e 's|@''REPLACE_TIMEGM''@|GNULIB_PORTCHECK|g' \
      -e 's|@''PTHREAD_H_DEFINES_STRUCT_TIMESPEC''@|0|g' \
      -e 's|@''SYS_TIME_H_DEFINES_STRUCT_TIMESPEC''@|0|g' \
      -e 's|@''TIME_H_DEFINES_STRUCT_TIMESPEC''@|1|g' \
      -e '/definitions of _GL_FUNCDECL_RPL/r c++defs.h' \
      -e '/definition of _GL_ARG_NONNULL/r arg-nonnull.h' \
      -e '/definition of _GL_WARN_ON_USE/r warn-on-use.h' \
      < ./time.in.h; \
} > time.h-t && \
mv time.h-t time.h
rm -f unistd.h-t unistd.h && \
{ echo '/* DO NOT EDIT! GENERATED AUTOMATICALLY! */'; \
  sed -e 's|@''GUARD_PREFIX''@|GL|g' \
      -e 's|@''HAVE_UNISTD_H''@|1|g' \
      -e 's|@''INCLUDE_NEXT''@|include_next|g' \
      -e 's|@''PRAGMA_SYSTEM_HEADER''@|#pragma GCC system_header|g' \
      -e 's|@''PRAGMA_COLUMNS''@||g' \
      -e 's|@''NEXT_UNISTD_H''@|<unistd.h>|g' \
      -e 's/@''GNULIB_CHOWN''@/0/g' \
      -e 's/@''GNULIB_CLOSE''@/0/g' \
      -e 's/@''GNULIB_DUP2''@/0/g' \
      -e 's/@''GNULIB_DUP3''@/0/g' \
      -e 's/@''GNULIB_ENVIRON''@/1/g' \
      -e 's/@''GNULIB_EUIDACCESS''@/0/g' \
      -e 's/@''GNULIB_FACCESSAT''@/0/g' \
      -e 's/@''GNULIB_FCHDIR''@/0/g' \
      -e 's/@''GNULIB_FCHOWNAT''@/0/g' \
      -e 's/@''GNULIB_FSYNC''@/0/g' \
      -e 's/@''GNULIB_FTRUNCATE''@/0/g' \
      -e 's/@''GNULIB_GETCWD''@/0/g' \
      -e 's/@''GNULIB_GETDOMAINNAME''@/0/g' \
      -e 's/@''GNULIB_GETDTABLESIZE''@/0/g' \
      -e 's/@''GNULIB_GETGROUPS''@/0/g' \
      -e 's/@''GNULIB_GETHOSTNAME''@/0/g' \
      -e 's/@''GNULIB_GETLOGIN''@/0/g' \
      -e 's/@''GNULIB_GETLOGIN_R''@/0/g' \
      -e 's/@''GNULIB_GETPAGESIZE''@/0/g' \
      -e 's/@''GNULIB_GETUSERSHELL''@/0/g' \
      -e 's/@''GNULIB_GROUP_MEMBER''@/0/g' \
      -e 's/@''GNULIB_LCHOWN''@/0/g' \
      -e 's/@''GNULIB_LINK''@/0/g' \
      -e 's/@''GNULIB_LINKAT''@/0/g' \
      -e 's/@''GNULIB_LSEEK''@/0/g' \
      -e 's/@''GNULIB_PIPE''@/0/g' \
      -e 's/@''GNULIB_PIPE2''@/0/g' \
      -e 's/@''GNULIB_PREAD''@/0/g' \
      -e 's/@''GNULIB_PWRITE''@/0/g' \
      -e 's/@''GNULIB_READ''@/1/g' \
      -e 's/@''GNULIB_READLINK''@/1/g' \
      -e 's/@''GNULIB_READLINKAT''@/0/g' \
      -e 's/@''GNULIB_RMDIR''@/0/g' \
      -e 's/@''GNULIB_SLEEP''@/0/g' \
      -e 's/@''GNULIB_SYMLINK''@/0/g' \
      -e 's/@''GNULIB_SYMLINKAT''@/0/g' \
      -e 's/@''GNULIB_TTYNAME_R''@/0/g' \
      -e 's/@''GNULIB_UNISTD_H_GETOPT''@/0/g' \
      -e 's/@''GNULIB_UNISTD_H_NONBLOCKING''@/0/g' \
      -e 's/@''GNULIB_UNISTD_H_SIGPIPE''@/1/g' \
      -e 's/@''GNULIB_UNLINK''@/0/g' \
      -e 's/@''GNULIB_UNLINKAT''@/0/g' \
      -e 's/@''GNULIB_USLEEP''@/0/g' \
      -e 's/@''GNULIB_WRITE''@/0/g' \
      < ./unistd.in.h | \
  sed -e 's|@''HAVE_CHOWN''@|1|g' \
      -e 's|@''HAVE_DUP2''@|1|g' \
      -e 's|@''HAVE_DUP3''@|1|g' \
      -e 's|@''HAVE_EUIDACCESS''@|1|g' \
      -e 's|@''HAVE_FACCESSAT''@|1|g' \
      -e 's|@''HAVE_FCHDIR''@|1|g' \
      -e 's|@''HAVE_FCHOWNAT''@|1|g' \
      -e 's|@''HAVE_FSYNC''@|1|g' \
      -e 's|@''HAVE_FTRUNCATE''@|1|g' \
      -e 's|@''HAVE_GETDTABLESIZE''@|1|g' \
      -e 's|@''HAVE_GETGROUPS''@|1|g' \
      -e 's|@''HAVE_GETHOSTNAME''@|1|g' \
      -e 's|@''HAVE_GETLOGIN''@|1|g' \
      -e 's|@''HAVE_GETPAGESIZE''@|1|g' \
      -e 's|@''HAVE_GROUP_MEMBER''@|1|g' \
      -e 's|@''HAVE_LCHOWN''@|1|g' \
      -e 's|@''HAVE_LINK''@|1|g' \
      -e 's|@''HAVE_LINKAT''@|1|g' \
      -e 's|@''HAVE_PIPE''@|1|g' \
      -e 's|@''HAVE_PIPE2''@|1|g' \
      -e 's|@''HAVE_PREAD''@|1|g' \
      -e 's|@''HAVE_PWRITE''@|1|g' \
      -e 's|@''HAVE_READLINK''@|1|g' \
      -e 's|@''HAVE_READLINKAT''@|1|g' \
      -e 's|@''HAVE_SLEEP''@|1|g' \
      -e 's|@''HAVE_SYMLINK''@|1|g' \
      -e 's|@''HAVE_SYMLINKAT''@|1|g' \
      -e 's|@''HAVE_UNLINKAT''@|1|g' \
      -e 's|@''HAVE_USLEEP''@|1|g' \
      -e 's|@''HAVE_DECL_ENVIRON''@|1|g' \
      -e 's|@''HAVE_DECL_FCHDIR''@|1|g' \
      -e 's|@''HAVE_DECL_GETDOMAINNAME''@|1|g' \
      -e 's|@''HAVE_DECL_GETLOGIN_R''@|1|g' \
      -e 's|@''HAVE_DECL_GETPAGESIZE''@|1|g' \
      -e 's|@''HAVE_DECL_GETUSERSHELL''@|1|g' \
      -e 's|@''HAVE_DECL_TTYNAME_R''@|1|g' \
      -e 's|@''HAVE_OS_H''@|0|g' \
      -e 's|@''HAVE_SYS_PARAM_H''@|0|g' \
  | \
  sed -e 's|@''REPLACE_CHOWN''@|0|g' \
      -e 's|@''REPLACE_CLOSE''@|0|g' \
      -e 's|@''REPLACE_DUP''@|0|g' \
      -e 's|@''REPLACE_DUP2''@|0|g' \
      -e 's|@''REPLACE_FCHOWNAT''@|0|g' \
      -e 's|@''REPLACE_GETCWD''@|0|g' \
      -e 's|@''REPLACE_GETDOMAINNAME''@|0|g' \
      -e 's|@''REPLACE_GETLOGIN_R''@|0|g' \
      -e 's|@''REPLACE_GETGROUPS''@|0|g' \
      -e 's|@''REPLACE_GETPAGESIZE''@|0|g' \
      -e 's|@''REPLACE_LCHOWN''@|0|g' \
      -e 's|@''REPLACE_LINK''@|0|g' \
      -e 's|@''REPLACE_LINKAT''@|0|g' \
      -e 's|@''REPLACE_LSEEK''@|0|g' \
      -e 's|@''REPLACE_PREAD''@|0|g' \
      -e 's|@''REPLACE_PWRITE''@|0|g' \
      -e 's|@''REPLACE_READ''@|0|g' \
      -e 's|@''REPLACE_READLINK''@|0|g' \
      -e 's|@''REPLACE_RMDIR''@|0|g' \
      -e 's|@''REPLACE_SLEEP''@|0|g' \
      -e 's|@''REPLACE_SYMLINK''@|0|g' \
      -e 's|@''REPLACE_TTYNAME_R''@|0|g' \
      -e 's|@''REPLACE_UNLINK''@|0|g' \
      -e 's|@''REPLACE_UNLINKAT''@|0|g' \
      -e 's|@''REPLACE_USLEEP''@|0|g' \
      -e 's|@''REPLACE_WRITE''@|0|g' \
      -e 's|@''UNISTD_H_HAVE_WINSOCK2_H''@|0|g' \
      -e 's|@''UNISTD_H_HAVE_WINSOCK2_H_AND_USE_SOCKETS''@|0|g' \
      -e '/definitions of _GL_FUNCDECL_RPL/r c++defs.h' \
      -e '/definition of _GL_ARG_NONNULL/r arg-nonnull.h' \
      -e '/definition of _GL_WARN_ON_USE/r warn-on-use.h'; \
} > unistd.h-t && \
mv unistd.h-t unistd.h
rm -f unitypes.h-t unitypes.h && \
{ echo '/* DO NOT EDIT! GENERATED AUTOMATICALLY! */'; \
  cat ./unitypes.in.h; \
} > unitypes.h-t && \
mv -f unitypes.h-t unitypes.h
rm -f uniwidth.h-t uniwidth.h && \
{ echo '/* DO NOT EDIT! GENERATED AUTOMATICALLY! */'; \
  cat ./uniwidth.in.h; \
} > uniwidth.h-t && \
mv -f uniwidth.h-t uniwidth.h
make  all-am
make[2]: Entering directory `/home/Administrator/arachni/src/libiconv-1.14/srclib'
make[3]: Entering directory `/home/Administrator/arachni/src/libiconv-1.14'
make[3]: Nothing to be done for `am--refresh'.
make[3]: Leaving directory `/home/Administrator/arachni/src/libiconv-1.14'
gcc -DHAVE_CONFIG_H -DEXEEXT=\".exe\" -I. -I.. -I../lib  -I../intl -DDEPENDS_ON_LIBICONV=1  -DDEPENDS_ON_LIBINTL=1    -g -O2 -c allocator.c
gcc -DHAVE_CONFIG_H -DEXEEXT=\".exe\" -I. -I.. -I../lib  -I../intl -DDEPENDS_ON_LIBICONV=1  -DDEPENDS_ON_LIBINTL=1    -g -O2 -c areadlink.c
gcc -DHAVE_CONFIG_H -DEXEEXT=\".exe\" -I. -I.. -I../lib  -I../intl -DDEPENDS_ON_LIBICONV=1  -DDEPENDS_ON_LIBINTL=1    -g -O2 -c careadlinkat.c
gcc -DHAVE_CONFIG_H -DEXEEXT=\".exe\" -I. -I.. -I../lib  -I../intl -DDEPENDS_ON_LIBICONV=1  -DDEPENDS_ON_LIBINTL=1    -g -O2 -c malloca.c
gcc -DHAVE_CONFIG_H -DEXEEXT=\".exe\" -I. -I.. -I../lib  -I../intl -DDEPENDS_ON_LIBICONV=1  -DDEPENDS_ON_LIBINTL=1    -g -O2 -c progname.c
gcc -DHAVE_CONFIG_H -DEXEEXT=\".exe\" -I. -I.. -I../lib  -I../intl -DDEPENDS_ON_LIBICONV=1  -DDEPENDS_ON_LIBINTL=1    -g -O2 -c safe-read.c
gcc -DHAVE_CONFIG_H -DEXEEXT=\".exe\" -I. -I.. -I../lib  -I../intl -DDEPENDS_ON_LIBICONV=1  -DDEPENDS_ON_LIBINTL=1   -g -O2 -c -o width.o `test -f 'uniwidth/width.c' || echo './'`uniwidth/width.c
gcc -DHAVE_CONFIG_H -DEXEEXT=\".exe\" -I. -I.. -I../lib  -I../intl -DDEPENDS_ON_LIBICONV=1  -DDEPENDS_ON_LIBINTL=1    -g -O2 -c xmalloc.c
gcc -DHAVE_CONFIG_H -DEXEEXT=\".exe\" -I. -I.. -I../lib  -I../intl -DDEPENDS_ON_LIBICONV=1  -DDEPENDS_ON_LIBINTL=1    -g -O2 -c xstrdup.c
gcc -DHAVE_CONFIG_H -DEXEEXT=\".exe\" -I. -I.. -I../lib  -I../intl -DDEPENDS_ON_LIBICONV=1  -DDEPENDS_ON_LIBINTL=1    -g -O2 -c xreadlink.c
gcc -DHAVE_CONFIG_H -DEXEEXT=\".exe\" -I. -I.. -I../lib  -I../intl -DDEPENDS_ON_LIBICONV=1  -DDEPENDS_ON_LIBINTL=1    -g -O2 -c canonicalize-lgpl.c
rm -f libicrt.a
ar cru libicrt.a allocator.o areadlink.o  careadlinkat.o malloca.o progname.o  safe-read.o width.o xmalloc.o  xstrdup.o xreadlink.o canonicalize-lgpl.o
ranlib libicrt.a
make[2]: Leaving directory `/home/Administrator/arachni/src/libiconv-1.14/srclib'
make[1]: Leaving directory `/home/Administrator/arachni/src/libiconv-1.14/srclib'
cd src && make all
make[1]: Entering directory `/home/Administrator/arachni/src/libiconv-1.14/src'
gcc -c -I. -I. -I.. -I../include -I./../include -I../srclib -I./../srclib -I../lib -g -O2  -DINSTALLDIR=\"/home/Administrator/arachni/usr/bin\" -DLOCALEDIR=\"/home/Administrator/arachni/usr/share/locale\" ./iconv_no_i18n.c
windres `/bin/sh ./../windows/windres-options --escape 1.14` -i ./../windows/iconv.rc -o iconv.res --output-format=coff
/bin/sh ../libtool --mode=link gcc  -g -O2 iconv_no_i18n.o ../srclib/libicrt.a ../lib/libiconv.la iconv.res -o iconv_no_i18n.exe
libtool: link: gcc -g -O2 iconv_no_i18n.o iconv.res -o .libs/iconv_no_i18n.exe  ../srclib/libicrt.a ../lib/.libs/libiconv.dll.a -L/home/Administrator/arachni/usr/lib
gcc -c -I. -I. -I.. -I../include -I./../include -I../srclib -I./../srclib -I../lib -g -O2  -DINSTALLDIR=\"/home/Administrator/arachni/usr/bin\" -DLOCALEDIR=\"/home/Administrator/arachni/usr/share/locale\" ./iconv.c
test `ls -ld . | sed -e 's/^d\(.........\).*/\1/'` = rwxrwxrwx || chmod 777 .
make[1]: Leaving directory `/home/Administrator/arachni/src/libiconv-1.14/src'
cd po && make all
make[1]: Entering directory `/home/Administrator/arachni/src/libiconv-1.14/po'
make[1]: Leaving directory `/home/Administrator/arachni/src/libiconv-1.14/po'
cd man && make all
make[1]: Entering directory `/home/Administrator/arachni/src/libiconv-1.14/man'
make[1]: Nothing to be done for `all'.
make[1]: Leaving directory `/home/Administrator/arachni/src/libiconv-1.14/man'
if test -d tests; then cd tests && make all; fi
make[1]: Entering directory `/home/Administrator/arachni/src/libiconv-1.14/tests'
make[1]: Nothing to be done for `all'.
make[1]: Leaving directory `/home/Administrator/arachni/src/libiconv-1.14/tests'
cd libcharset && make install prefix='/home/Administrator/arachni/usr' exec_prefix='/home/Administrator/arachni/usr' libdir='/home/Administrator/arachni/usr/lib'
make[1]: Entering directory `/home/Administrator/arachni/src/libiconv-1.14/libcharset'
cd lib && make install prefix='/home/Administrator/arachni/usr' exec_prefix='/home/Administrator/arachni/usr' libdir='/home/Administrator/arachni/usr/lib'
make[2]: Entering directory `/home/Administrator/arachni/src/libiconv-1.14/libcharset/lib'
if test no = no; then \
  case 'cygwin' in \
    darwin[56]*) \
      need_charset_alias=true ;; \
    darwin* | cygwin* | mingw* | pw32* | cegcc*) \
      need_charset_alias=false ;; \
    *) \
      need_charset_alias=true ;; \
  esac ; \
else \
  need_charset_alias=false ; \
fi ; \
/bin/sh ../build-aux/mkinstalldirs /home/Administrator/arachni/usr/lib ; \
/bin/sh ../libtool --mode=install /usr/bin/install -c -m 644 libcharset.la /home/Administrator/arachni/usr/lib/libcharset.la
libtool: install: /usr/bin/install -c -m 644 .libs/libcharset.dll.a /home/Administrator/arachni/usr/lib/libcharset.dll.a
libtool: install: base_file=`basename libcharset.la`
libtool: install:  dlpath=`/bin/sh 2>&1 -c '. .libs/'libcharset.la'i; echo cygcharset-1.dll'`
libtool: install:  dldir=/home/Administrator/arachni/usr/lib/`dirname ../bin/cygcharset-1.dll`
libtool: install:  test -d /home/Administrator/arachni/usr/lib/../bin || mkdir -p /home/Administrator/arachni/usr/lib/../bin
libtool: install:  /usr/bin/install -c -m 644 .libs/cygcharset-1.dll /home/Administrator/arachni/usr/lib/../bin/cygcharset-1.dll
libtool: install:  chmod a+x /home/Administrator/arachni/usr/lib/../bin/cygcharset-1.dll
libtool: install:  if test -n '' && test -n 'strip --strip-unneeded'; then eval 'strip --strip-unneeded /home/Administrator/arachni/usr/lib/../bin/cygcharset-1.dll' || exit 0; fi
libtool: install: /usr/bin/install -c -m 644 .libs/libcharset.lai /home/Administrator/arachni/usr/lib/libcharset.la
libtool: install: /usr/bin/install -c -m 644 .libs/libcharset.a /home/Administrator/arachni/usr/lib/libcharset.a
libtool: install: chmod 644 /home/Administrator/arachni/usr/lib/libcharset.a
libtool: install: ranlib /home/Administrator/arachni/usr/lib/libcharset.a
if test -f /home/Administrator/arachni/usr/lib/charset.alias; then \
  sed -f ref-add.sed /home/Administrator/arachni/usr/lib/charset.alias > /home/Administrator/arachni/usr/lib/t-charset.alias; \
  /usr/bin/install -c -m 644 /home/Administrator/arachni/usr/lib/t-charset.alias /home/Administrator/arachni/usr/lib/charset.alias; \
  rm -f /home/Administrator/arachni/usr/lib/t-charset.alias; \
else \
  if $need_charset_alias; then \
    sed -f ref-add.sed charset.alias > /home/Administrator/arachni/usr/lib/t-charset.alias; \
    /usr/bin/install -c -m 644 /home/Administrator/arachni/usr/lib/t-charset.alias /home/Administrator/arachni/usr/lib/charset.alias; \
    rm -f /home/Administrator/arachni/usr/lib/t-charset.alias; \
  fi ; \
fi
make[2]: Leaving directory `/home/Administrator/arachni/src/libiconv-1.14/libcharset/lib'
/bin/sh ./build-aux/mkinstalldirs /home/Administrator/arachni/usr/include
/usr/bin/install -c -m 644 include/libcharset.h /home/Administrator/arachni/usr/include/libcharset.h
/usr/bin/install -c -m 644 include/localcharset.h.inst /home/Administrator/arachni/usr/include/localcharset.h
make[1]: Leaving directory `/home/Administrator/arachni/src/libiconv-1.14/libcharset'
cd lib && make install prefix='/home/Administrator/arachni/usr' exec_prefix='/home/Administrator/arachni/usr' libdir='/home/Administrator/arachni/usr/lib'
make[1]: Entering directory `/home/Administrator/arachni/src/libiconv-1.14/lib'
if [ ! -d /home/Administrator/arachni/usr/lib ] ; then /bin/sh ../build-aux/mkinstalldirs /home/Administrator/arachni/usr/lib ; fi
/bin/sh ../libtool --mode=install /usr/bin/install -c -m 644 libiconv.la /home/Administrator/arachni/usr/lib/libiconv.la
libtool: install: /usr/bin/install -c -m 644 .libs/libiconv.dll.a /home/Administrator/arachni/usr/lib/libiconv.dll.a
libtool: install: base_file=`basename libiconv.la`
libtool: install:  dlpath=`/bin/sh 2>&1 -c '. .libs/'libiconv.la'i; echo cygiconv-2.dll'`
libtool: install:  dldir=/home/Administrator/arachni/usr/lib/`dirname ../bin/cygiconv-2.dll`
libtool: install:  test -d /home/Administrator/arachni/usr/lib/../bin || mkdir -p /home/Administrator/arachni/usr/lib/../bin
libtool: install:  /usr/bin/install -c -m 644 .libs/cygiconv-2.dll /home/Administrator/arachni/usr/lib/../bin/cygiconv-2.dll
libtool: install:  chmod a+x /home/Administrator/arachni/usr/lib/../bin/cygiconv-2.dll
libtool: install:  if test -n '' && test -n '/usr/bin/strip --strip-unneeded'; then eval '/usr/bin/strip --strip-unneeded /home/Administrator/arachni/usr/lib/../bin/cygiconv-2.dll' || exit 0; fi
libtool: install: /usr/bin/install -c -m 644 .libs/libiconv.lai /home/Administrator/arachni/usr/lib/libiconv.la
case "cygwin" in \
  aix*) (cd /home/Administrator/arachni/usr/lib && \
         objects=`ar t libiconv.a`" "`ar t /lib/libiconv.a` && \
         ar x libiconv.a && ar x /lib/libiconv.a && \
         ar q libiconv.new.a $objects && \
         rm -f $objects && \
         mv -f libiconv.new.a libiconv.a) ;; \
esac
make[1]: Leaving directory `/home/Administrator/arachni/src/libiconv-1.14/lib'
cd preload && make install prefix='/home/Administrator/arachni/usr' exec_prefix='/home/Administrator/arachni/usr' libdir='/home/Administrator/arachni/usr/lib'
make[1]: Entering directory `/home/Administrator/arachni/src/libiconv-1.14/preload'
if [ ! -d /home/Administrator/arachni/usr/lib ] ; then /bin/sh ./build-aux/mkinstalldirs /home/Administrator/arachni/usr/lib ; fi
if test -n ""; then /usr/bin/install -c -m 644  /home/Administrator/arachni/usr/lib/.new && mv /home/Administrator/arachni/usr/lib/.new /home/Administrator/arachni/usr/lib/ ; fi
make[1]: Leaving directory `/home/Administrator/arachni/src/libiconv-1.14/preload'
cd srclib && make install prefix='/home/Administrator/arachni/usr' exec_prefix='/home/Administrator/arachni/usr' libdir='/home/Administrator/arachni/usr/lib'
make[1]: Entering directory `/home/Administrator/arachni/src/libiconv-1.14/srclib'
make[2]: Entering directory `/home/Administrator/arachni/src/libiconv-1.14'
make[2]: Nothing to be done for `am--refresh'.
make[2]: Leaving directory `/home/Administrator/arachni/src/libiconv-1.14'
make  install-am
make[2]: Entering directory `/home/Administrator/arachni/src/libiconv-1.14/srclib'
make[3]: Entering directory `/home/Administrator/arachni/src/libiconv-1.14'
make[3]: Nothing to be done for `am--refresh'.
make[3]: Leaving directory `/home/Administrator/arachni/src/libiconv-1.14'
make[3]: Entering directory `/home/Administrator/arachni/src/libiconv-1.14/srclib'
make[4]: Entering directory `/home/Administrator/arachni/src/libiconv-1.14'
make[4]: Nothing to be done for `am--refresh'.
make[4]: Leaving directory `/home/Administrator/arachni/src/libiconv-1.14'
make[3]: Nothing to be done for `install-exec-am'.
make[3]: Nothing to be done for `install-data-am'.
make[3]: Leaving directory `/home/Administrator/arachni/src/libiconv-1.14/srclib'
make[2]: Leaving directory `/home/Administrator/arachni/src/libiconv-1.14/srclib'
make[1]: Leaving directory `/home/Administrator/arachni/src/libiconv-1.14/srclib'
cd src && make install prefix='/home/Administrator/arachni/usr' exec_prefix='/home/Administrator/arachni/usr' libdir='/home/Administrator/arachni/usr/lib'
make[1]: Entering directory `/home/Administrator/arachni/src/libiconv-1.14/src'
test `ls -ld . | sed -e 's/^d\(.........\).*/\1/'` = rwxrwxrwx || chmod 777 .
if [ ! -d /home/Administrator/arachni/usr/bin ] ; then /bin/sh ../build-aux/mkinstalldirs /home/Administrator/arachni/usr/bin ; fi
case "cygwin" in \
  hpux*) gcc  -g -O2 `if test -n ''; then  /home/Administrator/arachni/usr/bin; fi` iconv.o ../srclib/libicrt.a -L/home/Administrator/arachni/usr/lib -liconv -lintl iconv.res `if test -n ''; then echo " -Wl,+b -Wl,/home/Administrator/arachni/usr/lib"; fi` -o iconv.exe;; \
  *) /bin/sh ../libtool --mode=link gcc  -g -O2 `if test -n ''; then  /home/Administrator/arachni/usr/bin; fi` iconv.o ../srclib/libicrt.a /home/Administrator/arachni/usr/lib/libiconv.la -lintl iconv.res -o iconv.exe;; \
esac
libtool: link: cannot find the library `/usr/lib/libiconv.la' or unhandled argument `/usr/lib/libiconv.la'
Makefile:113: recipe for target `install' failed
make[1]: *** [install] Error 1
make[1]: Leaving directory `/home/Administrator/arachni/src/libiconv-1.14/src'
Makefile:52: recipe for target `install' failed
make: *** [install] Error 2

[-- Attachment #3: cygcheck.log --]
[-- Type: text/x-log, Size: 14585 bytes --]


Cygwin Configuration Diagnostics
Current System Time: Tue Aug 28 16:20:48 2012

Windows 2003 Server Ver 5.2 Build 3790 Service Pack 1

Running under WOW64 on AMD64

Path:	C:\cygwin\usr\local\bin
	C:\cygwin\bin
	C:\WINDOWS\system32
	C:\WINDOWS
	C:\WINDOWS\System32\Wbem

Output from C:\cygwin\bin\id.exe
UID: 500(Administrator) GID: 513(None)
513(None)               0(root)                 544(Administrators)
545(Users)

SysDir: C:\WINDOWS\system32
WinDir: C:\WINDOWS

USER = 'Administrator'
PWD = '/home/Administrator'
HOME = '/home/Administrator'

HOMEPATH = '\Documents and Settings\Administrator'
MANPATH = '/usr/local/man:/usr/share/man:/usr/man:'
APPDATA = 'C:\Documents and Settings\Administrator\Application Data'
ProgramW6432 = 'C:\Program Files'
HOSTNAME = 'tasos-u0lw328yo'
SHELL = '/bin/bash'
TERM = 'xterm'
PROCESSOR_IDENTIFIER = 'EM64T Family 6 Model 45 Stepping 7, GenuineIntel'
WINDIR = 'C:\WINDOWS'
OLDPWD = '/home/Administrator/lib'
USERDOMAIN = 'TASOS-U0LW328YO'
CommonProgramFiles(x86) = 'C:\Program Files (x86)\Common Files'
OS = 'Windows_NT'
ALLUSERSPROFILE = 'C:\Documents and Settings\All Users'
JRE_HOME = 'C:\Program Files (x86)\Java\jre7'
!:: = '::\'
temp = 'C:\DOCUME~1\ADMINI~1\LOCALS~1\Temp'
COMMONPROGRAMFILES = 'C:\Program Files (x86)\Common Files'
TMP = '/tmp'
USERNAME = 'Administrator'
PROCESSOR_LEVEL = '6'
ProgramFiles(x86) = 'C:\Program Files (x86)'
FP_NO_HOST_CHECK = 'NO'
SYSTEMDRIVE = 'C:'
PROCESSOR_ARCHITEW6432 = 'AMD64'
LANG = 'en_US.UTF-8'
USERPROFILE = 'C:\Documents and Settings\Administrator'
CLIENTNAME = 'Console'
TZ = 'Asia/Nicosia'
PS1 = '\[\e]0;\w\a\]\n\[\e[32m\]\u@\h \[\e[33m\]\w\[\e[0m\]\n\$ '
LOGONSERVER = '\\TASOS-U0LW328YO'
CommonProgramW6432 = 'C:\Program Files\Common Files'
PROCESSOR_ARCHITECTURE = 'x86'
SHLVL = '1'
PATHEXT = '.COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH'
HOMEDRIVE = 'C:'
COMSPEC = 'C:\WINDOWS\system32\cmd.exe'
SYSTEMROOT = 'C:\WINDOWS'
PRINTER = 'PSC-2100-Series#:2'
PROCESSOR_REVISION = '2d07'
INFOPATH = '/usr/local/info:/usr/share/info:/usr/info:'
PROGRAMFILES = 'C:\Program Files (x86)'
NUMBER_OF_PROCESSORS = '4'
SESSIONNAME = 'Console'
COMPUTERNAME = 'TASOS-U0LW328YO'
_ = '/usr/bin/cygcheck'

HKEY_CURRENT_USER\Software\Cygwin
HKEY_CURRENT_USER\Software\Cygwin\Program Options
HKEY_CURRENT_USER\Software\Cygwin\setup
HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\MenuOrder\Start Menu2\Programs\Cygwin
  (default) = (unsupported type)
HKEY_LOCAL_MACHINE\SOFTWARE\Cygwin
HKEY_LOCAL_MACHINE\SOFTWARE\Cygwin\Installations
  (default) = '\??\C:\cygwin'
HKEY_LOCAL_MACHINE\SOFTWARE\Cygwin\Program Options
HKEY_LOCAL_MACHINE\SOFTWARE\Cygwin\setup
  (default) = 'c:\cygwin'

obcaseinsensitive set to 1

Cygwin installations found in the registry:
  System: Key: c5e39b7a9d22bafb Path: C:\cygwin

a:  fd             N/A    N/A                    
c:  hd  NTFS     40950Mb  21% CP CS UN PA FC     
d:  cd             N/A    N/A                    

C:\cygwin        /          system  binary,auto
C:\cygwin\bin    /usr/bin   system  binary,auto
C:\cygwin\lib    /usr/lib   system  binary,auto
cygdrive prefix  /cygdrive  user    binary,auto

Found: C:\cygwin\bin\awk
 -> C:\cygwin\bin\gawk.exe
Found: C:\cygwin\bin\bash.exe
Found: C:\cygwin\bin\cat.exe
Found: C:\cygwin\bin\cp.exe
Found: C:\cygwin\bin\cpp.exe
 -> C:\cygwin\etc\alternatives\cpp
 -> C:\cygwin\bin\cpp-3.exe
Not Found: crontab
Found: C:\cygwin\bin\find.exe
Found: C:\WINDOWS\system32\find.exe
Warning: C:\cygwin\bin\find.exe hides C:\WINDOWS\system32\find.exe
Found: C:\cygwin\bin\gcc.exe
 -> C:\cygwin\etc\alternatives\gcc
 -> C:\cygwin\bin\gcc-3.exe
Not Found: gdb
Found: C:\cygwin\bin\grep.exe
Found: C:\cygwin\bin\kill.exe
Found: C:\cygwin\bin\ld.exe
Found: C:\cygwin\bin\ls.exe
Found: C:\cygwin\bin\make.exe
Found: C:\cygwin\bin\mv.exe
Not Found: patch
Found: C:\cygwin\bin\perl.exe
Found: C:\cygwin\bin\rm.exe
Found: C:\cygwin\bin\sed.exe
Not Found: ssh
Found: C:\cygwin\bin\sh.exe
Found: C:\cygwin\bin\tar.exe
Found: C:\cygwin\bin\test.exe
Not Found: vi
Not Found: vim

   14k 2012/05/04 C:\cygwin\bin\cygattr-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygattr-1.dll" v0.0 ts=2012/5/4 12:35
   62k 2011/05/21 C:\cygwin\bin\cygbz2-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygbz2-1.dll" v0.0 ts=2011/5/21 20:16
    7k 2012/05/07 C:\cygwin\bin\cygcrypt-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygcrypt-0.dll" v0.0 ts=2012/5/7 12:18
  929k 2011/11/10 C:\cygwin\bin\cygdb-4.5.dll - os=4.0 img=1.0 sys=4.0
                  "cygdb-4.5.dll" v0.0 ts=2011/11/10 19:52
   93k 2011/11/10 C:\cygwin\bin\cygdb_cxx-4.5.dll - os=4.0 img=1.0 sys=4.0
                  "cygdb_cxx-4.5.dll" v0.0 ts=2011/11/10 19:53
   43k 2010/01/02 C:\cygwin\bin\cygform-10.dll - os=4.0 img=1.0 sys=4.0
                  "cygform-10.dll" v0.0 ts=2010/1/2 14:49
   47k 2010/01/02 C:\cygwin\bin\cygformw-10.dll - os=4.0 img=1.0 sys=4.0
                  "cygformw-10.dll" v0.0 ts=2010/1/2 17:31
   79k 2011/10/26 C:\cygwin\bin\cyggcc_s-1.dll - os=4.0 img=1.0 sys=4.0
                  "cyggcc_s-1.dll" v0.0 ts=2011/10/23 14:15
  449k 2011/05/20 C:\cygwin\bin\cyggcrypt-11.dll - os=4.0 img=1.0 sys=4.0
                  "cyggcrypt-11.dll" v0.0 ts=2011/5/20 3:29
   19k 2009/02/26 C:\cygwin\bin\cyggdbm-4.dll - os=4.0 img=1.0 sys=4.0
                  "cyggdbm-4.dll" v0.0 ts=2009/2/26 7:58
    8k 2009/02/26 C:\cygwin\bin\cyggdbm_compat-4.dll - os=4.0 img=1.0 sys=4.0
                  "cyggdbm_compat-4.dll" v0.0 ts=2009/2/26 7:58
  317k 2011/07/31 C:\cygwin\bin\cyggmp-3.dll - os=4.0 img=1.0 sys=4.0
                  "cyggmp-3.dll" v0.0 ts=2011/7/31 6:14
  614k 2011/11/15 C:\cygwin\bin\cyggnutls-26.dll - os=4.0 img=1.0 sys=4.0
                  "cyggnutls-26.dll" v0.0 ts=2011/11/15 7:02
   21k 2011/11/15 C:\cygwin\bin\cyggnutls-extra-26.dll - os=4.0 img=1.0 sys=4.0
                  "cyggnutls-extra-26.dll" v0.0 ts=2011/11/15 7:02
   24k 2011/11/15 C:\cygwin\bin\cyggnutls-openssl-27.dll - os=4.0 img=1.0 sys=4.0
                  "cyggnutls-openssl-27.dll" v0.0 ts=2011/11/15 7:03
   52k 2011/11/15 C:\cygwin\bin\cyggnutlsxx-27.dll - os=4.0 img=1.0 sys=4.0
                  "cyggnutlsxx-27.dll" v0.0 ts=2011/11/15 7:02
   14k 2011/05/20 C:\cygwin\bin\cyggpg-error-0.dll - os=4.0 img=1.0 sys=4.0
                  "cyggpg-error-0.dll" v0.0 ts=2011/5/20 3:04
   25k 2012/05/04 C:\cygwin\bin\cyghistory7.dll - os=4.0 img=1.0 sys=4.0
                  "cyghistory7.dll" v0.0 ts=2012/5/4 22:07
  358k 2012/04/14 C:\cygwin\bin\cygicons-0.dll - os=4.0 img=1.4 sys=4.0
                  "cygicons-0.dll" v0.0 ts=2012/4/14 2:48
  985k 2011/10/16 C:\cygwin\bin\cygiconv-2.dll - os=4.0 img=1.0 sys=4.0
                  "cygiconv-2.dll" v0.0 ts=2011/10/16 18:01
  190k 2011/11/16 C:\cygwin\bin\cygidn-11.dll - os=4.0 img=1.0 sys=4.0
                  "cygidn-11.dll" v0.0 ts=2011/11/16 14:51
   31k 2005/11/20 C:\cygwin\bin\cygintl-3.dll - os=4.0 img=1.0 sys=4.0
                  "cygintl-3.dll" v0.0 ts=2005/11/20 2:04
   35k 2011/10/16 C:\cygwin\bin\cygintl-8.dll - os=4.0 img=1.0 sys=4.0
                  "cygintl-8.dll" v0.0 ts=2011/10/16 6:38
    6k 2012/07/20 C:\cygwin\bin\cyglsa.dll - os=4.0 img=1.0 sys=4.0
                  "cyglsa.dll" v0.0 ts=2012/7/20 21:56
    9k 2012/07/20 C:\cygwin\bin\cyglsa64.dll - os=5.2 img=0.0 sys=5.2
  123k 2011/05/19 C:\cygwin\bin\cyglzma-5.dll - os=4.0 img=1.0 sys=4.0
                  "cyglzma-5.dll" v0.0 ts=2011/5/19 3:41
  116k 2011/11/16 C:\cygwin\bin\cyglzo2-2.dll - os=4.0 img=1.0 sys=4.0
                  "cyglzo2-2.dll" v0.0 ts=2011/11/16 22:27
   94k 2012/04/22 C:\cygwin\bin\cygmagic-1.dll - os=4.0 img=1.0 sys=4.0
                  "cygmagic-1.dll" v0.0 ts=2012/4/22 19:09
   25k 2010/01/02 C:\cygwin\bin\cygmenu-10.dll - os=4.0 img=1.0 sys=4.0
                  "cygmenu-10.dll" v0.0 ts=2010/1/2 14:48
   25k 2010/01/02 C:\cygwin\bin\cygmenuw-10.dll - os=4.0 img=1.0 sys=4.0
                  "cygmenuw-10.dll" v0.0 ts=2010/1/2 17:30
  213k 2011/07/31 C:\cygwin\bin\cygmp-3.dll - os=4.0 img=1.0 sys=4.0
                  "cygmp-3.dll" v0.0 ts=2011/7/31 6:12
   63k 2010/01/02 C:\cygwin\bin\cygncurses++-10.dll - os=4.0 img=1.0 sys=4.0
                  "cygncurses++-10.dll" v0.0 ts=2010/1/2 15:00
   63k 2010/01/02 C:\cygwin\bin\cygncurses++w-10.dll - os=4.0 img=1.0 sys=4.0
                  "cygncurses++w-10.dll" v0.0 ts=2010/1/2 17:41
  195k 2010/01/02 C:\cygwin\bin\cygncurses-10.dll - os=4.0 img=1.0 sys=4.0
                  "cygncurses-10.dll" v0.0 ts=2010/1/2 14:45
  244k 2010/01/02 C:\cygwin\bin\cygncursesw-10.dll - os=4.0 img=1.0 sys=4.0
                  "cygncursesw-10.dll" v0.0 ts=2010/1/2 17:28
   13k 2010/01/02 C:\cygwin\bin\cygpanel-10.dll - os=4.0 img=1.0 sys=4.0
                  "cygpanel-10.dll" v0.0 ts=2010/1/2 14:47
   13k 2010/01/02 C:\cygwin\bin\cygpanelw-10.dll - os=4.0 img=1.0 sys=4.0
                  "cygpanelw-10.dll" v0.0 ts=2010/1/2 16:30
  255k 2012/02/10 C:\cygwin\bin\cygpcre-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygpcre-0.dll" v0.0 ts=2012/2/10 10:24
 1628k 2012/07/12 C:\cygwin\bin\cygperl5_14.dll - os=4.0 img=1.0 sys=4.0
                  "cygperl5_14.dll" v0.0 ts=2012/7/12 20:17
   22k 2002/06/09 C:\cygwin\bin\cygpopt-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygpopt-0.dll" v0.0 ts=2002/6/9 6:45
  162k 2012/05/04 C:\cygwin\bin\cygreadline7.dll - os=4.0 img=1.0 sys=4.0
                  "cygreadline7.dll" v0.0 ts=2012/5/4 22:07
    8k 2011/05/05 C:\cygwin\bin\cygsigsegv-2.dll - os=4.0 img=1.0 sys=4.0
                  "cygsigsegv-2.dll" v0.0 ts=2011/5/5 8:33
    8k 2011/10/26 C:\cygwin\bin\cygssp-0.dll - os=4.0 img=1.0 sys=4.0
                  "cygssp-0.dll" v0.0 ts=2011/10/23 14:33
  780k 2011/10/26 C:\cygwin\bin\cygstdc++-6.dll - os=4.0 img=1.0 sys=4.0
                  "cygstdc++-6.dll" v0.0 ts=2011/10/23 14:58
   57k 2012/03/22 C:\cygwin\bin\cygtasn1-3.dll - os=4.0 img=1.0 sys=4.0
                  "cygtasn1-3.dll" v0.0 ts=2012/3/22 6:33
   48k 2010/01/02 C:\cygwin\bin\cygtic-10.dll - os=4.0 img=1.0 sys=4.0
                  "cygtic-10.dll" v0.0 ts=2010/1/2 14:45
   48k 2010/01/02 C:\cygwin\bin\cygticw-10.dll - os=4.0 img=1.0 sys=4.0
                  "cygticw-10.dll" v0.0 ts=2010/1/2 17:28
   71k 2012/05/13 C:\cygwin\bin\cygz.dll - os=4.0 img=1.0 sys=4.0
                  "cygz.dll" v0.0 ts=2012/5/13 5:11
 2789k 2012/07/20 C:\cygwin\bin\cygwin1.dll - os=4.0 img=1.0 sys=4.0
                  "cygwin1.dll" v0.0 ts=2012/7/20 21:55
    Cygwin DLL version info:
        DLL version: 1.7.16
        DLL epoch: 19
        DLL old termios: 5
        DLL malloc env: 28
        Cygwin conv: 181
        API major: 0
        API minor: 262
        Shared data: 5
        DLL identifier: cygwin1
        Mount registry: 3
        Cygwin registry name: Cygwin
        Program options name: Program Options
        Installations name: Installations
        Cygdrive default prefix: 
        Build date: 
        Shared id: cygwin1S5


Can't find the cygrunsrv utility, skipping services check.


Cygwin Package Information
Last downloaded files to: c:\cygwin-packages
Last downloaded files from: ftp://ftp.ntua.gr/pub/pc/cygwin/

Package              Version              Status
_autorebase          000117-1             OK
_update-info-dir     01065-1              OK
alternatives         1.3.30c-10           OK
base-cygwin          3.1-1                OK
base-files           4.1-1                OK
bash                 4.1.10-4             OK
binutils             2.22.51-2            OK
bzip2                1.0.6-2              OK
coreutils            8.15-1               OK
crypt                1.2-1                OK
cygutils             1.4.10-2             OK
cygwin               1.7.16-1             OK
cygwin-doc           1.7-1                OK
dash                 0.5.7-1              OK
diffutils            3.2-1                OK
dos2unix             6.0.1-1              OK
editrights           1.01-2               OK
file                 5.11-1               OK
findutils            4.5.9-2              OK
gawk                 4.0.1-1              OK
Empty package gcc
gcc                  3.4.4-999            OK
gcc-core             3.4.4-999            OK
gcc-g++              3.4.4-999            OK
gcc-mingw-core       20050522-3           OK
gcc-mingw-g++        20050522-3           OK
gettext              0.18.1.1-2           OK
grep                 2.6.3-1              OK
groff                1.21-2               OK
gzip                 1.4-1                OK
ipc-utils            1.0-1                OK
less                 444-1                OK
libattr1             2.4.46-1             OK
libbz2_1             1.0.6-2              OK
libdb4.5             4.5.20.2-3           OK
libgcc1              4.5.3-3              OK
libgcrypt11          1.4.6-1              OK
libgdbm4             1.8.3-20             OK
libgmp3              4.3.2-1              OK
libgnutls26          2.12.14-1            OK
libgpg-error0        1.10-1               OK
libiconv2            1.14-2               OK
libidn11             1.22-1               OK
libintl3             0.14.5-1             OK
libintl8             0.18.1.1-2           OK
liblzma5             5.0.2_20110517-1     OK
liblzo2_2            2.06-1               OK
libncurses10         5.7-18               OK
libncursesw10        5.7-18               OK
libpcre0             8.21-2               OK
libpopt0             1.6.4-4              OK
libreadline7         6.1.2-3              OK
libsigsegv2          2.10-1               OK
libssp0              4.5.3-3              OK
libstdc++6           4.5.3-3              OK
libtasn1_3           2.12-1               OK
login                1.10-10              OK
make                 3.82.90-1            OK
man                  1.6g-1               OK
mingw-runtime        3.20-1               OK
mingw-w32api         3.17-2               OK
mintty               1.1.1-1              OK
perl                 5.14.2-3             OK
rebase               4.3.0-1              OK
run                  1.1.13-1             OK
sed                  4.2.1-2              OK
tar                  1.25-1               OK
terminfo             5.7_20091114-14      OK
texinfo              4.13-4               OK
tzcode               2012b-1              OK
w32api               3.17-2               OK
wget                 1.13.4-1             OK
which                2.20-2               OK
xz                   5.0.2_20110517-1     OK
zlib0                1.2.7-1              OK
Use -h to see help about each section


[-- Attachment #4: Type: text/plain, Size: 218 bytes --]

--
Problem reports:       http://cygwin.com/problems.html
FAQ:                   http://cygwin.com/faq/
Documentation:         http://cygwin.com/docs.html
Unsubscribe info:      http://cygwin.com/ml/#unsubscribe-simple

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

* Re: Build script error (libiconv + custom prefix)
  2012-08-28 19:52   ` Tasos Laskos
@ 2012-08-28 20:48     ` Larry Hall (Cygwin)
  2012-08-28 20:58       ` Tasos Laskos
  0 siblings, 1 reply; 10+ messages in thread
From: Larry Hall (Cygwin) @ 2012-08-28 20:48 UTC (permalink / raw)
  To: cygwin

On 8/28/2012 11:23 AM, Tasos Laskos wrote:
> Hi,
>
> Thanks for the replies guys.
>
> The purpose of the build.sh script is to setup a full env under the
> "arachni" dir which will include all system libs and other dependencies.
>
> It also creates wrappers for the application's executables which setup env
> variables like PATH and LD_LIBRARY_PATH before running them.
>
> The point of all this is that you'll be able to package up that dir and
> transfer it between boxes without worrying about dependencies.
>
> It's meant to create a self-contained package, so I don't want to rely on
> what's already on the system.
>
> I've attached the libiconv logfile and the cygcheck output.

OK, that explains the difference you and I are seeing.  In your configure
output, you get:

> checking for iconv... (cached) no, consider installing GNU libiconv

I don't see this because I have iconv installed.  Maybe someone on this
list more familiar with iconv could explain this dependency and why it
makes sense.  However, I'd suggest taking this to the iconv experts to
get the full explanation of their configure script.

> PS. Please skip any lectures you might be inclined to give,...

Without the lecture, what fun is this question for the rest of us? ;-)


-- 
Larry

_____________________________________________________________________

A: Yes.
 > Q: Are you sure?
 >> A: Because it reverses the logical flow of conversation.
 >>> Q: Why is top posting annoying in email?

--
Problem reports:       http://cygwin.com/problems.html
FAQ:                   http://cygwin.com/faq/
Documentation:         http://cygwin.com/docs.html
Unsubscribe info:      http://cygwin.com/ml/#unsubscribe-simple

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

* Re: Build script error (libiconv + custom prefix)
  2012-08-28 20:48     ` Larry Hall (Cygwin)
@ 2012-08-28 20:58       ` Tasos Laskos
  2012-08-28 23:23         ` Larry Hall (Cygwin)
  0 siblings, 1 reply; 10+ messages in thread
From: Tasos Laskos @ 2012-08-28 20:58 UTC (permalink / raw)
  To: cygwin

On 08/28/2012 10:51 PM, Larry Hall (Cygwin) wrote:
> On 8/28/2012 11:23 AM, Tasos Laskos wrote:
>> Hi,
>>
>> Thanks for the replies guys.
>>
>> The purpose of the build.sh script is to setup a full env under the
>> "arachni" dir which will include all system libs and other dependencies.
>>
>> It also creates wrappers for the application's executables which setup
>> env
>> variables like PATH and LD_LIBRARY_PATH before running them.
>>
>> The point of all this is that you'll be able to package up that dir and
>> transfer it between boxes without worrying about dependencies.
>>
>> It's meant to create a self-contained package, so I don't want to rely on
>> what's already on the system.
>>
>> I've attached the libiconv logfile and the cygcheck output.
>
> OK, that explains the difference you and I are seeing.  In your configure
> output, you get:
>
>> checking for iconv... (cached) no, consider installing GNU libiconv
>

So...libiconv's configure script requires libiconv, that's a bit wacky.
However, I'm guessing that this is a standard test and doesn't play a 
part in this problem.

Configuring and installing libiconv manually (no prefix) works, it only 
fails when running the build script.

If you'd like to recreate my Cygwin env and try again this is how:
-------------
setup.exe -q -R c:\cygwin -l c:\cygwin-packages -P make,gcc,g++,perl,wget
-------------

> I don't see this because I have iconv installed.  Maybe someone on this
> list more familiar with iconv could explain this dependency and why it
> makes sense.  However, I'd suggest taking this to the iconv experts to
> get the full explanation of their configure script.
>
>> PS. Please skip any lectures you might be inclined to give,...
>
> Without the lecture, what fun is this question for the rest of us? ;-)
>
>

Heh, I merely wanted to stress that I already know about the pitfalls 
but if you're the funny-rant type go right ahead.


--
Problem reports:       http://cygwin.com/problems.html
FAQ:                   http://cygwin.com/faq/
Documentation:         http://cygwin.com/docs.html
Unsubscribe info:      http://cygwin.com/ml/#unsubscribe-simple

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

* Re: Build script error (libiconv + custom prefix)
  2012-08-28 20:58       ` Tasos Laskos
@ 2012-08-28 23:23         ` Larry Hall (Cygwin)
  2012-08-29  0:03           ` Tasos Laskos
  0 siblings, 1 reply; 10+ messages in thread
From: Larry Hall (Cygwin) @ 2012-08-28 23:23 UTC (permalink / raw)
  To: cygwin

On 8/28/2012 4:02 PM, Tasos Laskos wrote:
> On 08/28/2012 10:51 PM, Larry Hall (Cygwin) wrote:
>> On 8/28/2012 11:23 AM, Tasos Laskos wrote:
>>> Hi,
>>>
>>> Thanks for the replies guys.
>>>
>>> The purpose of the build.sh script is to setup a full env under the
>>> "arachni" dir which will include all system libs and other dependencies.
>>>
>>> It also creates wrappers for the application's executables which setup
>>> env
>>> variables like PATH and LD_LIBRARY_PATH before running them.
>>>
>>> The point of all this is that you'll be able to package up that dir and
>>> transfer it between boxes without worrying about dependencies.
>>>
>>> It's meant to create a self-contained package, so I don't want to rely on
>>> what's already on the system.
>>>
>>> I've attached the libiconv logfile and the cygcheck output.
>>
>> OK, that explains the difference you and I are seeing.  In your configure
>> output, you get:
>>
>>> checking for iconv... (cached) no, consider installing GNU libiconv
>>
>
> So...libiconv's configure script requires libiconv, that's a bit wacky.
> However, I'm guessing that this is a standard test and doesn't play a part
> in this problem.
>
> Configuring and installing libiconv manually (no prefix) works, it only
> fails when running the build script.

And if you configure manually with a prefix?

> If you'd like to recreate my Cygwin env and try again this is how:
> -------------
> setup.exe -q -R c:\cygwin -l c:\cygwin-packages -P make,gcc,g++,perl,wget
> -------------

I already tried your script on a machine with Cygwin installed but
without iconv and saw the same complaints from configure in your build
script.  There are other configure flags for this package which could
help if you want to experiment with them (assuming you haven't already).
But also doing what the configure script recommends solves the problem.
If you're content to do that, then you have a solution.  If you're not
(as I expect you aren't) and the configure flags don't help, then I'd
recommend talking to the package authors about the bump in the
configure process you're noticing.

-- 
Larry

_____________________________________________________________________

A: Yes.
 > Q: Are you sure?
 >> A: Because it reverses the logical flow of conversation.
 >>> Q: Why is top posting annoying in email?

--
Problem reports:       http://cygwin.com/problems.html
FAQ:                   http://cygwin.com/faq/
Documentation:         http://cygwin.com/docs.html
Unsubscribe info:      http://cygwin.com/ml/#unsubscribe-simple

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

* Re: Build script error (libiconv + custom prefix)
  2012-08-28 23:23         ` Larry Hall (Cygwin)
@ 2012-08-29  0:03           ` Tasos Laskos
  2012-08-29  6:07             ` Tasos Laskos
  0 siblings, 1 reply; 10+ messages in thread
From: Tasos Laskos @ 2012-08-29  0:03 UTC (permalink / raw)
  To: cygwin

>
> I already tried your script on a machine with Cygwin installed but
> without iconv and saw the same complaints from configure in your build
> script.  There are other configure flags for this package which could
> help if you want to experiment with them (assuming you haven't already).
> But also doing what the configure script recommends solves the problem.
> If you're content to do that, then you have a solution.  If you're not
> (as I expect you aren't) and the configure flags don't help, then I'd
> recommend talking to the package authors about the bump in the
> configure process you're noticing.
>

Well, I guess depending on libiconv isn't that bad since it's pretty 
much universally installed.
I'll give another shot to sorting this out but if I don't it's not the 
end of the world.

Thanks for the help Larry.


--
Problem reports:       http://cygwin.com/problems.html
FAQ:                   http://cygwin.com/faq/
Documentation:         http://cygwin.com/docs.html
Unsubscribe info:      http://cygwin.com/ml/#unsubscribe-simple

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

* Re: Build script error (libiconv + custom prefix)
  2012-08-29  0:03           ` Tasos Laskos
@ 2012-08-29  6:07             ` Tasos Laskos
  2012-08-29 15:04               ` Csaba Raduly
  0 siblings, 1 reply; 10+ messages in thread
From: Tasos Laskos @ 2012-08-29  6:07 UTC (permalink / raw)
  To: cygwin

On 08/28/2012 11:48 PM, Tasos Laskos wrote:
>>
>> I already tried your script on a machine with Cygwin installed but
>> without iconv and saw the same complaints from configure in your build
>> script.  There are other configure flags for this package which could
>> help if you want to experiment with them (assuming you haven't already).
>> But also doing what the configure script recommends solves the problem.
>> If you're content to do that, then you have a solution.  If you're not
>> (as I expect you aren't) and the configure flags don't help, then I'd
>> recommend talking to the package authors about the bump in the
>> configure process you're noticing.
>>
>
> Well, I guess depending on libiconv isn't that bad since it's pretty
> much universally installed.
> I'll give another shot to sorting this out but if I don't it's not the
> end of the world.
>
> Thanks for the help Larry.
>

I finally gave up and decided to use the Cygwin packages and everything 
seems to be working fine.

One question though. how do you run a Linux command from Windows?
I tried C:\cygwin\bin\bash.exe -c "ls -la" but it doesn't work in Cygwin.

--
Problem reports:       http://cygwin.com/problems.html
FAQ:                   http://cygwin.com/faq/
Documentation:         http://cygwin.com/docs.html
Unsubscribe info:      http://cygwin.com/ml/#unsubscribe-simple

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

* Re: Build script error (libiconv + custom prefix)
  2012-08-29  6:07             ` Tasos Laskos
@ 2012-08-29 15:04               ` Csaba Raduly
  0 siblings, 0 replies; 10+ messages in thread
From: Csaba Raduly @ 2012-08-29 15:04 UTC (permalink / raw)
  To: cygwin

On Wed, Aug 29, 2012 at 1:23 AM, Tasos Laskos  wrote:
> One question though. how do you run a Linux command from Windows?
> I tried C:\cygwin\bin\bash.exe -c "ls -la" but it doesn't work in Cygwin.
>

You could just run

C:\cygwin\bin\ls -la

or, if C:\cygwin\bin is in the PATH, simply run

ls -la

-- 
GCS a+ e++ d- C++ ULS$ L+$ !E- W++ P+++$ w++$ tv+ b++ DI D++ 5++
The Tao of math: The numbers you can count are not the real numbers.
Life is complex, with real and imaginary parts.
"Ok, it boots. Which means it must be bug-free and perfect. " -- Linus Torvalds
"People disagree with me. I just ignore them." -- Linus Torvalds

--
Problem reports:       http://cygwin.com/problems.html
FAQ:                   http://cygwin.com/faq/
Documentation:         http://cygwin.com/docs.html
Unsubscribe info:      http://cygwin.com/ml/#unsubscribe-simple

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

end of thread, other threads:[~2012-08-29  7:40 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2012-08-28  3:45 Build script error (libiconv + custom prefix) Tasos Laskos
2012-08-28  7:12 ` marco atzeri
2012-08-28 18:30 ` Larry Hall (Cygwin)
2012-08-28 19:52   ` Tasos Laskos
2012-08-28 20:48     ` Larry Hall (Cygwin)
2012-08-28 20:58       ` Tasos Laskos
2012-08-28 23:23         ` Larry Hall (Cygwin)
2012-08-29  0:03           ` Tasos Laskos
2012-08-29  6:07             ` Tasos Laskos
2012-08-29 15:04               ` Csaba Raduly

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).