Changeset e8bea7cbbc60c91a7296dc94f780f0fbd2cdabaf
- Timestamp:
- 03/06/08 17:30:09
(5 years ago)
- Author:
- Theo Schlossnagle <jesus@omniti.com>
- git-committer:
- Theo Schlossnagle <jesus@omniti.com> 1204824609 +0000
- git-parent:
[900807db5ba0078fc316a960ab8276bda1ba6681]
- git-author:
- Theo Schlossnagle <jesus@omniti.com> 1204824609 +0000
- Message:
some clarifications
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| r900807d |
re8bea7c |
|
| 69 | 69 | AC_CHECK_LIB(pthread, pthread_create, , ) |
|---|
| 70 | 70 | AC_CHECK_LIB(uuid, uuid_generate, , ) |
|---|
| | 71 | # Some libraries provide an unparse_lower command |
|---|
| | 72 | # we use that, so if it isn't present, we'll need |
|---|
| | 73 | # to implement it. |
|---|
| 71 | 74 | AC_CHECK_FUNC(uuid_unparse_lower, [AC_DEFINE(HAVE_UUID_UNPARSE_LOWER)], ) |
|---|
| 72 | 75 | AC_CHECK_LIB(util, openpty, , ) |
|---|
| … | … | |
| 75 | 78 | AC_CHECK_LIB(crypto, ERR_load_CRYPTO_strings, , |
|---|
| 76 | 79 | [ |
|---|
| 77 | | AC_MSG_ERROR([libssl not found, but required]) |
|---|
| | 80 | AC_MSG_ERROR([libcrypto not found, but required]) |
|---|
| 78 | 81 | ] |
|---|
| 79 | 82 | ) |
|---|