mirror of
https://github.com/anope/anope.git
synced 2026-07-04 22:53:12 +02:00
BUILD : 1.7.8 (607) BUGS : N/A NOTES : Clean up after proxy was removed, some Win32 touch ups
git-svn-id: svn://svn.anope.org/anope/trunk@607 31f1291d-b8d6-0310-a050-a5561fc1590b git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@455 5417fbe8-f217-4b02-8779-1006273d7864
This commit is contained in:
parent
2f44331e17
commit
2278e8c77b
@@ -1,5 +1,6 @@
|
||||
Anope Version S V N
|
||||
-------------------
|
||||
- DROP TABLE `anope_os_hcache`;
|
||||
|
||||
Anope Version 1.7.8
|
||||
-------------------
|
||||
|
||||
@@ -25,7 +25,7 @@ install:
|
||||
cd lang && $(MAKE) install && cd ..
|
||||
cd src && $(MAKE) install && cd ..
|
||||
cd src\modules && $(MAKE) install && cd ..
|
||||
cd src\modules && $(MAKE) subs-install && cd ..
|
||||
cd src\modules && $(MAKE) subs-install && cd ..
|
||||
-@echo ---
|
||||
-@echo Anope has been insalled successfully!
|
||||
-@echo ---
|
||||
@@ -33,14 +33,13 @@ install:
|
||||
clean:
|
||||
cd src && $(MAKE) spotless && cd ..
|
||||
cd lang && $(MAKE) spotless && cd ..
|
||||
-@erase src\*.exe
|
||||
-@erase *.exe version.h *.obj
|
||||
cd src/modules && $(MAKE) spotless && cd ../..
|
||||
cd src\modules && $(MAKE) spotless && cd ..\..
|
||||
|
||||
spotless:
|
||||
cd lang && $(MAKE) spotless && cd ..
|
||||
cd src && $(MAKE) spotless && cd ..
|
||||
cd src/modules && $(MAKE) spotless && cd ../..
|
||||
cd src\modules && $(MAKE) spotless && cd ..\..
|
||||
-@erase include\language.h include\version.h *~ services.exe version.sh.exe *.obj anopesmtp.exe
|
||||
|
||||
mypasql:
|
||||
@@ -133,7 +132,7 @@ languages: FRC
|
||||
cd lang && $(MAKE) && cd ..
|
||||
|
||||
anopesmtp: FRC
|
||||
$(CC) src/tools/anopesmtp.c /link wsock32.lib $(LFLAGS)
|
||||
$(CC) src\tools\anopesmtp.c /link wsock32.lib $(LFLAGS)
|
||||
|
||||
modules: FRC
|
||||
cd src\modules && $(MAKE) && cd ..\..
|
||||
@@ -143,13 +142,13 @@ modules: FRC
|
||||
include\sysconf.h:
|
||||
copy include\sysconf.h.win32 include\sysconf.h
|
||||
|
||||
lang/language.h: lang/Makefile lang/index
|
||||
lang\language.h: lang\Makefile lang\index
|
||||
cd lang && $(MAKE) language.h && cd ..
|
||||
|
||||
lang/index:
|
||||
lang\index:
|
||||
cd lang && $(MAKE) index && cd ..
|
||||
|
||||
include/language.h: lang/language.h
|
||||
include\language.h: lang\language.h
|
||||
cd lang && copy language.h ..\include\language.h && cd ..
|
||||
|
||||
include\version.h: version.sh.exe version.log include\services.h include\pseudo.h include\messages.h include\pseudo.h include\messages.h
|
||||
@@ -157,6 +156,6 @@ include\version.h: version.sh.exe version.log include\services.h include\pseudo.
|
||||
copy version.h include\version.h
|
||||
|
||||
version.sh.exe:
|
||||
$(CC) include/version.sh.c
|
||||
$(CC) include\version.sh.c
|
||||
|
||||
FRC:
|
||||
@@ -296,19 +296,6 @@ CREATE TABLE anope_os_exceptions (
|
||||
PRIMARY KEY (oe_id)
|
||||
) TYPE=MyISAM;
|
||||
|
||||
--
|
||||
-- Table structure for table `anope_os_hcache`
|
||||
--
|
||||
|
||||
DROP TABLE IF EXISTS anope_os_hcache;
|
||||
CREATE TABLE anope_os_hcache (
|
||||
oh_id int(11) NOT NULL auto_increment,
|
||||
mask text NOT NULL,
|
||||
status int(11) NOT NULL default '0',
|
||||
used int(11) NOT NULL default '0',
|
||||
PRIMARY KEY (oh_id)
|
||||
) TYPE=MyISAM;
|
||||
|
||||
--
|
||||
-- Table structure for table `anope_os_news`
|
||||
--
|
||||
|
||||
+2
-2
@@ -1,5 +1,5 @@
|
||||
#
|
||||
# Anope IRC Services 1.7.7 for Windows
|
||||
# Anope IRC Services 1.7.8 for Windows
|
||||
#
|
||||
# Contact us at info@anope.org
|
||||
#
|
||||
@@ -67,7 +67,7 @@ LFLAGS=/LIBPATH:"$(LIBPATH)"
|
||||
|
||||
CC=cl
|
||||
RC=rc
|
||||
MAKE=nmake -f makefile.win32
|
||||
MAKE=nmake -f Makefile.win32
|
||||
BASE_CFLAGS=/O2 /MD
|
||||
LIBS=wsock32.lib advapi32.lib /NODEFAULTLIB:libcmtd.lib
|
||||
ELIBS=
|
||||
|
||||
@@ -1,7 +1,11 @@
|
||||
#ifndef CATSERV_DEFS_H
|
||||
#define CATSERV_DEFS_H
|
||||
|
||||
#ifdef _WIN32
|
||||
extern __declspec(dllexport) char *s_CatServ;
|
||||
#else
|
||||
E char *s_CatServ;
|
||||
#endif
|
||||
|
||||
#endif
|
||||
|
||||
|
||||
+2
-2
@@ -644,7 +644,7 @@ void db_mysql_save_os_db(unsigned int maxucnt, unsigned int maxutime,
|
||||
Akill *t_ak;
|
||||
SXLine *t_sl;
|
||||
char *takuser, *takhost, *takby, *takreason, *tslmask, *tslby,
|
||||
*tslreason, *thchost;
|
||||
*tslreason;
|
||||
|
||||
int i, j;
|
||||
|
||||
@@ -1016,7 +1016,7 @@ void db_mysql_load_os_dbase(void)
|
||||
char sqlcmd[MAX_SQL_BUF];
|
||||
Akill *ak;
|
||||
SXLine *sx;
|
||||
int akc, sgc, sqc, szc, j;
|
||||
int akc, sgc, sqc, szc;
|
||||
|
||||
if (!do_mysql)
|
||||
return;
|
||||
|
||||
+1
-1
@@ -490,7 +490,7 @@ static void load_old_akill(void)
|
||||
void load_os_dbase(void)
|
||||
{
|
||||
dbFILE *f;
|
||||
int16 i, ver, c;
|
||||
int16 i, ver;
|
||||
uint16 tmp16, n;
|
||||
uint32 tmp32;
|
||||
char *s;
|
||||
|
||||
+5
-1
@@ -8,10 +8,14 @@
|
||||
VERSION_MAJOR="1"
|
||||
VERSION_MINOR="7"
|
||||
VERSION_PATCH="8"
|
||||
VERSION_BUILD="606"
|
||||
VERSION_BUILD="607"
|
||||
|
||||
# $Log$
|
||||
#
|
||||
# BUILD : 1.7.8 (607)
|
||||
# BUGS : N/A
|
||||
# NOTES : Clean up after proxy was removed, some Win32 touch ups
|
||||
#
|
||||
# BUILD : 1.7.8 (606)
|
||||
# BUGS :
|
||||
# NOTES : Removed proxy detector code from the core, threads stuff still there. Needs good testing
|
||||
|
||||
Reference in New Issue
Block a user