0f7016fb9d
Fix snprintf truncation check (bz 2046925, github.com/intel/QATzip/pull/57) Add -fstack-protector-strong build option (bz 2044889) Signed-off-by: Vladis Dronov <vdronov@redhat.com>
25 lines
1.2 KiB
Diff
25 lines
1.2 KiB
Diff
--- configure.orig 2022-02-08 17:54:38.857757054 +0100
|
|
+++ configure 2022-02-08 18:09:34.392172703 +0100
|
|
@@ -142,15 +142,15 @@ includedir=${includedir:-$prefix/include
|
|
mandir=${mandir:-$prefix/share/man}
|
|
|
|
# define CFLAGS and LDFLAGS if no environment variables defined
|
|
-if test -z ${CFLAGS}; then
|
|
- CFLAGS='-Wall -Werror -std=gnu99 -pedantic -fstack-protector -fPIE -fPIC -fno-strict-overflow -fno-delete-null-pointer-checks -fwrapv'
|
|
+if test -z "${CFLAGS}"; then
|
|
+ CFLAGS="-Wall -Werror -std=gnu99 -pedantic -fstack-protector-strong -fPIE -fPIC -fno-strict-overflow -fno-delete-null-pointer-checks -fwrapv"
|
|
else
|
|
- CFLAGS+=" -Wall -Werror -std=gnu99 -pedantic -fstack-protector -fPIE -fPIC"
|
|
+ CFLAGS+=" -Wall -Werror -std=gnu99 -pedantic -fstack-protector-strong -fPIE -fPIC"
|
|
fi
|
|
-if test -z ${LDFLAGS}; then
|
|
- LDFLAGS='-fstack-protector -fPIC -pie -z relro -z now -Wl,-z,noexecstack'
|
|
+if test -z "${LDFLAGS}"; then
|
|
+ LDFLAGS="-fstack-protector-strong -fPIC -pie -z relro -z now -Wl,-z,noexecstack"
|
|
else
|
|
- LDFLAGS+=" -fstack-protector -fPIC -pie -z relro -z now -Wl,-z,noexecstack"
|
|
+ LDFLAGS+=" -fstack-protector-strong -fPIC -pie -z relro -z now -Wl,-z,noexecstack"
|
|
fi
|
|
|
|
# try to build 32 or 64 bit system binary
|