mirror of
https://git.freebsd.org/ports.git
synced 2025-06-21 20:50:31 -04:00
Build cross platform desktop apps with JavaScript, HTML, and CSS. It's easier than you think. If you can build a website, you can build a desktop app. Electron is a framework for creating native applications with web technologies like JavaScript, HTML, and CSS. It takes care of the hard parts so you can focus on the core of your application. WWW: https://electronjs.org/
29 lines
1.1 KiB
Text
29 lines
1.1 KiB
Text
--- third_party/zlib/BUILD.gn.orig 2023-06-07 04:52:05 UTC
|
|
+++ third_party/zlib/BUILD.gn
|
|
@@ -127,7 +127,7 @@ if (use_arm_neon_optimizations) {
|
|
# Disabled for iPhone, as described in DDI0487C_a_armv8_arm:
|
|
# "All implementations of the ARMv8.1 architecture are required to
|
|
# implement the CRC32* instructions. These are optional in ARMv8.0."
|
|
- if (!is_ios) {
|
|
+ if (!is_ios && !is_bsd) {
|
|
defines = [ "CRC32_ARMV8_CRC32" ]
|
|
if (is_android) {
|
|
defines += [ "ARMV8_OS_ANDROID" ]
|
|
@@ -148,7 +148,7 @@ if (use_arm_neon_optimizations) {
|
|
source_set("zlib_arm_crc32") {
|
|
visibility = [ ":*" ]
|
|
|
|
- if (!is_ios) {
|
|
+ if (!is_ios && !is_bsd) {
|
|
include_dirs = [ "." ]
|
|
|
|
if (!is_win && !is_clang) {
|
|
@@ -420,7 +420,7 @@ static_library("minizip") {
|
|
]
|
|
}
|
|
|
|
- if (is_apple || is_android || is_nacl) {
|
|
+ if (is_apple || is_android || is_nacl || is_bsd) {
|
|
# Mac, Android and the BSDs don't have fopen64, ftello64, or fseeko64. We
|
|
# use fopen, ftell, and fseek instead on these systems.
|
|
defines = [ "USE_FILE32API" ]
|