summaryrefslogtreecommitdiff
path: root/src/configure
diff options
context:
space:
mode:
Diffstat (limited to 'src/configure')
-rwxr-xr-xsrc/configure26
1 files changed, 13 insertions, 13 deletions
diff --git a/src/configure b/src/configure
index ff6ba01..4d55607 100755
--- a/src/configure
+++ b/src/configure
@@ -64,7 +64,7 @@ MANDIR=''
INSTALLMANPAGE=1
EXAMPLESDIR=''
INSTALLEXAMPLES=1
-MULTITHREAD=0
+# MULTITHREAD=0
BOOST_PREFIX=''
GCRYPT_PREFIX=''
@@ -90,8 +90,8 @@ print_usage() {
echo " --enable-passphrase enable master key and salt passphrase"
echo " --disable-routing disable built-in routing capability"
echo " --enable-routing enable built-in routing capability"
- echo " --enable-new-multithread enable new experimental multithreading"
- echo " --disable-new-multithread disable new experimental multithreading"
+# echo " --enable-new-multithread enable new experimental multithreading"
+# echo " --disable-new-multithread disable new experimental multithreading"
echo " --cross-prefix=<PREFIX> add PREFIX to compiler calls"
echo " --with-boost=<PREFIX> don't use systemwide boost"
echo " --with-gcrypt=<PREFIX> don't use systemwide gcrypt"
@@ -157,12 +157,12 @@ do
--disable-routing)
ROUTING=0
;;
- --enable-new-multithread)
- MULTITHREAD=1
- ;;
- --disable-new-multithread)
- MULTITHREAD=0
- ;;
+# --enable-new-multithread)
+# MULTITHREAD=1
+# ;;
+# --disable-new-multithread)
+# MULTITHREAD=0
+# ;;
--ebuild-compat)
EBUILD_COMPAT=1
;;
@@ -309,10 +309,10 @@ if [ $ROUTING -eq 0 ]; then
echo "disabling built-in routing capability"
fi
-if [ $MULTITHREAD -eq 1 ]; then
- CXXFLAGS=$CXXFLAGS' -DANYTUN_MULTITHREAD'
- echo "enabling new experimental mutlithread"
-fi
+#if [ $MULTITHREAD -eq 1 ]; then
+# CXXFLAGS=$CXXFLAGS' -DANYTUN_MULTITHREAD'
+# echo "enabling new experimental mutlithread"
+#fi
if [ -z "$BINDIR" ]; then
BINDIR=$PREFIX/bin