Browse Source

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

- only sctp module needs to link to it
Daniel-Constantin Mierla 12 years ago
parent
commit
af2473d426
1 changed files with 2 additions and 1 deletions
  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