diff options
| -rw-r--r-- | README.md | 16 |
1 files changed, 8 insertions, 8 deletions
| @@ -30,22 +30,22 @@ This program is written in highly portable ANSI C. The only external dependencie | |||
| 30 | 30 | ||
| 31 | On Debian/Ubuntu, you can satisfy these requirements by running | 31 | On Debian/Ubuntu, you can satisfy these requirements by running |
| 32 | 32 | ||
| 33 | ``` | 33 | ```sh |
| 34 | apt install libssl-dev libcurl4-openssl-dev | 34 | apt install libssl-dev libcurl4-openssl-dev |
| 35 | ``` | 35 | ``` |
| 36 | 36 | ||
| 37 | On OpenBSD you just need to install `curl`: | 37 | On OpenBSD you just need to install `curl`: |
| 38 | 38 | ||
| 39 | ``` | 39 | ```sh |
| 40 | pkg_add curl | 40 | pkg_add curl |
| 41 | ``` | 41 | ``` |
| 42 | 42 | ||
| 43 | Run `make` and then `make install` as root. | 43 | Run `make` and then `make install` as root. |
| 44 | 44 | ||
| 45 | From version 2.27, `snac` includes support for the Mastodon API; if you are not interested on it, you can compile it out by running | 45 | From version 2.27, `snac` includes support for the Mastodon API; if you are not interested on it, you can compile it out by running |
| 46 | 46 | ||
| 47 | ``` | 47 | ```sh |
| 48 | make CFLAGS=-DNO_MASTODON_API | 48 | make CFLAGS=-DNO_MASTODON_API |
| 49 | ``` | 49 | ``` |
| 50 | 50 | ||
| 51 | See the administrator manual on how to proceed from here. | 51 | See the administrator manual on how to proceed from here. |
| @@ -54,8 +54,8 @@ See the administrator manual on how to proceed from here. | |||
| 54 | 54 | ||
| 55 | A `docker-compose` file is provided for development and testing. To start snac with an nginx HTTPS frontend, run: | 55 | A `docker-compose` file is provided for development and testing. To start snac with an nginx HTTPS frontend, run: |
| 56 | 56 | ||
| 57 | ``` | 57 | ```sh |
| 58 | docker-compose build && docker-compose up | 58 | docker-compose build && docker-compose up |
| 59 | ``` | 59 | ``` |
| 60 | 60 | ||
| 61 | This will: | 61 | This will: |