Hi! I think I can't provide a general solution in the moment. But you can modify your main application by replacing
(require-extension csv) with (declare (uses csv)) If you prefer to allow your code to be compiled as a normal and a static application, you can do: (cond-expand (staticbuild (declare (uses csv))) (else (require-extension csv)) ) and compile the static version with "-D staticbuild". cheers, felix _______________________________________________ Chicken-users mailing list [email protected] http://lists.nongnu.org/mailman/listinfo/chicken-users
