summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authortrystan trystan@31f1291d-b8d6-0310-a050-a5561fc1590b <trystan trystan@31f1291d-b8d6-0310-a050-a5561fc1590b@5417fbe8-f217-4b02-8779-1006273d7864>2005-02-06 20:31:43 +0000
committertrystan trystan@31f1291d-b8d6-0310-a050-a5561fc1590b <trystan trystan@31f1291d-b8d6-0310-a050-a5561fc1590b@5417fbe8-f217-4b02-8779-1006273d7864>2005-02-06 20:31:43 +0000
commitd07eaff34a1c3d6f8a894f85edc465d20ce5c3dd (patch)
tree958dc072394d27385bcfffa0205f8a9c20070cc7 /src
parentfd5951062d09382b48b6162d37626d8ad290ac05 (diff)
BUILD : 1.7.8 (569) BUGS : N/A NOTES : Cleaned up the win32 makefiles, fixed hs_moo
git-svn-id: svn://svn.anope.org/anope/trunk@569 31f1291d-b8d6-0310-a050-a5561fc1590b git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@419 5417fbe8-f217-4b02-8779-1006273d7864
Diffstat (limited to 'src')
-rw-r--r--src/modules/hs_moo.c4
-rw-r--r--src/modules/makefile.win322
2 files changed, 5 insertions, 1 deletions
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)