summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorChristian Pointner <equinox@anylike.org>2010-01-06 16:10:20 +0000
committerChristian Pointner <equinox@anylike.org>2010-01-06 16:10:20 +0000
commit263547cf175c11e9bd5138f28155ccd4aa36e055 (patch)
treeeb113a24c3736a5af3796ada82501d87122ebaa6 /src
parentcleanup at signal handler (diff)
added info for build with gnutls on windows
Diffstat (limited to 'src')
-rwxr-xr-xsrc/configure1
-rw-r--r--src/main_loop.lua2
2 files changed, 1 insertions, 2 deletions
diff --git a/src/configure b/src/configure
index b07e4fd..f6faa48 100755
--- a/src/configure
+++ b/src/configure
@@ -131,7 +131,6 @@ case $TARGET in
CFLAGS=$CFLAGS' -DWINVER=0x501 -D_WIN32_WINNT -D_WIN32'
LDFLAGS=$LDFLAGS' -lwsock32'
TARGET=mingw
- CRYPTO_LIB=openssl
if [ -z "$LUA_DIR" ]; then
echo "No Lua tree specified, use --with-lua"
exit 1
diff --git a/src/main_loop.lua b/src/main_loop.lua
index b7dd5af..f7f09e9 100644
--- a/src/main_loop.lua
+++ b/src/main_loop.lua
@@ -36,7 +36,7 @@ function main_loop(opt)
local sig = signal.init()
local sock = {}
- sock[1] = echo_server.init("localhost", 4500)
+ sock[1] = echo_server.init("localhost", 9000)
if(sock[1] == nil) then return -1 end
sock[2] = echo_server.init("localhost", 10000)