Enhanced cross-platform compatibility
This commit is contained in:
parent
f3fd0c54da
commit
f36fa3f32b
3 changed files with 28 additions and 20 deletions
|
@ -17,7 +17,10 @@
|
|||
#include <sys/time.h>
|
||||
#include <sys/socket.h>
|
||||
|
||||
// #include <openssl/sha.h>
|
||||
#ifdef USE_OPENSSL
|
||||
#include <openssl/sha.h>
|
||||
#endif
|
||||
|
||||
#ifndef HEADER_SHA_H
|
||||
#include "sha256.h"
|
||||
#define SHA256_DIGEST_LENGTH SHA256_BLOCK_SIZE
|
||||
|
|
40
Makefile
40
Makefile
|
@ -1,37 +1,41 @@
|
|||
USE_OPENSSL := no
|
||||
|
||||
BUILD := $(shell date -u +%Y%m%d-%H%M%S)
|
||||
OS := $(shell uname -s)
|
||||
|
||||
PREFIX = $(DESTDIR)/opt/CronosAgent
|
||||
|
||||
DIRECTORIES =
|
||||
|
||||
ifeq ($(OS), Linux)
|
||||
LIBRARIES += \
|
||||
rt
|
||||
# DEPENDENCIES = \
|
||||
# openssl
|
||||
FLAGS += -rdynamic
|
||||
LIBRARIES += rt
|
||||
ifeq ($(USE_OPENSSL), yes)
|
||||
FLAGS += -DUSE_OPENSSL
|
||||
DEPENDENCIES += openssl
|
||||
endif
|
||||
endif
|
||||
|
||||
ifeq ($(OS), Darwin)
|
||||
CFLAGS += \
|
||||
-Wno-deprecated-declarations
|
||||
# -I/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift-migrator/sdk/MacOSX.sdk/usr/include/
|
||||
# LIBRARIES += \
|
||||
# crypto
|
||||
FLAGS += -Wno-deprecated-declarations
|
||||
ifeq ($(USE_OPENSSL), yes)
|
||||
FLAGS += -DUSE_OPENSSL -I/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift-migrator/sdk/MacOSX.sdk/usr/include/
|
||||
LIBRARIES += crypto
|
||||
endif
|
||||
endif
|
||||
|
||||
OBJECTS = \
|
||||
sha256.o \
|
||||
CronosAgent.o
|
||||
OBJECTS = CronosAgent.o
|
||||
|
||||
FLAGS := -g -fno-omit-frame-pointer -O3 -MMD $(foreach directory, $(DIRECTORIES), -I$(directory)) -DBUILD=\"$(BUILD)\"
|
||||
LIBS := $(foreach library, $(LIBRARIES), -l$(library))
|
||||
ifneq ($(USE_OPENSSL), yes)
|
||||
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
|
||||
CFLAGS += $(FLAGS) -std=gnu99
|
||||
|
||||
ifeq ($(OS), Linux)
|
||||
FLAGS += $(shell pkg-config --cflags $(DEPENDENCIES)) -rdynamic
|
||||
ifneq ($(strip $(DEPENDENCIES)),)
|
||||
FLAGS += $(shell pkg-config --cflags $(DEPENDENCIES))
|
||||
LIBS += $(shell pkg-config --libs $(DEPENDENCIES))
|
||||
endif
|
||||
|
||||
|
|
|
@ -5,7 +5,8 @@ DIRECTORY=$(dirname $0)
|
|||
if [ -f $DIRECTORY/cronosagent.conf ]
|
||||
then
|
||||
# Read configuration from text file
|
||||
source $DIRECTORY/cronosagent.conf
|
||||
# Dot is equivalent of bash's source
|
||||
. $DIRECTORY/cronosagent.conf
|
||||
fi
|
||||
|
||||
if [ -f /etc/config/cronosagent ]
|
||||
|
|
Loading…
Add table
Reference in a new issue