diff options
-rw-r--r-- | makefile.inc.win32 | 9 | ||||
-rw-r--r-- | src/tools/db-merger.c | 7 | ||||
-rw-r--r-- | src/tools/epona2anope.c | 7 | ||||
-rw-r--r-- | version.log | 6 |
4 files changed, 22 insertions, 7 deletions
diff --git a/makefile.inc.win32 b/makefile.inc.win32 index b10b1656d..6ee9f2a33 100644 --- a/makefile.inc.win32 +++ b/makefile.inc.win32 @@ -1,5 +1,5 @@ # -# Anope IRC Services 1.7.8 for Windows +# Anope IRC Services 1.7.9 for Windows # # Contact us at info@anope.org # @@ -44,7 +44,6 @@ DB_ENCRYPTION=0 # If you want to change the names/locations of files/folders, you # can do that here. PROGRAM=anope.exe -BINDEST=bin DATDEST=data # If you are compiling using VC6, or get __ftol2 errors, please uncomment @@ -53,11 +52,13 @@ DATDEST=data # If you are getting errors such as 'Cannot find wsock32.lib', then change # the following line to the path where the library files can be found. -#LIBPATH=C:\\Program Files\\Microsoft Visual Studio .NET 2003\\Vc7\\lib +# +# Eg: LIBPATH=C:\\Program Files\\Microsoft Visual Studio .NET 2003\\Vc7\\lib +# LIBPATH= # If you edited the line above, uncomment the next line. -LFLAGS=/LIBPATH:"$(LIBPATH)" +#LFLAGS=/LIBPATH:"$(LIBPATH)" ############################################################### diff --git a/src/tools/db-merger.c b/src/tools/db-merger.c index fec9ec9d4..1c8a2d7bc 100644 --- a/src/tools/db-merger.c +++ b/src/tools/db-merger.c @@ -25,11 +25,16 @@ #include <stdlib.h> #include <string.h> #include <stdio.h> -#include <unistd.h> #include <fcntl.h> #include <ctype.h> #include <time.h> +#ifndef _WIN32 + #include <unistd.h> +#else + #include "sysconf.h" +#endif + /* CONFIGURATION BLOCK */ #define NICK_DB_1 "nick1.db" diff --git a/src/tools/epona2anope.c b/src/tools/epona2anope.c index 56f098368..5ac3cfe8f 100644 --- a/src/tools/epona2anope.c +++ b/src/tools/epona2anope.c @@ -25,11 +25,16 @@ #include <stdlib.h> #include <string.h> #include <stdio.h> -#include <unistd.h> #include <fcntl.h> #include <ctype.h> #include <time.h> +#ifndef _WIN32 + #include <unistd.h> +#else + #include "sysconf.h" +#endif + /* CONFIGURATION BLOCK */ #define CHAN_DB_EPONA "chan1.db" diff --git a/version.log b/version.log index c49cffb79..cbc450bf8 100644 --- a/version.log +++ b/version.log @@ -8,10 +8,14 @@ VERSION_MAJOR="1" VERSION_MINOR="7" VERSION_PATCH="8" -VERSION_BUILD="685" +VERSION_BUILD="686" # $Log$ # +# BUILD : 1.7.8 (686) +# BUGS : N/A +# NOTES : Applied small makefile patch for win32 +# # BUILD : 1.7.8 (685) # BUGS : none # NOTES : svn FSFS test. |