summarylogtreecommitdiffstats
path: root/jasper.patch
diff options
context:
space:
mode:
authorEric Fung2021-12-27 21:30:17 -0800
committerEric Fung2021-12-27 21:30:17 -0800
commitb0e8bf3872ed48860644a5aaae66b925a7531972 (patch)
tree2f0ebbc375b5a4edac3f29b1e030bc879d75d27b /jasper.patch
parentc24f149ff4ca2cb26e1f6eba4efacfdf080ea7e2 (diff)
downloadaur-k2pdfopt.tar.gz
Updated to version 2.53; added new patches and dependency changes
Diffstat (limited to 'jasper.patch')
-rw-r--r--jasper.patch24
1 files changed, 0 insertions, 24 deletions
diff --git a/jasper.patch b/jasper.patch
deleted file mode 100644
index 7f87deb9ecaf..000000000000
--- a/jasper.patch
+++ /dev/null
@@ -1,24 +0,0 @@
-diff -aur src.orig/k2pdfopt_v2.51/CMakeLists.txt src/k2pdfopt_v2.51/CMakeLists.txt
---- src.orig/k2pdfopt_v2.51/CMakeLists.txt 2019-03-24 21:45:17.683484849 +0100
-+++ src/k2pdfopt_v2.51/CMakeLists.txt 2019-03-24 21:46:17.443514984 +0100
-@@ -5,7 +5,7 @@
-
- include(FindPkgConfig)
-
--set(K2PDFOPT_LIB "-lm")
-+set(K2PDFOPT_LIB "-lm -ljasper")
-
- # cmake -DCMAKE_BUILD_TYPE=Debug <path>
-
-diff -aur src.orig/k2pdfopt_v2.51/willuslib/bmp.c src/k2pdfopt_v2.51/willuslib/bmp.c
---- src.orig/k2pdfopt_v2.51/willuslib/bmp.c 2019-01-01 00:21:16.000000000 +0100
-+++ src/k2pdfopt_v2.51/willuslib/bmp.c 2019-03-24 21:45:48.713500408 +0100
-@@ -37,7 +37,7 @@
- #include <jpeglib.h>
- #endif
- #ifdef HAVE_JASPER_LIB
--#include <jasper.h>
-+#include <jasper/jasper.h>
- #endif
-
- #define BOUND(x,xmin,xmax) if ((x)<(xmin)) (x)=(xmin); else { if ((x)>(xmax)) (x)=(xmax); }