Skip to content

Commit

Permalink
Revert "try enabling gssapi for mac"
Browse files Browse the repository at this point in the history
This reverts commit 46d268e.
  • Loading branch information
vszakats committed Oct 25, 2023
1 parent f50fc70 commit a8ea2d7
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
5 changes: 3 additions & 2 deletions curl-autotools.sh
Original file line number Diff line number Diff line change
Expand Up @@ -270,9 +270,10 @@ _VER="$1"
LDFLAGS="${LDFLAGS} -L${_TOP}/gsasl/${_PP}/lib"
else
options="${options} --without-libgsasl"
if [ "${_OS}" = 'mac' ] && [ "${_OSVER}" -lt '1009' ]; then
if [ "${_OS}" = 'mac' ]; then
# GSS API deprecated in 2012-2013 (OS X 10.8 Mountain Lion / 10.9 Mavericks, iOS 7.0)
options="${options} --with-gssapi"
# options="${options} --with-gssapi"
:
fi
fi

Expand Down
5 changes: 3 additions & 2 deletions curl-cmake.sh
Original file line number Diff line number Diff line change
Expand Up @@ -283,9 +283,10 @@ _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' ]; 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"
# options="${options} -DCURL_USE_GSSAPI=ON"
:
fi
if [ -d ../libidn2 ]; then
options="${options} -DUSE_LIBIDN2=ON"
Expand Down

0 comments on commit a8ea2d7

Please sign in to comment.