From: <jda...@us...> - 2008-01-03 09:58:28
|
Revision: 183 http://pyscard.svn.sourceforge.net/pyscard/?rev=183&view=rev Author: jdaussel Date: 2008-01-03 01:58:28 -0800 (Thu, 03 Jan 2008) Log Message: ----------- pcsc_stringify not available on Mac OS X Tiger 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-01-02 22:48:56 UTC (rev 182) +++ trunk/pyscard/src/smartcard/scard/scard.i 2008-01-03 09:58:28 UTC (rev 183) @@ -824,7 +824,7 @@ } /////////////////////////////////////////////////////////////////////////////// -// some pcsclite versions (e.g. on Max OS X darwint) don't have a pcsc stringify +// some pcsclite versions (e.g. on Max OS X Tiger) have no pcsc_stringify // this function was taken from pcsclite // char* _pcsc_stringify_error( SCARDRETCODE pcscError ) @@ -984,7 +984,7 @@ return ppszError; #endif // WIN32 #ifdef PCSCLITE - #ifdef __APPLE__ + #ifdef __TIGER__ return (ERRORSTRING*)_pcsc_stringify_error( lErrCode ); #endif return (ERRORSTRING*)pcsc_stringify_error( lErrCode ); This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |