add support for '-askpass' and '-readpass <file>'

This commit is contained in:
Per Allansson
2014-01-21 15:28:42 +01:00
parent 0933f3cf47
commit 82e01036b0
3 changed files with 108 additions and 10 deletions

View File

@ -1,6 +1,6 @@
AC_PREREQ(2.60)
AC_INIT([osslsigncode], [1.5.2], [pallansson@gmail.com])
AC_INIT([osslsigncode], [1.5.3], [pallansson@gmail.com])
AC_CONFIG_AUX_DIR([.])
AC_CONFIG_HEADERS([config.h])
AM_INIT_AUTOMAKE
@ -74,6 +74,9 @@ AC_CHECK_LIB(
[DL_LIBS="-ldl"]
)
AC_CHECK_HEADERS([termios.h])
AC_CHECK_FUNCS(getpass)
AC_ARG_WITH([gsf],
AS_HELP_STRING([--without-gsf], [Ignore presence of libgsf and disable it])
)