blob: 07da6c30f78671d6754d62661d3d2ca4712e4c7d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
|
#!/bin/sh
#
# $Id$
#
# Copyright (C) 2002-2004 David Beckett - http://purl.org/net/dajobe/
# Institute for Learning and Research Technology - http://www.ilrt.bris.ac.uk/
# University of Bristol - http://www.bristol.ac.uk/
#
# This package is Free Software or Open Source available under the
# following licenses (these are alternatives):
# 1. GNU Lesser General Public License (LGPL)
# 2. GNU General Public License (GPL)
# 3. Mozilla Public License (MPL)
#
# See LICENSE.html or LICENSE.txt at the top of this package for the
# full license terms.
#
#
#
usage()
{
cat<<EOF
Usage: lasso-src-config [OPTION]
known values for OPTION are:
--libs print library linking information
--cflags print pre-processor and compiler flags
--help display this help and exit
--version output version information
--run COMMAND run the COMMAND with the shared libraries for
the source tree
EOF
exit $1
}
if test $# -eq 0; then
usage 1 1>&2
fi
while test $# -gt 0; do
case "$1" in
-*=*) optarg=`echo "$1" | sed 's/[-_a-zA-Z0-9]*=//'` ;;
*) optarg= ;;
esac
case $1 in
--version)
echo @VERSION@
exit 0
;;
--cflags)
echo_cflags=yes
;;
--libs)
echo_libs=yes
;;
--usage)
usage 0 1>&2
;;
--run)
lpath=@abs_top_builddir@/lasso/.libs
if test -d .libs; then
lpath=".libs:$lpath"
fi
if test `uname` = Darwin; then
DYLD_LIBRARY_PATH=$lpath:$DYLD_LIBRARY_PATH
export DYLD_LIBRARY_PATH
else
LD_LIBRARY_PATH=$lpath:$LD_LIBRARY_PATH
export LD_LIBRARY_PATH
fi
shift
exec ${1+"$@"}
;;
*)
usage 1 1>&2
;;
esac
shift
done
if test "$echo_cflags" = "yes"; then
echo -I@abs_top_srcdir@/lasso
fi
if test "$echo_libs" = "yes"; then
echo -L@abs_top_builddir@/lasso/.libs @LASSO_CORE_LIBS@ @LASSO_LIBS@
fi
|