concurrencykit / ck

Concurrency primitives, safe memory reclamation mechanisms and non-blocking (including lock-free) data structures designed to aid in the research, design and implementation of high performance concurrent systems developed in C99+.
http://concurrencykit.org/
Other
2.35k stars 312 forks source link

Configurable doc compression #150

Closed hydrapolic closed 4 years ago

hydrapolic commented 4 years ago

In Gentoo Linux we compress all documentation. Since ck already does the compression, it would lead to double compression. Would it be possible to pass an argument to ./configure whether we want documentation compression?

Thank you

sbahra commented 4 years ago

Sure! We can add this. What's the preferred idiom / name for such an option?

hydrapolic commented 4 years ago

Doesn't matter at all, but google returned some results for DOC_COMPRESS.

sbahra commented 4 years ago

Ok. This is now possible in master by setting GZIP to an empty string. For example:

GZIP="" ./configure

Sorry it took a while!

hydrapolic commented 4 years ago

Cool, thanks.