Skip to content
Snippets Groups Projects
Commit 59f68881 authored by dmitriy.gerasimov's avatar dmitriy.gerasimov
Browse files

Merge branch 'bugs-4415' into 'master'

bugs-4415

See merge request !39
parents 618770e6 a58336cc
No related branches found
No related tags found
2 merge requests!42Fix cfg 1 example,!39bugs-4415
...@@ -70,7 +70,6 @@ target_compile_options(dap_stream PRIVATE "-fpic" ) ...@@ -70,7 +70,6 @@ target_compile_options(dap_stream PRIVATE "-fpic" )
target_compile_options(dap_stream_ch PRIVATE "-fpic" ) target_compile_options(dap_stream_ch PRIVATE "-fpic" )
target_compile_options(dap_stream_ch_chain_net PRIVATE "-fpic" ) target_compile_options(dap_stream_ch_chain_net PRIVATE "-fpic" )
target_compile_options(dap_stream_ch_chain PRIVATE "-fpic" ) target_compile_options(dap_stream_ch_chain PRIVATE "-fpic" )
target_compile_options(dap_udp_server PRIVATE "-fpic" )
target_compile_options(dap_chain_net_srv PRIVATE "-fpic" ) target_compile_options(dap_chain_net_srv PRIVATE "-fpic" )
if(NOT WIN32) if(NOT WIN32)
target_compile_options(dap_chain_net_srv_vpn PRIVATE "-fpic" ) target_compile_options(dap_chain_net_srv_vpn PRIVATE "-fpic" )
...@@ -145,7 +144,6 @@ target_compile_options(dap_stream PRIVATE "-fpic" ) ...@@ -145,7 +144,6 @@ target_compile_options(dap_stream PRIVATE "-fpic" )
target_compile_options(dap_stream_ch PRIVATE "-fpic" ) target_compile_options(dap_stream_ch PRIVATE "-fpic" )
target_compile_options(dap_stream_ch_chain_net PRIVATE "-fpic" ) target_compile_options(dap_stream_ch_chain_net PRIVATE "-fpic" )
target_compile_options(dap_stream_ch_chain PRIVATE "-fpic" ) target_compile_options(dap_stream_ch_chain PRIVATE "-fpic" )
target_compile_options(dap_udp_server PRIVATE "-fpic" )
target_compile_options(dap_chain_net_srv PRIVATE "-fpic" ) target_compile_options(dap_chain_net_srv PRIVATE "-fpic" )
if (NOT WIN32) if (NOT WIN32)
target_compile_options(dap_chain_net_srv_vpn PRIVATE "-fpic" ) target_compile_options(dap_chain_net_srv_vpn PRIVATE "-fpic" )
......
...@@ -27,6 +27,6 @@ PyObject *dap_server_core_listen(PyObject *self, PyObject *args){ ...@@ -27,6 +27,6 @@ PyObject *dap_server_core_listen(PyObject *self, PyObject *args){
if (type > 1) if (type > 1)
return NULL; return NULL;
PyObject *obj = _PyObject_New(&dapServer_dapServerType); PyObject *obj = _PyObject_New(&dapServer_dapServerType);
((PyDapServerObject*)obj)->t_server = dap_server_new(((PyDapEventsObject*)events)->t_events, addr, port, type); ((PyDapServerObject*)obj)->t_server = dap_server_new(((PyDapEventsObject*)events)->t_events, addr, port, type, NULL);
return Py_BuildValue("O", obj); return Py_BuildValue("O", obj);
} }
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment