Re: [pcre-dev] how to test if pcre is compiled in to Apache …

Top Page
Delete this message
Author: Petr Pisar
Date:  
To: pcre-dev
Subject: Re: [pcre-dev] how to test if pcre is compiled in to Apache httpd?
On Wed, Jul 10, 2013 at 10:53:38AM +0000, Van Orden, Brad wrote:
> How do I test if pcre is compiled in to httpd?


You should ask Apache developers.

> Output of httpd -l doesn't show pcre. Red Hat has told me that
> pcre is compiled in to Apache in all versions of RHEL. How do I verify?
>

ldd /usr/sbin/httpd
nm -D /usr/sbin/httpd | grep pcre
Greping debugging symbols for httpd.
Unpacking source RPM package for httpd and see how it is compiled (configure
--with-pcre).

-- Petr