Overview
Comment: | minor change to error message |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
10b4432d029765aaa093cd3c27db762d |
User & Date: | aborr on 2000-05-09 22:26:44 |
Other Links: | manifest | tags |
Context
2000-05-10
| ||
19:18 | added flag to switch between normal and debug libs check-in: 0e165d9820 user: aborr tags: trunk | |
2000-05-09
| ||
22:26 | minor change to error message check-in: 10b4432d02 user: aborr tags: trunk | |
2000-05-04
| ||
20:40 | added code to allow compilation with either OpenSSL or BSAFE check-in: cc4e8de2d7 user: aborr tags: trunk, scriptics-sc-2-0-b9 | |
Changes
Modified configure.in from [26a6a42e98] to [4a50e41d75].
︙ | ︙ | |||
108 109 110 111 112 113 114 | # The OpenSSL and BSAFE SSL-C directory structures differ. #-------------------------------------------------------------------- if test -n "${OPENSSL}"; then SSL_LIB_DIR=${SSL_DIR}/lib SSL_INCLUDE_DIR=${SSL_DIR}/include if test ! -f "${SSL_INCLUDE_DIR}/openssl/opensslv.h"; then | | | 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 | # The OpenSSL and BSAFE SSL-C directory structures differ. #-------------------------------------------------------------------- if test -n "${OPENSSL}"; then SSL_LIB_DIR=${SSL_DIR}/lib SSL_INCLUDE_DIR=${SSL_DIR}/include if test ! -f "${SSL_INCLUDE_DIR}/openssl/opensslv.h"; then AC_ERROR(bad ssl-dir: cannot find openssl/opensslv.h under ${SSL_INCLUDE_DIR}) fi else SSL_LIB_DIR=${SSL_DIR}/${PLATFORM}/library/lib SSL_INCLUDE_DIR=${SSL_DIR}/${PLATFORM}/library/include if test ! -f "${SSL_INCLUDE_DIR}/crypto.h"; then AC_ERROR(bad ssl-dir: cannot find crypto.h under ${SSL_INCLUDE_DIR}) fi |
︙ | ︙ |