c-rack / squid-ecap-gzip

SQUID eCAP GZIP Adapter
GNU General Public License v2.0
20 stars 8 forks source link

Issue CentOS 7 #13

Open teamkoekje opened 9 years ago

teamkoekje commented 9 years ago

When trying to ./configure i got this error: http://pastebin.com/DtX1e8gR

Can you tell me what to change ?

c-rack commented 9 years ago

I have no idea what to change; problem may be CentOS 7 specific, as I just tried to reproduce on an up-to-date Debian and configure worked without any problem.

Please update this issue or send a pull request if you have found a solution, thanks!

izhamsaad commented 9 years ago

glibc-headers seems missing. Try this:

yum list installed | grep glibc yum list installed | grep gcc

or you can install glibc if missing.

teamkoekje commented 9 years ago

@izhamsaad I looked it up with the commands but it seems these are already installed:

[root@localhost ~]# yum list installed | grep glibc glibc.x86_64 2.17-78.el7 @anaconda glibc-common.x86_64 2.17-78.el7 @anaconda glibc-devel.x86_64 2.17-78.el7 @base glibc-headers.x86_64 2.17-78.el7 @base

[root@localhost ~]# yum list installed | grep glibc-headers glibc-headers.x86_64 2.17-78.el7 @base

[root@localhost ~]# yum list installed | grep gcc gcc.x86_64 4.8.3-9.el7 @base gcc-c++.x86_64 4.8.3-9.el7 @base libgcc.x86_64 4.8.3-9.el7 @anaconda

Got any other ideas ?