openbsd-ports/net/neon/files/krb5-config
ajacoutot 994149c63f - update to neon-0.28.3
- add gssapi support

tested by naddy@ in a bulk build, thanks!
2008-11-13 13:14:05 +00:00

13 lines
203 B
Bash

#! /bin/sh
#
# $OpenBSD: krb5-config,v 1.1 2008/11/13 13:14:05 ajacoutot Exp $
#
case x$1 in
x--libs)
echo '-lgssapi -lkrb5 -lasn1 -lcrypto';;
x--cflags)
echo '-I/usr/include/kerberosV';;
esac
exit 0