From 06517365514a0fb204d44cf27aff99503dfda54e Mon Sep 17 00:00:00 2001 From: Nicolas Favre-Felix Date: Sun, 23 Feb 2020 09:04:25 -0800 Subject: [PATCH] Release 0.1.9 --- Makefile | 4 ++-- src/version.h | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index cf23365..e8c5e6d 100644 --- a/Makefile +++ b/Makefile @@ -14,8 +14,7 @@ ifneq ($(strip $(MSGPACK_LIB)),) FORMAT_OBJS += src/formats/msgpack.o CFLAGS += -DMSGPACK=1 LDFLAGS += -lmsgpack -endif - +else # check for MessagePackC MSGPACKC_LIB=$(shell ls /usr/lib/libmsgpackc.so 2>/dev/null) ifneq ($(strip $(MSGPACKC_LIB)),) @@ -23,6 +22,7 @@ ifneq ($(strip $(MSGPACKC_LIB)),) CFLAGS += -DMSGPACK=1 LDFLAGS += -lmsgpackc endif +endif OBJS_DEPS=$(wildcard *.d) diff --git a/src/version.h b/src/version.h index 49fb4ec..e04b6d4 100644 --- a/src/version.h +++ b/src/version.h @@ -2,7 +2,7 @@ #define VERSION_H #ifndef WEBDIS_VERSION -#define WEBDIS_VERSION "0.1.9-dev" +#define WEBDIS_VERSION "0.1.9" #endif #endif /* VERSION_H */