Skip to content

Commit 57e2c06

Browse files
committed
Fixing #91 properly
Removed the PDFTest from being added. Now only Zlib_jll and OpenSSL_jll are added irrespective versions of Julia 1.x.
1 parent f6d9340 commit 57e2c06

File tree

4 files changed

+6
-4
lines changed

4 files changed

+6
-4
lines changed

.gitignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,4 +30,8 @@ test/downloads
3030
test/*.pdf
3131
test/*.res
3232
test/pvt
33+
test/PDFTest*
3334
file.txt
35+
data/fonts/Arial.afm
36+
test/sample01.pem
37+
data/certs/cacerts.pem

Project.toml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,12 @@ DelimitedFiles = "8bb1440f-4735-579b-a4ab-409b98df4dab"
1212
LabelNumerals = "2e475f56-4567-5c41-94ff-3f69a29378f9"
1313
Libdl = "8f399da3-3557-5675-b5ff-fb832c97cbdb"
1414
LinearAlgebra = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e"
15+
OpenSSL_jll = "458c3c95-2e84-50aa-8efc-19380b2a3a95"
1516
Pkg = "44cfe95a-1eb2-52ea-b672-e2afdf69b78f"
1617
Printf = "de0858da-6303-5e67-8744-51eddeeeb8d7"
1718
Rectangle = "9a9db56c-8f71-5460-add5-cb450131785e"
1819
RomanNumerals = "37834d88-8936-577c-80c9-1066ecf66832"
20+
Zlib_jll = "83775a58-1f1d-513f-b197-d71354ab007a"
1921

2022
[compat]
2123
AbstractTrees = "0.2.1"

src/Inflate.jl

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,8 +46,6 @@ const Z_BUF_ERROR = -5
4646
const Z_VERSION_ERROR = -6
4747

4848
@static if Base.VERSION > v"1.3-" && !(Sys.iswindows() && Sys.WORD_SIZE == 32)
49-
using Pkg
50-
Pkg.add("Zlib_jll")
5149
using Zlib_jll: libz
5250
else
5351
isfile(joinpath(dirname(@__FILE__),"..","deps","deps.jl")) ||

src/LibCrypto.jl

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,4 @@
11
@static if Base.VERSION > v"1.3-" && !(Sys.iswindows() && Sys.WORD_SIZE == 32)
2-
using Pkg
3-
Pkg.add("OpenSSL_jll")
42
using OpenSSL_jll: libcrypto
53
else
64
isfile(joinpath(dirname(@__FILE__), "..", "deps", "deps.jl")) ||

0 commit comments

Comments
 (0)