From a6c994cd246344007d319d00e1b917f99bf01cc8 Mon Sep 17 00:00:00 2001 From: Nicolas Favre-Felix Date: Thu, 29 Dec 2011 22:55:53 +0000 Subject: [PATCH] Added missing -lrt. Tentative fix for GitHub issue #38. --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index a5d7114..2128b6e 100644 --- a/Makefile +++ b/Makefile @@ -5,7 +5,7 @@ FORMAT_OBJS=formats/json.o formats/raw.o formats/common.o formats/custom-type.o HTTP_PARSER_OBJS=http-parser/http_parser.o CFLAGS=-O3 -Wall -Wextra -I. -Ijansson/src -Ihttp-parser -LDFLAGS=-levent -pthread +LDFLAGS=-levent -pthread -lrt # check for MessagePack MSGPACK_LIB=$(shell ls /usr/lib/libmsgpack.so 2>/dev/null)