diff options
-rw-r--r-- | Changes | 1 | ||||
-rw-r--r-- | Makefile.in | 2 | ||||
-rw-r--r-- | version.log | 6 |
3 files changed, 7 insertions, 2 deletions
@@ -14,6 +14,7 @@ Provided by Anope Dev. <dev@anope.org> - 2006 09/10 F Corrected valid nick characters for /OS SVSNICK. [#599] 09/17 F Small mistakes in Dutch language file. [ #00] 09/23 F Restarting under Windows now works correctly [#589] +09/25 F Make now works with multiple threads. [ #00] Provided by Trystan <trystan@nomadirc.net> - 2006 08/20 F Fixed several compiler warnings. [#586] diff --git a/Makefile.in b/Makefile.in index 397c5a2a3..96cde3433 100644 --- a/Makefile.in +++ b/Makefile.in @@ -32,7 +32,7 @@ MAKEARGS = 'CFLAGS=${CFLAGS}' 'CC=${CC}' 'ANOPELIBS=${ANOPELIBS}' \ 'RUNGROUP=${RUNGROUP}' 'MODULE_PATH=${MODULE_PATH}' 'RDB=${RDB}'\ 'MYSQL=${MYSQL}' 'SHARED=${SHARED}' 'MODULEFLAGS=${MODULEFLAGS}' -build: +build: language headers @for i in $(SUBDIRS); do \ echo "*** Building $$i";\ ( cd $$i; ${MAKE} ${MAKEARGS} all; ) \ diff --git a/version.log b/version.log index ad790ce8b..bfc3783bd 100644 --- a/version.log +++ b/version.log @@ -9,10 +9,14 @@ VERSION_MAJOR="1" VERSION_MINOR="7" VERSION_PATCH="15" VERSION_EXTRA="-svn" -VERSION_BUILD="1157" +VERSION_BUILD="1158" # $Log$ # +# BUILD : 1.7.15 (1158) +# BUGS : +# NOTES : Fixed the Makefile to let make work with multiple threads (tested with 3) +# # BUILD : 1.7.15 (1157) # BUGS : 589 # NOTES : Fixed restarting under windows, it should now work correctly |