Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
01319a4e
Commit
01319a4e
authored
May 05, 2012
by
Andreas Schwab
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* configure.in: Fix quoting bugs.
parent
843f790a
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
2 deletions
+6
-2
ChangeLog
ChangeLog
+4
-0
configure.in
configure.in
+2
-2
No files found.
ChangeLog
View file @
01319a4e
2012-05-05 Andreas Schwab <schwab@linux-m68k.org>
* configure.in: Fix quoting bugs.
2012-05-04 Glenn Morris <rgm@gnu.org>
* configure.in (INFO_EXT, INFO_OPTS): New output variables.
...
...
configure.in
View file @
01319a4e
...
...
@@ -2919,7 +2919,7 @@ case "$opsys" in
## option to use it.
darwin) LIBS_TERMCAP="-lncurses" ;;
gnu*)
[
"
x
$LIBS_TERMCAP"
= x ]
&& LIBS_TERMCAP="-lncurses" ;;
gnu*)
test -z
"$LIBS_TERMCAP" && LIBS_TERMCAP="-lncurses" ;;
freebsd)
AC_MSG_CHECKING([whether FreeBSD is new enough to use terminfo])
...
...
@@ -2941,7 +2941,7 @@ fail;
;;
netbsd)
if
[
"x$LIBS_TERMCAP" != "x-lterminfo"
]
; then
if
test
"x$LIBS_TERMCAP" != "x-lterminfo"; then
TERMINFO=no
LIBS_TERMCAP="-ltermcap"
fi
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment