From 5b8d4b301a1de340832a908dee255acb376f6a5f Mon Sep 17 00:00:00 2001 From: kakwa Date: Sun, 29 Jan 2017 18:58:01 +0100 Subject: [PATCH] fix link dl option --- CMakeLists.txt | 4 ++-- ChangeLog.rst | 5 +++++ tests/stress.py | 4 ++-- 3 files changed, 9 insertions(+), 4 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index e9707d8..7726138 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -3,13 +3,13 @@ project (uts-server) include(ExternalProject) -set(VERSION 0.1.5) +set(VERSION 0.1.6) option(DEBUG "compile with debug symbol" OFF) option(BUNDLE_CIVETWEB "bundle civetweb with uts-server" OFF) option(STATIC "static linked binary" OFF) -option(LINKDL "dynamicaly link dl" OFF) +option(LINK_DL "dynamicaly link dl" OFF) option(LINK_GCC_S "dynamicaly link gcc_s" OFF) IF(STATIC) diff --git a/ChangeLog.rst b/ChangeLog.rst index 0c88c96..0849be3 100644 --- a/ChangeLog.rst +++ b/ChangeLog.rst @@ -1,6 +1,11 @@ Changelogs ========== +0.1.6 +----- + +* [fix ] option declaration for LINK_GCC_S + 0.1.5 ----- diff --git a/tests/stress.py b/tests/stress.py index 25e397a..ca144be 100755 --- a/tests/stress.py +++ b/tests/stress.py @@ -14,8 +14,8 @@ with open(tsq_path) as f: counter=0 old_time = time.time() while True: - h1 = httplib.HTTPConnection('localhost:2020') - #h1 = httplib.HTTPSConnection('localhost:2020', context=ssl._create_unverified_context()) + #h1 = httplib.HTTPConnection('localhost:2020') + h1 = httplib.HTTPSConnection('freebsd.kakwa.fr:2020', context=ssl._create_unverified_context()) h1.request('POST', '/', body, {"Content-Type": "application/timestamp-query"}) response = h1.getresponse() h1.close()