annotate rogue4/acinclude.m4 @ 59:bb9f7d01e09c

srogue: move default locations to /var.
author elwin
date Tue, 24 Jan 2012 18:30:17 +0000
parents a1dc75e38e73
children 029c1f5c5588
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
51
a1dc75e38e73 rogue4: ported to autoconf.
elwin
parents:
diff changeset
1 AC_DEFUN([MP_WITH_CURSES],
a1dc75e38e73 rogue4: ported to autoconf.
elwin
parents:
diff changeset
2 [AC_ARG_WITH(ncurses, [ --with-ncurses Force the use of ncurses over curses],,)
a1dc75e38e73 rogue4: ported to autoconf.
elwin
parents:
diff changeset
3 mp_save_LIBS="$LIBS"
a1dc75e38e73 rogue4: ported to autoconf.
elwin
parents:
diff changeset
4 CURSES_LIB=""
a1dc75e38e73 rogue4: ported to autoconf.
elwin
parents:
diff changeset
5 if test "$with_ncurses" != yes
a1dc75e38e73 rogue4: ported to autoconf.
elwin
parents:
diff changeset
6 then
a1dc75e38e73 rogue4: ported to autoconf.
elwin
parents:
diff changeset
7 AC_CACHE_CHECK([for working curses], mp_cv_curses,
a1dc75e38e73 rogue4: ported to autoconf.
elwin
parents:
diff changeset
8 [LIBS="$LIBS -lcurses"
a1dc75e38e73 rogue4: ported to autoconf.
elwin
parents:
diff changeset
9 AC_TRY_LINK(
a1dc75e38e73 rogue4: ported to autoconf.
elwin
parents:
diff changeset
10 [#include <curses.h>],
a1dc75e38e73 rogue4: ported to autoconf.
elwin
parents:
diff changeset
11 [chtype a; int b=A_STANDOUT, c=KEY_LEFT; initscr(); ],
a1dc75e38e73 rogue4: ported to autoconf.
elwin
parents:
diff changeset
12 mp_cv_curses=yes, mp_cv_curses=no)])
a1dc75e38e73 rogue4: ported to autoconf.
elwin
parents:
diff changeset
13 if test "$mp_cv_curses" = yes
a1dc75e38e73 rogue4: ported to autoconf.
elwin
parents:
diff changeset
14 then
a1dc75e38e73 rogue4: ported to autoconf.
elwin
parents:
diff changeset
15 AC_DEFINE(HAVE_CURSES_H, 1, [Define to 1 if libcurses is requested])
a1dc75e38e73 rogue4: ported to autoconf.
elwin
parents:
diff changeset
16 #AC_DEFINE(HAVE_CURSES_H)
a1dc75e38e73 rogue4: ported to autoconf.
elwin
parents:
diff changeset
17 CURSES_LIB="-lcurses"
a1dc75e38e73 rogue4: ported to autoconf.
elwin
parents:
diff changeset
18 fi
a1dc75e38e73 rogue4: ported to autoconf.
elwin
parents:
diff changeset
19 fi
a1dc75e38e73 rogue4: ported to autoconf.
elwin
parents:
diff changeset
20 if test ! "$CURSES_LIB"
a1dc75e38e73 rogue4: ported to autoconf.
elwin
parents:
diff changeset
21 then
a1dc75e38e73 rogue4: ported to autoconf.
elwin
parents:
diff changeset
22 AC_CACHE_CHECK([for working ncurses], mp_cv_ncurses,
a1dc75e38e73 rogue4: ported to autoconf.
elwin
parents:
diff changeset
23 [LIBS="$mp_save_LIBS -lncurses"
a1dc75e38e73 rogue4: ported to autoconf.
elwin
parents:
diff changeset
24 AC_TRY_LINK(
a1dc75e38e73 rogue4: ported to autoconf.
elwin
parents:
diff changeset
25 [#include <ncurses.h>],
a1dc75e38e73 rogue4: ported to autoconf.
elwin
parents:
diff changeset
26 [chtype a; int b=A_STANDOUT, c=KEY_LEFT; initscr(); ],
a1dc75e38e73 rogue4: ported to autoconf.
elwin
parents:
diff changeset
27 mp_cv_ncurses=yes, mp_cv_ncurses=no)])
a1dc75e38e73 rogue4: ported to autoconf.
elwin
parents:
diff changeset
28 if test "$mp_cv_ncurses" = yes
a1dc75e38e73 rogue4: ported to autoconf.
elwin
parents:
diff changeset
29 then
a1dc75e38e73 rogue4: ported to autoconf.
elwin
parents:
diff changeset
30 AC_DEFINE(HAVE_NCURSES_H, 1, [Define to 1 if libncurses is requested])
a1dc75e38e73 rogue4: ported to autoconf.
elwin
parents:
diff changeset
31 CURSES_LIB="-lncurses"
a1dc75e38e73 rogue4: ported to autoconf.
elwin
parents:
diff changeset
32 fi
a1dc75e38e73 rogue4: ported to autoconf.
elwin
parents:
diff changeset
33 fi
a1dc75e38e73 rogue4: ported to autoconf.
elwin
parents:
diff changeset
34 if test ! "$CURSES_LIB"
a1dc75e38e73 rogue4: ported to autoconf.
elwin
parents:
diff changeset
35 then
a1dc75e38e73 rogue4: ported to autoconf.
elwin
parents:
diff changeset
36 AC_CACHE_CHECK([for working pdcurses], mp_cv_pdcurses,
a1dc75e38e73 rogue4: ported to autoconf.
elwin
parents:
diff changeset
37 [LIBS="$mp_save_LIBS -lpdcurses"
a1dc75e38e73 rogue4: ported to autoconf.
elwin
parents:
diff changeset
38 AC_TRY_LINK(
a1dc75e38e73 rogue4: ported to autoconf.
elwin
parents:
diff changeset
39 [#include <curses.h>],
a1dc75e38e73 rogue4: ported to autoconf.
elwin
parents:
diff changeset
40 [chtype a; int b=A_STANDOUT, c=KEY_LEFT; initscr(); ],
a1dc75e38e73 rogue4: ported to autoconf.
elwin
parents:
diff changeset
41 mp_cv_pdcurses=yes, mp_cv_pdcurses=no)])
a1dc75e38e73 rogue4: ported to autoconf.
elwin
parents:
diff changeset
42 if test "$mp_cv_pdcurses" = yes
a1dc75e38e73 rogue4: ported to autoconf.
elwin
parents:
diff changeset
43 then
a1dc75e38e73 rogue4: ported to autoconf.
elwin
parents:
diff changeset
44 AC_DEFINE(HAVE_CURSES_H, 1, [Define to 1 if libcurses is requested])
a1dc75e38e73 rogue4: ported to autoconf.
elwin
parents:
diff changeset
45 CURSES_LIB="-lpdcurses"
a1dc75e38e73 rogue4: ported to autoconf.
elwin
parents:
diff changeset
46 fi
a1dc75e38e73 rogue4: ported to autoconf.
elwin
parents:
diff changeset
47 fi
a1dc75e38e73 rogue4: ported to autoconf.
elwin
parents:
diff changeset
48 if test ! "$CURSES_LIB"
a1dc75e38e73 rogue4: ported to autoconf.
elwin
parents:
diff changeset
49 then
a1dc75e38e73 rogue4: ported to autoconf.
elwin
parents:
diff changeset
50 AC_CACHE_CHECK([for working pdcur], mp_cv_pdcur,
a1dc75e38e73 rogue4: ported to autoconf.
elwin
parents:
diff changeset
51 [LIBS="$mp_save_LIBS -lpdcur"
a1dc75e38e73 rogue4: ported to autoconf.
elwin
parents:
diff changeset
52 AC_TRY_LINK(
a1dc75e38e73 rogue4: ported to autoconf.
elwin
parents:
diff changeset
53 [#include <curses.h>],
a1dc75e38e73 rogue4: ported to autoconf.
elwin
parents:
diff changeset
54 [chtype a; int b=A_STANDOUT, c=KEY_LEFT; initscr(); ],
a1dc75e38e73 rogue4: ported to autoconf.
elwin
parents:
diff changeset
55 mp_cv_pdcur=yes, mp_cv_pdcur=no)])
a1dc75e38e73 rogue4: ported to autoconf.
elwin
parents:
diff changeset
56 if test "$mp_cv_pdcur" = yes
a1dc75e38e73 rogue4: ported to autoconf.
elwin
parents:
diff changeset
57 then
a1dc75e38e73 rogue4: ported to autoconf.
elwin
parents:
diff changeset
58 AC_DEFINE(HAVE_CURSES_H, 1, [Define to 1 if libcurses is requested])