mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2024-12-28 00:16:15 +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
65 lines
1.6 KiB
Makefile
65 lines
1.6 KiB
Makefile
## Process this file with automake to produce Makefile.in
|
|
include $(top_srcdir)/Makefile.decl
|
|
|
|
INCLUDES = \
|
|
-DLIBDIR=\"$(libdir)\" -I$(top_srcdir)
|
|
|
|
noinst_LTLIBRARIES = libcharset.la
|
|
|
|
libcharset_la_SOURCES = \
|
|
libcharset.h \
|
|
localcharset.h \
|
|
localcharset.c
|
|
|
|
EXTRA_DIST += \
|
|
README \
|
|
config.charset \
|
|
ref-add.sin \
|
|
ref-del.sin \
|
|
glibc21.m4 \
|
|
codeset.m4 \
|
|
update.sh \
|
|
make-patch.sh \
|
|
libcharset-glib.patch
|
|
|
|
charset_alias = $(DESTDIR)$(libdir)/charset.alias
|
|
charset_tmp = $(DESTDIR)$(libdir)/charset.tmp
|
|
install-exec-local: all-local
|
|
$(mkinstalldirs) $(DESTDIR)$(libdir)
|
|
if test -f $(charset_alias); then \
|
|
sed -f ref-add.sed $(charset_alias) > $(charset_tmp) ; \
|
|
$(INSTALL_DATA) $(charset_tmp) $(charset_alias) ; \
|
|
rm -f $(charset_tmp) ; \
|
|
else \
|
|
if test @GLIBC21@ = no; then \
|
|
sed -f ref-add.sed charset.alias > $(charset_tmp) ; \
|
|
$(INSTALL_DATA) $(charset_tmp) $(charset_alias) ; \
|
|
rm -f $(charset_tmp) ; \
|
|
fi ; \
|
|
fi
|
|
|
|
uninstall-local: all-local
|
|
if test -f $(charset_alias); then \
|
|
sed -f ref-del.sed $(charset_alias) > $(charset_tmp); \
|
|
if grep '^# Packages using this file: $$' $(charset_tmp) \
|
|
> /dev/null; then \
|
|
rm -f $(charset_alias); \
|
|
else \
|
|
$(INSTALL_DATA) $(charset_tmp) $(charset_alias); \
|
|
fi; \
|
|
rm -f $(charset_tmp); \
|
|
fi
|
|
|
|
charset.alias: config.charset
|
|
$(SHELL) $(srcdir)/config.charset '@host@' > t-$@
|
|
mv t-$@ $@
|
|
|
|
all-local: ref-add.sed ref-del.sed charset.alias
|
|
|
|
SUFFIXES = .sed .sin
|
|
.sin.sed:
|
|
sed -e '/^#/d' -e 's/@''PACKAGE''@/@PACKAGE@/g' $< > t-$@
|
|
mv t-$@ $@
|
|
|
|
CLEANFILES = charset.alias ref-add.sed ref-del.sed
|