On 28/04/06, Davide Rizzo <[EMAIL PROTECTED]> wrote:
1) I need to compile pcscd and libccid.so in static mode, so they don't need any additional *.so file. Is it possible ? Which parameters must I use with configure ?
It should be possible but you will need to change the configure.in and Makefile.am files. It should even be possible to link libccid and pcscd but that would need some code changes. Use "diff --unified" to generate the patches so they are easier to read and integrate.
2) If you, like me, have the root filesystem mounted in a JFFS2 (I have it in an embedded flash), please remember to mount a ramfs in /var/run, because files in JFFS2 cannot be mmapped.
Good to know.
3) I think I discovered a light bug in pcsc-lite-1.3.1/src/eventhandler.c. It can be easily corrected in this way: 21d20 < #include <sys/mman.h> 80c79 < if (readerStates[i] == MAP_FAILED) --- > if (readerStates[i] == 0)
Exact. Corrected in patch 2029. Thanks, I guess you are working on embedding pcsc-lite in a small device? Bye, -- Dr. Ludovic Rousseau _______________________________________________ Muscle mailing list [email protected] http://lists.drizzle.com/mailman/listinfo/muscle
