msquic
msquic copied to clipboard
Feature request: Macro to disable using dlopen
Describe the feature you'd like supported
I'm using MSQUIC in an iOS app. I am worried that dlopen may cause my app to be rejected.
I can of course go and modify the source to conditionally disable:
//
// Load the tracepoint provider.
// It's OK if this fails - that just means that tracing dependencies aren't available.
//
dlopen(ProviderFullPath, RTLD_NOW | RTLD_GLOBAL);
It would be nice if this feature were available as a: cmake -DDISABLE_ALL_DYNAMIC_LIBRARY_LOADING
or something.
Proposed solution
See above.
Additional context
See above.