this is 1.1
This commit is contained in:
parent
b19d84d89e
commit
d5d1d3da8d
4 changed files with 20 additions and 9 deletions
10
Makefile.in
10
Makefile.in
|
@ -12,7 +12,7 @@ SRCS= SecureServ.c SecureServ_help.c OnJoinBot.c FloodCheck.c Helpers.c scan.c e
|
|||
OBJS= ${SRCS:.c=.o}
|
||||
TARGET= secureserv.so
|
||||
DOCS=README.SecureServ SecureServ.settings README.SecureServ.html html.css
|
||||
DATA=viri.dat customviri.dat
|
||||
DATA=viri.dat
|
||||
DISTFILES = $(SRCS) $(DATA) $(DOCS) modconfig.h.in configure install-sh ChangeLog Makefile.in SecureServ.h RelNotes.txt
|
||||
DISTDIR = @PACKAGE@-@VERSION@
|
||||
|
||||
|
@ -30,13 +30,9 @@ clean:
|
|||
install: module
|
||||
$(INSTALL) -m 644 $(TARGET) $(DIRECTORY)
|
||||
$(INSTALL) -m 644 $(DOCS) $(DIRECTORY)../doc/
|
||||
# Note after 1.0 release, change these
|
||||
if ! test -f $(DIRECTORY)../data/viri.dat ; then $(INSTALL) -m 644 viri.dat $(DIRECTORY)../data/ ; fi
|
||||
# if ! test -f $(DIRECTORY)../data/customviri.dat ; then $(INSTALL) -m 644 customviri.dat $(DIRECTORY)../data/ ; fi
|
||||
# to this
|
||||
# if ! test -f $(DIRECTORY)../data/viri.dat ; then $(INSTALL) -m 644 viri.dat $(DIRECTORY)../data/ ; fi
|
||||
@if ! test -f $(DIRECTORY)../data/viri.dat ; then $(INSTALL) -m 644 viri.dat $(DIRECTORY)../data/ ; fi
|
||||
@cd $(DIRECTORY)..; \
|
||||
if ! test -f $(DIRECTORY)../kpconf/SecureServ ; then ./kptool -i $(DIRECTORY)../doc/SecureServ.settings; fi
|
||||
if ! test -f $(DIRECTORY)../kpconf/SecureServ ; then ./kptool -i $(DIRECTORY)../doc/SecureServ.settings; fi
|
||||
|
||||
dist:
|
||||
@echo -n "Creating Directories"
|
||||
|
|
|
@ -8,6 +8,21 @@ g = {
|
|||
RealName (S) = "Can't Get Enough";
|
||||
User (S) = "Blah";
|
||||
}
|
||||
Sven = {
|
||||
Host (S) = "h48n3c1.bredband.skanova.com";
|
||||
RealName (S) = "Sven";
|
||||
User (S) = "Sven";
|
||||
}
|
||||
Scarab = {
|
||||
Host (S) = "dsl-283-923-23-847.arcor-ip.net.jp";
|
||||
RealName (S) = "Mr Qaz";
|
||||
User (S) = "~email";
|
||||
}
|
||||
Cledus = {
|
||||
Host (S) = "ip768-14-131-1924.uh.ix.cox.net";
|
||||
RealName (S) = "fwsgh1";
|
||||
User (S) = "~Fud1";
|
||||
}
|
||||
Rubarb = {
|
||||
Host (S) = "dialup-01.kpa.ida.myisp.id";
|
||||
RealName (S) = "Chat to me";
|
||||
|
|
2
configure
vendored
2
configure
vendored
|
@ -1265,7 +1265,7 @@ ac_compiler_gnu=$ac_cv_c_compiler_gnu
|
|||
ac_config_headers="$ac_config_headers modconfig.h"
|
||||
|
||||
PACKAGE=SecureServ
|
||||
VERSION=1.0
|
||||
VERSION=1.1
|
||||
DIRINST=~/NeoStats/
|
||||
|
||||
CFLAGS="$CFLAGS -O2"
|
||||
|
|
|
@ -2,7 +2,7 @@ dnl Process this file with autoconf to produce a configure script.
|
|||
AC_INIT(SecureServ.c)
|
||||
AC_CONFIG_HEADER(modconfig.h)
|
||||
PACKAGE=SecureServ
|
||||
VERSION=1.0
|
||||
VERSION=1.1
|
||||
DIRINST=~/NeoStats/
|
||||
AC_PREFIX_DEFAULT(~/NeoStats/)
|
||||
CFLAGS="$CFLAGS -O2"
|
||||
|
|
Reference in a new issue