exchange

Base system with REST service to issue digital coins, run by the payment service provider
Log | Files | Refs | Submodules | README | LICENSE

commit 652659a8d4fdb762f5833349506a837183a749ab
parent bc29ca40803dc7ac01bc3918e51693ada5e74639
Author: Christian Grothoff <christian@grothoff.org>
Date:   Sun, 12 May 2019 21:39:25 +0200

replace if with AS_IF (#5709, wip)

Diffstat:
Mconfigure.ac | 5++---
1 file changed, 2 insertions(+), 3 deletions(-)

diff --git a/configure.ac b/configure.ac @@ -431,12 +431,11 @@ AC_DEFINE_UNQUOTED([HAVE_DEVELOPER],[$enable_dev],[1 if developer logic is enabl # -D_FORTIFY_SOURCE=2 -fstack-protector-all AC_ARG_ENABLE(gcc-hardening, AS_HELP_STRING(--enable-gcc-hardening, enable compiler security checks), -[if test x$enableval = xyes; then +[AS_IF([test x$enableval = xyes],[ CFLAGS="$CFLAGS -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -fstack-protector-all" CFLAGS="$CFLAGS -fwrapv -fPIE -Wstack-protector" CFLAGS="$CFLAGS --param ssp-buffer-size=1" - LDFLAGS="$LDFLAGS -pie" -fi]) + LDFLAGS="$LDFLAGS -pie"])]) # Linker hardening options