2001-10-04 01:37:36 +00:00
|
|
|
#!/bin/sh
|
2016-04-17 23:39:07 -04:00
|
|
|
# Generate configure & friends for GIT users.
|
2001-10-04 01:37:36 +00:00
|
|
|
|
2017-02-21 17:04:35 -05:00
|
|
|
gnulib_url="git://git.sv.gnu.org/gnulib.git"
|
2018-03-06 12:07:30 +01:00
|
|
|
gnulib_hash="59e59d99bc1ca635d178778b9b4ee544330775c4"
|
2017-02-21 17:04:35 -05:00
|
|
|
|
|
|
|
modules="
|
2017-04-04 09:29:31 +02:00
|
|
|
futimens
|
2017-02-21 17:04:37 -05:00
|
|
|
getdelim
|
|
|
|
getline
|
2017-02-21 17:04:40 -05:00
|
|
|
getopt-gnu
|
2017-02-21 17:04:43 -05:00
|
|
|
glob
|
2017-02-21 17:04:38 -05:00
|
|
|
isblank
|
|
|
|
iswblank
|
2017-02-21 17:04:46 -05:00
|
|
|
lstat
|
2017-03-08 00:16:47 -08:00
|
|
|
nl_langinfo
|
2017-02-21 17:04:39 -05:00
|
|
|
regex
|
2017-02-21 17:04:47 -05:00
|
|
|
sigaction
|
2017-02-21 17:04:41 -05:00
|
|
|
snprintf-posix
|
2017-02-21 17:04:42 -05:00
|
|
|
stdarg
|
2017-02-21 17:04:35 -05:00
|
|
|
strcase
|
|
|
|
strcasestr-simple
|
|
|
|
strnlen
|
2017-02-21 17:04:49 -05:00
|
|
|
sys_wait
|
2017-02-21 17:04:41 -05:00
|
|
|
vsnprintf-posix
|
2017-02-21 17:04:42 -05:00
|
|
|
wchar
|
|
|
|
wctype-h
|
2017-03-08 00:16:47 -08:00
|
|
|
wcwidth
|
2017-02-21 17:04:35 -05:00
|
|
|
"
|
|
|
|
|
|
|
|
# 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 17:38:38 +00:00
|
|
|
autoreconf -f -i -s
|