openbsd-ports/x11/gnome/vfs2/files/krb5-config

13 lines
203 B
Plaintext
Raw Normal View History

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