在线笔记
全部博文(596)
发布时间:2013-03-21 09:34:51
问题:1)设置CFLAGS后,编译无效2)修改Makefile.am,编译无效解决方法:./configure重新生成Makefile......【阅读全文】
发布时间:2013-03-20 14:57:01
8.9 C++ SupportAutomake includes full support for C++. Any package including C++ code must define the output variable CXX in ‘configure.ac’;the simplest way to do this is to use the AC_PROG_CXX macro (see Section “ParticularProgram Checks” in The Autoconf Manual). .........【阅读全文】
发布时间:2013-03-19 18:59:29
##程序#bin_PROGRAMS = hello #Makefile.in将会生成一个程序,名为hellohello_SOURCES = hello.c util.c #程序的依赖文件hello_LDADD = libcpio.a #依赖的库Libtool 抽象静态库和动态库为Libtool libraryes。Libtool使用.la作为后缀,可以被指定静态库、动态库或二者都包括。静态库或动态库的依赖文件(比.........【阅读全文】
发布时间:2013-03-18 10:40:33
http://www.ibm.com/developerworks/cn/linux/thread/posix_threadapi/part4/线程终止方式一般来说,Posix的线程终止有两种情况:正常终止和非正常终止。线程主动调用pthread_exit()或者从线程函数中return都将使线程正常退出,这是可预见的退出方式;非正常终止是线程在其他线程的干预下,或者由于自身运行出错(比.........【阅读全文】
发布时间:2013-03-17 21:09:48
步骤:1)初始化环境a.新建证书存储区X509_STORE_new()b.新建证书校验上下文X509_STORE_CTX_new()2)导入根证书a.读取CA证书,从DER编码格式化为X509结构d2i_X509()b.将CA证书导入证书存储区X509_STORE_add_cert()3)导入要校验的证书testa.读取证书test,从DER编码格式化为X509结构d2i_X509()b.在证书校验上下.........【阅读全文】