diff options
author | Andrei Belov <defan@nginx.com> | 2018-02-28 10:12:25 +0300 |
---|---|---|
committer | Andrei Belov <defan@nginx.com> | 2018-02-28 10:12:25 +0300 |
commit | b2fb20780ab9ffe260a82bae410e45d56c10aede (patch) | |
tree | a46a0c7d38bb737c11f937467c9a501b8c00fc79 | |
parent | 6aa00fa8d08e3b937f707ce114c7095300118584 (diff) | |
download | unit-b2fb20780ab9ffe260a82bae410e45d56c10aede.tar.gz unit-b2fb20780ab9ffe260a82bae410e45d56c10aede.tar.bz2 |
Packages: added essential build dependencies.
-rw-r--r-- | pkg/deb/Makefile | 2 | ||||
-rw-r--r-- | pkg/rpm/Makefile | 3 |
2 files changed, 3 insertions, 2 deletions
diff --git a/pkg/deb/Makefile b/pkg/deb/Makefile index 747a2576..df2990ba 100644 --- a/pkg/deb/Makefile +++ b/pkg/deb/Makefile @@ -12,7 +12,7 @@ SRCDIR= unit-$(VERSION) CODENAME = $(shell lsb_release -cs) -BUILD_DEPENDS_unit = debhelper devscripts libxml2-utils lintian lsb-release xsltproc +BUILD_DEPENDS_unit = build-essential debhelper devscripts fakeroot libxml2-utils lintian lsb-release xsltproc BUILD_DEPENDS = $(BUILD_DEPENDS_unit) MODULES= diff --git a/pkg/rpm/Makefile b/pkg/rpm/Makefile index 2078fe3b..881f0a76 100644 --- a/pkg/rpm/Makefile +++ b/pkg/rpm/Makefile @@ -8,13 +8,14 @@ DEFAULT_RELEASE := 1 VERSION ?= $(DEFAULT_VERSION) RELEASE ?= $(DEFAULT_RELEASE) -BUILD_DEPENDS_unit = libxml2 libxslt rpm-build rpmlint +BUILD_DEPENDS_unit = gcc libxml2 libxslt rpm-build rpmlint BUILD_DEPENDS = $(BUILD_DEPENDS_unit) ifeq ($(shell rpm --eval "%{?rhel}"), 6) OSVER = centos6 else ifeq ($(shell rpm --eval "%{?rhel}"), 7) OSVER = centos7 +BUILD_DEPENDS += which else ifeq ($(shell rpm --eval "%{?amzn}"), 1) OSVER = amazonlinux1 BUILD_DEPENDS += system-rpm-config |