1
0
mirror of https://github.com/PurpleI2P/i2pd-tools synced 2025-02-07 04:04:14 +00:00

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