From 11d62428e24dae5db789be7e85c5599e9f23b295 Mon Sep 17 00:00:00 2001 From: Michael Vrable Date: Mon, 21 Oct 2013 09:47:00 -0700 Subject: [PATCH] Fix a linker error by linking against pthreads. --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 454f1c4..6332115 100644 --- a/Makefile +++ b/Makefile @@ -3,7 +3,7 @@ DEBUG=-g CXXFLAGS=-O -Wall -Wextra -D_FILE_OFFSET_BITS=64 $(DEBUG) \ $(shell pkg-config --cflags $(PACKAGES)) \ -DCUMULUS_VERSION=$(shell cat version) -LDFLAGS=$(DEBUG) $(shell pkg-config --libs $(PACKAGES)) +LDFLAGS=$(DEBUG) $(shell pkg-config --libs $(PACKAGES)) -lpthread THIRD_PARTY_SRCS=chunk.cc sha1.cc sha256.cc SRCS=exclude.cc hash.cc localdb.cc main.cc metadata.cc ref.cc remote.cc \ -- 2.20.1