diff --git a/Changes b/Changes index 0244fa6f4..390c5f10b 100644 --- a/Changes +++ b/Changes @@ -3169,3 +3169,5 @@ This is the 3.2 fixes branch. - Fixed a remote include bug that would cause unnecessary blocking - Fixed a /credits typo - Imported TRE 0.6.7 for win32 +- Imported TRE 0.6.7 for *nix and made use of tre_version to report the version of TRE + in use at startup diff --git a/autoconf/configure.in b/autoconf/configure.in index 4326c5657..ddf10887d 100644 --- a/autoconf/configure.in +++ b/autoconf/configure.in @@ -365,7 +365,7 @@ IRCDLIBS="$IRCDLIBS -lresolv " esac dnl REMEMBER TO CHANGE WITH A NEW RELEASE! -tre_version="0.6.6" +tre_version="0.6.7" AC_MSG_RESULT(extracting TRE regex library) cur_dir=`pwd` cd extras diff --git a/configure b/configure index d0802df74..71a6189f3 100755 --- a/configure +++ b/configure @@ -10026,7 +10026,7 @@ IRCDLIBS="$IRCDLIBS -lresolv " ;; esac -tre_version="0.6.6" +tre_version="0.6.7" echo "$as_me:$LINENO: result: extracting TRE regex library" >&5 echo "${ECHO_T}extracting TRE regex library" >&6 cur_dir=`pwd` diff --git a/extras/tre.tar.gz b/extras/tre.tar.gz index 8cfe89737..016e06575 100644 Binary files a/extras/tre.tar.gz and b/extras/tre.tar.gz differ diff --git a/src/ircd.c b/src/ircd.c index 1e08f1288..db9c7e8e2 100644 --- a/src/ircd.c +++ b/src/ircd.c @@ -1108,6 +1108,7 @@ int InitwIRCD(int argc, char *argv[]) #ifndef _WIN32 fprintf(stderr, "%s", unreallogo); fprintf(stderr, " v%s\n", VERSIONONLY); + fprintf(stderr, " using TRE %s\n", tre_version()); #ifdef USE_SSL fprintf(stderr, " using %s\n", OPENSSL_VERSION_TEXT); #endif