1
0
mirror of https://github.com/anope/anope.git synced 2026-06-12 19:14:47 +02:00

BUILD : 1.7.5 (321) BUGS : none NOTES : Fixed make distclean and updated hun.l

git-svn-id: svn://svn.anope.org/anope/trunk@321 31f1291d-b8d6-0310-a050-a5561fc1590b


git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@199 5417fbe8-f217-4b02-8779-1006273d7864
This commit is contained in:
dane dane@31f1291d-b8d6-0310-a050-a5561fc1590b
2004-08-11 14:54:43 +00:00
parent 93ccd1541e
commit 7bbc80af47
6 changed files with 751 additions and 744 deletions
+3 -2
View File
@@ -4,10 +4,11 @@ Provided by Anope Dev. <dev@anope.org> - 2004
07/17 A Switched to autoconf for configure script. [ #00]
07/05 A Warning when LocalAddress conflicts with RemoteServer. [#118]
06/18 A Added proper Bahamut1.8 support. [ #55]
08/11 F Proper make distclean to leave source spotless. [ #00]
08/11 F Fixed support for Ultimate, Rage and Viagra. [#113]
08/07 F configure will be ok if you dont have mysqlclient lib file. [ #00]
08/10 F Fixed previous BotServ buffer fix. [#131]
08/10 F Updated documentation to reflect the changed build process. [ #00]
08/07 F configure will be ok if you dont have mysqlclient lib file. [ #00]
07/23 F Fixed BotServ buffer. [#131]
07/22 F Free NSNickTracking when a user quits. [#126]
07/22 F NOOP bug with wildcards. [#115]
@@ -32,7 +33,7 @@ Provided by Janos Kapitany <sarkanyka@cjbchat.hu>
08/04 A New language file hun.l (Hungarian) [ #00]
Provided by Mateusz Szczyrzyca <annihilator@ircnet.pl> - 2004
08/04 A New language file pl.l (Polish) [ #00]
08/11 A New language file pl.l (Polish) [ #00]
Anope Version 1.7.4
-------------------
+3 -1
View File
@@ -46,7 +46,9 @@ clean:
(cd src ; ${MAKE} ${MAKEARGS} clean )
distclean: clean
(cd include ; ${MAKE} ${MAKEARGS} distclean)
(cd lang ; ${MAKE} ${MAKEARGS} distclean )
(cd include ; ${MAKE} ${MAKEARGS} distclean )
(cd src ; ${MAKE} ${MAKEARGS} distclean )
rm -f config.log config.status config.cache Makefile
install: DUMMY
+1
View File
@@ -15,6 +15,7 @@ LANGCOMP = ./langcomp
all: $(LANGOBJS)
distclean: clean spotless
install: all
mkdir -p $(DATDEST)/languages
+733 -740
View File
File diff suppressed because it is too large Load Diff
+6
View File
@@ -31,6 +31,8 @@ MAKEARGS = 'CFLAGS=${CFLAGS}' 'CC=${CC}' 'ANOPELIBS=${ANOPELIBS}' \
all: services
distclean: clean spotless
services: $(OBJS)
$(CC) $(CFLAGS) $(OBJS) $(ANOPELIBS) $(MLIBS) -o $@ $(LDFLAGS)
@@ -76,9 +78,13 @@ modules: DUMMY
(cd modules ; ./configure ; ${MAKE} ${MAKEARGS} all)
clean:
@touch modules/Makefile.inc # Horribly ugly...
(cd modules ; ${MAKE} ${MAKEARGS} clean)
rm -f *.o services a.out
spotless: clean
(cd modules ; ${MAKE} ${MAKEARGS} distclean)
install: services
test -d ${BINDEST} || mkdir ${BINDEST}
$(INSTALL) services $(BINDEST)/services
+5 -1
View File
@@ -8,10 +8,14 @@
VERSION_MAJOR="1"
VERSION_MINOR="7"
VERSION_PATCH="5"
VERSION_BUILD="320"
VERSION_BUILD="321"
# $Log$
#
# BUILD : 1.7.5 (321)
# BUGS : none
# NOTES : Fixed make distclean and updated hun.l
#
# BUILD : 1.7.5 (320)
# BUGS :
# NOTES : Fixed support for Ultimate, Rage and Viagra.