From a1d076367eaf64be9f5f38d63c77e6bbc82496f4 Mon Sep 17 00:00:00 2001 From: binki Date: Tue, 3 Aug 2010 17:06:05 +0000 Subject: [PATCH] - Fix src/Makefile's lack of depencencies for module.c, related to #3938. --- Changes | 2 ++ src/Makefile | 2 ++ 2 files changed, 4 insertions(+) diff --git a/Changes b/Changes index a6a6eb253..1c892fe20 100644 --- a/Changes +++ b/Changes @@ -2058,3 +2058,5 @@ - Fix the detection for curl-without-c-ares a little (#0003940). - Add an extban of the schema +b ~j:*!*@* which _only_ prevents a user from joining a channel. (#3192) +- Fix src/Makefile's lack of depencencies for modules.c, related to + #3938. diff --git a/src/Makefile b/src/Makefile index 22c80d03b..9633e31ac 100644 --- a/src/Makefile +++ b/src/Makefile @@ -123,6 +123,8 @@ ssl.o: ssl.c $(INCLUDES) match.o: match.c $(INCLUDES) $(CC) $(CFLAGS) -c match.c +modules.o: modules.c $(INCLUDES) + support.o: support.c $(INCLUDES) $(CC) $(CFLAGS) -c support.c