openbsd-ports/print/cups/files/krb5-config
ajacoutot 95350a94bb - disable threading; it causes several issues which will need more
investigation
- explicitely set some configure switches
- use wheel as "system-groups" instead of non-existent "sys"
- enable raw printing
- respect CFLAGS
- add GSSAPI support
- tweak gecos
- add missing @sample
2009-05-08 20:00:57 +00:00

13 lines
203 B
Bash

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