From e8a72146b0bfca41521392b8ba360caed6391250 Mon Sep 17 00:00:00 2001 From: kl4ng Date: Fri, 21 Feb 2014 23:59:11 -0500 Subject: [PATCH 1/3] added note about ncurses libraries --- README.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/README.md b/README.md index 2afa965..65323f2 100644 --- a/README.md +++ b/README.md @@ -14,3 +14,7 @@ Then execute the configure script with ./configure (you may need to pass it the echo '/usr/local/lib/' | sudo tee -a /etc/ld.so.conf.d/locallib.conf sudo ldconfig ``` +If you dont already have it, you might want to install the ncurses libraries, on Debian: +``` +sudo apt-get install libncurses5-dev +``` From 77875d0ca6769353e80b527d1ff6d7e5972f5bc1 Mon Sep 17 00:00:00 2001 From: kl4ng Date: Sat, 22 Feb 2014 00:18:29 -0500 Subject: [PATCH 2/3] typo --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 65323f2..2297569 100644 --- a/README.md +++ b/README.md @@ -14,7 +14,7 @@ Then execute the configure script with ./configure (you may need to pass it the echo '/usr/local/lib/' | sudo tee -a /etc/ld.so.conf.d/locallib.conf sudo ldconfig ``` -If you dont already have it, you might want to install the ncurses libraries, on Debian: +If you dont already have them, you might want to install the ncurses libraries, on Debian: ``` sudo apt-get install libncurses5-dev ``` From c7a2643ee03b882c755be9f37e234f29837fbf51 Mon Sep 17 00:00:00 2001 From: kl4ng Date: Sat, 22 Feb 2014 00:26:46 -0500 Subject: [PATCH 3/3] added other required package --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 2297569..28fb244 100644 --- a/README.md +++ b/README.md @@ -16,5 +16,5 @@ sudo ldconfig ``` If you dont already have them, you might want to install the ncurses libraries, on Debian: ``` -sudo apt-get install libncurses5-dev +sudo apt-get install libncurses5-dev libncursesw5-dev ```