Merge pull request #402 from dmarion/upstream

intlconv: osx requires -liconv
This commit is contained in:
perexg 2014-05-27 08:15:18 +02:00
commit c8a392e1fa

View file

@ -35,6 +35,8 @@ CFLAGS += -I${BUILDDIR} -I${ROOTDIR}/src -I${ROOTDIR}
LDFLAGS += -ldl -lpthread -lm
ifneq ($(PLATFORM), darwin)
LDFLAGS += -lrt
else
LDFLAGS += -liconv
endif
ifeq ($(COMPILER), clang)