lib: fix gssapi.h include on IBMi

Fixes #19336
Closes #19337
This commit is contained in:
Andrew 2025-11-03 13:53:00 +00:00 committed by Daniel Stenberg
parent 9d1acd048c
commit 2d99cf0761
No known key found for this signature in database
GPG key ID: 5CC908FDB71E12C2
4 changed files with 18 additions and 3 deletions

View file

@ -81,7 +81,11 @@
# ifdef HAVE_GSSGNU
# include <gss.h>
# else
# include <gssapi/gssapi.h>
# ifdef HAVE_GSSAPI_H
# include <gssapi.h>
# else
# include <gssapi/gssapi.h>
# endif
# endif
#endif