mirror of
git://git.gnupg.org/gnupg.git
synced 2025-03-02 21:11:05 +01:00
* configure.ac: Give warning when using capabilities. Check for
usb_get_string_simple for old libusb reasons.
This commit is contained in:
parent
58cf95534e
commit
e991fb59d1
@ -1,3 +1,8 @@
|
||||
2004-09-15 David Shaw <dshaw@jabberwocky.com>
|
||||
|
||||
* configure.ac: Give warning when using capabilities. Check for
|
||||
usb_get_string_simple for old libusb reasons.
|
||||
|
||||
2004-09-10 David Shaw <dshaw@jabberwocky.com>
|
||||
|
||||
* NEWS: Note HTTP basic auth.
|
||||
|
8
NEWS
8
NEWS
@ -10,7 +10,8 @@ Noteworthy changes in version 1.3.7
|
||||
for smartcards.
|
||||
|
||||
* HTTP Basic authentication is now supported for all HKP and HTTP
|
||||
keyserver functions, either through a proxy or by direct access.
|
||||
keyserver functions, either through a proxy or via direct
|
||||
access.
|
||||
|
||||
|
||||
Noteworthy changes in version 1.3.6 (2004-05-22)
|
||||
@ -72,8 +73,9 @@ Noteworthy changes in version 1.3.5 (2004-02-26)
|
||||
* New --list-config command for frontends and other programs that
|
||||
call GnuPG. See doc/DETAILS for the specifics of this.
|
||||
|
||||
* Some performance improvements with large keyrings. See
|
||||
--enable-key-cache=SIZE in the README file for details.
|
||||
* Some performance improvements with large keyrings. See the
|
||||
build time option --enable-key-cache=SIZE in the README file for
|
||||
details.
|
||||
|
||||
* Some portability fixes for the OpenBSD/i386, HPPA, and AIX
|
||||
platforms.
|
||||
|
@ -829,6 +829,12 @@ dnl
|
||||
dnl Check whether we can use Linux capabilities as requested
|
||||
dnl
|
||||
if test "$use_capabilities" = "yes" ; then
|
||||
|
||||
AC_MSG_WARN([[
|
||||
***
|
||||
*** WARNING: using capabilities with GnuPG is experimental code!
|
||||
***]])
|
||||
|
||||
use_capabilities=no
|
||||
AC_CHECK_HEADERS(sys/capability.h)
|
||||
if test "$ac_cv_header_sys_capability_h" = "yes" ; then
|
||||
@ -1093,6 +1099,7 @@ fi
|
||||
AC_SUBST(LIBUSB_LIBS)
|
||||
AC_CHECK_FUNCS(usb_create_match)
|
||||
AC_CHECK_FUNCS(usb_get_busses)
|
||||
AC_CHECK_FUNCS(usb_get_string_simple)
|
||||
|
||||
#
|
||||
# Check for readline support
|
||||
|
Loading…
x
Reference in New Issue
Block a user