summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBehdad Esfahbod <behdad@gnome.org>2006-08-30 18:20:13 +0000
committerBehdad Esfahbod <behdad@src.gnome.org>2006-08-30 18:20:13 +0000
commit597e6d8e9755a237f77711be68dfc2139aac290e (patch)
tree5ec815683d86e8ff0ade17a5729254e76d557f58
parent25d33b683b2642928186bbeacc42ddd9b5dff78a (diff)
downloadpango-597e6d8e9755a237f77711be68dfc2139aac290e.tar.gz
Bug 352811 – SIGSEGV with pango(cairo)-view on HP-UX
2006-08-30 Behdad Esfahbod <behdad@gnome.org> Bug 352811 – SIGSEGV with pango(cairo)-view on HP-UX * modules/Makefile.am (pango.modules): Don't hardcode .so extension. Look for .la instead.
-rw-r--r--ChangeLog7
-rw-r--r--modules/Makefile.am4
2 files changed, 9 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index 076c0dc3..288a9133 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,12 @@
2006-08-30 Behdad Esfahbod <behdad@gnome.org>
+ Bug 352811 – SIGSEGV with pango(cairo)-view on HP-UX
+
+ * modules/Makefile.am (pango.modules): Don't hardcode .so extension.
+ Look for .la instead.
+
+2006-08-30 Behdad Esfahbod <behdad@gnome.org>
+
Bug 353525 – libpangoft2-1.0.so.0: undefined reference to
`pango_font_description_get_gravity'
diff --git a/modules/Makefile.am b/modules/Makefile.am
index df5800ad..efc1532a 100644
--- a/modules/Makefile.am
+++ b/modules/Makefile.am
@@ -47,12 +47,12 @@ uninstall-local:
$(RM) $(DESTDIR)$(sysconfdir)/pango/pango.modules
pango.modules: $(top_builddir)/pango/pango-querymodules $(SUBDIRS)
- @if find . -name '*.so' | grep 'so' > /dev/null ; then \
+ @if find . -name '*.la' | grep '.' > /dev/null ; then \
echo "Writing a pango.modules file to use with tests/examples."; \
$(top_builddir)/pango/pango-querymodules `find . -name '*.la' | grep -v '\.libs' | grep -v libpango` > $@ ;\
else \
echo "No dynamic modules found; will use only static modules for tests/examples."; \
- touch $@; \
+ > $@; \
fi
included-modules: