This is version 2.0. Do checks for correct NeoStats Version (2.5.8)
This commit is contained in:
parent
a6751ae61d
commit
8c570d0fb5
4 changed files with 7 additions and 7 deletions
|
@ -1,6 +1,6 @@
|
|||
Open Proxy Scanning Bot Module for NeoStats Changelog.
|
||||
==============================================================================
|
||||
* Version 1.1 * 29/12/2003 * Fish (F) and Mark (M)
|
||||
* Version 2.0 * 29/12/2003 * Fish (F) and Mark (M)
|
||||
- Some segv updates from M (mark@ctcp.net) (M/F)
|
||||
- Initial import of libopm, to replace our engine. (F)
|
||||
- Cleaned up help text and reformatted help to match the rest of NeoStats (M)
|
||||
|
|
6
configure
vendored
6
configure
vendored
|
@ -4270,7 +4270,7 @@ cat >>conftest.$ac_ext <<_ACEOF
|
|||
int main(void) {
|
||||
if (MAJOR >= 2) {
|
||||
if (MINOR >= 5) {
|
||||
if (REV >= 2) {
|
||||
if (REV >= 8) {
|
||||
exit(0);
|
||||
}
|
||||
}
|
||||
|
@ -4305,8 +4305,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 2.5.2 or Higher" >&5
|
||||
echo "$as_me: error: This Module requires NeoStats 2.5.2 or Higher" >&2;}
|
||||
{ { echo "$as_me:$LINENO: error: This Module requires NeoStats 2.5.8 or Higher" >&5
|
||||
echo "$as_me: error: This Module requires NeoStats 2.5.8 or Higher" >&2;}
|
||||
{ (exit 1); exit 1; }; }
|
||||
fi
|
||||
|
||||
|
|
|
@ -75,7 +75,7 @@ AC_TRY_RUN(
|
|||
int main(void) {
|
||||
if (MAJOR >= 2) {
|
||||
if (MINOR >= 5) {
|
||||
if (REV >= 2) {
|
||||
if (REV >= 8) {
|
||||
exit(0);
|
||||
}
|
||||
}
|
||||
|
@ -88,7 +88,7 @@ int main(void) {
|
|||
if test "$ns_version_ok" = "yes"; then
|
||||
AC_MSG_RESULT(Compatible Version);
|
||||
else
|
||||
AC_MSG_ERROR(This Module requires NeoStats 2.5.2 or Higher)
|
||||
AC_MSG_ERROR(This Module requires NeoStats 2.5.8 or Higher)
|
||||
fi
|
||||
|
||||
|
||||
|
|
2
opsb.c
2
opsb.c
|
@ -62,7 +62,7 @@ int online;
|
|||
ModuleInfo __module_info = {
|
||||
"OPSB",
|
||||
"An Open Proxy Scanning Bot",
|
||||
"1.0",
|
||||
"2.0",
|
||||
__DATE__,
|
||||
__TIME__
|
||||
};
|
||||
|
|
Reference in a new issue