make distversion on this module
This commit is contained in:
parent
4377459d80
commit
f0e2e54a6c
10 changed files with 2304 additions and 1817 deletions
|
@ -15,8 +15,8 @@ DOCS=README.SeenServ
|
|||
DATA=
|
||||
SCRIPTS=
|
||||
DISTFILES=$(SRCS) $(DOCS) $(SCRIPTS) *.in configure install-sh ChangeLog *.h LICENSE RELNOTES seenserv.vcproj modconfigwin32.h
|
||||
DISTDIR= @PACKAGE@-@VERSION@
|
||||
|
||||
DISTDIR= @DISTDIRVERSION@
|
||||
|
||||
all: module
|
||||
@echo "Compilation complete."
|
||||
@echo "Run 'make install' (or 'gmake install' on some systems) to install."
|
||||
|
|
File diff suppressed because one or more lines are too long
|
@ -9,7 +9,7 @@
|
|||
|
||||
<para><add module introduction></para>
|
||||
|
||||
<para>ModuleName is Copyright, 2005 by Justin Hammond.</para>
|
||||
<para>ModuleName is Copyright, 2006 by Justin Hammond.</para>
|
||||
|
||||
<sect1>
|
||||
<title>Prerequisites and Installation.</title>
|
||||
|
@ -626,4 +626,4 @@ Installing README.ModuleName.html: [OK] </scr
|
|||
</sect3>
|
||||
</sect2>
|
||||
</sect1>
|
||||
</article>
|
||||
</article>
|
||||
|
|
|
@ -79,6 +79,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)
|
||||
|
|
2
events.c
2
events.c
|
@ -1,5 +1,5 @@
|
|||
/* SeenServ - Nickname Seen Service - NeoStats Addon Module
|
||||
** Copyright (c) 2003-2005 Justin Hammond, Mark Hetherington, Jeff Lang
|
||||
** Copyright (c) 2003-2006 Justin Hammond, Mark Hetherington, Jeff Lang
|
||||
**
|
||||
** This program is free software; you can redistribute it and/or modify
|
||||
** it under the terms of the GNU General Public License as published by
|
||||
|
|
2
seen.c
2
seen.c
|
@ -1,5 +1,5 @@
|
|||
/* SeenServ - Nickname Seen Service - NeoStats Addon Module
|
||||
** Copyright (c) 2003-2005 Justin Hammond, Mark Hetherington, Jeff Lang
|
||||
** Copyright (c) 2003-2006 Justin Hammond, Mark Hetherington, Jeff Lang
|
||||
**
|
||||
** This program is free software; you can redistribute it and/or modify
|
||||
** it under the terms of the GNU General Public License as published by
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
/* SeenServ - Nickname Seen Service - NeoStats Addon Module
|
||||
** Copyright (c) 2003-2005 Justin Hammond, Mark Hetherington, Jeff Lang
|
||||
** Copyright (c) 2003-2006 Justin Hammond, Mark Hetherington, Jeff Lang
|
||||
**
|
||||
** This program is free software; you can redistribute it and/or modify
|
||||
** it under the terms of the GNU General Public License as published by
|
||||
|
@ -41,7 +41,7 @@ static int sns_set_memorylist (const CmdParams *cmdparams, SET_REASON reason);
|
|||
|
||||
/** Copyright info */
|
||||
const char *sns_copyright[] = {
|
||||
"Copyright (c) 2005, NeoStats",
|
||||
"Copyright (c) 2006, NeoStats",
|
||||
"http://www.neostats.net/",
|
||||
NULL};
|
||||
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
/* SeenServ - Nickname Seen Service - NeoStats Addon Module
|
||||
** Copyright (c) 2003-2005 Justin Hammond, Mark Hetherington, Jeff Lang
|
||||
** Copyright (c) 2003-2006 Justin Hammond, Mark Hetherington, Jeff Lang
|
||||
**
|
||||
** This program is free software; you can redistribute it and/or modify
|
||||
** it under the terms of the GNU General Public License as published by
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
/* SeenServ - Nickname Seen Service - NeoStats Addon Module
|
||||
** Copyright (c) 2003-2005 Justin Hammond, Mark Hetherington, Jeff Lang
|
||||
** Copyright (c) 2003-2006 Justin Hammond, Mark Hetherington, Jeff Lang
|
||||
**
|
||||
** This program is free software; you can redistribute it and/or modify
|
||||
** it under the terms of the GNU General Public License as published by
|
||||
|
|
Reference in a new issue