Browse Source

Merge pull request #51 from majestrate/master

fix include path for freebsd (for issue #47)
pull/55/head
Jeff 6 years ago committed by GitHub
parent
commit
5dbbc95869
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      Makefile

2
Makefile

@ -25,7 +25,7 @@ ifeq ($(UNAME),Linux) @@ -25,7 +25,7 @@ ifeq ($(UNAME),Linux)
LIBS += -lrt -lpthread
else ifeq ($(UNAME),FreeBSD)
FLAGS += -lrt -lpthread
LDFLAGS += -L/usr/local/lib
LDFLAGS += -L/usr/local/lib -L/usr/local/include
else
# Win32
LIBS += -lws2_32 -lwsock32 -lgdi32 -liphlpapi -lstdc++ -lpthread

Loading…
Cancel
Save