bug-global
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Package global fails to compile on MacOS 11.1


From: Michael Labbé
Subject: Package global fails to compile on MacOS 11.1
Date: Thu, 14 Jan 2021 18:42:51 -0800

Package global failed to compile on my arm 11.1 system. This is due to an error because realpath cannot be found. The fix is to modify configure to include stdlib.h.

Line 14291 of configure on global-6.6.5:

main(){ (void)realpath("/./tmp", (void *)0); return 0; }

Insert one line before that:

#include<stdlib.h>
main(){ (void)realpath("/./tmp", (void *)0); return 0; }
configure now succeeds.

reply via email to

[Prev in Thread] Current Thread [Next in Thread]