forked from pinpoint-apm/pinpoint-c-agent
-
Notifications
You must be signed in to change notification settings - Fork 1
/
config.m4
55 lines (47 loc) · 1.9 KB
/
config.m4
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
PHP_ARG_WITH(pinpoint_php, for pinpoint_php support,
[ --with-pinpoint_php Include pinpoint_php support])
PHP_ARG_ENABLE(pinpoint_php, whether to enable pinpoint_php support,
[ --enable-pinpoint_php Enable pinpoint_php support])
PHP_ARG_ENABLE(ext_test, support test,
[ --enable-ext-test Enable test support],no,no)
if test "$PHP_PINPOINT_PHP" != "no"; then
PHP_REQUIRE_CXX()
PHP_SUBST(PINPOINT_PHP_SHARED_LIBADD)
# echo "------Build common libraries------------"
# mkdir -p PHP_EXT_SRCDIR()/build
# cd build
# cmake PHP_EXT_SRCDIR()/common -DCMAKE_BUILD_TYPE=Release
# make
# cd PHP_EXT_SRCDIR()
# PINPOINT_COMMON_LIB=PHP_EXT_SRCDIR()/build/lib
# echo "----------------------------------------"
EXTRA_PHP_SRCS="pinpoint_php.cpp"
PINPOINT_SRCS="$EXTRA_PHP_SRCS \
common/src/common.cpp \
common/src/Logging.cpp \
common/src/NodePool/TraceNode.cpp \
common/src/NodePool/PoolManager.cpp \
common/src/ConnectionPool/TransLayer.cpp \
common/src/Cache/State.cpp \
common/src/Cache/Chunk.cpp \
"
PINPOINT_SRCS="$PINPOINT_SRCS \
common/jsoncpp/lib_json/json_writer.cpp \
common/jsoncpp/lib_json/json_value.cpp \
common/jsoncpp/lib_json/json_reader.cpp \
"
if [[ "$OSTYPE" == "linux-gnu"* ]]; then
PINPOINT_PHP_SHARED_LIBADD="$PINPOINT_PHP_SHARED_LIBADD -lrt"
fi
PHP_NEW_EXTENSION(pinpoint_php,$PINPOINT_SRCS, $ext_shared,,, cxx)
PHP_ADD_INCLUDE(PHP_EXT_SRCDIR()/common/include)
PHP_ADD_INCLUDE(PHP_EXT_SRCDIR()/common/jsoncpp/include)
PHP_ADD_INCLUDE(PHP_EXT_SRCDIR()/common/jsoncpp/include)
PHP_ADD_INCLUDE(PHP_EXT_SRCDIR()/common/src)
AC_DEFINE(HAVE_PINPOINT_PHP, 1, [Whether you have pinpoint])
PHP_ADD_BUILD_DIR(common/src/)
PHP_ADD_BUILD_DIR(common/src/NodePool/)
PHP_ADD_BUILD_DIR(common/src/ConnectionPool/)
PHP_ADD_BUILD_DIR(common/src/Cache/)
PHP_ADD_BUILD_DIR(common/jsoncpp/lib_json/)
fi