aboutsummaryrefslogtreecommitdiffstats
path: root/x11-toolkits
diff options
context:
space:
mode:
authorbapt <bapt@FreeBSD.org>2013-09-12 20:09:53 +0800
committerbapt <bapt@FreeBSD.org>2013-09-12 20:09:53 +0800
commit7ed79ac3a8bc9abd0db0acea6b52e7a09e9861f7 (patch)
tree2b3137dff742bb38562e61a2985b77691a2ac4db /x11-toolkits
parent5101af06591caa5936fee0eda0e6ea4ce7defa86 (diff)
downloadfreebsd-ports-graphics-7ed79ac3a8bc9abd0db0acea6b52e7a09e9861f7.tar.gz
freebsd-ports-graphics-7ed79ac3a8bc9abd0db0acea6b52e7a09e9861f7.tar.zst
freebsd-ports-graphics-7ed79ac3a8bc9abd0db0acea6b52e7a09e9861f7.zip
Remove duplicated patch
Submitted by: marino
Diffstat (limited to 'x11-toolkits')
-rw-r--r--x11-toolkits/nucleo/files/patch-nucleo__image__encoding__PNGenc.cxx19
-rw-r--r--x11-toolkits/nucleo/files/patch-nucleo__image__sink__nudppImageSink.cxx12
2 files changed, 0 insertions, 31 deletions
diff --git a/x11-toolkits/nucleo/files/patch-nucleo__image__encoding__PNGenc.cxx b/x11-toolkits/nucleo/files/patch-nucleo__image__encoding__PNGenc.cxx
deleted file mode 100644
index 39f78781be9..00000000000
--- a/x11-toolkits/nucleo/files/patch-nucleo__image__encoding__PNGenc.cxx
+++ /dev/null
@@ -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);
diff --git a/x11-toolkits/nucleo/files/patch-nucleo__image__sink__nudppImageSink.cxx b/x11-toolkits/nucleo/files/patch-nucleo__image__sink__nudppImageSink.cxx
deleted file mode 100644
index e0b23b21db3..00000000000
--- a/x11-toolkits/nucleo/files/patch-nucleo__image__sink__nudppImageSink.cxx
+++ /dev/null
@@ -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>