mirror of
https://github.com/unrealircd/unrealircd.git
synced 2026-07-08 14:23:13 +02:00
Added TRE compiling
This commit is contained in:
@@ -2694,3 +2694,4 @@ seen. gmtime warning still there
|
||||
- Removed all the FLAGS_TS8 stuff (no longer used)
|
||||
- Fixed some operoverride bugs regarding halfops found by Sinus (#0001465)
|
||||
- Cleaned up the /kick code to make it a bit faster
|
||||
- Reactivated TRE compile
|
||||
|
||||
+13
-9
@@ -370,15 +370,19 @@ IRCDLIBS="$IRCDLIBS -lresolv "
|
||||
;;
|
||||
esac
|
||||
|
||||
dnl AC_MSG_RESULT(configuring TRE regex library)
|
||||
dnl cur_dir=`pwd`
|
||||
dnl cd extras/tre
|
||||
dnl ./configure --disable-agrep --disable-shared --disable-system-abi --disable-wchar --disable-multibyte --prefix=$cur_dir/extras/regexp
|
||||
dnl AC_MSG_RESULT(compiling TRE regex library)
|
||||
dnl make
|
||||
dnl AC_MSG_RESULT(installing TRE regex library)
|
||||
dnl make install
|
||||
dnl cd $cur_dir
|
||||
AC_MSG_RESULT(extracting TRE regex library)
|
||||
cur_dir=`pwd`
|
||||
cd extras
|
||||
tar xfz tre.tar.gz
|
||||
dnl REMEMBER TO CHANGE WITH A NEW RELEASE!
|
||||
AC_MSG_RESULT(configuring TRE regex library)
|
||||
cd tre-0.6.4
|
||||
./configure --disable-agrep --disable-shared --disable-system-abi --disable-wchar --disable-multibyte --prefix=$cur_dir/extras/regexp
|
||||
AC_MSG_RESULT(compiling TRE regex library)
|
||||
make
|
||||
AC_MSG_RESULT(installing TRE regex library)
|
||||
make install
|
||||
cd $cur_dir
|
||||
AC_OUTPUT(Makefile src/modules/Makefile unreal ircdcron/ircdchk)
|
||||
chmod 0700 unreal
|
||||
chmod 0700 ircdcron/ircdchk
|
||||
|
||||
@@ -9987,6 +9987,22 @@ IRCDLIBS="$IRCDLIBS -lresolv "
|
||||
;;
|
||||
esac
|
||||
|
||||
echo "$as_me:$LINENO: result: extracting TRE regex library" >&5
|
||||
echo "${ECHO_T}extracting TRE regex library" >&6
|
||||
cur_dir=`pwd`
|
||||
cd extras
|
||||
tar xfz tre.tar.gz
|
||||
echo "$as_me:$LINENO: result: configuring TRE regex library" >&5
|
||||
echo "${ECHO_T}configuring TRE regex library" >&6
|
||||
cd tre-0.6.4
|
||||
./configure --disable-agrep --disable-shared --disable-system-abi --disable-wchar --disable-multibyte --prefix=$cur_dir/extras/regexp
|
||||
echo "$as_me:$LINENO: result: compiling TRE regex library" >&5
|
||||
echo "${ECHO_T}compiling TRE regex library" >&6
|
||||
make
|
||||
echo "$as_me:$LINENO: result: installing TRE regex library" >&5
|
||||
echo "${ECHO_T}installing TRE regex library" >&6
|
||||
make install
|
||||
cd $cur_dir
|
||||
ac_config_files="$ac_config_files Makefile src/modules/Makefile unreal ircdcron/ircdchk"
|
||||
cat >confcache <<\_ACEOF
|
||||
# This file is a shell script that caches the results of configure
|
||||
|
||||
Reference in New Issue
Block a user