summaryrefslogtreecommitdiffstats
path: root/abs/core/freetype2-static
diff options
context:
space:
mode:
authorMichael Hanson <hansonorders@verizon.net>2010-12-02 23:59:48 (GMT)
committerMichael Hanson <hansonorders@verizon.net>2010-12-02 23:59:48 (GMT)
commit116d03af8c83524c31ad0213113cfa4091dbadfc (patch)
treea2e68cf8b6402bb2f6d0d835c310e2599aeb6235 /abs/core/freetype2-static
parente509c70e498901466c0bfba06e114b77838a5ca3 (diff)
downloadlinhes_pkgbuild-116d03af8c83524c31ad0213113cfa4091dbadfc.zip
linhes_pkgbuild-116d03af8c83524c31ad0213113cfa4091dbadfc.tar.gz
linhes_pkgbuild-116d03af8c83524c31ad0213113cfa4091dbadfc.tar.bz2
Housekeeping
Diffstat (limited to 'abs/core/freetype2-static')
-rw-r--r--abs/core/freetype2-static/bytecode.patch29
-rw-r--r--abs/core/freetype2-static/freetype-2.2.1-memcpy-fix.patch14
2 files changed, 0 insertions, 43 deletions
diff --git a/abs/core/freetype2-static/bytecode.patch b/abs/core/freetype2-static/bytecode.patch
deleted file mode 100644
index dd901ad..0000000
--- a/abs/core/freetype2-static/bytecode.patch
+++ /dev/null
@@ -1,29 +0,0 @@
---- include/freetype/config/ftoption.h.old 2006-05-12 02:05:49.000000000 +0800
-+++ include/freetype/config/ftoption.h 2006-10-02 01:22:50.000000000 +0800
-@@ -436,7 +436,7 @@
- /* Do not #undef this macro here, since the build system might */
- /* define it for certain configurations only. */
- /* */
--/* #define TT_CONFIG_OPTION_BYTECODE_INTERPRETER */
-+#define TT_CONFIG_OPTION_BYTECODE_INTERPRETER
-
-
- /*************************************************************************/
-@@ -448,7 +448,7 @@
- /* FT_PARAM_TAG_UNPATENTED_HINTING; or when the debug hook */
- /* FT_DEBUG_HOOK_UNPATENTED_HINTING is globally activated. */
- /* */
--#define TT_CONFIG_OPTION_UNPATENTED_HINTING
-+#undef TT_CONFIG_OPTION_UNPATENTED_HINTING
-
-
- /*************************************************************************/
-@@ -480,7 +480,7 @@
- /* http://partners.adobe.com/asn/developer/opentype/glyf.html */
- /* http://fonts.apple.com/TTRefMan/RM06/Chap6glyf.html */
- /* */
--#undef TT_CONFIG_OPTION_COMPONENT_OFFSET_SCALED
-+#define TT_CONFIG_OPTION_COMPONENT_OFFSET_SCALED
-
-
- /*************************************************************************/
diff --git a/abs/core/freetype2-static/freetype-2.2.1-memcpy-fix.patch b/abs/core/freetype2-static/freetype-2.2.1-memcpy-fix.patch
deleted file mode 100644
index 67a1c07..0000000
--- a/abs/core/freetype2-static/freetype-2.2.1-memcpy-fix.patch
+++ /dev/null
@@ -1,14 +0,0 @@
---- freetype-2.2.1/src/psaux/psobjs.c~ 2006-04-26 16:38:17.000000000 +0200
-+++ freetype-2.2.1/src/psaux/psobjs.c 2006-09-10 15:01:13.000000000 +0200
-@@ -165,6 +165,11 @@
- return PSaux_Err_Invalid_Argument;
- }
-
-+ if ( length < 0 ) {
-+ FT_ERROR(( "ps_table_add: invalid length\n" ));
-+ return PSaux_Err_Invalid_Argument;
-+ }
-+
- /* grow the base block if needed */
- if ( table->cursor + length > table->capacity )
- {