repo.or.cz
/
ardour2.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
change default overlapping note strategy to "relax" (i.e. do nothing); fix crash...
[ardour2.git]
/
libs
/
taglib
/
taglib-config.in
blob
10b977953eecf99cdfdaf34783c0f7b880068421
1
#!/bin/sh
2
3
usage
()
4
{
5
echo
"usage:
$0
[OPTIONS]"
6
cat
<< EOH
7
8
options:
9
[--libs]
10
[--cflags]
11
[--version]
12
[--prefix]
13
EOH
14
exit
1
;
15
}
16
17
prefix
=
@prefix@
18
exec_prefix
=
@exec_prefix@
19
libdir
=
@libdir@
20
includedir
=
@includedir@
21
22
flags
=
""
23
24
if
test
$#
-eq
0
;
then
25
usage
26
fi
27
28
while
test
$#
-gt
0
29
do
30
case
$1
in
31
--libs
)
32
flags
=
"
$flags
-L
$libdir
-ltag"
33
;;
34
--cflags
)
35
flags
=
"
$flags
-I
$includedir
/taglib"
36
;;
37
--version
)
38
echo
1.5
39
;;
40
--prefix
)
41
echo
$prefix
42
;;
43
*)
44
echo
"
$0
: unknown option
$1
"
45
echo
46
usage
47
;;
48
esac
49
shift
50
done
51
52
if
test -n
"
$flags
"
53
then
54
echo
$flags
55
fi