32 lines
747 B
Plaintext
32 lines
747 B
Plaintext
--- configure.ac
|
|
+++ configure.ac 2013-05-29 13:25:27.693939536 +0000
|
|
@@ -137,9 +137,17 @@ else
|
|
else
|
|
WATCH_NCURSES_LIBS="$NCURSES_LIBS"
|
|
fi
|
|
+ cf_tinfo=""
|
|
+ AC_CHECK_LIB(tinfo, setupterm, [cf_tinfo="tinfo"])
|
|
+ if test x$cf_tinfo = xtinfo ; then
|
|
+ TOP_NCURSES_LIBS="-ltinfo"
|
|
+ else
|
|
+ TOP_NCURSES_LIBS="$NCURSES_LIBS"
|
|
+ fi
|
|
fi
|
|
AC_SUBST([NCURSES_LIBS])
|
|
AC_SUBST([WATCH_NCURSES_LIBS])
|
|
+AC_SUBST([TOP_NCURSES_LIBS])
|
|
|
|
AC_ARG_WITH([systemd],
|
|
[AS_HELP_STRING([--with-systemd], [enable systemd support])],
|
|
--- top/Makefile.am
|
|
+++ top/Makefile.am 2012-06-04 10:58:15.024104602 +0000
|
|
@@ -19,7 +19,7 @@ top_SOURCES = \
|
|
dist_man_MANS = \
|
|
top.1
|
|
|
|
-top_LDADD = @NCURSES_LIBS@
|
|
+top_LDADD = @TOP_NCURSES_LIBS@
|
|
endif
|
|
|
|
EXTRA_DIST =
|