#47168: wireshark build can not detect xcode 10.10 sdk ------------------------+------------------------------ Reporter: hofione@… | Owner: opendarwin.org@… Type: defect | Status: new Priority: Normal | Milestone: Component: ports | Version: 2.3.3 Resolution: | Keywords: Port: wireshark | ------------------------+------------------------------ Comment (by ryandesign@…): Looks like they're hardcoding the locations in which to look for the SDKs and not taking an `xcode-select`ed path into consideration. From configure.ac: {{{ for i in /Developer/SDKs \ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs \ /Library/Developer/CommandLineTools/SDKs do if test -d "$i"/"MacOSX$deploy_target.sdk" then SDKPATH="$i"/"MacOSX$deploy_target.sdk" break fi done if test -z "$SDKPATH" then AC_MSG_RESULT(no) AC_MSG_ERROR([We couldn't find the SDK for OS X $deploy_target]) fi AC_MSG_RESULT(yes) }}} -- Ticket URL: <https://trac.macports.org/ticket/47168#comment:4> MacPorts <https://www.macports.org/> Ports system for OS X