fix make install with non-default locations
This commit is contained in:
parent
27a9de98a4
commit
3afc6c2c38
5 changed files with 904 additions and 721 deletions
|
@ -4,6 +4,7 @@ Open Proxy Scanning Bot Module for NeoStats Changelog.
|
|||
- fix crash on adding new port (D)
|
||||
- Fix the open_proxy crash when a user had signed off and thus we had a
|
||||
dangling pointer (F)
|
||||
- Fix make install when NeoStats is installed in a non-default location (F)
|
||||
|
||||
3.0.a3 - Mark (M) & Fish (F)
|
||||
- AKILL support and open proxy reporting (F)
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
# Makefile.in generated by automake 1.9.2 from Makefile.am.
|
||||
# Makefile.in generated by automake 1.9.6 from Makefile.am.
|
||||
# @configure_input@
|
||||
|
||||
# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
|
||||
# 2003, 2004 Free Software Foundation, Inc.
|
||||
# 2003, 2004, 2005 Free Software Foundation, Inc.
|
||||
# This Makefile.in is free software; the Free Software Foundation
|
||||
# gives unlimited permission to copy and/or distribute it,
|
||||
# with or without modifications, as long as this notice is preserved.
|
||||
|
@ -16,8 +16,6 @@
|
|||
|
||||
|
||||
|
||||
SOURCES = $(opsb_la_SOURCES)
|
||||
|
||||
srcdir = @srcdir@
|
||||
top_srcdir = @top_srcdir@
|
||||
VPATH = @srcdir@
|
||||
|
@ -75,7 +73,7 @@ depcomp = $(SHELL) $(top_srcdir)/autotools/depcomp
|
|||
am__depfiles_maybe = depfiles
|
||||
COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \
|
||||
$(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
|
||||
LTCOMPILE = $(LIBTOOL) --mode=compile --tag=CC $(CC) $(DEFS) \
|
||||
LTCOMPILE = $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) \
|
||||
$(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \
|
||||
$(AM_CFLAGS) $(CFLAGS)
|
||||
CCLD = $(CC)
|
||||
|
|
1614
aclocal.m4
vendored
1614
aclocal.m4
vendored
File diff suppressed because it is too large
Load diff
1
configure
vendored
1
configure
vendored
|
@ -19647,6 +19647,7 @@ fi
|
|||
if test "$ns_version_ok" = "yes"; then
|
||||
echo "$as_me:$LINENO: result: Compatible version" >&5
|
||||
echo "${ECHO_T}Compatible version" >&6;
|
||||
prefix=$DIRINST
|
||||
else
|
||||
{ { 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;}
|
||||
|
|
|
@ -55,6 +55,7 @@ int main(void) {
|
|||
ns_version_ok='no')
|
||||
if test "$ns_version_ok" = "yes"; then
|
||||
AC_MSG_RESULT(Compatible version);
|
||||
prefix=$DIRINST
|
||||
else
|
||||
AC_MSG_ERROR(This module requires NeoStats 3.0.a2 or higher)
|
||||
fi
|
||||
|
|
Reference in a new issue