Skip to content

Commit 546b10d

Browse files
committed
clarified SDK header installation in README
1 parent 2ea7c4f commit 546b10d

File tree

2 files changed

+9
-3
lines changed

2 files changed

+9
-3
lines changed

Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ build-nginx:
2828
rm -f $(NGINX_SRC_DIR)/Makefile
2929

3030
cd $(NGINX_OUT_DIR); \
31-
rm -f ./conf/nginx.conf && ln -s $(ROOT_DIR)/nginx.conf ./conf/nginx.conf
31+
[ -f $(ROOT_DIR)/nginx.conf ] && rm -f ./conf/nginx.conf && ln -s $(ROOT_DIR)/nginx.conf ./conf/nginx.conf || true
3232

3333
build: build-static
3434
build-static: configure-static build-nginx

README.md

+8-2
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ data into Snapshots.
1010

1111
- [Status](#status)
1212
- [Installation](#installation)
13+
- [AppDynamics Library](#appdynamics-library)
1314
- [Configuration directives](#configuration-directives)
1415
- [`appdynamics`](#appdynamics)
1516
- [`appdynamics_controller_hostname`](#appdynamics-controller-hostname)
@@ -31,7 +32,8 @@ data into Snapshots.
3132
- [Design Notes](#design-notes)
3233

3334
## Status
34-
BETA (active development) - developed/tested against Nginx 1.23.4 and AppDynamics C++ SDK 22.7
35+
BETA (active development) - developed/tested against Nginx 1.23.4 and AppDynamics C++ SDK 22.7.
36+
*NOTE* see [AppDynamics Library](#appdynamics-library) before attempting to build.
3537

3638
## Installation
3739
The `appdynamics_ngx_module` is not known to be affected by module
@@ -59,7 +61,11 @@ This will compile the module directly into Nginx.
5961

6062
### AppDynamics library
6163
The AppDynamics C++ Agent library is currently only distributed as a dynamic library, and needs to be "installed"
62-
and available to the appdynamics_ngx_module's library path.
64+
and available to the appdynamics_ngx_module's library path at runtime.
65+
66+
Licensing prevents the inclusion of the AppDynamics SDK headers in this repo. To compile this module, the headers from the SDK
67+
must be copied into `./vendor/appdynamics-cpp-sdk/include/`.
68+
6369
See https://docs.appdynamics.com/appd/22.x/22.2/en/application-monitoring/install-app-server-agents/c-c++-sdk for more information.
6470

6571
## Configuration directives

0 commit comments

Comments
 (0)