From ba6b12ca588709d4d408e691fbe9698a5a97339d Mon Sep 17 00:00:00 2001 From: Tor Lillqvist Date: Sun, 18 Nov 2001 23:19:20 +0000 Subject: Suffix package names with datestamp. Add the Pango modules. 2001-11-19 Tor Lillqvist * pango-zip.sh.in: Suffix package names with datestamp. Add the Pango modules. * pango/pango.def: pango_context_add_font_map -> pango_context_set_font_map. Add pango_fontset_*. * pango/pangoft2.def: Reflect Alexander's changes. * pango/mini-xft/minixftinit.c (get_xft_default_path): New function. Use pango_get_sysconf_subdirectory () to construct a suitable path. * pango/mini-xft/minixftint.h: On Win32, don't use the hardcoded /usr/X11R6/lib/X11/XftConfig path (or any other hardcoded path), but instead the function get_xft_default_path(). * pango/mini-xft/minixftcache.c (MiniXftFileCacheSave): On Win32, don't use link() and unlink() for the lock file. Instead, use a lock directory. --- pango-zip.sh.in | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'pango-zip.sh.in') diff --git a/pango-zip.sh.in b/pango-zip.sh.in index 6113a5f5..e35f4472 100755 --- a/pango-zip.sh.in +++ b/pango-zip.sh.in @@ -2,8 +2,8 @@ # Build zipfiles for Pango on Win32: separate runtime and developer packages -ZIP=/tmp/pango-@PANGO_MAJOR_VERSION@.@PANGO_MINOR_VERSION@.zip -DEVZIP=/tmp/pango-dev-@PANGO_MAJOR_VERSION@.@PANGO_MINOR_VERSION@.zip +ZIP=/tmp/pango-@PANGO_MAJOR_VERSION@.@PANGO_MINOR_VERSION@-`date +%Y%m%d`.zip +DEVZIP=/tmp/pango-dev-@PANGO_MAJOR_VERSION@.@PANGO_MINOR_VERSION@-`date +%Y%m%d`.zip cd @prefix@ rm $ZIP @@ -13,9 +13,10 @@ etc/pango lib/libpango-@PANGO_MAJOR_VERSION@-@PANGO_MINOR_VERSION@.dll lib/libpangoft2-@PANGO_MAJOR_VERSION@-@PANGO_MINOR_VERSION@.dll lib/libpangowin32-@PANGO_MAJOR_VERSION@-@PANGO_MINOR_VERSION@.dll -lib/pango/modules/*.dll EOF +zip $ZIP lib/pango/modules/*.dll + rm $DEVZIP zip -r $DEVZIP -@ <