diff options
author | trystan 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 |
---|---|---|
committer | trystan 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 |
commit | d07eaff34a1c3d6f8a894f85edc465d20ce5c3dd (patch) | |
tree | 958dc072394d27385bcfffa0205f8a9c20070cc7 | |
parent | fd5951062d09382b48b6162d37626d8ad290ac05 (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
-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 |