10 lines
133 B
Bash
Executable File
10 lines
133 B
Bash
Executable File
#! /bin/sh
|
|
|
|
case x$1 in
|
|
x--libs)
|
|
echo '-lgssapi -lkrb5 -lasn1 -lcrypto';;
|
|
x--cflags)
|
|
echo '-I/usr/include/kerberosV';;
|
|
esac
|
|
exit 0
|