95350a94bb
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
13 lines
203 B
Bash
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
|