2
0

Replace editline and readline with getpass.

This commit is contained in:
Maarten Billemont
2014-10-15 16:03:46 -04:00
parent c3c2de5d14
commit d9b1b44de0
2 changed files with 6 additions and 26 deletions

View File

@@ -16,8 +16,6 @@ set -e
options=(
# optional features.
-DDEBUG # Turn on debugging verbosity.
#-DEDITLINE -ledit -ltermcap # Use editline for reading the master password.
-DREADLINE -lreadline # Use readline for reading the master password.
)
@@ -74,7 +72,7 @@ echo "Building mpw..."
cc() {
if hash llvm-gcc 2>/dev/null; then
llvm-gcc -std=c11 "$@"
llvm-gcc "$@"
else
gcc -std=gnu99 "$@"
fi