소스 검색

php7.4 zip

jqh 5 년 전
부모
커밋
6383b0723a
1개의 변경된 파일3개의 추가작업 그리고 2개의 파일을 삭제
  1. 3 2
      .travis.yml

+ 3 - 2
.travis.yml

@@ -21,8 +21,9 @@ install:
   - wget https://libzip.org/download/libzip-1.6.1.tar.gz
   - tar -zxvf libzip-1.6.1.tar.gz
   - cd libzip-1.6.1
-  - ./configure && make && make install
-  - cd ..
+  - mkdir build && cd build && cmake
+  - make && make install
+  - cd ../..
   - wget https://pecl.php.net/get/zip-1.18.2.tgz
   - tar -zxvf zip-1.18.2.tgz
   - cd zip-1.18.2 && phpize clean && phpize && ./configure && make clean && make && make install