Hi, I hope this is an OK question. I have a need to build apache with all libraries statically linked and included in the httpd executable. Is this possible? Right now ldd is showing: libpcre.so.3 => /lib/x86_64-linux-gnu/libpcre.so.3 libexpat.so.1 => /lib/x86_64-linux-gnu/libexpat.so.1
librt.so.1 => /lib/x86_64-linux-gnu/librt.so.1 libcrypt.so.1 => /lib/x86_64-linux-gnu/libcrypt.so.1
libpthread.so.0 => /lib/x86_64-linux-gnu/libpthread.so.0
libdl.so.2 => /lib/x86_64-linux-gnu/libdl.so.2 libc.so.6 => /lib/x86_64-linux-gnu/libc.so.6 /lib64/ld-linux-x86-64.so.2 But I would like those included in httpd itself. |