1
0
mirror of https://github.com/anope/anope.git synced 2026-07-08 13:43:14 +02:00

BUILD : 1.7.14 (1050) BUGS : 498 NOTES : Removed last traces of threading support and added a W-flag in our version response if we run on windows

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


git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@774 5417fbe8-f217-4b02-8779-1006273d7864
This commit is contained in:
geniusdex geniusdex@31f1291d-b8d6-0310-a050-a5561fc1590b
2006-06-14 14:29:37 +00:00
parent 33a07509f5
commit 4b2c1c6512
8 changed files with 885 additions and 2828 deletions
+2
View File
@@ -1,6 +1,7 @@
Anope Version S V N
--------------------
Provided by Anope Dev. <dev@anope.org> - 2006
06/14 A Indication in the version string if we're running on win32. [ #00]
04/08 F Fixed Charybdis support on win32. [#487]
04/08 F Fixed thread stuff on windows. [#488]
04/08 F Fixed SGLine stuff on inspircd (not supported). [#489]
@@ -21,6 +22,7 @@ Provided by Anope Dev. <dev@anope.org> - 2006
06/13 F Walking memory using wrong pointer in moduleGetConfigDirective. [#516]
06/13 F Added cleanup code to tools/anopesmtp. [#464]
06/13 F Fixed a lot of redundant function declarations. [#510]
06/14 F Removed last traces of threading support. [#498]
Provided by ThaPrince <jon@vile.com> - 2006
05/19 A Plexus 3 support. [ #00]
Vendored
+829 -226
View File
File diff suppressed because it is too large Load Diff
Vendored
+45 -2573
View File
File diff suppressed because it is too large Load Diff
-9
View File
@@ -95,14 +95,6 @@ if test "$x" = "1"; then
fi
])
DIS_THREAD="Threads: No"
ACX_PTHREAD([
CFLAGS="$CFLAGS $PTHREAD_CFLAGS"
ANOPELIBS="$ANOPELIBS$PTHREAD_LIBS "
AC_DEFINE_UNQUOTED(USE_THREADS,1,"Use threads")
DIS_THREAD="Threads: Yes"
])
AC_SUBST(ANOPELIBS)
AC_SUBST(LDFLAGS)
@@ -261,7 +253,6 @@ AC_OUTPUT
cat <<EOT
$DIS_MODULES
$DIS_THREAD
$DIS_MYSQL
All done! Now run "make" (or possibly "gmake") to compile Anope.
-10
View File
@@ -33,9 +33,6 @@
/* Define to 1 if you have the <memory.h> header file. */
#undef HAVE_MEMORY_H
/* Define if you have POSIX threads libraries and header files. */
#undef HAVE_PTHREAD
/* Define to 1 if you have the `setgrent' function. */
#undef HAVE_SETGRENT
@@ -114,10 +111,6 @@
/* Define to the version of this package. */
#undef PACKAGE_VERSION
/* Define to the necessary symbol if this constant uses a non-standard name on
your system. */
#undef PTHREAD_CREATE_JOINABLE
/* "Run group" */
#undef RUNGROUP
@@ -154,9 +147,6 @@
/* "Use RDB" */
#undef USE_RDB
/* "Use threads" */
#undef USE_THREADS
/* Define to `short' if <sys/types.h> does not define. */
#undef int16_t
+3 -7
View File
@@ -68,15 +68,11 @@ cat >version.h <<EOF
# define VER_ENCRYPTION
#endif
#ifdef USE_THREADS
# define VER_THREAD "T"
#if defined(_WIN32)
# define VER_OS "W"
#else
# define VER_THREAD
#endif
/* the following two could be removed from the codebase */
# define VER_OS
# define VER_GHBNR
#endif
#if defined(USE_MYSQL)
# define VER_MYSQL "Q"
+1 -2
View File
@@ -79,8 +79,7 @@ const char version_build[] =
"build #" BUILD ", compiled " __DATE__ " " __TIME__;
/* the space is needed cause if you build with nothing it will complain */
const char version_flags[] =
" " VER_DEBUG VER_ENCRYPTION VER_THREAD VER_OS VER_GHBNR VER_MYSQL
VER_MODULE;
" " VER_DEBUG VER_ENCRYPTION VER_OS VER_MYSQL VER_MODULE;
extern char *mod_current_buffer;
+5 -1
View File
@@ -9,10 +9,14 @@ VERSION_MAJOR="1"
VERSION_MINOR="7"
VERSION_PATCH="14"
VERSION_EXTRA=""
VERSION_BUILD="1049"
VERSION_BUILD="1050"
# $Log$
#
# BUILD : 1.7.14 (1050)
# BUGS : 498
# NOTES : Removed last traces of threading support and added a W-flag in our version response if we run on windows
#
# BUILD : 1.7.14 (1049)
# BUGS :
# NOTES : Two small win32 fixes...