fix link dl option

This commit is contained in:
kakwa 2017-01-29 18:58:01 +01:00
parent a7955e12fc
commit 5b8d4b301a
3 changed files with 9 additions and 4 deletions

View File

@ -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)

View File

@ -1,6 +1,11 @@
Changelogs
==========
0.1.6
-----
* [fix ] option declaration for LINK_GCC_S
0.1.5
-----

View File

@ -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()