summaryrefslogtreecommitdiff
path: root/fonts/t1lib/patches
diff options
context:
space:
mode:
authorbjs <bjs>2008-02-11 18:53:38 +0000
committerbjs <bjs>2008-02-11 18:53:38 +0000
commit3c6437db1058e093951551f04770e0b70921776d (patch)
tree1906c75a387f7f53c2cb3b124ac7f0eac31b9b18 /fonts/t1lib/patches
parent2b340be82db04f7beca2ff337b8d3804b953959f (diff)
downloadpkgsrc-3c6437db1058e093951551f04770e0b70921776d.tar.gz
Update to version 5.1.2. Patches removed above are no longer needed,
as they appear to have been incorporated upstream. Additionally, the following changes apply: December 2006: t1lib-5.1.1: --------------------------- - DESTDIR support was missing and has been addded in install-target i for type1afm. - A bug fix in Anti-Aliasing subsampling code, which could make t1lib crash under certain conditions. - Small number of further fixes, in particular with respect to the build mechanism. December 2007: t1lib-5.1.2: --------------------------- - Small number of fixes reported by users. The fixes pertain to a vulnerability issue, memory access issues. - More decent handling if Encoding and / or FontBBox specification are missing (which is invalid with respect to the specification, but recoverable).
Diffstat (limited to 'fonts/t1lib/patches')
-rw-r--r--fonts/t1lib/patches/patch-ab13
-rw-r--r--fonts/t1lib/patches/patch-ag13
-rw-r--r--fonts/t1lib/patches/patch-ai17
3 files changed, 0 insertions, 43 deletions
diff --git a/fonts/t1lib/patches/patch-ab b/fonts/t1lib/patches/patch-ab
deleted file mode 100644
index 045647ce935..00000000000
--- a/fonts/t1lib/patches/patch-ab
+++ /dev/null
@@ -1,13 +0,0 @@
-$NetBSD: patch-ab,v 1.5 2006/11/06 11:25:24 joerg Exp $
-
---- type1afm/Makefile.in.orig 2006-11-04 01:08:30.000000000 +0000
-+++ type1afm/Makefile.in
-@@ -89,7 +89,7 @@ clean: dummy
- install: dummy
- $(MKINSTALLDIRS) $(DESTDIR)$(bindir)
- $(LIBTOOL) --mode=install \
-- $(INSTALL_PROGRAM) type1afm $(bindir)/type1afm
-+ $(INSTALL_PROGRAM) type1afm $(DESTDIR)$(bindir)/type1afm
-
-
- uninstall: dummy
diff --git a/fonts/t1lib/patches/patch-ag b/fonts/t1lib/patches/patch-ag
deleted file mode 100644
index af1315c3f05..00000000000
--- a/fonts/t1lib/patches/patch-ag
+++ /dev/null
@@ -1,13 +0,0 @@
-$NetBSD: patch-ag,v 1.3 2005/09/09 16:59:55 tonio Exp $
-
---- lib/Makefile.in.orig 2005-05-02 00:01:57.000000000 +0200
-+++ lib/Makefile.in
-@@ -135,7 +135,7 @@ libt1.la: $(TYPE1_OBJS) $(T1LIB_OBJS)
-
- libt1x.la: $(T1LIBX_OBJS)
- $(LIBTOOL) --mode=link \
-- $(CC) -o $@ $(T1LIBX_OBJS) \
-+ $(CC) -o $@ $(T1LIBX_OBJS) $(LDFLAGS) libt1.la $(XLIB) \
- -version-info @T1LIB_LT_CURRENT@:@T1LIB_LT_REVISION@:@T1LIB_LT_AGE@ \
- -no-undefined -rpath $(libdir)
- cp t1lib/t1libx.h .
diff --git a/fonts/t1lib/patches/patch-ai b/fonts/t1lib/patches/patch-ai
deleted file mode 100644
index ec76de470af..00000000000
--- a/fonts/t1lib/patches/patch-ai
+++ /dev/null
@@ -1,17 +0,0 @@
-$NetBSD: patch-ai,v 1.1 2007/09/28 08:42:08 drochner Exp $
-
---- lib/t1lib/t1env.c.orig 2007-09-28 10:35:07.000000000 +0200
-+++ lib/t1lib/t1env.c
-@@ -611,6 +611,12 @@ char *intT1_Env_GetCompletePath( char *F
- #endif
- strcat( pathbuf, DIRECTORY_SEP);
- /* And finally the filename: */
-+ /* If current pathbuf + StrippedName + 1 byte for NULL is bigger than pathbuf
-+ let's try next pathbuf */
-+ if( strlen(pathbuf) + strlen(StrippedName) + 1 > sizeof(pathbuf) ) {
-+ i++;
-+ continue;
-+ }
- strcat( pathbuf, StrippedName);
-
- /* Check for existence of the path: */