diff options
author | Robin Haberkorn <robin.haberkorn@googlemail.com> | 2015-03-09 21:51:41 +0100 |
---|---|---|
committer | Robin Haberkorn <robin.haberkorn@googlemail.com> | 2015-03-09 21:51:41 +0100 |
commit | 3ff6f34fe31374cef529d7c6c55a91dd7bea929c (patch) | |
tree | bd45cb740cbd74de6816aee72c8baeb101fa0e8a | |
parent | 10e4e27ccce8f6a7da7c2e6c4aa62193c4426cda (diff) | |
download | sciteco-3ff6f34fe31374cef529d7c6c55a91dd7bea929c.tar.gz |
improved error message when libpdcurses is not found
* PDCurses build system produces static libraries that cannot be
found by Autoconf (pdcurses.a) and often files have the wrong
permissions.
-rw-r--r-- | configure.ac | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index a419345..af4220b 100644 --- a/configure.ac +++ b/configure.ac @@ -137,7 +137,8 @@ case $INTERFACE in ;; pdcurses) AC_CHECK_LIB(pdcurses, initscr, , [ - AC_MSG_ERROR([libpdcurses missing!]) + AC_MSG_ERROR([libpdcurses missing! + Perhaps it is not named correctly or has wrong permissions.]) ]) AC_CHECK_FUNC([PDC_set_resize_limits], [ AC_DEFINE(PDCURSES_WIN32A, , [PDCurses supports Win32a extensions]) |