diff --git a/ChangeLog b/ChangeLog index 6ddb94b10..4d5266072 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2006-04-12 Werner Koch + + * configure.ac: Print version at end of run. + (svn_revision): Posix adjustment. + 2006-04-07 Werner Koch * configure.ac: Use new method to include the SVN revison. Now it diff --git a/configure.ac b/configure.ac index d2380708f..a7d7bb934 100644 --- a/configure.ac +++ b/configure.ac @@ -31,7 +31,7 @@ m4_define([my_version], [1.4.4]) m4_define([my_issvn], [yes]) m4_define([svn_revision], m4_esyscmd([echo -n $((svn info 2>/dev/null \ - || echo 'Revision: 0')|sed -n '/^Revision:/ {s/[^0-9]//gp;q}')])) + || echo 'Revision: 0')|sed -n '/^Revision:/ s/[^0-9]//gp'|head -1)])) AC_INIT([gnupg], my_version[]m4_if(my_issvn,[yes],[-svn[]svn_revision]), [bug-gnupg@gnu.org]) # Set development_version to yes if the minor number is odd or you @@ -1407,6 +1407,7 @@ AC_OUTPUT # Give some feedback echo +echo " Version info: $PACKAGE_STRING" echo " Configured for: $PRINTABLE_OS_NAME ($host)" if test -n "$show_extraasm"; then echo " Extra cpu specific functions:$show_extraasm" diff --git a/doc/ChangeLog b/doc/ChangeLog index a70ddbba5..c0a640e8d 100644 --- a/doc/ChangeLog +++ b/doc/ChangeLog @@ -1,3 +1,7 @@ +2006-04-11 Michael Roth (wk) + + * gpg.sgml (passphrase-fd): Explain that only the first line is used. + 2006-04-09 David Shaw * gpg.sgml: Some typo fixes. This is Debian 361324. diff --git a/doc/gpg.sgml b/doc/gpg.sgml index aa90c43d7..297f6c940 100644 --- a/doc/gpg.sgml +++ b/doc/gpg.sgml @@ -2340,18 +2340,20 @@ Enabled by default. --no-escape-from-lines disables this option. --passphrase-fd &ParmN; -Read the passphrase from file descriptor &ParmN;. If you use 0 for -&ParmN;, the passphrase will be read from stdin. This can only be -used if only one passphrase is supplied. +Read the passphrase from file descriptor &ParmN;. Only the first line +will be read from file descriptor &ParmN;. If you use 0 for &ParmN;, +the passphrase will be read from stdin. This can only be used if only +one passphrase is supplied. --passphrase-file &ParmFile; -Read the passphrase from file &ParmFile;. This can only be used if -only one passphrase is supplied. Obviously, a passphrase stored in a -file is of questionable security if other users can read this file. -Don't use this option if you can avoid it. +Read the passphrase from file &ParmFile;. Only the first line will +be read from file &ParmFile;. This can only be used if only one +passphrase is supplied. Obviously, a passphrase stored in a file is +of questionable security if other users can read this file. Don't use +this option if you can avoid it.