From c6f63dfb9566503b4cc5544bb3da8e78340d0404 Mon Sep 17 00:00:00 2001 From: Erik Zandvliet Date: Fri, 24 Jan 2014 19:37:27 +0100 Subject: [PATCH] Added explicit linking to lib rt to fix compile errors on various platforms --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index a3b978ec..4aed5262 100644 --- a/Makefile +++ b/Makefile @@ -13,7 +13,7 @@ endif CPPFLAGS = -Wall -g -O2 -fPIC override CPPFLAGS += -funsigned-char -DDEBUG="$(DEBUG)" -DPACKAGE_VERSION="\"$(PACKAGE_VERSION)\"" -LDLIBS = -lcrypto +LDLIBS = -lcrypto -lrt .DEFAULT_GOAL := all