1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-27 00:57:50 +00:00

- Remove superfluous patches

This commit is contained in:
Marcus von Appen 2011-04-03 15:44:06 +00:00
parent 34885cbd23
commit bad181150e
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=272157
2 changed files with 0 additions and 21 deletions

View File

@ -1,10 +0,0 @@
--- src/ght_hash_table.h.in.orig Sat Jul 14 10:40:00 2007
+++ src/ght_hash_table.h.in Sat Jul 14 10:40:29 2007
@@ -60,6 +60,7 @@
#define GHT_HASH_TABLE_H
#include <stdlib.h> /* size_t */
+#include <sys/types.h>
#ifndef WIN32
#include <stdint.h> /* uint32_t */
#endif

View File

@ -1,11 +0,0 @@
--- src/pslib.c.orig 2010-08-27 08:20:08.000000000 +0200
+++ src/pslib.c 2010-08-27 08:20:29.000000000 +0200
@@ -4600,7 +4600,7 @@
/* Expand grayscale images to the full 8 bits from 1, 2, or 4 bits/pixel */
if (color_type == PNG_COLOR_TYPE_GRAY && bit_depth < 8)
- png_set_gray_1_2_4_to_8(png_ptr);
+ png_set_expand_gray_1_2_4_to_8(png_ptr);
png_read_update_info(png_ptr, info_ptr);
#else