4
Fork 0

Enhanced cross-platform compatibility

This commit is contained in:
R3ABM Artem 2016-08-03 18:41:44 +04:00
parent f3fd0c54da
commit f36fa3f32b
3 changed files with 28 additions and 20 deletions

View file

@ -17,7 +17,10 @@
#include <sys/time.h> #include <sys/time.h>
#include <sys/socket.h> #include <sys/socket.h>
// #include <openssl/sha.h> #ifdef USE_OPENSSL
#include <openssl/sha.h>
#endif
#ifndef HEADER_SHA_H #ifndef HEADER_SHA_H
#include "sha256.h" #include "sha256.h"
#define SHA256_DIGEST_LENGTH SHA256_BLOCK_SIZE #define SHA256_DIGEST_LENGTH SHA256_BLOCK_SIZE

View file

@ -1,37 +1,41 @@
USE_OPENSSL := no
BUILD := $(shell date -u +%Y%m%d-%H%M%S) BUILD := $(shell date -u +%Y%m%d-%H%M%S)
OS := $(shell uname -s) OS := $(shell uname -s)
PREFIX = $(DESTDIR)/opt/CronosAgent PREFIX = $(DESTDIR)/opt/CronosAgent
DIRECTORIES =
ifeq ($(OS), Linux) ifeq ($(OS), Linux)
LIBRARIES += \ FLAGS += -rdynamic
rt LIBRARIES += rt
# DEPENDENCIES = \ ifeq ($(USE_OPENSSL), yes)
# openssl FLAGS += -DUSE_OPENSSL
DEPENDENCIES += openssl
endif
endif endif
ifeq ($(OS), Darwin) ifeq ($(OS), Darwin)
CFLAGS += \ FLAGS += -Wno-deprecated-declarations
-Wno-deprecated-declarations ifeq ($(USE_OPENSSL), yes)
# -I/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift-migrator/sdk/MacOSX.sdk/usr/include/ FLAGS += -DUSE_OPENSSL -I/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift-migrator/sdk/MacOSX.sdk/usr/include/
# LIBRARIES += \ LIBRARIES += crypto
# crypto endif
endif endif
OBJECTS = \ OBJECTS = CronosAgent.o
sha256.o \
CronosAgent.o
FLAGS := -g -fno-omit-frame-pointer -O3 -MMD $(foreach directory, $(DIRECTORIES), -I$(directory)) -DBUILD=\"$(BUILD)\" ifneq ($(USE_OPENSSL), yes)
LIBS := $(foreach library, $(LIBRARIES), -l$(library)) OBJECTS += sha256.o
endif
FLAGS += -g -fno-omit-frame-pointer -O3 -MMD $(foreach directory, $(DIRECTORIES), -I$(directory)) -DBUILD=\"$(BUILD)\"
LIBS += $(foreach library, $(LIBRARIES), -l$(library))
CC = gcc CC = gcc
CFLAGS += $(FLAGS) -std=gnu99 CFLAGS += $(FLAGS) -std=gnu99
ifeq ($(OS), Linux) ifneq ($(strip $(DEPENDENCIES)),)
FLAGS += $(shell pkg-config --cflags $(DEPENDENCIES)) -rdynamic FLAGS += $(shell pkg-config --cflags $(DEPENDENCIES))
LIBS += $(shell pkg-config --libs $(DEPENDENCIES)) LIBS += $(shell pkg-config --libs $(DEPENDENCIES))
endif endif

View file

@ -5,7 +5,8 @@ DIRECTORY=$(dirname $0)
if [ -f $DIRECTORY/cronosagent.conf ] if [ -f $DIRECTORY/cronosagent.conf ]
then then
# Read configuration from text file # Read configuration from text file
source $DIRECTORY/cronosagent.conf # Dot is equivalent of bash's source
. $DIRECTORY/cronosagent.conf
fi fi
if [ -f /etc/config/cronosagent ] if [ -f /etc/config/cronosagent ]