35ceda849c
This is merged from work by myself and Matthias Pitzl @ genua, thanks to Rodolfo Gouveia for testing with NTLM. Flavours have been removed: - the external helper programs for NTLM/LDAP are now in subpackages: squid-ldap and squid-ntlm. - SNMP support is built by default in Squid 3.x so this has moved to the main package (no external dependencies for this).
15 lines
229 B
Bash
15 lines
229 B
Bash
#! /bin/sh
|
|
#
|
|
# $OpenBSD: krb5-config,v 1.1 2012/11/28 17:45:29 sthen Exp $
|
|
#
|
|
|
|
case x$1 in
|
|
x--version)
|
|
echo 'heimdal';;
|
|
x--libs)
|
|
echo '-lgssapi -lkrb5 -lasn1 -lcrypto';;
|
|
x--cflags)
|
|
echo '-I/usr/include/kerberosV';;
|
|
esac
|
|
exit 0
|