Compare commits
4 Commits
b0ee2b492d
...
eedeaef1f2
Author | SHA1 | Date |
---|---|---|
Miss Islington (bot) | eedeaef1f2 | |
Miss Islington (bot) | 76489dd299 | |
Miss Islington (bot) | fd235de6d3 | |
Miss Islington (bot) | cb882f97bc |
|
@ -242,15 +242,12 @@ def library_recipes():
|
||||||
|
|
||||||
result.extend([
|
result.extend([
|
||||||
dict(
|
dict(
|
||||||
name="OpenSSL 1.1.1g",
|
name="OpenSSL 1.1.1i",
|
||||||
url="https://www.openssl.org/source/openssl-1.1.1g.tar.gz",
|
url="https://www.openssl.org/source/openssl-1.1.1i.tar.gz",
|
||||||
checksum='76766e98997660138cdaf13a187bd234',
|
checksum='08987c3cf125202e2b0840035efb392c',
|
||||||
buildrecipe=build_universal_openssl,
|
buildrecipe=build_universal_openssl,
|
||||||
configure=None,
|
configure=None,
|
||||||
install=None,
|
install=None,
|
||||||
patches=[
|
|
||||||
"openssl-mac-arm64.patch",
|
|
||||||
],
|
|
||||||
),
|
),
|
||||||
])
|
])
|
||||||
|
|
||||||
|
@ -263,10 +260,10 @@ def library_recipes():
|
||||||
tk_patches = ['tk868_on_10_8_10_9.patch']
|
tk_patches = ['tk868_on_10_8_10_9.patch']
|
||||||
|
|
||||||
else:
|
else:
|
||||||
tcl_tk_ver='8.6.10'
|
tcl_tk_ver='8.6.11'
|
||||||
tcl_checksum='97c55573f8520bcab74e21bfd8d0aadc'
|
tcl_checksum='8a4c004f48984a03a7747e9ba06e4da4'
|
||||||
|
|
||||||
tk_checksum='602a47ad9ecac7bf655ada729d140a94'
|
tk_checksum='c7ee71a2d05bba78dfffd76528dc17c6'
|
||||||
tk_patches = [ ]
|
tk_patches = [ ]
|
||||||
|
|
||||||
|
|
||||||
|
@ -1138,7 +1135,6 @@ def buildPythonDocs():
|
||||||
if not os.path.exists(htmlDir):
|
if not os.path.exists(htmlDir):
|
||||||
# Create virtual environment for docs builds with blurb and sphinx
|
# Create virtual environment for docs builds with blurb and sphinx
|
||||||
runCommand('make venv')
|
runCommand('make venv')
|
||||||
runCommand('venv/bin/python3 -m pip install -U Sphinx==2.3.1')
|
|
||||||
runCommand('make html PYTHON=venv/bin/python')
|
runCommand('make html PYTHON=venv/bin/python')
|
||||||
os.rename(htmlDir, docdir)
|
os.rename(htmlDir, docdir)
|
||||||
os.chdir(curDir)
|
os.chdir(curDir)
|
||||||
|
|
|
@ -1,41 +0,0 @@
|
||||||
diff -ur openssl-1.1.1g-orig/Configurations/10-main.conf openssl-1.1.1g/Configurations/10-main.conf
|
|
||||||
--- openssl-1.1.1g-orig/Configurations/10-main.conf 2020-04-21 14:22:39.000000000 +0200
|
|
||||||
+++ openssl-1.1.1g/Configurations/10-main.conf 2020-07-26 12:21:32.000000000 +0200
|
|
||||||
@@ -1557,6 +1557,14 @@
|
|
||||||
bn_ops => "SIXTY_FOUR_BIT_LONG",
|
|
||||||
perlasm_scheme => "macosx",
|
|
||||||
},
|
|
||||||
+ "darwin64-arm64-cc" => {
|
|
||||||
+ inherit_from => [ "darwin-common", asm("aarch64_asm") ],
|
|
||||||
+ CFLAGS => add("-Wall"),
|
|
||||||
+ cflags => add("-arch arm64"),
|
|
||||||
+ lib_cppflags => add("-DL_ENDIAN"),
|
|
||||||
+ bn_ops => "SIXTY_FOUR_BIT_LONG",
|
|
||||||
+ perlasm_scheme => "ios64",
|
|
||||||
+ },
|
|
||||||
|
|
||||||
##### GNU Hurd
|
|
||||||
"hurd-x86" => {
|
|
||||||
diff -ur openssl-1.1.1g-orig/config openssl-1.1.1g/config
|
|
||||||
--- openssl-1.1.1g-orig/config 2020-04-21 14:22:39.000000000 +0200
|
|
||||||
+++ openssl-1.1.1g/config 2020-07-26 12:21:59.000000000 +0200
|
|
||||||
@@ -255,6 +255,9 @@
|
|
||||||
;;
|
|
||||||
x86_64)
|
|
||||||
echo "x86_64-apple-darwin${VERSION}"
|
|
||||||
+ ;;
|
|
||||||
+ arm64)
|
|
||||||
+ echo "arm64-apple-darwin${VERSION}"
|
|
||||||
;;
|
|
||||||
*)
|
|
||||||
echo "i686-apple-darwin${VERSION}"
|
|
||||||
@@ -497,6 +500,9 @@
|
|
||||||
else
|
|
||||||
OUT="darwin64-x86_64-cc"
|
|
||||||
fi ;;
|
|
||||||
+ x86_64-apple-darwin*)
|
|
||||||
+ OUT="darwin64-arm64-cc"
|
|
||||||
+ ;;
|
|
||||||
armv6+7-*-iphoneos)
|
|
||||||
__CNF_CFLAGS="$__CNF_CFLAGS -arch armv6 -arch armv7"
|
|
||||||
__CNF_CXXFLAGS="$__CNF_CXXFLAGS -arch armv6 -arch armv7"
|
|
|
@ -0,0 +1 @@
|
||||||
|
Fix __builtin_available check on older compilers. Patch by Joshua Root.
|
|
@ -0,0 +1 @@
|
||||||
|
Update macOS installer build to use OpenSSL 1.1.1i.
|
|
@ -0,0 +1,2 @@
|
||||||
|
Update macOS installer build to use Tcl/Tk 8.6.11 (rc2, expected to be final
|
||||||
|
release).
|
|
@ -56,7 +56,13 @@
|
||||||
*/
|
*/
|
||||||
#if defined(__APPLE__)
|
#if defined(__APPLE__)
|
||||||
|
|
||||||
#if defined(__has_builtin) && __has_builtin(__builtin_available)
|
#if defined(__has_builtin)
|
||||||
|
#if __has_builtin(__builtin_available)
|
||||||
|
#define HAVE_BUILTIN_AVAILABLE 1
|
||||||
|
#endif
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#ifdef HAVE_BUILTIN_AVAILABLE
|
||||||
# define HAVE_FSTATAT_RUNTIME __builtin_available(macOS 10.10, iOS 8.0, *)
|
# define HAVE_FSTATAT_RUNTIME __builtin_available(macOS 10.10, iOS 8.0, *)
|
||||||
# define HAVE_FACCESSAT_RUNTIME __builtin_available(macOS 10.10, iOS 8.0, *)
|
# define HAVE_FACCESSAT_RUNTIME __builtin_available(macOS 10.10, iOS 8.0, *)
|
||||||
# define HAVE_FCHMODAT_RUNTIME __builtin_available(macOS 10.10, iOS 8.0, *)
|
# define HAVE_FCHMODAT_RUNTIME __builtin_available(macOS 10.10, iOS 8.0, *)
|
||||||
|
|
Loading…
Reference in New Issue