summaryrefslogtreecommitdiffstats
path: root/graphics/cairo/files
diff options
context:
space:
mode:
authormarcus <marcus@df743ca5-7f9a-e211-a948-0013205c9059>2007-03-19 13:35:06 +0800
committermarcus <marcus@df743ca5-7f9a-e211-a948-0013205c9059>2007-03-19 13:35:06 +0800
commit716e853082f85512d878931d3c2903f4a669c7e8 (patch)
tree3a24d58f313f014bb8f3aca107a85ec50d2fb1df /graphics/cairo/files
parentea6bb0f0996a0cf559b13cfa9aef24e8199d6a23 (diff)
downloadmarcuscom-ports-716e853082f85512d878931d3c2903f4a669c7e8.tar
marcuscom-ports-716e853082f85512d878931d3c2903f4a669c7e8.tar.gz
marcuscom-ports-716e853082f85512d878931d3c2903f4a669c7e8.tar.bz2
marcuscom-ports-716e853082f85512d878931d3c2903f4a669c7e8.tar.lz
marcuscom-ports-716e853082f85512d878931d3c2903f4a669c7e8.tar.xz
marcuscom-ports-716e853082f85512d878931d3c2903f4a669c7e8.tar.zst
marcuscom-ports-716e853082f85512d878931d3c2903f4a669c7e8.zip
Remove these ports now that they have been committed to FreeBSD.
git-svn-id: svn://creme-brulee.marcuscom.com/ports/trunk@8576 df743ca5-7f9a-e211-a948-0013205c9059
Diffstat (limited to 'graphics/cairo/files')
-rw-r--r--graphics/cairo/files/patch-src_cairo-ft-font.c28
-rw-r--r--graphics/cairo/files/patch-src_cairo-xlib-surface.c11
-rw-r--r--graphics/cairo/files/patch-src_cairoint.h14
3 files changed, 0 insertions, 53 deletions
diff --git a/graphics/cairo/files/patch-src_cairo-ft-font.c b/graphics/cairo/files/patch-src_cairo-ft-font.c
deleted file mode 100644
index 8cd60665f..000000000
--- a/graphics/cairo/files/patch-src_cairo-ft-font.c
+++ /dev/null
@@ -1,28 +0,0 @@
---- src/cairo-ft-font.c.orig Tue Aug 16 14:46:46 2005
-+++ src/cairo-ft-font.c Tue Aug 16 14:46:59 2005
-@@ -44,6 +44,11 @@
- #include <fontconfig/fontconfig.h>
- #include <fontconfig/fcfreetype.h>
-
-+#include <sys/types.h>
-+#include <stdlib.h>
-+#include <time.h>
-+#include <unistd.h>
-+
- #include <ft2build.h>
- #include FT_FREETYPE_H
- #include FT_OUTLINE_H
-@@ -257,7 +262,12 @@ _cairo_ft_unscaled_font_init_key (cairo_
- key->id = id;
-
- /* 1607 is just an arbitrary prime. */
-- hash = _cairo_hash_string (filename);
-+ if (filename != NULL) {
-+ hash = _cairo_hash_string (filename);
-+ } else {
-+ srandom(time(NULL) * getpid());
-+ hash = random();
-+ }
- hash += ((unsigned long) id) * 1607;
-
- key->base.hash_entry.hash = hash;
diff --git a/graphics/cairo/files/patch-src_cairo-xlib-surface.c b/graphics/cairo/files/patch-src_cairo-xlib-surface.c
deleted file mode 100644
index 396ac3e29..000000000
--- a/graphics/cairo/files/patch-src_cairo-xlib-surface.c
+++ /dev/null
@@ -1,11 +0,0 @@
---- src/cairo-xlib-surface.c.orig Mon Oct 3 22:44:43 2005
-+++ src/cairo-xlib-surface.c Wed Nov 16 18:59:40 2005
-@@ -1758,7 +1758,7 @@
-
- surface->buggy_repeat = FALSE;
- if (strstr (ServerVendor (dpy), "X.Org") != NULL) {
-- if (VendorRelease (dpy) <= 60802000)
-+ if (VendorRelease (dpy) < 60900000)
- surface->buggy_repeat = TRUE;
- } else if (strstr (ServerVendor (dpy), "XFree86") != NULL) {
- if (VendorRelease (dpy) <= 40500000)
diff --git a/graphics/cairo/files/patch-src_cairoint.h b/graphics/cairo/files/patch-src_cairoint.h
deleted file mode 100644
index a9b3ce480..000000000
--- a/graphics/cairo/files/patch-src_cairoint.h
+++ /dev/null
@@ -1,14 +0,0 @@
---- src/cairoint.h.orig Sun Oct 15 18:02:35 2006
-+++ src/cairoint.h Sun Oct 15 18:10:11 2006
-@@ -50,6 +50,11 @@
- #include "config.h"
- #endif
-
-+#ifndef INT16_MAX
-+#define INT16_MAX 0x7fff
-+#define INT16_MIN (-0x7fff-1)
-+#endif
-+
- #include <assert.h>
- #include <stdlib.h>
- #include <string.h>