about summary refs log tree commit diff stats
path: root/configure.ac
diff options
context:
space:
mode:
authorJasper van Bourgognie <jvb@softkinetic.com>2013-12-27 20:52:42 +0100
committerJasper van Bourgognie <jvb@softkinetic.com>2013-12-27 20:52:42 +0100
commit8f26b3bbf96d50cd616d02da7690acc945fedef9 (patch)
treeb89dcacfc5825fa82faf41532355be1e886301e6 /configure.ac
parent7127a934c79a6851bc8c384a41893f98afd6b479 (diff)
downloadprofani-tty-8f26b3bbf96d50cd616d02da7690acc945fedef9.tar.gz
configure.ac: Check for ncurses instead of ncursesw
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac4
1 files changed, 2 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac
index 32b60823..9aece663 100644
--- a/configure.ac
+++ b/configure.ac
@@ -72,8 +72,8 @@ AC_CHECK_LIB([ssl], [main], [],
     [AC_MSG_ERROR([openssl is required for profanity])])
 AC_CHECK_LIB([strophe], [main], [],
     [AC_MSG_ERROR([libstrophe is required for profanity])])
-AC_CHECK_LIB([ncursesw], [main], [],
-    [AC_MSG_ERROR([ncursesw is required for profanity])])
+AC_CHECK_LIB([ncurses], [main], [],
+    [AC_MSG_ERROR([ncurses is required for profanity])])
 AC_CHECK_LIB([glib-2.0], [main], [],
     [AC_MSG_ERROR([glib-2.0 is required for profanity])])
 AC_CHECK_LIB([curl], [main], [],