mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2024-12-30 17:36:16 +01:00
64e1b6d84f
2008-05-20 Behdad Esfahbod <behdad@gnome.org> Bug 501651 – Update glib/libcharset * configure.in: * glib/libcharset/Makefile.am: * glib/libcharset/README: * glib/libcharset/codeset.m4: * glib/libcharset/config.charset: * glib/libcharset/glibc21.m4: * glib/libcharset/libcharset-glib.patch: * glib/libcharset/libcharset.h: * glib/libcharset/localcharset.c (_g_locale_get_charset_aliases), (_g_locale_charset_raw): * glib/libcharset/localcharset.h: * glib/libcharset/make-patch.sh: * glib/libcharset/ref-add.sin: * glib/libcharset/ref-del.sin: * glib/libcharset/update.sh: Update libcharset to the one shipped with libiconv-0.12. svn path=/trunk/; revision=6921
34 lines
646 B
Bash
Executable File
34 lines
646 B
Bash
Executable File
#!/bin/sh
|
|
|
|
if test $# = 1 ; then
|
|
ORIGINAL=$1
|
|
else
|
|
echo "Usage: update.sh /path/to/libcharset" 1>&2
|
|
exit 1
|
|
fi
|
|
|
|
if test -f $ORIGINAL/lib/localcharset.c ; then : ; else
|
|
echo "Usage: update.sh /path/to/libcharset" 1>&2
|
|
exit 1
|
|
fi
|
|
|
|
VERSION=`grep VERSION= $ORIGINAL/configure.ac | sed s/VERSION=//`
|
|
|
|
for i in localcharset.c ref-add.sin ref-del.sin config.charset ; do
|
|
cp $ORIGINAL/lib/$i .
|
|
done
|
|
|
|
for i in libcharset.h localcharset.h ; do
|
|
cp $ORIGINAL/include/$i.in ./$i
|
|
done
|
|
|
|
for i in codeset.m4 glibc21.m4 ; do
|
|
cp $ORIGINAL/m4/$i .
|
|
done
|
|
|
|
patch -p0 < libcharset-glib.patch
|
|
|
|
echo "dnl From libcharset $VERSION" > ../../aclibcharset.m4
|
|
|
|
|