This is NeoStats 3.0.0!
This commit is contained in:
parent
074385286f
commit
ce443bed51
13 changed files with 14 additions and 24 deletions
|
@ -3,7 +3,7 @@ NeoStats 3.x ChangeLog
|
|||
Anything we add/remove/fix/change is in here (even our rants)
|
||||
Fish (F), Mark (M), DeadNotBuried (D)
|
||||
===============================================================================
|
||||
* NeoStats * Version 3.0.a4-dev
|
||||
* NeoStats * Version 3.0.0
|
||||
- Finish the Update Module (F)
|
||||
- Move the copyright handler in the HTML output of StatServ to a proper
|
||||
function, simplifies the HTMLOutput loop, and hopefully fixes NEO-420 (F)
|
||||
|
|
|
@ -6,12 +6,12 @@ DISTCHECK_CONFIGURE_FLAGS = --cache-file=../config.cache
|
|||
dist_bin_SCRIPTS = makeconf
|
||||
dist_data_DATA = neostats.motd
|
||||
#docdir = @prefix@/doc
|
||||
dist_doc_DATA = doc/README.dev Changelog.old doc/CODINGMODULES.txt
|
||||
dist_doc_DATA = doc/README.dev Changelog.old doc/CODINGMODULES.txt RELNOTES CREDITS README
|
||||
neodir = $(prefix)
|
||||
neo_SCRIPTS = neostats
|
||||
DISTCLEANFILES = autotools/ccdv
|
||||
|
||||
EXTRA_DIST = autotools/ccdv.c CREDITS INSTNOTES RELNOTES autotools/shtool
|
||||
EXTRA_DIST = autotools/ccdv.c autotools/shtool INSTNOTES
|
||||
|
||||
all-local:
|
||||
if test ! -f .message; then \
|
||||
|
|
|
@ -248,11 +248,11 @@ DISTCHECK_CONFIGURE_FLAGS = --cache-file=../config.cache
|
|||
dist_bin_SCRIPTS = makeconf
|
||||
dist_data_DATA = neostats.motd
|
||||
#docdir = @prefix@/doc
|
||||
dist_doc_DATA = doc/README.dev Changelog.old
|
||||
dist_doc_DATA = doc/README.dev Changelog.old doc/CODINGMODULES.txt RELNOTES CREDITS README
|
||||
neodir = $(prefix)
|
||||
neo_SCRIPTS = neostats
|
||||
DISTCLEANFILES = autotools/ccdv
|
||||
EXTRA_DIST = autotools/ccdv.c CREDITS INSTNOTES RELNOTES autotools/shtool
|
||||
EXTRA_DIST = autotools/ccdv.c autotools/shtool INSTNOTES
|
||||
LINK = $(LIBTOOL) --tag=CC --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \
|
||||
$(AM_LDFLAGS) $(LDFLAGS) -o $@
|
||||
|
||||
|
|
2
configure
vendored
2
configure
vendored
|
@ -2017,7 +2017,7 @@ fi
|
|||
#Standard Defines for autoconf here
|
||||
x_maj=3
|
||||
x_min='0'
|
||||
x_rev="a4"
|
||||
x_rev='0'
|
||||
x_package='NeoStats'
|
||||
MODULES="connectserv hostserv statserv ircdauth extauth limitserv textserv quoteserv operlog dccpartyline perltest templateauth template update"
|
||||
#dont edit anything after this line!
|
||||
|
|
|
@ -11,7 +11,7 @@ AC_CACHE_LOAD
|
|||
#Standard Defines for autoconf here
|
||||
x_maj=3
|
||||
x_min='0'
|
||||
x_rev="a4"
|
||||
x_rev='0'
|
||||
x_package='NeoStats'
|
||||
MODULES="connectserv hostserv statserv ircdauth extauth limitserv textserv quoteserv operlog dccpartyline perltest templateauth template update"
|
||||
#dont edit anything after this line!
|
||||
|
|
|
@ -430,7 +430,7 @@
|
|||
#define RETSIGTYPE void
|
||||
|
||||
/* "Revision Version Number" */
|
||||
#define REV "a4"
|
||||
#define REV "0"
|
||||
|
||||
/* Define to the type of arg 1 for `select'. */
|
||||
#define SELECT_TYPE_ARG1 int
|
||||
|
@ -465,8 +465,8 @@
|
|||
/* #undef USE_RAW */
|
||||
|
||||
/* "Full Version" */
|
||||
#define NEO_VERSION "3.0.b3"
|
||||
#define NEO_WIN32VER "3,0,b3,0"
|
||||
#define NEO_VERSION "3.0.0"
|
||||
#define NEO_WIN32VER "3,0,0,0"
|
||||
#define NEO_WIN32VERN 3,0,0
|
||||
|
||||
/* Number of bits in a file offset, on hosts where this is settable. */
|
||||
|
|
|
@ -208,7 +208,6 @@ target_alias = @target_alias@
|
|||
unamepath = @unamepath@
|
||||
wi_PWD = @wi_PWD@
|
||||
SUBDIRS = dbm protocol @MODULES@
|
||||
EXTRA_DIST = modules.txt
|
||||
LINK = $(LIBTOOL) --tag=CC --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \
|
||||
$(AM_LDFLAGS) $(LDFLAGS) -o $@
|
||||
|
||||
|
|
|
@ -456,7 +456,7 @@ void nassert_fail( const char *expr, const char *file, const int line, const cha
|
|||
nlog( LOG_CRITICAL, "Expression: %s", expr );
|
||||
#ifdef HAVE_BACKTRACE
|
||||
for( i = 1; i < size; i++ ) {
|
||||
nlog( LOG_CRITICAL, "BackTrace (%d) : %s", i - 1, strings[i] );
|
||||
nlog( LOG_CRITICAL, "BackTrace (%d) : %s", (int)i - 1, strings[i] );
|
||||
}
|
||||
#endif /* HAVE_BACKTRACE */
|
||||
nlog( LOG_CRITICAL, "Shutting Down!" );
|
||||
|
|
|
@ -253,6 +253,6 @@ int ModFini( void )
|
|||
static int
|
||||
perlext_pong (const CmdParams *cmds) {
|
||||
irc_chanalert(perl_bot, "Got Pong fromm %s", cmds->source->name);
|
||||
|
||||
return NS_SUCCESS;
|
||||
}
|
||||
|
||||
|
|
|
@ -468,11 +468,6 @@ char *yytext;
|
|||
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||
*/
|
||||
|
||||
#ifndef WIN32
|
||||
#ifdef HAVE_CONFIG_H
|
||||
# include <config.h>
|
||||
#endif
|
||||
#endif
|
||||
#include "neostats.h"
|
||||
#include <assert.h>
|
||||
|
||||
|
|
|
@ -20,10 +20,6 @@
|
|||
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||
*/
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
# include <config.h>
|
||||
#endif
|
||||
|
||||
#include "neostats.h"
|
||||
|
||||
#include <assert.h>
|
||||
|
|
Reference in a new issue