Changeset 06376eb8604c1cfcc21fc062fb2ab482db5bd1ca
- Timestamp:
- 06/23/08 21:36:31
(5 years ago)
- Author:
- Theo Schlossnagle <jesus@omniti.com>
- git-committer:
- Theo Schlossnagle <jesus@omniti.com> 1214256991 +0000
- git-parent:
[137f7c66b4e41c1f7d786ce1b38ecd4c292b731e]
- git-author:
- Theo Schlossnagle <jesus@omniti.com> 1214256991 +0000
- Message:
use debugging and bail without curses
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| rd5a973a |
r06376eb |
|
| 26 | 26 | if test "x$CC" = "xgcc" ; then |
|---|
| 27 | 27 | CFLAGS="$CFLAGS -g -Wall" |
|---|
| | 28 | else |
|---|
| | 29 | CFLAGS="$CFLAGS -g" |
|---|
| 28 | 30 | fi |
|---|
| 29 | 31 | |
|---|
| … | … | |
| 112 | 114 | AC_CHECK_LIB(util, openpty, , ) |
|---|
| 113 | 115 | AC_CHECK_LIB(termcap, tputs, , ) |
|---|
| 114 | | AC_CHECK_LIB(curses, clear, , ) |
|---|
| | 116 | AC_CHECK_LIB(curses, clear, , [AC_MSG_ERROR([curses not found, but required])]) |
|---|
| 115 | 117 | |
|---|
| 116 | 118 | CPPFLAGS="$CPPFLAGS `pcre-config --cflags`" |
|---|