发布时间:2019-09-09 18:04:14
源码点击(此处)折叠或打开#include <stdio.h>#include <curl/curl.h>int main() { CURL *curl; CURLcode res; //FILE.........【阅读全文】
发布时间:2018-11-22 18:01:19
fatal error: glibconfig.h: No such file or directorysudo ln -s /usr/lib/x86_64-linux-gnu/glib-2.0/include/glibconfig.h /usr/include/glib-2.0/ ......【阅读全文】
发布时间:2018-04-25 14:52:20
Also look at CURLOPT_SSL_VERIFYHOST: 1 to check the existence of a common name in the SSL peer certificate. 2 to check the existence of a common name and also verify that it matches the hostname provided.......【阅读全文】
发布时间:2018-03-14 16:44:26
cmake_minimum_required(VERSION 2.8.4)project(BoostTest)message(STATUS "start running cmake...")find_package(Boost 1.57.0 COMPONENTS system filesystem REQUIRED)if(Boost_FOUND) message(STATUS "Boost_INCLUDE_DIRS: ${Boost_INCLUDE_DIRS}") message(STATUS "Boost_LIBRARIES: ${Boost_LIBRARI.........【阅读全文】
发布时间:2016-10-11 19:36:27
代码如下点击(此处)折叠或打开#include #include int main(int argc, char **argv){ MYSQL *con = mysql_init(NULL);.........【阅读全文】