Skip to content

Commit

Permalink
try gsasl mac 2
Browse files Browse the repository at this point in the history
  • Loading branch information
vszakats committed Oct 22, 2023
1 parent f50fc70 commit 3126cb0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion curl-autotools.sh
Original file line number Diff line number Diff line change
Expand Up @@ -270,7 +270,7 @@ _VER="$1"
LDFLAGS="${LDFLAGS} -L${_TOP}/gsasl/${_PP}/lib"
else
options="${options} --without-libgsasl"
if [ "${_OS}" = 'mac' ] && [ "${_OSVER}" -lt '1009' ]; then
if [ "${_OS}" = 'mac' ] && [ "${_OSVER}" -lt '1010' ]; then
# GSS API deprecated in 2012-2013 (OS X 10.8 Mountain Lion / 10.9 Mavericks, iOS 7.0)
options="${options} --with-gssapi"
fi
Expand Down
2 changes: 1 addition & 1 deletion curl-cmake.sh
Original file line number Diff line number Diff line change
Expand Up @@ -283,7 +283,7 @@ _VER="$1"
CPPFLAGS="${CPPFLAGS} -I${_TOP}/gsasl/${_PP}/include"
LDFLAGS="${LDFLAGS} -L${_TOP}/gsasl/${_PP}/lib"
LIBS="${LIBS} -lgsasl"
elif [ "${_OS}" = 'mac' ] && [ "${_OSVER}" -lt '1009' ]; then
elif [ "${_OS}" = 'mac' ] && [ "${_OSVER}" -lt '1010' ]; then
# GSS API deprecated in 2012-2013 (OS X 10.8 Mountain Lion / 10.9 Mavericks, iOS 7.0)
options="${options} -DCURL_USE_GSSAPI=ON"
fi
Expand Down

0 comments on commit 3126cb0

Please sign in to comment.