forked from pool/haproxy
Marcus Rueckert
1eab77f05f
OBS-URL: https://build.opensuse.org/package/show/server:http/haproxy?expand=0&rev=128
41 lines
1.1 KiB
Diff
41 lines
1.1 KiB
Diff
Index: Makefile
|
|
===================================================================
|
|
--- Makefile.orig
|
|
+++ Makefile
|
|
@@ -674,6 +674,35 @@ OPTIONS_CFLAGS += -DUSE_TFO
|
|
BUILD_OPTIONS += $(call ignore_implicit,USE_TFO)
|
|
endif
|
|
|
|
+# PIE
|
|
+ifneq ($(USE_PIE),)
|
|
+OPTIONS_CFLAGS += -DUSE_PIE
|
|
+BUILD_OPTIONS += $(call ignore_implicit,USE_PIE)
|
|
+OPTIONS_LDFLAGS += -pie
|
|
+# still need to figure out how to express this conditional in the makefile
|
|
+# %ifarch s390 s390x %sparc
|
|
+# PIEFLAGS="-fPIE"
|
|
+# %else
|
|
+# PIEFLAGS="-fpie"
|
|
+# %endif
|
|
+# PIE_FLAGS.s390 = -fPIE
|
|
+# PIE_FLAGS.i386 = -fpie
|
|
+# SEC_FLAGS += $(PIE_FLAGS.$(ARCH))
|
|
+OPTIONS_CFLAGS += -fpie
|
|
+endif
|
|
+
|
|
+ifneq ($(USE_STACKPROTECTOR),)
|
|
+OPTIONS_CFLAGS += -DUSE_STACKPROTECTOR
|
|
+BUILD_OPTIONS += $(call ignore_implicit,USE_STACKPROTECTOR)
|
|
+OPTIONS_CFLAGS += -fstack-protector
|
|
+endif
|
|
+
|
|
+ifneq ($(USE_RELRO_NOW),)
|
|
+OPTIONS_CFLAGS += -DUSE_RELRO_NOW
|
|
+BUILD_OPTIONS += $(call ignore_implicit,USE_RELRO_NOW)
|
|
+OPTIONS_LDFLAGS += -Wl,-z,relro,-z,now
|
|
+endif
|
|
+
|
|
# This one can be changed to look for ebtree files in an external directory
|
|
EBTREE_DIR := ebtree
|
|
|