:: Re: [DNG] Why is spamassasin compil…
Top Page
Delete this message
Reply to this message
Author: hal
Date:  
To: Dimitris, dng
Subject: Re: [DNG] Why is spamassasin compiling here?


On 11/7/19 6:39 AM, Dimitris wrote:
> On 11/7/19 2:01 PM, hal wrote:
>>    172609      0 lrwxrwxrwx   1 root     root           31 Feb  6  2019
>> /usr/include/sys/types.h -> ../x86_64-linux-gnu/sys/types.h
>
>
> i think the problem is there.. symlink(?) to non-existent file..
>
> in a debian stretch system (got no ascii with spamassassin available),
> this is a regular file, and /usr/include/sys/types.h doesn't exist..
>
> # dpkg -S sys/types.h
> libc6-dev:amd64: /usr/include/x86_64-linux-gnu/sys/types.h
>
>
> maybe reinstall libc6-dev ??
>


Aha.. good catch.

# cd /usr/include/sys && file types.h
types.h: broken symbolic link to ../x86_64-linux-gnu/sys/types.h

# aptitude reinstall libc6-dev
The following packages will be REINSTALLED:
libc6-dev
The following partially installed packages will be configured:
sa-compile
...

# cd /usr/include/sys && file types.h
types.h: symbolic link to ../x86_64-linux-gnu/sys/types.h



Looks better now. Thank you for taking the time to help!