diff options
-rw-r--r-- | makefile.win32 | 7 | ||||
-rw-r--r-- | src/modules/hs_moo.c | 4 | ||||
-rw-r--r-- | src/modules/makefile.win32 | 2 | ||||
-rw-r--r-- | version.log | 6 |
4 files changed, 14 insertions, 5 deletions
diff --git a/makefile.win32 b/makefile.win32 index 457297e37..93a350e92 100644 --- a/makefile.win32 +++ b/makefile.win32 @@ -1,11 +1,12 @@ -# Makefile for Epona. +# Makefile for Anope. # -# Epona (c) 2000-2002 PegSoft -# Contact us at epona@pegsoft.net +# (C) 2003-2005 Anope Team +# Contact us at info@anope.org # # This program is free but copyrighted software; see the file COPYING for # details. # +# Based on the original code of Epona by Lara. # Based on the original code of Services by Andy Church. include Makefile.inc.win32 diff --git a/src/modules/hs_moo.c b/src/modules/hs_moo.c index 04641e860..0c3070036 100644 --- a/src/modules/hs_moo.c +++ b/src/modules/hs_moo.c @@ -70,6 +70,10 @@ int test(int argc, char **argv) { return MOD_CONT; } +void AnopeFini(void) +{ + /* module is unloading */ +} /***************************************************************************************************************************************/ /* The code below here shows various ways of dealing with the module help system */ diff --git a/src/modules/makefile.win32 b/src/modules/makefile.win32 index a2cca02e8..13133e0b7 100644 --- a/src/modules/makefile.win32 +++ b/src/modules/makefile.win32 @@ -3,7 +3,7 @@ include ./Makefile.inc.win32 OBJECTS= $(SRCS:.c=.dll) CFLAGS=/LD /MD /D MODULE_COMPILE $(CFLAGS) /I"../../include" -LFLAGS=/link ../anope.lib wsock32.lib libmysql.lib $(LFLAGS) $(MYSQL_LIB_PATH) /export:AnopeInit +LFLAGS=/link ../anope.lib wsock32.lib $(LIBS) $(LFLAGS) $(MYSQL_LIB_PATH) /export:AnopeInit /export:AnopeFini all: $(OBJECTS) diff --git a/version.log b/version.log index 7be33b42d..9b8ea5557 100644 --- a/version.log +++ b/version.log @@ -8,10 +8,14 @@ VERSION_MAJOR="1" VERSION_MINOR="7" VERSION_PATCH="8" -VERSION_BUILD="568" +VERSION_BUILD="569" # $Log$ # +# BUILD : 1.7.8 (569) +# BUGS : N/A +# NOTES : Cleaned up the win32 makefiles, fixed hs_moo +# # BUILD : 1.7.8 (568) # BUGS : N/A # NOTES : Set default value for botmodes |