Return-Path: Delivered-To: apmail-httpd-bugs-archive@www.apache.org Received: (qmail 6633 invoked from network); 28 May 2007 00:15:56 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 28 May 2007 00:15:56 -0000 Received: (qmail 1313 invoked by uid 500); 28 May 2007 00:16:00 -0000 Delivered-To: apmail-httpd-bugs-archive@httpd.apache.org Received: (qmail 1275 invoked by uid 500); 28 May 2007 00:16:00 -0000 Mailing-List: contact bugs-help@httpd.apache.org; run by ezmlm Precedence: bulk List-Post: List-Help: List-Unsubscribe: Reply-To: "Apache HTTPD Bugs Notification List" List-Id: Delivered-To: mailing list bugs@httpd.apache.org Received: (qmail 1262 invoked by uid 99); 28 May 2007 00:16:00 -0000 Received: from herse.apache.org (HELO herse.apache.org) (140.211.11.133) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 27 May 2007 17:16:00 -0700 X-ASF-Spam-Status: No, hits=-99.5 required=10.0 tests=ALL_TRUSTED,NO_REAL_NAME X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO brutus.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 27 May 2007 17:15:54 -0700 Received: by brutus.apache.org (Postfix, from userid 33) id 583F6714046; Sun, 27 May 2007 17:15:33 -0700 (PDT) From: bugzilla@apache.org To: bugs@httpd.apache.org Subject: DO NOT REPLY [Bug 42529] New: - httpd-2.2.4 failed to build on Ubuntu 7.04 due to a incompatibility with OpenSSL 0.9.8e Message-ID: X-Bugzilla-Reason: AssignedTo Date: Sun, 27 May 2007 17:15:33 -0700 (PDT) X-Virus-Checked: Checked by ClamAV on apache.org DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG� RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT . ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND� INSERTED IN THE BUG DATABASE. http://issues.apache.org/bugzilla/show_bug.cgi?id=42529 Summary: httpd-2.2.4 failed to build on Ubuntu 7.04 due to a incompatibility with OpenSSL 0.9.8e Product: Apache httpd-2 Version: 2.2.4 Platform: PC OS/Version: Linux Status: NEW Severity: blocker Priority: P2 Component: support AssignedTo: bugs@httpd.apache.org ReportedBy: shreyder@gmx.net I tried to build httpd-2.2.4 with mod_ssl against OpenSSL 0.9.8e, but make exits with some errors, caused by a conflict between ab.c(httpd) and bio.h(openssl). It seems that some function declarations in OpenSSL have changed in 0.9.8e. For example: - bio.h declares the function BIO_set_callback_arg as follows: bio.h:257:void BIO_set_callback_arg(BIO *b, char *arg); - But ab.c calls it this way: ab.c:1145:BIO_set_callback_arg(bio, bio_err); Where bio_err is of type BIO * ab.c:311:BIO *bio_out,*bio_err; Make produced the following output: ab.c: In function 'start_connect': ab.c:1145: warning: passing argument 2 of 'BIO_set_callback_arg' from incompatible pointer type .libs/ab.o: In function `ssl_print_cb': /home/shreyder/build/httpd-2.2.4/support/ab.c:382: undefined reference to `BIO_get_callback_arg' .libs/ab.o: In function `start_connect': /home/shreyder/build/httpd-2.2.4/support/ab.c:1144: undefined reference to `BIO_set_callback' /home/shreyder/build/httpd-2.2.4/support/ab.c:1145: undefined reference to `BIO_set_callback_arg' .libs/ab.o: In function `main': /home/shreyder/build/httpd-2.2.4/support/ab.c:2154: undefined reference to `SSL_CTX_set_info_callback' -- Configure bugmail: http://issues.apache.org/bugzilla/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the assignee for the bug, or are watching the assignee. --------------------------------------------------------------------- To unsubscribe, e-mail: bugs-unsubscribe@httpd.apache.org For additional commands, e-mail: bugs-help@httpd.apache.org