|
Revision 1, 1.2 kB
(checked in by alo, 4 years ago)
|
--
|
| Line | |
|---|
| 1 |
#!/bin/sh |
|---|
| 2 |
|
|---|
| 3 |
prefix=@prefix@ |
|---|
| 4 |
exec_prefix=@exec_prefix@ |
|---|
| 5 |
exec_prefix_set=no |
|---|
| 6 |
|
|---|
| 7 |
usage="\ |
|---|
| 8 |
Usage: @PACKAGE@-config [--prefix[=DIR]] [--exec-prefix[=DIR]] [--version] [--libs] [--cflags]" |
|---|
| 9 |
|
|---|
| 10 |
if test $# -eq 0; then |
|---|
| 11 |
echo "${usage}" 1>&2 |
|---|
| 12 |
exit 1 |
|---|
| 13 |
fi |
|---|
| 14 |
|
|---|
| 15 |
while test $# -gt 0; do |
|---|
| 16 |
case "$1" in |
|---|
| 17 |
-*=*) optarg=`echo "$1" | sed 's/[-_a-zA-Z0-9]*=//'` ;; |
|---|
| 18 |
*) optarg= ;; |
|---|
| 19 |
esac |
|---|
| 20 |
|
|---|
| 21 |
case $1 in |
|---|
| 22 |
--prefix=*) |
|---|
| 23 |
prefix=$optarg |
|---|
| 24 |
if test $exec_prefix_set = no ; then |
|---|
| 25 |
exec_prefix=$optarg |
|---|
| 26 |
fi |
|---|
| 27 |
;; |
|---|
| 28 |
--prefix) |
|---|
| 29 |
echo $prefix |
|---|
| 30 |
;; |
|---|
| 31 |
--exec-prefix=*) |
|---|
| 32 |
exec_prefix=$optarg |
|---|
| 33 |
exec_prefix_set=yes |
|---|
| 34 |
;; |
|---|
| 35 |
--exec-prefix) |
|---|
| 36 |
echo $exec_prefix |
|---|
| 37 |
;; |
|---|
| 38 |
--version) |
|---|
| 39 |
echo @VERSION@ |
|---|
| 40 |
;; |
|---|
| 41 |
--cflags) |
|---|
| 42 |
if test @includedir@ != /usr/include ; then |
|---|
| 43 |
includes=-I@includedir@ |
|---|
| 44 |
fi |
|---|
| 45 |
echo $includes -I@includedir@/cherokee |
|---|
| 46 |
;; |
|---|
| 47 |
--libs) |
|---|
| 48 |
if [ "`uname`" = "SunOS" ]; then |
|---|
| 49 |
libdirs="-L@libdir@ -R@libdir@" |
|---|
| 50 |
else |
|---|
| 51 |
libdirs="-L@libdir@" |
|---|
| 52 |
fi |
|---|
| 53 |
echo $libdirs -lcherokee-base -lcherokee-server -lcherokee-client |
|---|
| 54 |
;; |
|---|
| 55 |
*) |
|---|
| 56 |
echo "${usage}" 1>&2 |
|---|
| 57 |
exit 1 |
|---|
| 58 |
;; |
|---|
| 59 |
esac |
|---|
| 60 |
shift |
|---|
| 61 |
done |
|---|