diff options
author | dan miller | 2007-10-19 05:24:38 +0000 |
---|---|---|
committer | dan miller | 2007-10-19 05:24:38 +0000 |
commit | f205de7847da7ae1c10212d82e7042d0100b4ce0 (patch) | |
tree | 9acc9608a6880502aaeda43af52c33e278e95b9c /libraries/ode-0.9/ode-config.in | |
parent | trying to fix my screwup part deux (diff) | |
download | opensim-SC_OLD-f205de7847da7ae1c10212d82e7042d0100b4ce0.zip opensim-SC_OLD-f205de7847da7ae1c10212d82e7042d0100b4ce0.tar.gz opensim-SC_OLD-f205de7847da7ae1c10212d82e7042d0100b4ce0.tar.bz2 opensim-SC_OLD-f205de7847da7ae1c10212d82e7042d0100b4ce0.tar.xz |
from the start... checking in ode-0.9
Diffstat (limited to '')
-rw-r--r-- | libraries/ode-0.9/ode-config.in | 56 |
1 files changed, 56 insertions, 0 deletions
diff --git a/libraries/ode-0.9/ode-config.in b/libraries/ode-0.9/ode-config.in new file mode 100644 index 0000000..d04bd01 --- /dev/null +++ b/libraries/ode-0.9/ode-config.in | |||
@@ -0,0 +1,56 @@ | |||
1 | #!/bin/sh | ||
2 | |||
3 | prefix=@prefix@ | ||
4 | exec_prefix=@exec_prefix@ | ||
5 | exec_prefix_set=no | ||
6 | |||
7 | usage="\ | ||
8 | Usage: ode-config [--prefix[=DIR]] [--exec-prefix[=DIR]] [--version] [--cflags] [--libs] [--shared-libs]" | ||
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 @ODE_RELEASE@ | ||
40 | ;; | ||
41 | --cflags) | ||
42 | echo -I@includedir@ | ||
43 | ;; | ||
44 | --libs) | ||
45 | echo -L@libdir@ -lode | ||
46 | ;; | ||
47 | --shared-libs) | ||
48 | echo -L@prefix@/lib -lode@so_ext@ | ||
49 | ;; | ||
50 | *) | ||
51 | echo "${usage}" 1>&2 | ||
52 | exit 1 | ||
53 | ;; | ||
54 | esac | ||
55 | shift | ||
56 | done | ||