2
0
Эх сурвалжийг харах

Makefile.defs: don't link to libsctp on Linux for SCTP support

- only sctp module needs to link to it
Daniel-Constantin Mierla 12 жил өмнө
parent
commit
af2473d426
1 өөрчлөгдсөн 2 нэмэгдсэн , 1 устгасан
  1. 2 1
      Makefile.defs

+ 2 - 1
Makefile.defs

@@ -1807,7 +1807,8 @@ $(info "sctp libraries not installed -- sctp disabled")
 		ifeq ($(SCTP),1)
 			# use lksctp
 			C_DEFS+=-DUSE_SCTP
-			LIBS+=-lsctp
+			# link to libsctp is needed only for sctp module
+			# LIBS+=-lsctp
 		endif
 	endif # SCTP
 endif