mirror of
https://github.com/masscollaborationlabs/emacs.git
synced 2025-07-04 03:13:24 +00:00
* configure.in: Fix quoting bugs.
This commit is contained in:
parent
843f790a74
commit
01319a4e67
2 changed files with 6 additions and 2 deletions
|
@ -1,3 +1,7 @@
|
||||||
|
2012-05-05 Andreas Schwab <schwab@linux-m68k.org>
|
||||||
|
|
||||||
|
* configure.in: Fix quoting bugs.
|
||||||
|
|
||||||
2012-05-04 Glenn Morris <rgm@gnu.org>
|
2012-05-04 Glenn Morris <rgm@gnu.org>
|
||||||
|
|
||||||
* configure.in (INFO_EXT, INFO_OPTS): New output variables.
|
* configure.in (INFO_EXT, INFO_OPTS): New output variables.
|
||||||
|
|
|
@ -2919,7 +2919,7 @@ case "$opsys" in
|
||||||
## option to use it.
|
## option to use it.
|
||||||
darwin) LIBS_TERMCAP="-lncurses" ;;
|
darwin) LIBS_TERMCAP="-lncurses" ;;
|
||||||
|
|
||||||
gnu*) [ "x$LIBS_TERMCAP" = x ] && LIBS_TERMCAP="-lncurses" ;;
|
gnu*) test -z "$LIBS_TERMCAP" && LIBS_TERMCAP="-lncurses" ;;
|
||||||
|
|
||||||
freebsd)
|
freebsd)
|
||||||
AC_MSG_CHECKING([whether FreeBSD is new enough to use terminfo])
|
AC_MSG_CHECKING([whether FreeBSD is new enough to use terminfo])
|
||||||
|
@ -2941,7 +2941,7 @@ fail;
|
||||||
;;
|
;;
|
||||||
|
|
||||||
netbsd)
|
netbsd)
|
||||||
if [ "x$LIBS_TERMCAP" != "x-lterminfo" ]; then
|
if test "x$LIBS_TERMCAP" != "x-lterminfo"; then
|
||||||
TERMINFO=no
|
TERMINFO=no
|
||||||
LIBS_TERMCAP="-ltermcap"
|
LIBS_TERMCAP="-ltermcap"
|
||||||
fi
|
fi
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue