update to a2
This commit is contained in:
parent
bf6b2ba1fc
commit
183810fce4
5 changed files with 12 additions and 10 deletions
|
@ -1,6 +1,6 @@
|
|||
Open Proxy Scanning Bot Module for NeoStats Changelog.
|
||||
==============================================================================
|
||||
3.0.a2-dev - Mark (M)
|
||||
3.0.a2 - Mark (M)
|
||||
- Add option to use NeoStats global excludes. (M)
|
||||
- Update settings table to a2 compatible format. (M)
|
||||
- Fix segfault on msg opsb1 check ip.address.com. (M)
|
||||
|
|
6
RELNOTES
6
RELNOTES
|
@ -1,4 +1,4 @@
|
|||
* OPSB * M & Fish * Version 3.0.a2-dev
|
||||
* OPSB * M & Fish * Version 3.0.a2
|
||||
==============================================================================
|
||||
Important information you should know: (READ THIS!)
|
||||
==============================================================================
|
||||
|
@ -18,7 +18,9 @@ system. You must provide all information required as listed in the README
|
|||
section on support or your entry will be removed.
|
||||
|
||||
Settings and data files from 2.5.x will not work with 3.0. Settings for a1
|
||||
may not be compatible with this version.
|
||||
may not be compatible with this version. You should delete all files with
|
||||
"config" in the filename from the directory ~/NeoStats 3.0/data before
|
||||
using this version.
|
||||
|
||||
Known issues that we are aware of and should not be reported:
|
||||
|
||||
|
|
6
configure
vendored
6
configure
vendored
|
@ -1301,7 +1301,7 @@ ac_compiler_gnu=$ac_cv_c_compiler_gnu
|
|||
PACKAGE=OPSB
|
||||
MODULE_MAJOR=3
|
||||
MODULE_MINOR=0
|
||||
MODULE_REV=a2-dev
|
||||
MODULE_REV=a2
|
||||
VERSION=$MODULE_MAJOR.$MODULE_MINOR.$MODULE_REV
|
||||
cat >>confdefs.h <<_ACEOF
|
||||
#define MODULE_VERSION "$VERSION"
|
||||
|
@ -2352,8 +2352,8 @@ if test "$ns_version_ok" = "yes"; then
|
|||
echo "$as_me:$LINENO: result: Compatible version" >&5
|
||||
echo "${ECHO_T}Compatible version" >&6;
|
||||
else
|
||||
{ { echo "$as_me:$LINENO: error: This module requires NeoStats 3.0.a2-dev or higher" >&5
|
||||
echo "$as_me: error: This module requires NeoStats 3.0.a2-dev or higher" >&2;}
|
||||
{ { echo "$as_me:$LINENO: error: This module requires NeoStats 3.0.a2 or higher" >&5
|
||||
echo "$as_me: error: This module requires NeoStats 3.0.a2 or higher" >&2;}
|
||||
{ (exit 1); exit 1; }; }
|
||||
fi
|
||||
|
||||
|
|
|
@ -5,7 +5,7 @@ AC_CONFIG_HEADER(modconfig.h)
|
|||
PACKAGE=OPSB
|
||||
MODULE_MAJOR=3
|
||||
MODULE_MINOR=0
|
||||
MODULE_REV=a2-dev
|
||||
MODULE_REV=a2
|
||||
VERSION=$MODULE_MAJOR.$MODULE_MINOR.$MODULE_REV
|
||||
AC_DEFINE_UNQUOTED(MODULE_VERSION, "$VERSION")
|
||||
AC_DEFINE_UNQUOTED(MODULE_MAJOR, "$MODULE_MAJOR")
|
||||
|
@ -55,7 +55,7 @@ int main(void) {
|
|||
if test "$ns_version_ok" = "yes"; then
|
||||
AC_MSG_RESULT(Compatible version);
|
||||
else
|
||||
AC_MSG_ERROR(This module requires NeoStats 3.0.a2-dev or higher)
|
||||
AC_MSG_ERROR(This module requires NeoStats 3.0.a2 or higher)
|
||||
fi
|
||||
|
||||
dnl check if we are running with debug....
|
||||
|
|
|
@ -6,7 +6,7 @@
|
|||
/* #undef DEBUG */
|
||||
|
||||
/* Version number of package */
|
||||
#define MODULE_VERSION "3.0.a2-dev"
|
||||
#define MODULE_VERSION "3.0.a2"
|
||||
|
||||
/* Major Version */
|
||||
#define MODULE_MAJOR "3"
|
||||
|
@ -15,7 +15,7 @@
|
|||
#define MODULE_MINOR "0"
|
||||
|
||||
/* Revision */
|
||||
#define MODULE_REV "a2-dev"
|
||||
#define MODULE_REV "a2"
|
||||
|
||||
/* Define to 1 if you have the <dlfcn.h> header file. */
|
||||
/* #undef HAVE_DLFCN_H */
|
||||
|
|
Reference in a new issue