]> skyeroc.xyz Git - dgamelaunch/commitdiff
Abort configure if we cannot find [n]curses devel libs.
authorPasi Kallinen <paxed@alt.org>
Wed, 21 Oct 2009 14:49:46 +0000 (14:49 +0000)
committerPasi Kallinen <paxed@alt.org>
Wed, 21 Oct 2009 14:49:46 +0000 (14:49 +0000)
git-svn-id: svn://katsu.triplehelix.org/dgamelaunch/trunk@511 db0b04b0-f4d1-0310-9a6d-de3e77497b0e

TODO
configure.ac

diff --git a/TODO b/TODO
index 87ea4086dc66085297768abdcfa5c7da974d23e8..b8c703d6e58d21c96379d61b12b61e7ae5efceca 100644 (file)
--- a/TODO
+++ b/TODO
@@ -1,3 +1,4 @@
+-in domailuser(), we need find_curr_player_game(username)
 -for menu definitions, allow "default" commands (when user presses a
  key not defined in other commands):
    commands[default] = ...
@@ -56,9 +57,6 @@
  include unicode stripping from crawl dgl, etc)
 -public (no-password) accounts? (a per-user flag) what happens when someone
  is playing on the account and someone else logins and we start playing?
--info screen (more than just the banner), for info about the game(s)
- and the server, etc.
--allow more than one editor per dgl
 -allow users to run recover themselves
 -make dgl show # of watchers
 -configurable stuff: allowed chars in usernames,
@@ -69,6 +67,3 @@
 - Localization of variables, code clean up
 
 - Use /var/run/nologin and/or dgl-specific nologin file
-
-- Honor window size changes (currently the player has to relogin if window
-  size changes)
index c0ca7819ecc79820ddcc2da6eb5f71845bdad9f9..034f3b92e76e442748e8c7b33e3faab750ae1e25 100644 (file)
@@ -63,7 +63,10 @@ AC_SUBST(MKDEP)
 AC_SUBST(MKDEP_DIRECT)
 
 AC_PROG_INSTALL
-AC_SEARCH_LIBS(initscr, [curses ncurses])
+AC_SEARCH_LIBS(initscr, [curses ncurses], [], [
+   AC_MSG_ERROR([Cannot find curses or ncurses devel libs.])
+])
+
 
 AC_ARG_ENABLE(virus,
 [AC_HELP_STRING([--enable-virus], [Use the 'virus' vi clone instead of the friendly ee editor.])],