Skip to content

Commit

Permalink
try 1.19.2 version
Browse files Browse the repository at this point in the history
  • Loading branch information
xakod committed May 8, 2023
1 parent cdef053 commit 42b68cd
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
6 changes: 3 additions & 3 deletions recipes/krb5/all/conandata.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
sources:
"1.18.2":
url: "https://kerberos.org/dist/krb5/1.18/krb5-1.18.2.tar.gz"
sha256: "c6e4c9ec1a98141c3f5d66ddf1a135549050c9fab4e9a4620ee9b22085873ae0"
"1.19.2":
url: "https://kerberos.org/dist/krb5/1.19/krb5-1.19.2.tar.gz"
sha256: "10453fee4e3a8f8ce6129059e5c050b8a65dab1c257df68b99b3112eaa0cdf6a"
patches:
"1.18.2":
- patch_file: "patches/1.18.2-0001-use-PKG_CHECK_MODULES-for-openssl.patch"
Expand Down
8 changes: 4 additions & 4 deletions recipes/krb5/all/conanfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ class Krb5Conan(ConanFile):
"with_tcl": [True, False],
}
default_options = {
"shared": True,
"shared": False,
"fPIC": True,
"thread": True,
"use_dns_realms": False,
Expand Down Expand Up @@ -131,9 +131,9 @@ def build_requirements(self):
def _build_autotools(self):
tools.save("skiptests", "")

with chdir(self, os.path.join(self.source_folder,"src")):
replace_in_file(self,"aclocal.m4", "AC_CONFIG_AUX_DIR(", "echo \"Hello world\"\n\nAC_CONFIG_AUX_DIR(")
self.run("{} -fiv".format(tools.get_env("AUTORECONF")), run_environment=True, win_bash=tools.os_info.is_windows)
# with chdir(self, os.path.join(self.source_folder,"src")):
# replace_in_file(self,"aclocal.m4", "AC_CONFIG_AUX_DIR(", "echo \"Hello world\"\n\nAC_CONFIG_AUX_DIR(")
# self.run("{} -fiv".format(tools.get_env("AUTORECONF")), run_environment=True, win_bash=tools.os_info.is_windows)
autotools = Autotools(self)
autotools.configure(os.path.join(self.source_folder,"src"))
autotools.make()
Expand Down
2 changes: 1 addition & 1 deletion recipes/krb5/config.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
versions:
"1.18.2":
"1.19.2":
folder: "all"

0 comments on commit 42b68cd

Please sign in to comment.