mirror of
https://github.com/MidnightCommander/mc
synced 2024-12-23 04:46:55 +03:00
* configure.in: Add -lcurses (for use with S-Lang) to MCLIBS not
to LIBS. Don't use unportable "grep -q", use "case" instead.
This commit is contained in:
parent
34a95b4942
commit
4451b088b1
@ -1,3 +1,8 @@
|
|||||||
|
2001-09-11 Pavel Roskin <proski@gnu.org>
|
||||||
|
|
||||||
|
* configure.in: Add -lcurses (for use with S-Lang) to MCLIBS not
|
||||||
|
to LIBS. Don't use unportable "grep -q", use "case" instead.
|
||||||
|
|
||||||
2001-09-10 Pavel Roskin <proski@gnu.org>
|
2001-09-10 Pavel Roskin <proski@gnu.org>
|
||||||
|
|
||||||
* configure.in: Only check for X if --with-tm-x-support has been
|
* configure.in: Only check for X if --with-tm-x-support has been
|
||||||
|
@ -776,7 +776,7 @@ SLang*)
|
|||||||
return 1;
|
return 1;
|
||||||
return 0;
|
return 0;
|
||||||
],
|
],
|
||||||
[LIBS="$LIBS -lcurses"
|
[MCLIBS="$MCLIBS -lcurses"
|
||||||
AC_DEFINE(USE_SETUPTERM, 1,
|
AC_DEFINE(USE_SETUPTERM, 1,
|
||||||
[Define to use function `setupterm'
|
[Define to use function `setupterm'
|
||||||
from `curses' library in S-Lang])])
|
from `curses' library in S-Lang])])
|
||||||
@ -844,9 +844,10 @@ doc/mc.1 doc/mcedit.1 doc/mcserv.8
|
|||||||
intl/Makefile po/Makefile.in
|
intl/Makefile po/Makefile.in
|
||||||
],[sed -e "/POTFILES =/r po/POTFILES" po/Makefile.in > po/Makefile])
|
],[sed -e "/POTFILES =/r po/POTFILES" po/Makefile.in > po/Makefile])
|
||||||
|
|
||||||
if echo "$screen_manager" | grep -q "SLang" ; then
|
case $screen_manager in
|
||||||
screen_manager="${screen_manager}${slang_term}"
|
SLang*)
|
||||||
fi
|
screen_manager="${screen_manager}${slang_term}" ;;
|
||||||
|
esac
|
||||||
|
|
||||||
echo "
|
echo "
|
||||||
Configuration:
|
Configuration:
|
||||||
|
Loading…
Reference in New Issue
Block a user