make distversion on this module as well
This commit is contained in:
parent
3267a3c674
commit
f242a91464
4 changed files with 2294 additions and 1807 deletions
|
@ -15,7 +15,7 @@ DOCS = README.FloodServ
|
|||
DATA =
|
||||
SCRIPTS =
|
||||
DISTFILES = $(SRCS) $(DOCS) modconfig.h.in configure install-sh ChangeLog Makefile.in floodserv.h LICENSE RELNOTES floodserv.vcproj modconfigwin32.h
|
||||
DISTDIR = @PACKAGE@-@VERSION@
|
||||
DISTDIR = @DISTDIRVERSION@
|
||||
|
||||
all: module
|
||||
@echo "Compilation complete."
|
||||
|
|
|
@ -80,6 +80,12 @@ dnl Checks for programs.
|
|||
AC_PROG_CC
|
||||
AC_PROG_INSTALL
|
||||
|
||||
AC_ARG_WITH(distversion, [ --with-distversion - Version Name to use for
|
||||
making distributions],
|
||||
[DISTDIRVERSION="$PACKAGE-$VERSION-$withval"],
|
||||
[DISTDIRVERSION="$PACKAGE-$VERSION"])
|
||||
AC_SUBST(DISTDIRVERSION)
|
||||
|
||||
AC_SUBST(DIRINST)
|
||||
AC_SUBST(MAKEDEPENDENCIES)
|
||||
AC_SUBST(CFLAGS)
|
||||
|
|
|
@ -583,7 +583,7 @@ static int fs_event_quit( const CmdParams *cmdparams )
|
|||
flooduser = hnode_get( nfnode );
|
||||
hash_delete( nickfloodhash, nfnode );
|
||||
FreeUserModPtr( flooduser->u );
|
||||
hnode_destroy( nfnode );
|
||||
hnode_destroy( nfnode );
|
||||
}
|
||||
return NS_SUCCESS;
|
||||
}
|
||||
|
|
Reference in a new issue