From ce443bed51655247efcd086cef29eb7a40ef230c Mon Sep 17 00:00:00 2001 From: Fish <> Date: Wed, 5 Mar 2008 09:22:44 +0000 Subject: [PATCH] This is NeoStats 3.0.0! --- ChangeLog | 2 +- Makefile.am | 4 ++-- Makefile.in | 4 ++-- configure | 2 +- configure.in | 2 +- include/configwin32.h | 6 +++--- modules/Makefile.in | 1 - modules/dbm/convertdb.c | 2 +- modules/perltest/main.c | 2 +- src/confuselexer.c | 5 ----- src/confuselexer.l | 4 ---- src/log.c | 2 +- src/support.c | 2 +- 13 files changed, 14 insertions(+), 24 deletions(-) diff --git a/ChangeLog b/ChangeLog index ba624dc1..16f3c495 100644 --- a/ChangeLog +++ b/ChangeLog @@ -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) diff --git a/Makefile.am b/Makefile.am index 70722fe7..2d093774 100644 --- a/Makefile.am +++ b/Makefile.am @@ -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 \ diff --git a/Makefile.in b/Makefile.in index 38249251..f32d92f3 100644 --- a/Makefile.in +++ b/Makefile.in @@ -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 $@ diff --git a/configure b/configure index 9fff7231..2f7100cd 100755 --- a/configure +++ b/configure @@ -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! diff --git a/configure.in b/configure.in index f4dae121..c9c46d1e 100644 --- a/configure.in +++ b/configure.in @@ -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! diff --git a/include/configwin32.h b/include/configwin32.h index c469b6a7..6f203fa1 100644 --- a/include/configwin32.h +++ b/include/configwin32.h @@ -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. */ diff --git a/modules/Makefile.in b/modules/Makefile.in index 87abd1a8..9ca9d647 100644 --- a/modules/Makefile.in +++ b/modules/Makefile.in @@ -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 $@ diff --git a/modules/dbm/convertdb.c b/modules/dbm/convertdb.c index 55246c5f..e37f0741 100644 --- a/modules/dbm/convertdb.c +++ b/modules/dbm/convertdb.c @@ -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!" ); diff --git a/modules/perltest/main.c b/modules/perltest/main.c index 0188ed69..c4f4ae95 100644 --- a/modules/perltest/main.c +++ b/modules/perltest/main.c @@ -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; } diff --git a/src/confuselexer.c b/src/confuselexer.c index 1012c9e6..6db9019f 100644 --- a/src/confuselexer.c +++ b/src/confuselexer.c @@ -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 -#endif -#endif #include "neostats.h" #include diff --git a/src/confuselexer.l b/src/confuselexer.l index d1403ce2..426025e7 100644 --- a/src/confuselexer.l +++ b/src/confuselexer.l @@ -20,10 +20,6 @@ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#ifdef HAVE_CONFIG_H -# include -#endif - #include "neostats.h" #include diff --git a/src/log.c b/src/log.c index cce1f5dc..005fcabf 100644 --- a/src/log.c +++ b/src/log.c @@ -432,4 +432,4 @@ void CaptureBackTrace (const char *file, const int line, const char *func) { nlog( LOG_CRITICAL, "BackTrace (%d) : %s", (int) i - 1, strings[i] ); } #endif /* HAVE_BACKTRACE */ -} \ No newline at end of file +} diff --git a/src/support.c b/src/support.c index d4760378..0d1eb55f 100644 --- a/src/support.c +++ b/src/support.c @@ -313,4 +313,4 @@ strsep (char **stringp, const char *delim) return begin; } -#endif \ No newline at end of file +#endif