Differences From Artifact [9c2e5f90a3]:
- File
build-aux/m4/buildsys.m4
— part of check-in
[2cc751b1a0]
at
2023-09-10 23:00:44
on branch trunk
— Remove --timestamp=none from codesign for plugins
This was overlooked when removing --timestamp=none. (user: js, size: 13786) [annotate] [blame] [check-ins using]
To Artifact [8bcbdfb241]:
- File build-aux/m4/buildsys.m4 — part of check-in [5abbdc7a0a] at 2023-09-10 23:30:05 on branch trunk — Create .frameworks for macOS and iOS differently (user: js, size: 13701) [annotate] [blame] [check-ins using]
︙ | |||
149 150 151 152 153 154 155 156 157 158 159 160 161 162 | 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 | + | #if (defined(TARGET_OS_IPHONE) && TARGET_OS_IPHONE) || \ (defined(TARGET_OS_SIMULATOR) && \ TARGET_OS_SIMULATOR) yes #endif ], [ host_is_ios="yes" AC_SUBST(HOST_IS_IOS, yes) ], [ host_is_ios="no" ]) AC_MSG_RESULT($host_is_ios) AC_CHECK_TOOL(CODESIGN, codesign) ;; esac |
︙ | |||
314 315 316 317 318 319 320 | 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 | - - + + - | AC_DEFUN([BUILDSYS_FRAMEWORK], [ AC_REQUIRE([AC_CANONICAL_HOST]) AC_REQUIRE([BUILDSYS_CHECK_IOS]) AC_REQUIRE([BUILDSYS_SHARED_LIB]) case "$host_os" in darwin*) |
︙ |