summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMorgan Deters <mdeters@gmail.com>2011-05-02 21:22:13 +0000
committerMorgan Deters <mdeters@gmail.com>2011-05-02 21:22:13 +0000
commit70336ce1430a857029e972942d1ba0d9019c7cb6 (patch)
treec75b603760477e2131419395402a239eed752488
parent4908a7c71ad38f60828fc4f4ecaa56d216cfdc97 (diff)
fix for configure
-rw-r--r--README1
-rw-r--r--config/readline.m42
2 files changed, 2 insertions, 1 deletions
diff --git a/README b/README
index aaa36ff67..f3c38d2cb 100644
--- a/README
+++ b/README
@@ -31,6 +31,7 @@ GMP v4.2 (GNU Multi-Precision arithmetic library)
libantlr3c v3.2 (ANTLR parser generator)
Optional: CLN v1.3 (Class Library for Numbers)
Optional: CUDD v2.4.2 (Colorado University Decision Diagram package)
+Optional: GNU Readline library (for an improved interactive experience)
CUDD, if desired, must be installed in a special manner. The default
distribution from vlsi.colorado.edu doesn't build shared objects,
diff --git a/config/readline.m4 b/config/readline.m4
index 5535a45f4..70f36bc79 100644
--- a/config/readline.m4
+++ b/config/readline.m4
@@ -20,7 +20,7 @@ else
[if test "$with_readline" != check; then
AC_MSG_FAILURE([cannot find libreadline!])
fi], -lncurses)
- if [ -z "$READLINE_LDFLAGS" ]; then with_readline=no; else with_readline=yes; fi
+ if test -z "$READLINE_LDFLAGS"; then with_readline=no; else with_readline=yes; fi
fi
])# CVC4_CHECK_FOR_READLINE
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback