Skip to content

Commit 6c68f40

Browse files
committed
update fano
1 parent e0f8f0a commit 6c68f40

File tree

2 files changed

+27
-2
lines changed

2 files changed

+27
-2
lines changed

README.md

Lines changed: 26 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,38 @@ Web application skeleton using Fano, Pascal web application framework
55
## Requirement
66

77
- [Free Pascal](https://www.freepascal.org/) >= 3.0
8+
- [libcurl development](https://curl.haxx.se/libcurl/)
89
- Web Server (Apache, nginx)
9-
- [Fano Web Framework](https://github.com/fanoframework/fano)
10+
- [Fano Framework](https://github.com/fanoframework/fano)
1011

1112
## Installation
1213

1314
### Build
1415

16+
#### libcurl development package installation
17+
18+
Check if libcurl package for development is installed by running `curl-config`.
19+
20+
```
21+
$ curl-config --version
22+
```
23+
If libcurl installed you will get something like `libcurl x.xx.x` where `x.xx.x` is version. For example `libcurl 7.47.0` otherwise you get
24+
25+
```
26+
The program 'curl-config' can be found in the following packages:
27+
* libcurl4-gnutls-dev
28+
* libcurl4-nss-dev
29+
* libcurl4-openssl-dev
30+
Try: sudo apt install <selected package>
31+
```
32+
33+
In case libcurl not installed, run
34+
```
35+
$ sudo apt install libcurl4-gnutls-dev
36+
```
37+
38+
### Free Pascal installation
39+
1540
Make sure [Free Pascal](https://www.freepascal.org/) is installed. Run
1641

1742
$ fpc -i

0 commit comments

Comments
 (0)