From 8de446ad792e8bd1334971e0d195b53e1354f0d0 Mon Sep 17 00:00:00 2001 From: "R. Tyler Croy" Date: Thu, 1 Nov 2012 09:13:02 -0700 Subject: [PATCH] Update the Makefile to correctly link against libpthread on Linux systems --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index f9e4f2b..4203270 100644 --- a/Makefile +++ b/Makefile @@ -5,7 +5,7 @@ OBJDIR := obj OBJ := roxanne_db.o tuple_bits.o hash_32.o DEPS := roxanne_db.h ifeq (${OS},Linux) - LIBS := -lrt -lm + LIBS := -lrt -lm -lpthread endif default: dbr