Date: Tue, 08 Apr 2014 23:09:21 +0200 From: olli hauer <ohauer@gmx.de> To: apache@FreeBSD.org Cc: Philip Jocks <pjlists@netzkommune.de> Subject: Re: www/apache22 not honoring WITH_OPENSSL_PORT=yes under FreeBSD 10? Message-ID: <53446581.7070802@gmx.de> In-Reply-To: <F6D91E2D-A001-4B15-B37C-3DA223AB111C@netzkommune.de> References: <F6D91E2D-A001-4B15-B37C-3DA223AB111C@netzkommune.de>
next in thread | previous in thread | raw e-mail | index | archive | help
On 2014-04-08 17:58, Philip Jocks wrote: > Hej, > > I just came across this: When building in a fresh jail, mod_ssl.so is linked against the base libraries instead of those from ports: > > # ldd /var/ports/basejail/usr/ports/www/apache22/work/httpd-2.2.27/modules/ssl/.libs/mod_ssl.so > /var/ports/basejail/usr/ports/www/apache22/work/httpd-2.2.27/modules/ssl/.libs/mod_ssl.so: > libssl.so.7 => /usr/lib/libssl.so.7 (0x801630000) > libcrypto.so.7 => /lib/libcrypto.so.7 (0x801899000) > libcrypt.so.5 => /lib/libcrypt.so.5 (0x801c84000) > libthr.so.3 => /lib/libthr.so.3 (0x801ea4000) > libc.so.7 => /lib/libc.so.7 (0x80081d000) > > In an older FreeBSD 8.x jail it works as expected. A friend of mine confirmed with a fresh FreeBSD 10 VM. > Am I missing something? > Hi Philip, have you also build devel/apr1 with 'WITH_OPENSSL_PORT=yes' in /etc/make.conf? apache22/24 uses only the information from apr-1-config to calculate the path to openssl As far as I know more and more crypto/ssl stuff will will be relocated from httpd source to apr/apu. Here are some outputs from apu-1-config, build with OpenSSL from base / ports so you can compare it with the output from apr-1-config on your system. OpenSSL base: ================= $> usr/local/bin/apu-1-config --includes -I/usr/local/include/apr-1 -I/usr/include -I/usr/local/include -I/usr/local/include/db5 /usr/local/bin/apu-1-config --ldflags -L/usr/lib -L/usr/local/lib -L/usr/local/lib/db5 OpenSSL ports: ================= $> /usr/local/bin/apu-1-config --includes -I/usr/local/include/apr-1 -I/usr/local/include -I/usr/local/include/db5 $> /usr/local/bin/apu-1-config --ldflags -L/usr/local/lib -L/usr/local/lib/db5 And also important '/usr/local/share/apr/build-1/apr_rules.mk' diff -nru base_1.5.0.1.5.3/usr/local/share/apr/build-1/apr_rules.mk ports_1.5.0.1.5.3/usr/local/share/apr/build-1/apr_rules.mk --- base_1.5.0.1.5.3/usr/local/share/apr/build-1/apr_rules.mk 2014-04-08 23:00:48.000000000 +0200 +++ ports_1.5.0.1.5.3/usr/local/share/apr/build-1/apr_rules.mk 2014-04-08 23:00:46.000000000 +0200 @@ -42,8 +42,8 @@ # configure adds to them for tests, but we restore them at the end. # CFLAGS=-O2 -pipe -fno-strict-aliasing -CPPFLAGS=-I/usr/include -LDFLAGS= -L/usr/lib -Wl,-rpath,/usr/lib:/usr/local/lib +CPPFLAGS=-I/usr/local/include -I/usr/local/include +LDFLAGS= -L/usr/local/lib -Wl,-rpath,/usr/local/lib -L/usr/local/lib LIBS= DEFS=-DHAVE_CONFIG_H -- HTH, olli
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?53446581.7070802>