summaryrefslogtreecommitdiffhomepage
path: root/pkg/rpm/unit.spec.in
diff options
context:
space:
mode:
authorAndrei Belov <defan@nginx.com>2017-12-28 20:38:36 +0300
committerAndrei Belov <defan@nginx.com>2017-12-28 20:38:36 +0300
commitcb3c7dd40c614b99bb430a35399b3b2085a314ed (patch)
tree58febf64bd97ce1f0f13c1176fa4c13e50d149eb /pkg/rpm/unit.spec.in
parentd22aa884058c46fde2d03f3cc717807fddadba4d (diff)
downloadunit-cb3c7dd40c614b99bb430a35399b3b2085a314ed.tar.gz
unit-cb3c7dd40c614b99bb430a35399b3b2085a314ed.tar.bz2
Packages: hardening flags for rpm.
Diffstat (limited to 'pkg/rpm/unit.spec.in')
-rw-r--r--pkg/rpm/unit.spec.in9
1 files changed, 8 insertions, 1 deletions
diff --git a/pkg/rpm/unit.spec.in b/pkg/rpm/unit.spec.in
index 94439be0..45e93dfd 100644
--- a/pkg/rpm/unit.spec.in
+++ b/pkg/rpm/unit.spec.in
@@ -18,6 +18,9 @@ BuildRequires: systemd
Requires: systemd
%endif
+%define CC_OPT %{optflags} -fPIC
+%define LD_OPT -Wl,-z,relro -Wl,-z,now -pie
+
%define CONFIGURE_ARGS $(echo "%%CONFIGURE_ARGS%%")
Provides: nginx-unit
@@ -61,12 +64,16 @@ dynamically via an API.
./configure \
%{CONFIGURE_ARGS} \
--modules=%{_libdir}/unit/debug-modules \
+ --cc-opt="%{CC_OPT}" \
+ --ld-opt="%{LD_OPT}" \
--debug
%{__make} %{?_smp_mflags}
%{__mv} build build-debug
./configure \
%{CONFIGURE_ARGS} \
- --modules=%{_libdir}/unit/modules
+ --modules=%{_libdir}/unit/modules \
+ --cc-opt="%{CC_OPT}" \
+ --ld-opt="%{LD_OPT}"
%{__make} %{?_smp_mflags}
%install