zlib: add dll macro (#5327)

pull/5335/head
star9029 6 months ago committed by GitHub
parent 9cd511ac5f
commit 2aa6448398
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 17
      packages/z/zlib/xmake.lua

@ -1,11 +1,11 @@
package("zlib") package("zlib")
set_homepage("http://www.zlib.net") set_homepage("http://www.zlib.net")
set_description("A Massively Spiffy Yet Delicately Unobtrusive Compression Library") set_description("A Massively Spiffy Yet Delicately Unobtrusive Compression Library")
set_license("zlib") set_license("zlib")
add_urls("https://github.com/madler/zlib/archive/$(version).tar.gz") add_urls("https://github.com/madler/zlib/archive/refs/tags/$(version).tar.gz",
add_urls("https://github.com/madler/zlib.git") "https://github.com/madler/zlib.git")
add_versions("v1.2.10", "42cd7b2bdaf1c4570e0877e61f2fdc0bce8019492431d054d3d86925e5058dc5") add_versions("v1.2.10", "42cd7b2bdaf1c4570e0877e61f2fdc0bce8019492431d054d3d86925e5058dc5")
add_versions("v1.2.11", "629380c90a77b964d896ed37163f5c3a34f6e6d897311f1df2a7016355c45eff") add_versions("v1.2.11", "629380c90a77b964d896ed37163f5c3a34f6e6d897311f1df2a7016355c45eff")
add_versions("v1.2.12", "d8688496ea40fb61787500e863cc63c9afcbc524468cedeb478068924eb54932") add_versions("v1.2.12", "d8688496ea40fb61787500e863cc63c9afcbc524468cedeb478068924eb54932")
@ -73,13 +73,12 @@ package("zlib")
add_defines("_LARGEFILE64_SOURCE=1") add_defines("_LARGEFILE64_SOURCE=1")
end end
]]) ]])
local configs = {} import("package.tools.xmake").install(package)
if package:config("shared") then
configs.kind = "shared" if package:config("shared") and package:is_plat("windows") then
elseif not package:is_plat("windows", "mingw") and package:config("pic") ~= false then package:add("defines", "ZLIB_DLL")
configs.cxflags = "-fPIC"
end end
import("package.tools.xmake").install(package, configs)
if package:config("zutil") then if package:config("zutil") then
os.cp("zutil.h", package:installdir("include")) os.cp("zutil.h", package:installdir("include"))
end end

Loading…
Cancel
Save