diff options
Diffstat (limited to 'graphics/airsaned/files/patch-imageformats-pngencoder.cpp')
-rw-r--r-- | graphics/airsaned/files/patch-imageformats-pngencoder.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/graphics/airsaned/files/patch-imageformats-pngencoder.cpp b/graphics/airsaned/files/patch-imageformats-pngencoder.cpp index cb604abf0c26..14d8e66c4d75 100644 --- a/graphics/airsaned/files/patch-imageformats-pngencoder.cpp +++ b/graphics/airsaned/files/patch-imageformats-pngencoder.cpp @@ -1,4 +1,4 @@ ---- imageformats/pngencoder.cpp.orig 2021-10-05 12:35:03 UTC +--- 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. */ @@ -7,7 +7,7 @@ +#ifdef __FreeBSD__ +#include <png.h> +#else - #include <libpng16/png.h> + #include <libpng/png.h> +#endif #include <stdexcept> #include <vector> |