diff options
author | geniusdex geniusdex@31f1291d-b8d6-0310-a050-a5561fc1590b <geniusdex geniusdex@31f1291d-b8d6-0310-a050-a5561fc1590b@5417fbe8-f217-4b02-8779-1006273d7864> | 2006-09-25 07:46:51 +0000 |
---|---|---|
committer | geniusdex geniusdex@31f1291d-b8d6-0310-a050-a5561fc1590b <geniusdex geniusdex@31f1291d-b8d6-0310-a050-a5561fc1590b@5417fbe8-f217-4b02-8779-1006273d7864> | 2006-09-25 07:46:51 +0000 |
commit | 483f14f2f8246b744eeab3bbbf6bdfb944d9ea01 (patch) | |
tree | f91b8e0f9e05e7b3b97d00796ad2c1e79295105d | |
parent | b092b4ea23a50981dc2957967224495ddb69c00e (diff) |
BUILD : 1.7.15 (1158) BUGS : NOTES : Fixed the Makefile to let make work with multiple threads (tested with 3)
git-svn-id: svn://svn.anope.org/anope/trunk@1158 31f1291d-b8d6-0310-a050-a5561fc1590b
git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@881 5417fbe8-f217-4b02-8779-1006273d7864
-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 |