Merge pull request #53 from majestrate/master

correct link flags for freebsd
This commit is contained in:
Jeff 2018-05-14 08:01:36 -04:00 committed by GitHub
commit 84bd3985ba
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -24,7 +24,7 @@ LIBS = $(I2PD_PATH)/libi2pd.a -lboost_system$(BOOST_SUFFIX) -lboost_date_time$(B
ifeq ($(UNAME),Linux)
LIBS += -lrt -lpthread
else ifeq ($(UNAME),FreeBSD)
FLAGS += -lrt -lpthread
LIBS += -lthr -lpthread
LDFLAGS += -L/usr/local/lib
INCFLAGS += -I/usr/local/include
else