[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [bug-gnu-libiconv] fix build for windows under cygwin
From: |
Bruno Haible |
Subject: |
Re: [bug-gnu-libiconv] fix build for windows under cygwin |
Date: |
Sat, 07 Apr 2018 16:52:19 +0200 |
User-agent: |
KMail/5.1.3 (Linux/4.4.0-116-generic; KDE/5.18.0; x86_64; ; ) |
Hi,
> aclocal depends on some macro definded in ../srcm4 which is copyed form
> gnulib.
Once you have executed the top-level autogen.sh, which contains the lines
for file in codeset.m4 fcntl-o.m4 glibc21.m4 relocatable-lib.m4 visibility.m4;
do
cp -p srcm4/$file libcharset/m4/$file || exit $?
done
the same *.m4 files will be present also in libcharset/m4/.
> suggestion for further improvment:
> since gnulib is optional by --skip-gnulib args in autogen.sh, so many other
> make rules depend on gnulib should be optional too.
The autogen.sh distinguishes these cases:
# Usage from a git checkout: ./autogen.sh
# This uses an up-to-date gnulib checkout.
#
# Usage from a released tarball: ./autogen.sh --skip-gnulib
# This does not use a gnulib checkout.
Maybe you used a git checkout but passed the option --skip-gnulib? That
won't work.
Bruno