Skip to content

Commit

Permalink
Update conanfile.py
Browse files Browse the repository at this point in the history
  • Loading branch information
JulianGro committed Jan 23, 2025
1 parent a18cefb commit 9654a39
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions conan-recipes/libnode/all/conanfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ def build_requirements(self):

def requirements(self):
self.requires("brotli/[>1.0 <1.2]")
self.requires("llhttp/[>6.0 <7.0]")
# self.requires("llhttp/[>6.0 <7.0]") NodeJS 18.20.6 required llhttp version 6.1.1, which isn't packaged.
# self.requires("libnghttp2/[>1.50 <1.60]")
# self.requires("libuv/[>1.40 <1.50]")
self.requires("openssl/1.1.1w")
Expand Down Expand Up @@ -76,7 +76,7 @@ def generate(self):
node_build_env.define("PKG_CONFIG_PATH", self.build_folder)
envvars = node_build_env.vars(self)
envvars.save_script("node_build_env")
rename(self, "libllhttp.pc", "http_parser.pc")
# rename(self, "libllhttp.pc", "http_parser.pc")

def build(self):
args = [
Expand All @@ -96,7 +96,7 @@ def build(self):
# args += self.__add_shared("libnghttp2", "nghttp2")
# args += self.__add_shared("libuv", "libuv")
args += self.__add_shared("brotli", "brotli")
args += self.__add_shared("llhttp", "http-parser")
# args += self.__add_shared("llhttp", "http-parser")
args += self.__add_shared("openssl", "openssl")
args += self.__add_shared("zlib", "zlib")

Expand Down

0 comments on commit 9654a39

Please sign in to comment.