2001-10-04 05:37:36 +04:00
|
|
|
#!/bin/sh
|
2016-04-18 06:39:07 +03:00
|
|
|
# Generate configure & friends for GIT users.
|
2001-10-04 05:37:36 +04:00
|
|
|
|
2017-02-22 01:04:35 +03:00
|
|
|
gnulib_url="git://git.sv.gnu.org/gnulib.git"
|
|
|
|
gnulib_hash="4084b3a1094372b960ce4a97634e08f4538c8bdd"
|
|
|
|
|
|
|
|
modules="
|
2017-02-22 01:04:37 +03:00
|
|
|
getdelim
|
|
|
|
getline
|
2017-02-22 01:04:35 +03:00
|
|
|
strcase
|
|
|
|
strcasestr-simple
|
|
|
|
strnlen
|
|
|
|
"
|
|
|
|
|
|
|
|
# Make sure the local gnulib git repo is up-to-date.
|
|
|
|
if [ ! -d "gnulib" ]; then
|
|
|
|
git clone --depth=123 ${gnulib_url}
|
|
|
|
fi
|
|
|
|
cd gnulib >/dev/null || exit 1
|
|
|
|
curr_hash=$(git log -1 --format=%H)
|
|
|
|
if [ "${gnulib_hash}" != "${curr_hash}" ]; then
|
|
|
|
git pull
|
|
|
|
git checkout -f ${gnulib_hash}
|
|
|
|
fi
|
|
|
|
cd .. >/dev/null || exit 1
|
|
|
|
|
|
|
|
rm -rf lib
|
|
|
|
./gnulib/gnulib-tool \
|
|
|
|
--import \
|
|
|
|
${modules}
|
|
|
|
|
2003-01-15 20:38:38 +03:00
|
|
|
autoreconf -f -i -s
|