diff --git a/Changes b/Changes index 6f7469615..a1f583998 100644 --- a/Changes +++ b/Changes @@ -345,3 +345,4 @@ - Added a new snomask, +o to show oper-up notices (oper only), (#0001965) suggested by vonitsanet. - Added a /userip command that works just like ircu's. +- Fixed a typo in the *nix Makefile reported by Troco (#0002059) diff --git a/src/modules/Makefile.in b/src/modules/Makefile.in index 365baa1e9..62e12dcdd 100644 --- a/src/modules/Makefile.in +++ b/src/modules/Makefile.in @@ -355,6 +355,9 @@ m_connect.o: m_connect.c $(INCLUDES) m_dccallow.o: m_dccallow.c $(INCLUDES) $(CC) $(CFLAGS) $(MODULEFLAGS) -c m_dccallow.c +m_userip.o: m_userip.c $(INCLUDES) + $(CC) $(CFLAGS) $(MODULEFLAGS) -c m_userip.c + ############################################################################# # .so's section ############################################################################# @@ -715,7 +718,7 @@ m_dccallow.so: m_dccallow.c $(INCLUDES) $(CC) $(CFLAGS) $(MODULEFLAGS) -DDYNAMIC_LINKING \ -o m_dccallow.so m_dccallow.c -m_userip.o: m_userip.c $(INCLUDES) +m_userip.so: m_userip.c $(INCLUDES) $(CC) $(CFLAGS) $(MODULEFLAGS) -c m_userip.c #############################################################################