From: <ast...@el...> - 2007-02-28 08:50:15
|
When doing make for the current trunk (673), it stopped while compiling astmanproxy. Seems it's expecting OpenSSL stuff, but since that seems to have not been downloaded/compiled/installed yet (A comes before O), it fails spectacularly. Is this normal, since trunk could be broken by something, or is my environment lacking something? I'm running CentOS 4.3 with all the dev stuff installed and updated. Do I have to do something silly like disable that package and compile, then go back and compile astmanproxy? ------ In file included from src/ssl.c:40: src/include/ssl.h:19:25: openssl/ssl.h: No such file or directory In file included from src/ssl.c:40: src/include/ssl.h:32: error: syntax error before "SSL" src/include/ssl.h:32: warning: no semicolon at end of struct or union src/include/ssl.h:33: warning: type defaults to `int' in declaration of `sec_channel' src/include/ssl.h:33: warning: data definition has no type or storage class src/include/ssl.h:48: error: syntax error before '*' token src/include/ssl.h:48: warning: type defaults to `int' in declaration of `get_ssl' src/include/ssl.h:48: warning: data definition has no type or storage class src/ssl.c:42: error: syntax error before '*' token src/ssl.c:42: warning: type defaults to `int' in declaration of `sctx' src/ssl.c:42: warning: data definition has no type or storage class src/ssl.c:43: error: syntax error before '*' token src/ssl.c:43: warning: type defaults to `int' in declaration of `cctx' src/ssl.c:43: warning: data definition has no type or storage class src/ssl.c: In function `init_secure': src/ssl.c:53: error: `SSL_METHOD' undeclared (first use in this function) src/ssl.c:53: error: (Each undeclared identifier is reported only once src/ssl.c:53: error: for each function it appears in.) src/ssl.c:53: error: `meth' undeclared (first use in this function) src/ssl.c:55: warning: implicit declaration of function `SSLeay_add_ssl_algorithms' src/ssl.c:56: warning: implicit declaration of function `SSL_load_error_strings' src/ssl.c:59: warning: implicit declaration of function `SSLv23_server_method' src/ssl.c:60: warning: implicit declaration of function `SSL_CTX_new' src/ssl.c:60: warning: assignment makes pointer from integer without a cast src/ssl.c:66: warning: implicit declaration of function `SSL_CTX_use_certificate_file' src/ssl.c:66: error: `SSL_FILETYPE_PEM' undeclared (first use in this function) src/ssl.c:70: warning: implicit declaration of function `SSL_CTX_use_PrivateKey_file' src/ssl.c:74: warning: implicit declaration of function `SSL_CTX_check_private_key' src/ssl.c: In function `client_init_secure': src/ssl.c:86: error: `SSL_METHOD' undeclared (first use in this function) src/ssl.c:86: error: `meth' undeclared (first use in this function) src/ssl.c:90: warning: implicit declaration of function `SSLv23_client_method' src/ssl.c:92: warning: assignment makes pointer from integer without a cast src/ssl.c: In function `get_real_fd': src/ssl.c:109: error: request for member `fd' in something not a structure or union src/ssl.c: At top level: src/ssl.c:120: error: syntax error before '*' token src/ssl.c:121: warning: return type defaults to `int' src/ssl.c: In function `get_ssl': src/ssl.c:122: error: `SSL' undeclared (first use in this function) src/ssl.c:122: error: `ssl' undeclared (first use in this function) src/ssl.c:127: error: request for member `ssl' in something not a structure or union src/ssl.c: In function `sec_getslot': src/ssl.c:139: error: request for member `ssl' in something not a structure or union src/ssl.c: In function `saccept': src/ssl.c:159: error: `SSL' undeclared (first use in this function) src/ssl.c:159: error: `ssl' undeclared (first use in this function) src/ssl.c:165: warning: implicit declaration of function `SSL_new' src/ssl.c:166: warning: implicit declaration of function `SSL_set_fd' src/ssl.c:167: error: request for member `ssl' in something not a structure or union src/ssl.c:168: error: request for member `fd' in something not a structure or union src/ssl.c:170: warning: implicit declaration of function `SSL_accept' src/ssl.c:171: warning: implicit declaration of function `SSL_get_error' src/ssl.c:172: error: `SSL_ERROR_WANT_READ' undeclared (first use in this function) src/ssl.c:172: error: `SSL_ERROR_WANT_WRITE' undeclared (first use in this function) src/ssl.c:174: warning: implicit declaration of function `SSL_set_mode' src/ssl.c:174: error: `SSL_MODE_ENABLE_PARTIAL_WRITE' undeclared (first use in this function) src/ssl.c:183: error: request for member `ssl' in something not a structure or union src/ssl.c: In function `m_send': src/ssl.c:198: error: `SSL' undeclared (first use in this function) src/ssl.c:198: error: `ssl' undeclared (first use in this function) src/ssl.c:199: warning: implicit declaration of function `SSL_write' src/ssl.c: In function `m_recv': src/ssl.c:212: error: `SSL' undeclared (first use in this function) src/ssl.c:212: error: `ssl' undeclared (first use in this function) src/ssl.c:213: warning: implicit declaration of function `SSL_read' src/ssl.c: In function `close_sock': src/ssl.c:234: error: `SSL' undeclared (first use in this function) src/ssl.c:234: error: `ssl' undeclared (first use in this function) src/ssl.c:239: error: request for member `ssl' in something not a structure or union src/ssl.c:240: error: request for member `ssl' in something not a structure or union src/ssl.c:241: error: request for member `fd' in something not a structure or union src/ssl.c:247: warning: implicit declaration of function `SSL_free' src/ssl.c: In function `ast_connect': src/ssl.c:319: error: `SSL' undeclared (first use in this function) src/ssl.c:319: error: `ssl' undeclared (first use in this function) src/ssl.c:328: error: request for member `fd' in something not a structure or union src/ssl.c:331: error: request for member `ssl' in something not a structure or union src/ssl.c:333: warning: implicit declaration of function `SSL_connect' make[1]: *** [ssl.o] Error 1 make[1]: *** Waiting for unfinished jobs.... |