当前位置:   article > 正文

strongSwan的编译安装_strongswan 源码编译 autoconfig

strongswan 源码编译 autoconfig

基于全新安装的ubuntu 18.04系统。

# cat /etc/issue
Ubuntu 18.04.1 LTS \n \l


首先安装必要的编译工具:

# apt-get update
# apt-get install build-essential
# apt-get install autoconf

如果没有显示的禁用GNU MP(libgmp)加密插件,需要安装libgmp库,GMP插件目前是默认启用的。

# apt-get install libgmp-dev

安装strongSwan编译需要用到的工具,Makefile将使用一下工具生成部分C语言文件,所以必须要configure之前安装这些工具,以免Makefile找不到这些工具的路径。

# apt-get install gperf
# apt-get install flex
# apt-get install bison

例如src/starter/Makefile,如果系统没有gperf工具,configure生成的Makefile文件中GPERF变量为空,导致keywords.c文件为空文件。可在安装gperf之后,重新configure一下,另外要删除之前产生的keywords.c空文件。

  1. GPERF = /usr/bin/gperf
  2. keywords.c: $(srcdir)/keywords.txt keywords.h
  3. $(AM_V_GEN) \
  4. $(GPERF) -m 10 -C -G -D -t < $(srcdir)/keywords.txt > $@

克隆clone代码:

$ git clone git://git.strongswan.org/strongswan.git

采用默认的configure,不加选项:
$ ./configure

  1. strongSwan will be built with the following plugins
  2. -----------------------------------------------------
  3. libstrongswan: aes des rc2 sha2 sha1 md5 mgf1 random nonce x509 revocation constraints pubkey pkcs1 pkcs7 pkcs8 pkcs12 pgp dnskey sshkey pem fips-prf gmp curve25519 xcbc cmac hmac
  4. libcharon: attr kernel-netlink resolve socket-default stroke vici updown xauth-generic counters
  5. libtnccs:
  6. libtpmtss:

最后执行编译安装

$ make install

 

 

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/知新_RL/article/detail/805303
推荐阅读
  

闽ICP备14008679号