Re: [users@httpd] util_pcre.c:58:10: fatal error: pcre.h: No such file or directory

2021-04-28 Thread back Button
Happy to report It works ! on Raspberry Pi too.Thanks back.but...@aol.com -Original Message- From: Richard To: users@httpd.apache.org Sent: Thu, 29 Apr 2021 0:52 Subject: Re: [users@httpd] util_pcre.c:58:10: fatal error: pcre.h: No such file or directory The pcre.h header file

Re: [users@httpd] util_pcre.c:58:10: fatal error: pcre.h: No such file or directory

2021-04-28 Thread Richard
The pcre.h header file is likely part of the pcre development package from your distribution. You should not be trying to install it from source as that will make it very hard to maintain, nor would I expect it to be part of the apache package. You should (simply) be able to get the development

Re: [users@httpd] util_pcre.c:58:10: fatal error: pcre.h: No such file or directory

2021-04-28 Thread Dino Ciuffetti
It is true there is no file pcre.h. but I do have a pcre2.h You need PCRE, not PCRE2. They are not compatible each other. Clean up your /usr/local/pcre directory, also remove any symlink you've manually created on /usr/include!! Download PCRE from here:

Re: [users@httpd] util_pcre.c:58:10: fatal error: pcre.h: No such file or directory

2021-04-28 Thread back Button
. back.but...@aol.com -Original Message- From: Richard To: users@httpd.apache.org Sent: Wed, 28 Apr 2021 23:56 Subject: Re: [users@httpd] util_pcre.c:58:10: fatal error: pcre.h: No such file or directory > Date: Wednesday, April 28, 2021 22:44:41 + > From: back Button > 

Re: [users@httpd] util_pcre.c:58:10: fatal error: pcre.h: No such file or directory

2021-04-28 Thread Richard
> Date: Wednesday, April 28, 2021 22:44:41 + > From: back Button > >> From: Nick Folino >> Sent: Wed, 28 Apr 2021 23:23 >> >> Install the correct libraries. > > I have installed the latest libraries with the latestᅠ Apache. > How am I supposed to knowᅠwhich library corresponds to

Re: [users@httpd] util_pcre.c:58:10: fatal error: pcre.h: No such file or directory

2021-04-28 Thread back Button
: [users@httpd] util_pcre.c:58:10: fatal error: pcre.h: No such file or directory Install the correct libraries. On Wed, Apr 28, 2021 at 6:18 PM back Button wrote: running  make to build  Apache 2.4.46 It is true there is no file  pcre.h. but I do have a pcre2.h so this is what I did hoping

Re: [users@httpd] util_pcre.c:58:10: fatal error: pcre.h: No such file or directory

2021-04-28 Thread Nick Folino
Install the correct libraries. On Wed, Apr 28, 2021 at 6:18 PM back Button wrote: > > running make to build Apache 2.4.46 > > It is true there is no file pcre.h. but I do have a pcre2.h > > so this is what I did hoping the missing dependency would be taken care of. > sudo ln -s

[users@httpd] util_pcre.c:58:10: fatal error: pcre.h: No such file or directory

2021-04-28 Thread back Button
running  make to build  Apache 2.4.46 It is true there is no file  pcre.h. but I do have a pcre2.h so this is what I did hoping the missing dependency would be taken care of.  sudo ln -s /usr/local/pcre/include/pcre2.h /usr/include/ It didn't take care of the issue before running make this was