]> git.pld-linux.org Git - packages/STLport.git/blame - stlport-config.in
- added -j1 to make install, fixes build on ti-i686 and ti-x86_64
[packages/STLport.git] / stlport-config.in
CommitLineData
257f21f2
ER
1#!/bin/sh
2
3prefix=@prefix@
4exec_prefix=@exec_prefix@
5exec_prefix_set=yes
6
7usage="\
528a2c6d 8Usage: stlport-config [--prefix[=DIR]] [--exec-prefix[=DIR]] [--version] [--cflags] [--libs]"
257f21f2
ER
9
10if test $# -eq 0; then
11 echo "${usage}" 1>&2
12 exit 1
13fi
14
15while 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)
528a2c6d 42 includes="-pthread -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 -isystem @includedir@/stlport "
257f21f2
ER
43 echo $includes
44 ;;
45 --libs)
dab6584f 46 libdirs=-L@libdir@
528a2c6d 47 echo -lc -nodefaultlibs $libdirs -lstlport
257f21f2
ER
48 ;;
49 *)
50 echo "${usage}" 1>&2
51 exit 1
52 ;;
53 esac
54 shift
55done
56
57exit 0
This page took 0.082203 seconds and 4 git commands to generate.