blob: a3fccd83b7195046156db5715a469ff0d81f16eb (
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
|
#!/bin/bash
cql_lib="cassandra"
if test `uname -s` = "Darwin"; then
DIR=$(stat -f %N $0 | xargs dirname)
else
DIR=$(readlink -f $0 | xargs dirname)
fi
if ! [ -f ${DIR}/cql_config_defines.sh ] || ! [ -x ${DIR}/cql_config_defines.sh ]
then
echo "missing path configuration file for DataStax Cassandra (cql_config_defines.sh)"
exit 0
fi
source ${DIR}/cql_config_defines.sh
if [ $# -ne 1 ] && [ $# -ne 2 ]
then
echo "run: \`$0 --help\` for more help"
exit 0
fi
if [ $1 == "--help" ]
then
echo "cql_config 'option' ['library']"
echo "options:"
echo "--help"
echo " print this help message"
echo "--cflags-only-other"
echo " get cpp compilation flags"
echo "--cflags-only-I"
echo " get include path"
echo "--libs"
echo " get lib path"
echo "--modversion"
echo " get version"
echo "libraries:"
echo " cassandra"
echo " cassandra_static"
exit 0
else if [ $# -ne 2 ]
then
echo "run: \`$0 --help\` for more help"
exit 0
else if [ $2 != "cassandra" ] && [ $2 != "cassandra_static" ]
then
echo "library $2 not supported"
echo "run: \`$0 --help\` for more help"
exit 0
else
cql_lib=$2
fi
fi
fi
if [ $1 == "--cflags-only-other" ]
then
exit 0
fi
if [ $1 == "--cflags-only-I" ]
then
echo "-I${CPP_DRIVER_PATH}/include/"
exit 0
fi
if [ $1 == "--libs" ]
then
echo "-L${CPP_DRIVER_PATH}/build/ -l${cql_lib} -luv"
exit 0
fi
if [ $1 == "--modversion" ]
then
MAJOR=`grep VERSION_MAJOR ${CPP_DRIVER_PATH}/include/cassandra.h | cut -d " " -f 3`
MINOR=`grep VERSION_MINOR ${CPP_DRIVER_PATH}/include/cassandra.h | cut -d " " -f 3`
PATCH=`grep VERSION_PATCH ${CPP_DRIVER_PATH}/include/cassandra.h | cut -d " " -f 3`
echo "${MAJOR}.${MINOR}.${PATCH}"
exit 0
fi
echo "wrong parameter"
echo "run: \`$0 --help\` for more help"
|