checking for libzip… configure: error: system libzip must be upgraded to version >= 0.11
에러 발생시 최소 0.11 버전 이상이어야 한다. 그럼 최신 버전을 설치해보자
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
[root@localhost ~]# yum -y install cmake3 [root@localhost ~]# wget https://libzip.org/download/libzip-1.5.2.tar.gz [root@localhost ~]# tar xvfz libzip-1.5.2.tar.gz [root@localhost ~]# cd libzip-1.5.2 [root@localhost libzip-1.5.2]# mkdir build && cd build [root@localhost build]# cmake3 .. [root@localhost build]# make [root@localhost build]# make install |