From: <jda...@us...> - 2008-02-24 16:43:36
|
Revision: 193 http://pyscard.svn.sourceforge.net/pyscard/?rev=193&view=rev Author: jdaussel Date: 2008-02-24 08:43:39 -0800 (Sun, 24 Feb 2008) Log Message: ----------- pcsc_stringify not dynamically loaded for Apple Leopard Modified Paths: -------------- trunk/pyscard/src/smartcard/scard/scard.i Modified: trunk/pyscard/src/smartcard/scard/scard.i =================================================================== --- trunk/pyscard/src/smartcard/scard/scard.i 2008-02-24 16:29:51 UTC (rev 192) +++ trunk/pyscard/src/smartcard/scard/scard.i 2008-02-24 16:43:39 UTC (rev 193) @@ -995,11 +995,16 @@ return ppszError; #endif // WIN32 #ifdef PCSCLITE - #ifdef __TIGER__ - return (ERRORSTRING*)_pcsc_stringify_error( lErrCode ); - #endif - return (ERRORSTRING*)pcsc_stringify_error( lErrCode ); - #else + #ifdef __APPLE__ + #ifdef __TIGER__ + return (ERRORSTRING*)_pcsc_stringify_error( lErrCode ); + #endif + #ifdef __LEOPARD__ + return (ERRORSTRING*)_pcsc_stringify_error( lErrCode ); + #endif + #else + return (ERRORSTRING*)pcsc_stringify_error( lErrCode ); + #endif #endif // PCSCLITE } This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |