mirror of
https://github.com/kakwa/uts-server
synced 2025-01-10 13:44:29 +01:00
fix link dl option
This commit is contained in:
parent
cc49f2aa3e
commit
73038b0ec5
@ -3,13 +3,13 @@ project (uts-server)
|
|||||||
include(ExternalProject)
|
include(ExternalProject)
|
||||||
|
|
||||||
|
|
||||||
set(VERSION 0.1.5)
|
set(VERSION 0.1.6)
|
||||||
|
|
||||||
option(DEBUG "compile with debug symbol" OFF)
|
option(DEBUG "compile with debug symbol" OFF)
|
||||||
option(BUNDLE_CIVETWEB "bundle civetweb with uts-server" OFF)
|
option(BUNDLE_CIVETWEB "bundle civetweb with uts-server" OFF)
|
||||||
|
|
||||||
option(STATIC "static linked binary" 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)
|
option(LINK_GCC_S "dynamicaly link gcc_s" OFF)
|
||||||
|
|
||||||
IF(STATIC)
|
IF(STATIC)
|
||||||
|
@ -1,6 +1,11 @@
|
|||||||
Changelogs
|
Changelogs
|
||||||
==========
|
==========
|
||||||
|
|
||||||
|
0.1.6
|
||||||
|
-----
|
||||||
|
|
||||||
|
* [fix ] option declaration for LINK_GCC_S
|
||||||
|
|
||||||
0.1.5
|
0.1.5
|
||||||
-----
|
-----
|
||||||
|
|
||||||
|
@ -14,8 +14,8 @@ with open(tsq_path) as f:
|
|||||||
counter=0
|
counter=0
|
||||||
old_time = time.time()
|
old_time = time.time()
|
||||||
while True:
|
while True:
|
||||||
h1 = httplib.HTTPConnection('localhost:2020')
|
#h1 = httplib.HTTPConnection('localhost:2020')
|
||||||
#h1 = httplib.HTTPSConnection('localhost:2020', context=ssl._create_unverified_context())
|
h1 = httplib.HTTPSConnection('freebsd.kakwa.fr:2020', context=ssl._create_unverified_context())
|
||||||
h1.request('POST', '/', body, {"Content-Type": "application/timestamp-query"})
|
h1.request('POST', '/', body, {"Content-Type": "application/timestamp-query"})
|
||||||
response = h1.getresponse()
|
response = h1.getresponse()
|
||||||
h1.close()
|
h1.close()
|
||||||
|
Loading…
x
Reference in New Issue
Block a user