don’t link against librt on Mac OS X (Thanks Marcus)
This commit is contained in:
parent
eedd1a64d7
commit
07a385bb7a
|
@ -68,7 +68,10 @@ CPPFLAGS += -DPCRE_HAS_UCP=1
|
||||||
endif
|
endif
|
||||||
|
|
||||||
LIBS += -lm
|
LIBS += -lm
|
||||||
|
# Darwin (Mac OS X) doesn’t have librt
|
||||||
|
ifneq ($(UNAME),Darwin)
|
||||||
LIBS += -lrt
|
LIBS += -lrt
|
||||||
|
endif
|
||||||
LIBS += -L $(TOPDIR)/libi3 -li3
|
LIBS += -L $(TOPDIR)/libi3 -li3
|
||||||
LIBS += $(call ldflags_for_lib, xcb-event,xcb-event)
|
LIBS += $(call ldflags_for_lib, xcb-event,xcb-event)
|
||||||
LIBS += $(call ldflags_for_lib, xcb-keysyms,xcb-keysyms)
|
LIBS += $(call ldflags_for_lib, xcb-keysyms,xcb-keysyms)
|
||||||
|
|
Loading…
Reference in New Issue