Remove duplicated patch

Submitted by:	marino
This commit is contained in:
Baptiste Daroussin 2013-09-12 12:09:53 +00:00
parent 67a90623fa
commit 32a76caee0
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=327057
2 changed files with 0 additions and 31 deletions

View file

@ -1,19 +0,0 @@
--- ./nucleo/image/encoding/PNGenc.cxx.orig 2008-06-05 14:52:33.000000000 +0200
+++ ./nucleo/image/encoding/PNGenc.cxx 2013-09-06 23:12:11.842483995 +0200
@@ -16,6 +16,7 @@
#include <nucleo/image/encoding/PNGenc.H>
#include <png.h>
+#include <pngpriv.h>
namespace nucleo {
@@ -170,7 +171,7 @@
&compression_type, &filter_type) ;
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);
if (png_get_valid(png_ptr, info_ptr, PNG_INFO_tRNS))
png_set_tRNS_to_alpha(png_ptr);

View file

@ -1,12 +0,0 @@
--- ./nucleo/image/sink/nudppImageSink.cxx.orig 2008-07-21 13:47:54.000000000 +0200
+++ ./nucleo/image/sink/nudppImageSink.cxx 2013-09-06 23:12:11.854095550 +0200
@@ -18,6 +18,9 @@
#include <unistd.h>
#include <sys/socket.h>
#include <sys/uio.h>
+#if defined(__FreeBSD__) && __FreeBSD_version < 701104
+# include <netinet/in_systm.h>
+#endif
#include <netinet/ip.h>
#include <stdexcept>