-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathlibncursesw.rm
28 lines (22 loc) · 2.05 KB
/
libncursesw.rm
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
File Edit Options Buffers Tools Help
femtoemacs requires the libncurses
library. This library allows to treat
a text terminal as a window. You must
download, build and install ncurses.
Here is where to get it:
http://ftp.gnu.org/gnu/ncurses/
If you DON'T CARE about diacritics,
you can compile it as shown below:
./configure
make
sudo make install
In English, some people add marks or
glyphs to certain letters. For instance,
instead of writing "facade", they write
"façade". On the same token, they write
"café" in lieu de "cafe". If you need
or like diacritics, you must compile
the libncurses library thus:
./configure --enable-widec
make
sudo make install