Skip to content

Commit

Permalink
Merge pull request sass#1369 from saper/nodl
Browse files Browse the repository at this point in the history
No -ldl for FreeBSD
  • Loading branch information
mgreter committed Jul 26, 2015
2 parents e764b04 + 5e9437b commit 7014f55
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions Makefile
Expand Up @@ -118,8 +118,10 @@ ifeq ($(UNAME),Darwin)
endif

ifneq (MinGW,$(UNAME))
LDFLAGS += -ldl
LDLIBS += -ldl
ifneq (FreeBSD,$(UNAME))
LDFLAGS += -ldl
LDLIBS += -ldl
endif
endif

ifneq ($(BUILD),shared)
Expand Down

0 comments on commit 7014f55

Please sign in to comment.