summaryrefslogtreecommitdiff
path: root/configure
diff options
context:
space:
mode:
authormichael <michael@82007160-df01-0410-b94d-b575c5fd34c7>2013-01-16 18:30:52 +0000
committermichael <michael@82007160-df01-0410-b94d-b575c5fd34c7>2013-01-16 18:30:52 +0000
commit83f7ffe7e5cb8110964209e86ce8e44b11f4088d (patch)
treefa1f4842002862f58a04f01dcf9675a1b206e5b2 /configure
parentb0f035dd5ef59e0f9096b5e716411bbb7b5afa24 (diff)
- Forward-port -r1750 [IMPORTANT: nick and topic lengths are now configurable
via ircd.conf. A max_nick_length, as well as a max_topic_length configuration option can now be found in the serverinfo{} block] - OpenSSL 0.9.8s and higher is now required in order to enable ssl support git-svn-id: svn://svn.ircd-hybrid.org/svnroot/ircd-hybrid/trunk@1751 82007160-df01-0410-b94d-b575c5fd34c7
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure40
1 files changed, 3 insertions, 37 deletions
diff --git a/configure b/configure
index 90b39af..34beb7d 100755
--- a/configure
+++ b/configure
@@ -813,8 +813,6 @@ enable_epoll
enable_devpoll
enable_poll
enable_select
-with_nicklen
-with_topiclen
enable_halfops
enable_debugging
enable_warnings
@@ -1487,8 +1485,6 @@ Optional Packages:
--with-included-ltdl use the GNU ltdl sources included here
--with-ltdl-include=DIR use the ltdl headers installed in DIR
--with-ltdl-lib=DIR use the libltdl.la installed in DIR
- --with-nicklen=<value> Set nickname length (default 9).
- --with-topiclen=<value> Set topic length (default 160).
Some influential environment variables:
CC C compiler command
@@ -13784,8 +13780,8 @@ $as_echo "disabled" >&6; }
fi
if test "$cf_enable_openssl" != "no"; then :
- { $as_echo "$as_me:${as_lineno-$LINENO}: checking for OpenSSL 0.9.8 or above" >&5
-$as_echo_n "checking for OpenSSL 0.9.8 or above... " >&6; }
+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for OpenSSL 0.9.8s or above" >&5
+$as_echo_n "checking for OpenSSL 0.9.8s or above... " >&6; }
if test "$cross_compiling" = yes; then :
cf_openssl_version_ok=no
else
@@ -13798,7 +13794,7 @@ else
int
main ()
{
- exit(!(OPENSSL_VERSION_NUMBER >= 0x00908000));
+ exit(!(OPENSSL_VERSION_NUMBER >= 0x0090813f));
;
return 0;
}
@@ -14323,36 +14319,6 @@ _ACEOF
-
-# Check whether --with-nicklen was given.
-if test "${with_nicklen+set}" = set; then :
- withval=$with_nicklen; nicklen="$withval"
-else
- nicklen="9"
-fi
-
-
-cat >>confdefs.h <<_ACEOF
-#define NICKLEN ($nicklen)
-_ACEOF
-
-
-
-
-# Check whether --with-topiclen was given.
-if test "${with_topiclen+set}" = set; then :
- withval=$with_topiclen; topiclen="$withval"
-else
- topiclen="160"
-fi
-
-
-cat >>confdefs.h <<_ACEOF
-#define TOPICLEN ($topiclen)
-_ACEOF
-
-
-
# Check whether --enable-halfops was given.
if test "${enable_halfops+set}" = set; then :
enableval=$enable_halfops; halfops="$enableval"