Ticket #3730: patch-scdaemon.diff

File patch-scdaemon.diff, 539 bytes (added by benjamin@…, 18 years ago)

Patch to gpg-agent scdaemon to support gpg-agent v1.9.20

  • scd/scdaemon.c

     
    139139/* The card dirver we use by default for PC/SC.  */
    140140#if defined(HAVE_W32_SYSTEM) || defined(__CYGWIN__)
    141141#define DEFAULT_PCSC_DRIVER "winscard.dll"
     142#elif defined(__APPLE__)
     143  #define DEFAULT_PCSC_DRIVER "/System/Library/Frameworks/PCSC.framework/PCSC"
    142144#else
    143145#define DEFAULT_PCSC_DRIVER "libpcsclite.so"
    144146#endif
    145147
    146 
    147148/* Flag to indicate that a shutdown was requested. */
    148149static int shutdown_pending;
    149150