mirror of
git://git.gnupg.org/gnupg.git
synced 2025-01-18 14:17:03 +01:00
about to release 1.4.3rc1
This commit is contained in:
parent
966cd80d88
commit
b121d029b5
@ -1,3 +1,7 @@
|
|||||||
|
2006-02-14 Werner Koch <wk@gnupg.org>
|
||||||
|
|
||||||
|
Released 1.4.3rc1.
|
||||||
|
|
||||||
2006-02-09 Werner Koch <wk@g10code.com>
|
2006-02-09 Werner Koch <wk@g10code.com>
|
||||||
|
|
||||||
* configure.ac: Check for fcntl and ftruncate.
|
* configure.ac: Check for fcntl and ftruncate.
|
||||||
@ -1870,7 +1874,7 @@ Fri Feb 13 19:43:41 1998 Werner Koch (wk@isil.d.shuttle.de)
|
|||||||
|
|
||||||
|
|
||||||
Copyright 1998, 1999, 2000, 2001, 2002, 2003,
|
Copyright 1998, 1999, 2000, 2001, 2002, 2003,
|
||||||
2004 Free Software Foundation, Inc.
|
2004, 2005, 2006 Free Software Foundation, Inc.
|
||||||
|
|
||||||
This file is free software; as a special exception the author gives
|
This file is free software; as a special exception the author gives
|
||||||
unlimited permission to copy and/or distribute it, with or without
|
unlimited permission to copy and/or distribute it, with or without
|
||||||
|
2
NEWS
2
NEWS
@ -1842,7 +1842,7 @@ Noteworthy changes in version 0.2.3
|
|||||||
|
|
||||||
|
|
||||||
Copyright 1998, 1999, 2000, 2001, 2002, 2003, 2004,
|
Copyright 1998, 1999, 2000, 2001, 2002, 2003, 2004,
|
||||||
2005 Free Software Foundation, Inc.
|
2005, 2006 Free Software Foundation, Inc.
|
||||||
|
|
||||||
This file is free software; as a special exception the author gives
|
This file is free software; as a special exception the author gives
|
||||||
unlimited permission to copy and/or distribute it, with or without
|
unlimited permission to copy and/or distribute it, with or without
|
||||||
|
2
README
2
README
@ -4,7 +4,7 @@
|
|||||||
Version 1.4.3
|
Version 1.4.3
|
||||||
|
|
||||||
Copyright 1998, 1999, 2000, 2001, 2002, 2003, 2004,
|
Copyright 1998, 1999, 2000, 2001, 2002, 2003, 2004,
|
||||||
2005 Free Software Foundation, Inc.
|
2005, 2006 Free Software Foundation, Inc.
|
||||||
|
|
||||||
This file is free software; as a special exception the author
|
This file is free software; as a special exception the author
|
||||||
gives unlimited permission to copy and/or distribute it, with or
|
gives unlimited permission to copy and/or distribute it, with or
|
||||||
|
@ -1,3 +1,7 @@
|
|||||||
|
2006-02-14 Werner Koch <wk@gnupg.org>
|
||||||
|
|
||||||
|
* random.c (lock_seed_file): Build even when not used.
|
||||||
|
|
||||||
2006-02-09 Werner Koch <wk@g10code.com>
|
2006-02-09 Werner Koch <wk@g10code.com>
|
||||||
|
|
||||||
* random.c (lock_seed_file): New.
|
* random.c (lock_seed_file): New.
|
||||||
|
@ -380,10 +380,10 @@ set_random_seed_file( const char *name )
|
|||||||
reasonable time to succeed. With FOR_WRITE set to true a Rite lock
|
reasonable time to succeed. With FOR_WRITE set to true a Rite lock
|
||||||
will be taken. FNAME is used only for diagnostics. Returns 0 on
|
will be taken. FNAME is used only for diagnostics. Returns 0 on
|
||||||
success or -1 on error. */
|
success or -1 on error. */
|
||||||
#if LOCK_SEED_FILE
|
|
||||||
static int
|
static int
|
||||||
lock_seed_file (int fd, const char *fname, int for_write)
|
lock_seed_file (int fd, const char *fname, int for_write)
|
||||||
{
|
{
|
||||||
|
#if LOCK_SEED_FILE
|
||||||
struct flock lck;
|
struct flock lck;
|
||||||
struct timeval tv;
|
struct timeval tv;
|
||||||
int backoff=0;
|
int backoff=0;
|
||||||
@ -413,9 +413,9 @@ lock_seed_file (int fd, const char *fname, int for_write)
|
|||||||
if (backoff < 10)
|
if (backoff < 10)
|
||||||
backoff++ ;
|
backoff++ ;
|
||||||
}
|
}
|
||||||
|
#endif /*LOCK_SEED_FILE*/
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
#endif /*LOCK_SEED_FILE*/
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
dnl configure.ac script for GnuPG
|
dnl configure.ac script for GnuPG
|
||||||
dnl Copyright (C) 1998, 1999, 2000, 2001, 2002, 2003, 2004,
|
dnl Copyright (C) 1998, 1999, 2000, 2001, 2002, 2003, 2004,
|
||||||
dnl 2005 Free Software Foundation, Inc.
|
dnl 2005, 2006 Free Software Foundation, Inc.
|
||||||
dnl
|
dnl
|
||||||
dnl This file is part of GnuPG.
|
dnl This file is part of GnuPG.
|
||||||
dnl
|
dnl
|
||||||
@ -26,7 +26,7 @@ min_automake_version="1.9.3"
|
|||||||
|
|
||||||
# Remember to change the version number immediately *after* a release
|
# Remember to change the version number immediately *after* a release
|
||||||
# and remove the "-cvs" or "rc" suffix immediately *before* a release.
|
# and remove the "-cvs" or "rc" suffix immediately *before* a release.
|
||||||
AC_INIT(gnupg, 1.4.3-cvs, bug-gnupg@gnu.org)
|
AC_INIT(gnupg, 1.4.3rc1, bug-gnupg@gnu.org)
|
||||||
# Set development_version to yes if the minor number is odd or you
|
# Set development_version to yes if the minor number is odd or you
|
||||||
# feel that the default check for a development version is not
|
# feel that the default check for a development version is not
|
||||||
# sufficient.
|
# sufficient.
|
||||||
|
@ -12405,7 +12405,7 @@ Thu Feb 12 22:24:42 1998 Werner Koch (wk@frodo)
|
|||||||
|
|
||||||
|
|
||||||
Copyright 1998, 1999, 2000, 2001, 2002, 2003,
|
Copyright 1998, 1999, 2000, 2001, 2002, 2003,
|
||||||
2004, 2005 Free Software Foundation, Inc.
|
2004, 2005, 2006 Free Software Foundation, Inc.
|
||||||
|
|
||||||
This file is free software; as a special exception the author gives
|
This file is free software; as a special exception the author gives
|
||||||
unlimited permission to copy and/or distribute it, with or without
|
unlimited permission to copy and/or distribute it, with or without
|
||||||
|
@ -1327,7 +1327,7 @@ ccid_shutdown_reader (ccid_driver_t handle)
|
|||||||
int
|
int
|
||||||
ccid_close_reader (ccid_driver_t handle)
|
ccid_close_reader (ccid_driver_t handle)
|
||||||
{
|
{
|
||||||
if (!handle || !handle->idev)
|
if (!handle || (!handle->idev && handle->dev_fd == -1))
|
||||||
return 0;
|
return 0;
|
||||||
|
|
||||||
do_close_reader (handle);
|
do_close_reader (handle);
|
||||||
|
1569
po/pt_BR.po
1569
po/pt_BR.po
File diff suppressed because it is too large
Load Diff
1530
po/zh_CN.po
1530
po/zh_CN.po
File diff suppressed because it is too large
Load Diff
1529
po/zh_TW.po
1529
po/zh_TW.po
File diff suppressed because it is too large
Load Diff
@ -1,3 +1,7 @@
|
|||||||
|
2006-02-14 Werner Koch <wk@gnupg.org>
|
||||||
|
|
||||||
|
* autogen.sh (DIE): Add lost exit for --build-w32.
|
||||||
|
|
||||||
2005-10-02 Marcus Brinkmann <marcus@g10code.de>
|
2005-10-02 Marcus Brinkmann <marcus@g10code.de>
|
||||||
|
|
||||||
* autogen.sh (DIE): Remove ugly hack for po dir suppression.
|
* autogen.sh (DIE): Remove ugly hack for po dir suppression.
|
||||||
|
@ -99,6 +99,7 @@ if test "$1" = "--build-w32"; then
|
|||||||
|
|
||||||
$tsdir/configure ${conf_CC} --build=${build} --host=${host} \
|
$tsdir/configure ${conf_CC} --build=${build} --host=${host} \
|
||||||
${disable_foo_tests} $*
|
${disable_foo_tests} $*
|
||||||
|
exit $?
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
|
||||||
|
@ -116,7 +116,7 @@ cp ${bindir}/g10/gpg.exe gpg.exe
|
|||||||
$STRIP gpg.exe
|
$STRIP gpg.exe
|
||||||
cp ${bindir}/g10/gpgv.exe gpgv.exe
|
cp ${bindir}/g10/gpgv.exe gpgv.exe
|
||||||
$STRIP gpgv.exe
|
$STRIP gpgv.exe
|
||||||
for name in hkp http ldap finger; do
|
for name in hkp curl ldap finger; do
|
||||||
cp ${bindir}/keyserver/gpgkeys_$name.exe gpgkeys_$name.exe
|
cp ${bindir}/keyserver/gpgkeys_$name.exe gpgkeys_$name.exe
|
||||||
$STRIP gpgkeys_$name.exe
|
$STRIP gpgkeys_$name.exe
|
||||||
done
|
done
|
||||||
|
@ -370,7 +370,7 @@ Section "Uninstall"
|
|||||||
Delete "$INSTDIR\gpg.exe"
|
Delete "$INSTDIR\gpg.exe"
|
||||||
Delete "$INSTDIR\gpgkeys_finger.exe"
|
Delete "$INSTDIR\gpgkeys_finger.exe"
|
||||||
Delete "$INSTDIR\gpgkeys_hkp.exe"
|
Delete "$INSTDIR\gpgkeys_hkp.exe"
|
||||||
Delete "$INSTDIR\gpgkeys_http.exe"
|
Delete "$INSTDIR\gpgkeys_curl.exe"
|
||||||
Delete "$INSTDIR\gpgkeys_ldap.exe"
|
Delete "$INSTDIR\gpgkeys_ldap.exe"
|
||||||
|
|
||||||
Delete "$INSTDIR\Doc\README.txt"
|
Delete "$INSTDIR\Doc\README.txt"
|
||||||
|
Loading…
x
Reference in New Issue
Block a user