summaryrefslogtreecommitdiff
path: root/Build/source/libs/freetype2/TLpatches/patch-01-support-old-compilers
diff options
context:
space:
mode:
authorAkira Kakuto <kakuto@fuk.kindai.ac.jp>2021-12-03 04:03:12 +0000
committerAkira Kakuto <kakuto@fuk.kindai.ac.jp>2021-12-03 04:03:12 +0000
commit4ee9d04bd5d518e5f1f86875f4f8184fc0552f44 (patch)
tree4f27c2cc7196ba469bf631ffe0460cb3d6bcbc9d /Build/source/libs/freetype2/TLpatches/patch-01-support-old-compilers
parent39bd39ea6f91fb51d118264f372905de9accc347 (diff)
freetype 2.11.1
git-svn-id: svn://tug.org/texlive/trunk@61211 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/source/libs/freetype2/TLpatches/patch-01-support-old-compilers')
-rw-r--r--Build/source/libs/freetype2/TLpatches/patch-01-support-old-compilers44
1 files changed, 0 insertions, 44 deletions
diff --git a/Build/source/libs/freetype2/TLpatches/patch-01-support-old-compilers b/Build/source/libs/freetype2/TLpatches/patch-01-support-old-compilers
deleted file mode 100644
index 93010775b3e..00000000000
--- a/Build/source/libs/freetype2/TLpatches/patch-01-support-old-compilers
+++ /dev/null
@@ -1,44 +0,0 @@
-diff -ur freetype-2.11.0/src/smooth/ftgrays.c freetype-src/src/smooth/ftgrays.c
---- freetype-2.11.0/src/smooth/ftgrays.c Sat Jul 17 15:51:32 2021
-+++ freetype-src/src/smooth/ftgrays.c Wed Sep 01 11:32:04 2021
-@@ -437,17 +437,16 @@
- typedef int TCoord; /* integer scanline/pixel coordinate */
- typedef int TArea; /* cell areas, coordinate products */
-
--
-- typedef struct TCell_* PCell;
--
-- typedef struct TCell_
-+ struct TCell_
- {
- TCoord x; /* same with gray_TWorker.ex */
- TCoord cover; /* same with gray_TWorker.cover */
- TArea area;
-- PCell next;
-+ struct TCell_ *next;
-+ };
-
-- } TCell;
-+ typedef struct TCell_ TCell;
-+ typedef TCell *PCell;
-
- typedef struct TPixmap_
- {
-@@ -1938,7 +1937,7 @@
- TCoord* band;
-
- int continued = 0;
--
-+ PCell null_cell;
-
- /* set up vertical bands */
- if ( height > n )
-@@ -1959,7 +1958,7 @@
- /* Initialize the null cell at the start of the `cells` array. */
- /* Note that this requires `ras.cell_free` initialization to skip */
- /* over the first entry in the array. */
-- PCell null_cell = NULL_CELL_PTR( ras );
-+ null_cell = NULL_CELL_PTR( ras );
- null_cell->x = CELL_MAX_X_VALUE;
- null_cell->area = 0;
- null_cell->cover = 0;