-
Notifications
You must be signed in to change notification settings - Fork 28
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
SNOW-152050 SNOW-133396 fix OOB telemetryServerDeployment is dev for …
…production OOB events. Bump up version to 0.4.10
- Loading branch information
1 parent
518f67a
commit 994a2b2
Showing
17 changed files
with
471 additions
and
769 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,3 +2,4 @@ | |
*.obj | ||
*.lib | ||
*.pdb | ||
sampleoobevent |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
|
||
#make LIB=libtelemetry.a | ||
|
||
$(LIB): oobtelemetry.c jsonutil.c oobtelemetry.h jsonutil.h | ||
@ $(CC) -g $(CFLAGS) -fPIC -c oobtelemetry.c -I$(OOB_SOURCE_DIR)/../$(CURL_DIR)/include -I$(OOB_SOURCE_DIR)/../$(CURL_DIR)/lib/vtls -I$(OOB_SOURCE_DIR)/../../include -I$(OOB_SOURCE_DIR)/../util-linux/libuuid/src | ||
@ $(CC) -g $(CFLAGS) -fPIC -c jsonutil.c -I$(OOB_SOURCE_DIR)/../$(CURL_DIR)/lib/vtls -I$(OOB_SOURCE_DIR)/../ -I$(OOB_SOURCE_DIR)/../../include -I$(OOB_SOURCE_DIR)/../util-linux/libuuid/src | ||
@ $(INFO Building OOB telemetry lib) | ||
$(AR) $(AROPTIONS) $@ oobtelemetry.o jsonutil.o | ||
|
||
distclean: clean | ||
@ rm -f *.a | ||
|
||
clean: | ||
@ rm -f *.o sampleoobevent | ||
|
||
sample: | ||
$(CC) $(CFLAGS) -g sample.c $(OOB_SOURCE_DIR)/../../lib/cJSON.c \ | ||
-I$(OOB_SOURCE_DIR)/../../lib/ \ | ||
-I$(OOB_SOURCE_DIR)/../$(CURL_DIR)/lib/vtls \ | ||
-I$(OOB_SOURCE_DIR)/../../include \ | ||
-I$(OOB_SOURCE_DIR)/../$(CURL_DIR)/include \ | ||
libtelemetry.a \ | ||
-o sampleoobevent \ | ||
$(LDFLAGS) $(OOB_SOURCE_DIR)/../../deps-build/linux/Debug/curl/lib/libcurl.a \ | ||
$(OOB_SOURCE_DIR)/../../deps-build/linux/Debug/openssl/lib/libssl.a \ | ||
$(OOB_SOURCE_DIR)/../../deps-build/linux/Debug/openssl/lib/libcrypto.a \ | ||
-lpthread \ | ||
$(OOB_SOURCE_DIR)/../../deps-build/linux/Debug/zlib/lib/libz.a \ | ||
$(OOB_SOURCE_DIR)/../../deps-build/linux/Debug/uuid/lib/libuuid.a \ | ||
-ldl -lrt | ||
|
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.