diff options
Diffstat (limited to 'tools/depends/target/config.site.in')
-rw-r--r-- | tools/depends/target/config.site.in | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/tools/depends/target/config.site.in b/tools/depends/target/config.site.in index 5d1f01d89c..fbdf002318 100644 --- a/tools/depends/target/config.site.in +++ b/tools/depends/target/config.site.in @@ -86,8 +86,11 @@ libreplace_cv_HAVE_GETADDRINFO=no if test "${PACKAGE_NAME}" = "Samba" -a "@platform_os@" = "ios"; then # disable python support export PYTHON_VER=0.0 - # ios/osx-10.6 issue with collision of _MD5 exported from a system lib - export LDFLAGS="${LDFLAGS} -Wl,-unexported_symbol,_MD5* -lc" + if test "@use_cpu@" != "arm64"; then + # ios/osx-10.6 issue with collision of _MD5 exported from a system lib + export LDFLAGS="${LDFLAGS} -Wl,-unexported_symbol,_MD5* -lc" + fi + samba_cv_HAVE_IFACE_GETIFADDRS=yes fi if test "${PACKAGE_NAME}" = "Samba" -a "@platform_os@" = "osx"; then @@ -102,6 +105,7 @@ if test "${PACKAGE_NAME}" = "Samba" -a "@platform_os@" = "osx"; then ac_cv_header_execinfo_h=no # fixes crash on 10.6 if xbmc is built using 10.7 SDK with 10.6 min ac_cv_func_vdprintf=no + samba_cv_HAVE_IFACE_GETIFADDRS=yes fi if test "@platform_os@" = "android"; then |