summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Changes4
-rwxr-xr-xconfigure11
-rw-r--r--version.log6
3 files changed, 13 insertions, 8 deletions
diff --git a/Changes b/Changes
index 25631481b..ff2736b55 100644
--- a/Changes
+++ b/Changes
@@ -2,13 +2,13 @@ Anope Version S V N
-------------------
Provided by Anope Dev. <dev@anope.org> - 2004
06/02 F Fixed bug where people who set memoserv notify off were notified [ #79]
-06/02 F Fixed blocker bug in actions.c preventing compile
-05/28 F Fixed botserv bug with HAS_EXCEPTION (chmode +e)
+05/28 F Fixed botserv bug with HAS_EXCEPTION (chmode +e) [ #00]
05/27 A Better /OS MODLIST output to include version information. [ #74]
05/25 A New /CS CLEAR HOPS for ircd's that support halfops. [ #72]
05/24 A New NSNickTracking directive to provide nick tracking. [ #71]
05/21 A Auto enforce upon AKICK addition. [ #63]
05/21 A New file docs/OLDCHANGES contains all change history. [ #65]
+06/03 F Reversed pthread library detection order on ./configure script. [ #67]
05/30 F HostServ functions no longer called for non VHOST capable ircds. [ #77]
05/26 F Repaired /NS GROUP for compiled but disabled MySQL support. [ #73]
05/24 F Fixed typo in example.conf. [ #70]
diff --git a/configure b/configure
index e0d7afd6b..9b5e7dfc2 100755
--- a/configure
+++ b/configure
@@ -861,14 +861,14 @@ else
fi
if [ "$THREAD" = "USE_THREADS" ] ; then
- if run $CC $CC_FLAGS -D_REENTRANT tmp/test.c -pthread -o tmp/test ; then
- CC_FLAGS="$CC_FLAGS -D_REENTRANT"
- CC_LIBS="$CC_LIBS -pthread"
- echo2 "-pthread "
- elif run $CC $CC_FLAGS -D_REENTRANT tmp/test.c -lpthread -o tmp/test ; then
+ if run $CC $CC_FLAGS -D_REENTRANT tmp/test.c -lpthread -o tmp/test ; then
CC_FLAGS="$CC_FLAGS -D_REENTRANT"
CC_LIBS="$CC_LIBS -lpthread"
echo2 "-lpthread "
+ elif run $CC $CC_FLAGS -D_REENTRANT tmp/test.c -pthread -o tmp/test ; then
+ CC_FLAGS="$CC_FLAGS -D_REENTRANT"
+ CC_LIBS="$CC_LIBS -pthread"
+ echo2 "-pthread "
else
THREAD=""
echo ""
@@ -1848,6 +1848,7 @@ echo "done."
# Delete the temporary directory we created.
rm -rf tmp
+rm -f a.out
###########################################################################
diff --git a/version.log b/version.log
index 94f16ee3a..897d2e1f5 100644
--- a/version.log
+++ b/version.log
@@ -8,10 +8,14 @@
VERSION_MAJOR="1"
VERSION_MINOR="7"
VERSION_PATCH="3"
-VERSION_BUILD="162"
+VERSION_BUILD="163"
# $Log$
#
+# BUILD : 1.7.3 (163)
+# BUGS : 67
+# NOTES : Reversed pthread library detection order on ./configure script.
+#
# BUILD : 1.7.3 (162)
# BUGS : 79
# NOTES : Fixed bug 79 (memoserv set notify not working) also fixed a blocker bug in actions.c