Re: Vibe.d v0.9.0, v0.10.0: ` dub init hello -t vibe.d` fails to build on MacOS

2024-07-07 Thread Ki Rill via Digitalmars-d-learn
On Sunday, 7 July 2024 at 23:33:59 UTC, Steven Schveighoffer wrote: openssl version should be automatically determined by running a pre-build step. If this doesn't work for you, please file a bug here: https://github.com/D-Programming-Deimos/openssl -Steve Filed a bug here:

Re: Vibe.d v0.9.0, v0.10.0: ` dub init hello -t vibe.d` fails to build on MacOS

2024-07-07 Thread Steven Schveighoffer via Digitalmars-d-learn
On Sunday, 7 July 2024 at 14:15:02 UTC, Ki Rill wrote: On Sunday, 7 July 2024 at 11:33:47 UTC, Sergey wrote: On Sunday, 7 July 2024 at 10:55:21 UTC, Ki Rill wrote: Machine: ``` MacBook Pro (Retina, 15-inch, Late 2013), macOS Big Sur version 11.7.10 ``` How should I solve this? It mentions

Re: Weird std.path API?

2024-07-07 Thread user1234 via Digitalmars-d-learn
On Sunday, 7 July 2024 at 15:35:36 UTC, Andrey Zherikov wrote: On Sunday, 7 July 2024 at 14:49:52 UTC, Anonymouse wrote: On Sunday, 7 July 2024 at 14:41:31 UTC, Andrey Zherikov wrote: ```d import std.path; // Error: no property `asNormaliedPath` for `dirName("/sandbox/onlineapp.d")` of type

Re: Weird std.path API?

2024-07-07 Thread Andrey Zherikov via Digitalmars-d-learn
On Sunday, 7 July 2024 at 14:49:52 UTC, Anonymouse wrote: On Sunday, 7 July 2024 at 14:41:31 UTC, Andrey Zherikov wrote: ```d import std.path; // Error: no property `asNormaliedPath` for `dirName("/sandbox/onlineapp.d")` of type `string` auto p = __FILE_FULL_PATH__.dirName.asNormaliedPath;

Re: Weird std.path API?

2024-07-07 Thread H. S. Teoh via Digitalmars-d-learn
On Sun, Jul 07, 2024 at 02:41:31PM +, Andrey Zherikov via Digitalmars-d-learn wrote: > Seems different functions in std.path do not work together: > ```d > import std.path; > > // Error: no property `asNormaliedPath` for > `dirName("/sandbox/onlineapp.d")` of type `string` > auto p =

Re: Weird std.path API?

2024-07-07 Thread Anonymouse via Digitalmars-d-learn
On Sunday, 7 July 2024 at 14:41:31 UTC, Andrey Zherikov wrote: ```d import std.path; // Error: no property `asNormaliedPath` for `dirName("/sandbox/onlineapp.d")` of type `string` auto p = __FILE_FULL_PATH__.dirName.asNormaliedPath; ``` `asNormalizedPath` is misspelled.

Re: Vibe.d v0.9.0, v0.10.0: ` dub init hello -t vibe.d` fails to build on MacOS

2024-07-07 Thread Sergey via Digitalmars-d-learn
On Sunday, 7 July 2024 at 14:15:02 UTC, Ki Rill wrote: It worked, thank you! But what does it do; disables TLS? Thread Local Storage? It disabling transport layer security IMUC you won't be able to have "https" but only "http". So in case you need that, you can make another SubConfiguration

Re: Vibe.d v0.9.0, v0.10.0: ` dub init hello -t vibe.d` fails to build on MacOS

2024-07-07 Thread Ki Rill via Digitalmars-d-learn
On Sunday, 7 July 2024 at 11:33:47 UTC, Sergey wrote: On Sunday, 7 July 2024 at 10:55:21 UTC, Ki Rill wrote: Machine: ``` MacBook Pro (Retina, 15-inch, Late 2013), macOS Big Sur version 11.7.10 ``` How should I solve this? It mentions undefined symbols from openssl, but I have it installed.

Re: Vibe.d v0.9.0, v0.10.0: ` dub init hello -t vibe.d` fails to build on MacOS

2024-07-07 Thread Sergey via Digitalmars-d-learn
On Sunday, 7 July 2024 at 10:55:21 UTC, Ki Rill wrote: Machine: ``` MacBook Pro (Retina, 15-inch, Late 2013), macOS Big Sur version 11.7.10 ``` How should I solve this? It mentions undefined symbols from openssl, but I have it installed. Vibe.d should link it automatically, right? You can