mirror of
https://github.com/void-linux/void-packages.git
synced 2025-07-27 16:02:55 +02:00
h2o: update to 1.5.0.
This commit is contained in:
parent
afdd06b56d
commit
f3ca3b52b0
2 changed files with 4 additions and 28 deletions
|
@ -1,24 +0,0 @@
|
||||||
diff --git a/CMakeLists.txt b/CMakeLists.txt
|
|
||||||
index fe507e9ec25c..91f45a301304 100644
|
|
||||||
--- CMakeLists.txt
|
|
||||||
+++ CMakeLists.txt
|
|
||||||
@@ -19,11 +19,15 @@ SET(WITH_BUNDLED_SSL_DEFAULT "ON")
|
|
||||||
IF ((NOT UNIX) OR CYGWIN)
|
|
||||||
SET(WITH_BUNDLED_SSL_DEFAULT "OFF")
|
|
||||||
ENDIF ((NOT UNIX) OR CYGWIN)
|
|
||||||
-STRING(REGEX MATCH "^(amd64|AMD64|x86_64|x86||i[3456]86)$" PROC_MATCH ${CMAKE_SYSTEM_PROCESSOR})
|
|
||||||
-IF (NOT PROC_MATCH)
|
|
||||||
- MESSAGE("target processor ${CMAKE_SYSTEM_PROCESSOR} is not x86")
|
|
||||||
+IF (NOT ${CMAKE_SYSTEM_PROCESSOR} STREQUAL "")
|
|
||||||
+ STRING(REGEX MATCH "^(amd64|AMD64|x86_64|x86||i[3456]86)$" PROC_MATCH ${CMAKE_SYSTEM_PROCESSOR})
|
|
||||||
+ IF (NOT PROC_MATCH)
|
|
||||||
+ MESSAGE("target processor ${CMAKE_SYSTEM_PROCESSOR} is not x86")
|
|
||||||
+ SET(WITH_BUNDLED_SSL_DEFAULT "OFF")
|
|
||||||
+ ENDIF (NOT PROC_MATCH)
|
|
||||||
+ELSE ()
|
|
||||||
SET(WITH_BUNDLED_SSL_DEFAULT "OFF")
|
|
||||||
-ENDIF (NOT PROC_MATCH)
|
|
||||||
+ENDIF ()
|
|
||||||
IF (OPENSSL_FOUND AND NOT (OPENSSL_VERSION VERSION_LESS "1.0.2"))
|
|
||||||
SET(WITH_BUNDLED_SSL_DEFAULT "OFF")
|
|
||||||
ENDIF (OPENSSL_FOUND AND NOT (OPENSSL_VERSION VERSION_LESS "1.0.2"))
|
|
|
@ -1,20 +1,20 @@
|
||||||
# Template file for 'h2o'
|
# Template file for 'h2o'
|
||||||
pkgname=h2o
|
pkgname=h2o
|
||||||
version=1.4.5
|
version=1.5.0
|
||||||
revision=1
|
revision=1
|
||||||
build_style=cmake
|
build_style=cmake
|
||||||
conf_files="/etc/h2o.conf"
|
conf_files="/etc/h2o.conf"
|
||||||
system_accounts="h2o"
|
system_accounts="h2o"
|
||||||
make_dirs="/var/log/h2o 0750 root root"
|
make_dirs="/var/log/h2o 0750 root root"
|
||||||
hostmakedepends="cmake"
|
hostmakedepends="cmake pkg-config"
|
||||||
makedepends="libressl-devel"
|
makedepends="zlib-devel libressl-devel"
|
||||||
depends="perl"
|
depends="perl"
|
||||||
short_desc="An optimized HTTP server with support for HTTP/1.x and HTTP/2"
|
short_desc="An optimized HTTP server with support for HTTP/1.x and HTTP/2"
|
||||||
maintainer="Eivind Uggedal <eivind@uggedal.com>"
|
maintainer="Eivind Uggedal <eivind@uggedal.com>"
|
||||||
license="MIT"
|
license="MIT"
|
||||||
homepage="https://github.com/h2o/h2o"
|
homepage="https://github.com/h2o/h2o"
|
||||||
distfiles="${homepage}/archive/v${version}.tar.gz"
|
distfiles="${homepage}/archive/v${version}.tar.gz"
|
||||||
checksum=0f60e8d35afad61afc284a7abfa9c9a3b976e8f9faed3f0966fb34056e2e138d
|
checksum=b0700b30e26852d6dca2fc72d3f742ab8a0694ae7e1871e33b0cfb5ce1bdde7e
|
||||||
|
|
||||||
post_install() {
|
post_install() {
|
||||||
vsv h2o
|
vsv h2o
|
||||||
|
|
Loading…
Add table
Reference in a new issue