mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2024-11-10 05:03:43 +01:00
Don't be bashistic.
This commit is contained in:
parent
8ba00e4305
commit
b7e533c1d7
@ -98,9 +98,9 @@ AC_ARG_ENABLE(gcc-hardening,
|
||||
AS_HELP_STRING(--enable-gcc-hardening, enable compiler security checks),
|
||||
[if test x$enableval = xyes; then
|
||||
CFLAGS="$CFLAGS -D_FORTIFY_SOURCE=2 -fstack-protector-all"
|
||||
CFLAGS+=" -fwrapv -fPIE -Wstack-protector -Wformat -Wformat-security"
|
||||
CFLAGS+=" -Wpointer-sign"
|
||||
LDFLAGS+=" -pie"
|
||||
CFLAGS="$CFLAGS -fwrapv -fPIE -Wstack-protector -Wformat -Wformat-security"
|
||||
CFLAGS="$CFLAGS -Wpointer-sign"
|
||||
LDFLAGS="$LDFLAGS -pie"
|
||||
fi])
|
||||
|
||||
dnl Linker hardening options
|
||||
@ -108,7 +108,7 @@ dnl Currently these options are ELF specific - you can't use this with MacOSX
|
||||
AC_ARG_ENABLE(linker-hardening,
|
||||
AS_HELP_STRING(--enable-linker-hardening, enable linker security fixups),
|
||||
[if test x$enableval = xyes; then
|
||||
LDFLAGS+=" -z relro -z now"
|
||||
LDFLAGS="$LDFLAGS -z relro -z now"
|
||||
fi])
|
||||
|
||||
AC_ARG_ENABLE(local-appdata,
|
||||
|
Loading…
Reference in New Issue
Block a user