diff options
author | Andrei Belov <defan@nginx.com> | 2018-09-20 16:14:29 +0300 |
---|---|---|
committer | Andrei Belov <defan@nginx.com> | 2018-09-20 16:14:29 +0300 |
commit | fea05e30653a4c660d538cc6915494d7145ad969 (patch) | |
tree | e36ff5b55bc54e899a7120c16b9962e412e33cf1 /pkg/rpm/Makefile | |
parent | 510c2e15c5b55a48f15f0ba680c5e82a2db5456f (diff) | |
download | unit-fea05e30653a4c660d538cc6915494d7145ad969.tar.gz unit-fea05e30653a4c660d538cc6915494d7145ad969.tar.bz2 |
Packages: enabled OpenSSL support.
Diffstat (limited to 'pkg/rpm/Makefile')
-rw-r--r-- | pkg/rpm/Makefile | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/pkg/rpm/Makefile b/pkg/rpm/Makefile index 656eea0b..ef7f3361 100644 --- a/pkg/rpm/Makefile +++ b/pkg/rpm/Makefile @@ -37,9 +37,9 @@ BUILD_DEPENDS_unit += system-rpm-config endif ifneq (,$(findstring $(OSVER),opensuse-leap opensuse-tumbleweed sles)) -BUILD_DEPENDS_unit += libxml2-tools libxslt1 +BUILD_DEPENDS_unit += libxml2-tools libxslt1 libopenssl-devel else -BUILD_DEPENDS_unit += libxml2 libxslt +BUILD_DEPENDS_unit += libxml2 libxslt openssl-devel endif BUILD_DEPENDS = $(BUILD_DEPENDS_unit) @@ -101,7 +101,8 @@ CONFIGURE_ARGS=\ --control="unix:/var/run/control.unit.sock" \ --pid=/var/run/unit.pid \ --log=/var/log/unit.log \ - --tests + --tests \ + --openssl export CR=\\n |