This is a discussion on Re: OpenSSH+GSSAPI & HP/UX 11i... within the OpenSSH Development forums, part of the Networking and Network Related category; Darren Tucker wrote: > Douglas E. Engert wrote: > >> This might be a little late, but I went ...
|
|||||||
| FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
|
|||
|
Darren Tucker wrote:
> Douglas E. Engert wrote: > >> This might be a little late, but I went back to see why we do not have >> this problem with HP. >> >> In the install for krb5, we add a symlink gssapi.h -> ./gssapi/gssapi.h >> in the krb5 include directory. >> >> # On HP there is a /usr/include/gssapi.h we need to find the >> # /krb5/gssapi/gssapi.h first. >> # OpenSSH depends on this >> ln -s ./gssapi/gssapi.h $dest/krb5/include/gssapi.h > > > Would something like the attached change to configure fix it (without > breaking anything else...)? > > (Need to rebuild configure with "autoreconf" after applying the patch, > obviously.) Why not to look for header first in subdirectory ? As example: AC_CHECK_HEADERS(gssapi/gssapi.h gssapi.h) AC_CHECK_HEADERS(gssapi/gssapi_krb5.h gssapi_krb5.h) AC_CHECK_HEADERS(gssapi/gssapi_generic.h gssapi_generic.h) _______________________________________________ openssh-unix-dev mailing list openssh-unix-dev@mindrot.org http://www.mindrot.org/mailman/listi...enssh-unix-dev |