2 Jul
2007
2 Jul
'07
7:29 p.m.
Oh, another "hack" that's needed to build Dovecot on Solaris 10 with the native GSS library is a very simple, dummy, "krb5-config" script. Please find it also enclosed (probably not needed when Solaris 10 update 4 is released).
- Peter
Peter Eriksson wrote:
Please find enclosed two patch files (one for configure.in and one for src/mech/auth-gssapi.c) that fixes a problem in the GSSAPI code that
- Peter
#!/bin/ksh
while [ "$1" != "" ]; do case "$1" in --version) echo "1.4" ;;
--libs)
case "$2" in
gssapi)
echo "-lgss"
shift
;;
esac
;;
--cflags)
case "$2" in
gssapi)
echo ""
shift
;;
esac
;;
esac
shift
done
exit 0