Re: [squid-users] squid compilation error in Docker

2022-04-30 Thread Eliezer Croitoru
Support Mobile: +972-5-28704261 Email: ngtech1...@gmail.com <mailto:ngtech1...@gmail.com> From: squid-users On Behalf Of Ivan Larionov Sent: Tuesday, April 26, 2022 23:24 To: Alex Rousskov Cc: Squid Users Subject: Re: [squid-users] squid compilation error in Docker I think based

Re: [squid-users] squid compilation error in Docker

2022-04-26 Thread Ivan Larionov
I think based on the compilation log that it's not used by squid directly but by libtool. I went through the whole log again and found the following errors which I missed originally: "libtool: line 4251: find: command not found" On Mon, Apr 25, 2022 at 1:08 PM Alex Rousskov < rouss...@measurement

Re: [squid-users] squid compilation error in Docker

2022-04-25 Thread Alex Rousskov
On 4/25/22 15:41, Ivan Larionov wrote: Seems like "findutils" is the package which fixes the build. Binsaries in this package: # rpm -ql findutils | grep bin /bin/find /usr/bin/find /usr/bin/oldfind /usr/bin/xargs If build depends on some of these then configure script should probably check t

Re: [squid-users] squid compilation error in Docker

2022-04-25 Thread Ivan Larionov
Seems like "findutils" is the package which fixes the build. Binsaries in this package: # rpm -ql findutils | grep bin /bin/find /usr/bin/find /usr/bin/oldfind /usr/bin/xargs If build depends on some of these then configure script should probably check that they're available. On Wed, Apr 13, 20

Re: [squid-users] squid compilation error in Docker

2022-04-13 Thread Amos Jeffries
On 14/04/22 14:59, Ivan Larionov wrote: There were no errors earlier. Seems like installing openldap-devel fixes the issue. There were other dependencies installed together with it, not sure if they also affected the build or not. I suspect one or more of those other components is indeed th

Re: [squid-users] squid compilation error in Docker

2022-04-13 Thread Ivan Larionov
There were no errors earlier. Seems like installing openldap-devel fixes the issue. There were other dependencies installed together with it, not sure if they also affected the build or not. I assume the ldap one is the main reason: cracklib cracklib-dicts libpwquality pam cpio dbus-libs libudev

Re: [squid-users] squid compilation error in Docker

2022-04-13 Thread Alex Rousskov
On 4/13/22 20:07, Ivan Larionov wrote: Yes this worked. Thanks Eliezer. This means some of these dependencies are required but not caught by the configure script. I'll try to figure out which specific one was the culprit. And maybe find the earlier error in the make log? The errors you shar

Re: [squid-users] squid compilation error in Docker

2022-04-13 Thread Ivan Larionov
Yes this worked. Thanks Eliezer. This means some of these dependencies are required but not caught by the configure script. I'll try to figure out which specific one was the culprit. On Wed, Apr 13, 2022 at 4:36 PM Eliezer Croitoru wrote: > For CentOS 7 use the next: > > RUN yum install -y epe

Re: [squid-users] squid compilation error in Docker

2022-04-13 Thread Eliezer Croitoru
For CentOS 7 use the next: RUN yum install -y epel-release \ && yum clean all \ && yum update -y \ && yum install -y gcc gcc-c++ libtool libtool-ltdl make cmake \ git pkgconfig sudo automake autoconf yum-utils rpm-build \ && yum install -y libxml2 expat-devel op