Re: help: Unresolvable dependencies to package openssl

2023-03-09 Thread mw via Digitalmars-d-learn
On Thursday, 9 March 2023 at 01:22:08 UTC, Steven Schveighoffer wrote: This is a known limitation -- dub builds the selections file based on *all* configurations in the file. If you have conflicting ones, it will not know what to pick. However, if you manually construct the selections file,

Re: help: Unresolvable dependencies to package openssl

2023-03-08 Thread Steven Schveighoffer via Digitalmars-d-learn
On 3/8/23 7:52 PM, mw wrote: Hi, In my dub.json, I have: ```     "dependencies": {     "apache-thrift": "==0.16.0",     ...     }     "subConfigurations": {     "apache-thrift": "use_openssl_1_1",   

help: Unresolvable dependencies to package openssl

2023-03-08 Thread mw via Digitalmars-d-learn
Hi, In my dub.json, I have: ``` "dependencies": { "apache-thrift": "==0.16.0", ... } "subConfigurations": { "apache-thrift": "use_openssl_1_1", "pyd": "python39" },