Ticket #3730: patch-scdaemon.diff
File patch-scdaemon.diff, 539 bytes (added by benjamin@…, 19 years ago) |
---|
-
scd/scdaemon.c
139 139 /* The card dirver we use by default for PC/SC. */ 140 140 #if defined(HAVE_W32_SYSTEM) || defined(__CYGWIN__) 141 141 #define DEFAULT_PCSC_DRIVER "winscard.dll" 142 #elif defined(__APPLE__) 143 #define DEFAULT_PCSC_DRIVER "/System/Library/Frameworks/PCSC.framework/PCSC" 142 144 #else 143 145 #define DEFAULT_PCSC_DRIVER "libpcsclite.so" 144 146 #endif 145 147 146 147 148 /* Flag to indicate that a shutdown was requested. */ 148 149 static int shutdown_pending; 149 150