mirror of
https://git.freebsd.org/ports.git
synced 2025-04-28 01:26:39 -04:00
The libimobiledevice stack has been undergoing great changes over the years and it has come to a head where modern iOS/iPadOS users are unable to make practical use of these tools in the official releases. Since most iOS/iPadOS users are likely using the most recent versions, I have decided the best course of action is to follow the git repo and created a couple of new support ports (comms/libimobiledevice-glue and security/libtatsu) needed for this to be a reality. PR: 280014 Reported by: <fabio.comolli@gmail.com>
13 lines
524 B
Text
13 lines
524 B
Text
Remove bash-ism from configure script
|
|
|
|
--- configure.ac.orig 2024-07-01 16:27:27 UTC
|
|
+++ configure.ac
|
|
@@ -139,7 +139,7 @@ if test "$build_cython" = "true"; then
|
|
AM_PATH_PYTHON([3.0], [
|
|
CYTHON_PYTHON
|
|
AS_COMPILER_FLAG([-Wno-cast-function-type -Werror], [
|
|
- CYTHON_CFLAGS+=" -Wno-cast-function-type"
|
|
+ CYTHON_CFLAGS="$CYTHON_CFLAGS -Wno-cast-function-type"
|
|
AC_SUBST([CYTHON_CFLAGS])
|
|
], [])
|
|
])
|