[Pcsclite-cvs-commit] r1935 - trunk/PCSC/src

Ludovic Rousseau rousseau at costa.debian.org
Thu Mar 16 09:17:59 CET 2006


Author: rousseau
Date: 2006-03-16 08:17:58 +0000 (Thu, 16 Mar 2006)
New Revision: 1935

Modified:
   trunk/PCSC/src/misc.h
Log:
do not use #define INTERNAL __hidden on Solaris since the linker can't
use symbol declared __hidden in the file it is declared.

See http://archives.neohapsis.com/archives/dev/muscle/2006-q1/0144.html
Thanks to Iain MacDonnell for the bug report


Modified: trunk/PCSC/src/misc.h
===================================================================
--- trunk/PCSC/src/misc.h	2006-03-15 08:45:42 UTC (rev 1934)
+++ trunk/PCSC/src/misc.h	2006-03-16 08:17:58 UTC (rev 1935)
@@ -27,10 +27,6 @@
 #if defined __GNUC__
 #define INTERNAL __attribute__ ((visibility("hidden")))
 #define PCSC_API __attribute__ ((visibility("default")))
-/* http://docs.sun.com/source/817-6697/sun.specific.html#marker-998544 */
-#elif defined __SUNPRO_C
-#define INTERNAL __hidden
-#define PCSC_API
 #else
 #define INTERNAL
 #define PCSC_API




More information about the Pcsclite-cvs-commit mailing list