From f87071b7e21f8d6b1d942e7521e7623393c8875f Mon Sep 17 00:00:00 2001 From: grimreaper Date: Sat, 23 Nov 2013 22:43:40 -0500 Subject: Fix autogen.sh shebang line /bin/bash does not exist on many systems. In addition this script appears to be POSIX compatible so just use the appropriate shebang line. --- autogen.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/autogen.sh b/autogen.sh index 607aa949..324870a3 100755 --- a/autogen.sh +++ b/autogen.sh @@ -1,4 +1,4 @@ -#!/bin/bash +#!/bin/sh have_automake=false if automake --version < /dev/null > /dev/null 2>&1 ; then -- cgit 1.4.1 From 96fd4949bd2bead40db8bf044fd1429972bbe49e Mon Sep 17 00:00:00 2001 From: PoorDog Date: Sun, 27 Oct 2013 22:05:47 -0400 Subject: Add Techman's World IRC network Closes #813 --- src/common/servlist.c | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/common/servlist.c b/src/common/servlist.c index a3965945..46f99c5d 100644 --- a/src/common/servlist.c +++ b/src/common/servlist.c @@ -463,6 +463,12 @@ static const struct defaultserver def[] = #endif {0, "irc.swiftirc.net/6667"}, + {"Techman's World IRC", 0}, +#ifdef USE_OPENSSL + {0, "irc.techmansworld.com/+6697"}, +#endif + {0, "irc.techmansworld.com/6667"}, + {"TinyCrab", 0, 0, 0, LOGIN_SASL}, {0, "irc.tinycrab.net"}, -- cgit 1.4.1