mirror of
https://github.com/anope/anope.git
synced 2026-07-01 15:26:39 +02:00
avoiding indent breakage
git-svn-id: svn://svn.anope.org/anope/trunk@802 31f1291d-b8d6-0310-a050-a5561fc1590b git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@558 5417fbe8-f217-4b02-8779-1006273d7864
This commit is contained in:
parent
a0b268dab3
commit
a41f38c2e4
@@ -1,5 +1,4 @@
|
||||
/* PlexusIRCD IRCD functions
|
||||
*
|
||||
* (C) 2003-2005 Anope Team
|
||||
* Contact us at info@anope.org
|
||||
*
|
||||
@@ -1814,3 +1813,4 @@ AnopeInit (int argc, char **argv)
|
||||
|
||||
return MOD_CONT;
|
||||
}
|
||||
|
||||
|
||||
@@ -587,7 +587,6 @@ void moduleAddIRCDMsgs(void) {
|
||||
|
||||
/* *INDENT-ON* */
|
||||
|
||||
|
||||
int anope_event_svsinfo(char *source, int ac, char **av)
|
||||
{
|
||||
return MOD_CONT;
|
||||
|
||||
@@ -35,6 +35,27 @@
|
||||
#include "sysconf.h"
|
||||
#endif
|
||||
|
||||
/* Some SUN fixs */
|
||||
#ifdef __sun
|
||||
/* Solaris specific code, types that do not exist in Solaris'
|
||||
* sys/types.h
|
||||
**/
|
||||
#undef u_int8_t
|
||||
#undef u_int16_t
|
||||
#undef u_int32_t
|
||||
#undef u_int_64_t
|
||||
#define u_int8_t uint8_t
|
||||
#define u_int16_t uint16_t
|
||||
#define u_int32_t uint32_t
|
||||
#define u_int64_t uint64_t
|
||||
|
||||
#ifndef INADDR_NONE
|
||||
#define INADDR_NONE (-1)
|
||||
#endif
|
||||
|
||||
#endif
|
||||
|
||||
|
||||
/* CONFIGURATION BLOCK */
|
||||
|
||||
#define NICK_DB_1 "nick1.db"
|
||||
|
||||
@@ -35,6 +35,27 @@
|
||||
#include "sysconf.h"
|
||||
#endif
|
||||
|
||||
/* Some SUN fixs */
|
||||
#ifdef __sun
|
||||
/* Solaris specific code, types that do not exist in Solaris'
|
||||
* * sys/types.h
|
||||
* **/
|
||||
#undef u_int8_t
|
||||
#undef u_int16_t
|
||||
#undef u_int32_t
|
||||
#undef u_int_64_t
|
||||
#define u_int8_t uint8_t
|
||||
#define u_int16_t uint16_t
|
||||
#define u_int32_t uint32_t
|
||||
#define u_int64_t uint64_t
|
||||
|
||||
#ifndef INADDR_NONE
|
||||
#define INADDR_NONE (-1)
|
||||
#endif
|
||||
|
||||
#endif
|
||||
|
||||
|
||||
/* CONFIGURATION BLOCK */
|
||||
|
||||
#define CHAN_DB_EPONA "chan1.db"
|
||||
|
||||
@@ -67,6 +67,18 @@ extern int connect(int, struct sockaddr *, int);
|
||||
# endif
|
||||
#endif /* _AIX */
|
||||
|
||||
/* Some SUN fixs */
|
||||
#ifdef __sun
|
||||
/* Solaris specific code, types that do not exist in Solaris'
|
||||
* * sys/types.h
|
||||
* **/
|
||||
#ifndef INADDR_NONE
|
||||
#define INADDR_NONE (-1)
|
||||
#endif
|
||||
|
||||
#endif
|
||||
|
||||
|
||||
#ifdef _WIN32
|
||||
#define PATH_MAX MAX_PATH
|
||||
#define snprintf _snprintf
|
||||
|
||||
+5
-1
@@ -8,10 +8,14 @@
|
||||
VERSION_MAJOR="1"
|
||||
VERSION_MINOR="7"
|
||||
VERSION_PATCH="9"
|
||||
VERSION_BUILD="799"
|
||||
VERSION_BUILD="801"
|
||||
|
||||
# $Log$
|
||||
#
|
||||
# BUILD : 1.7.9 (801)
|
||||
# BUGS : N/A
|
||||
# NOTES : last couple of solaris fixs :)
|
||||
#
|
||||
# BUILD : 1.7.9 (799)
|
||||
# BUGS : N/A
|
||||
# NOTES : Fixed compiling on solaris and amd64 systems
|
||||
|
||||
Reference in New Issue
Block a user