summaryrefslogtreecommitdiff
path: root/graphics/airsaned/files/patch-imageformats-pngencoder.cpp
diff options
context:
space:
mode:
authorJ.R. Oldroyd <fbsd@opal.com>2022-01-11 08:05:28 +0100
committerFernando ApesteguĂ­a <fernape@FreeBSD.org>2022-01-11 11:40:02 +0100
commit971cb789e90444bf3d7aa50d8cd2aa250e6a0c57 (patch)
tree3bcd9511df96b2e433ef24dd7494101608201855 /graphics/airsaned/files/patch-imageformats-pngencoder.cpp
parentsecurity/metasploit: update to 6.1.24 (diff)
graphics/airsaned: update to 0.3.2.54_1
Properly update to 0.3.2.54 after using the wrong git hash. Some of the patches have been merged upstrem and can be removed. PR: 261068 Reported by: fbsd@opal.com (maintainer) Fixes: fa24020b477a2a37a01dedf11bfd83e744f81cd1
Diffstat (limited to 'graphics/airsaned/files/patch-imageformats-pngencoder.cpp')
-rw-r--r--graphics/airsaned/files/patch-imageformats-pngencoder.cpp20
1 files changed, 0 insertions, 20 deletions
diff --git a/graphics/airsaned/files/patch-imageformats-pngencoder.cpp b/graphics/airsaned/files/patch-imageformats-pngencoder.cpp
deleted file mode 100644
index 14d8e66c4d75..000000000000
--- a/graphics/airsaned/files/patch-imageformats-pngencoder.cpp
+++ /dev/null
@@ -1,20 +0,0 @@
---- imageformats/pngencoder.cpp.orig 2021-02-01 18:41:51 UTC
-+++ imageformats/pngencoder.cpp
-@@ -17,11 +17,17 @@ along with this program. If not, see <http://www.gnu.
- */
-
- #include "pngencoder.h"
-+#ifdef __FreeBSD__
-+#include <png.h>
-+#else
- #include <libpng/png.h>
-+#endif
- #include <stdexcept>
- #include <vector>
- #if __APPLE__
- #include <machine/endian.h>
-+#elif __FreeBSD__
-+#include <sys/endian.h>
- #else
- #include <endian.h>
- #endif