|
|
|
|
|
by benibela
1522 days ago
|
|
It is because Lazarus/FPC have no package manager to handle dependencies. It is crippling the ecosystem. If you want to write an oss ORM/SOA framework with HTTP, you cannot use a HTTP client library, because then people cannot compile your framework when they do not have the library installed. You can write in the documentation, they should install the library, but no one reads that. Also, if the library gets an update, it might not be compatible anymore. So you need to bundle the HTTP client in your framework. Now you could write your own or fork one, but in either case you end up with a framework and its own HTTP client. |
|