diff options
Diffstat (limited to 'README.md')
| -rw-r--r-- | README.md | 7 |
1 files changed, 6 insertions, 1 deletions
| @@ -58,7 +58,6 @@ Run `make` and then `make install` as root. | |||
| 58 | 58 | ||
| 59 | If you're compiling on NetBSD, you should use the specific provided Makefile and run `make -f Makefile.NetBSD` and then `make -f Makefile.NetBSD install` as root. | 59 | If you're compiling on NetBSD, you should use the specific provided Makefile and run `make -f Makefile.NetBSD` and then `make -f Makefile.NetBSD install` as root. |
| 60 | 60 | ||
| 61 | |||
| 62 | 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 | 61 | 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 |
| 63 | 62 | ||
| 64 | ```sh | 63 | ```sh |
| @@ -71,6 +70,12 @@ If your compilation process complains about undefined references to `shm_open()` | |||
| 71 | make LDFLAGS=-lrt | 70 | make LDFLAGS=-lrt |
| 72 | ``` | 71 | ``` |
| 73 | 72 | ||
| 73 | If it still gives compilation errors (because your system does not implement the shared memory functions), you can fix it with | ||
| 74 | |||
| 75 | ```sh | ||
| 76 | make CFLAGS=-DWITHOUT_SHM | ||
| 77 | ``` | ||
| 78 | |||
| 74 | See the administrator manual on how to proceed from here. | 79 | See the administrator manual on how to proceed from here. |
| 75 | 80 | ||
| 76 | ## Testing via Docker | 81 | ## Testing via Docker |