aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorMattias Andrée <maandree@operamail.com>2013-11-22 11:03:34 +0100
committerMattias Andrée <maandree@operamail.com>2013-11-22 11:03:34 +0100
commit2b7dd9295829f479feb26b2462fb83a4c6ca30a6 (patch)
tree87caa2e80efab060a107fdea3b1b4e17d1ce7d5d /Makefile
parentadd option to print * for each char (diff)
downloadlibpassphrase-2b7dd9295829f479feb26b2462fb83a4c6ca30a6.tar.gz
libpassphrase-2b7dd9295829f479feb26b2462fb83a4c6ca30a6.tar.bz2
libpassphrase-2b7dd9295829f479feb26b2462fb83a4c6ca30a6.tar.xz
do not use realloc by default, it is bad security
Signed-off-by: Mattias Andrée <maandree@operamail.com>
Diffstat (limited to '')
-rw-r--r--Makefile5
1 files changed, 3 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 7854a06..5259633 100644
--- a/Makefile
+++ b/Makefile
@@ -3,8 +3,9 @@ LIB = /lib
INCLUDE = /include
OPTIONS =
-# PASSPHRASE_ECHO: Do not hide the passphrase
-# PASSPHRASE_STAR: Use '*' for each character instead of no echo
+# PASSPHRASE_ECHO: Do not hide the passphrase
+# PASSPHRASE_STAR: Use '*' for each character instead of no echo
+# PASSPHRASE_REALLOC: Soften security by using `realloc`
OPTIMISE = -Os
CPPFLAGS = $(foreach D, $(OPTIONS), -D'$(D)=1')