Skip to content
Snippets Groups Projects
Commit 9ef82e20 authored by deuce's avatar deuce
Browse files

SunOS needs librt for non-xpsem semaphore functions.

parent 8e7cf92a
No related branches found
No related tags found
No related merge requests found
...@@ -20,7 +20,7 @@ include $(XPDEV)Common.gmake ...@@ -20,7 +20,7 @@ include $(XPDEV)Common.gmake
CFLAGS += -I$(XSDK) CFLAGS += -I$(XSDK)
ifeq ($(os),sunos) ifeq ($(os),sunos)
LDFLAGS += -lsocket -lnsl LDFLAGS += -lsocket -lnsl -lrt
endif endif
$(EXEODIR)$(SLASH)sbj: $(LIBODIR)$(SLASH)sbj.o $(OBJS) $(EXEODIR)$(SLASH)sbj: $(LIBODIR)$(SLASH)sbj.o $(OBJS)
......
...@@ -23,7 +23,7 @@ include $(XPDEV)Common.gmake ...@@ -23,7 +23,7 @@ include $(XPDEV)Common.gmake
include $(SBBS_SRC)Common.gmake include $(SBBS_SRC)Common.gmake
ifeq ($(os),sunos) ifeq ($(os),sunos)
LDFLAGS += -lsocket -lnsl LDFLAGS += -lsocket -lnsl -lrt
endif endif
vpath %.c $(XSDK) vpath %.c $(XSDK)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment