fix make install with non-default locations

This commit is contained in:
Fish 2006-07-08 07:28:36 +00:00
parent 0487f0fad4
commit 7bd24d9d0d
5 changed files with 911 additions and 740 deletions

View file

@ -8,6 +8,7 @@ Fish (F) & Mark (M) & DeadNotBuried (D)
- don't akill excluded users/hosts (D)
- add ircbl.ahbl.org to default black lists (D)
- Fix check for NOBAN on add (D)
- Fix make install when NeoStats is installed in a non-default location (F)
3.0.a3
- Add support for lookup lists only without banning (D)
- Make sure we broadcast a message when we akill even if not in verbose (F)

View file

@ -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 = $(blsb_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)

1640
aclocal.m4 vendored

File diff suppressed because it is too large Load diff

1
configure vendored
View file

@ -19485,6 +19485,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.a3 or higher" >&5
echo "$as_me: error: This module requires NeoStats 3.0.a3 or higher" >&2;}

View file

@ -54,6 +54,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.a3 or higher)
fi