Not use DLL?

I was wondering if there was a way to compile with out using the runtime
dll. I couldn’t get source code to compile for me so I d/l.ed the binary
dist, which works. I just don’t like having to have a .dll.

Thanks,
Mike

I was wondering if there was a way to compile with out using the runtime
dll. I couldn’t get source code to compile for me so I d/l.ed the binary
dist, which works. I just don’t like having to have a .dll.

Is there some reason why you cannot just build with static linking? I don’t
know about your compiler, but with gcc you would just use -static flag. Note
however that LGPL requires you to release full source (or at least all
required object code) to your application if you choose to use static
linking.

– Mikko