mirror of
https://github.com/Llewellynvdm/conky.git
synced 2024-11-19 11:35:12 +00:00
Change ipv6 check to warning instead of fatal error
The compile server might not have ipv6 but that does not prevent us from building conky and run it on a machine which has ipv6.
This commit is contained in:
parent
476f84cf59
commit
18877f3992
@ -105,7 +105,7 @@ endif(BUILD_IRC)
|
|||||||
if(BUILD_IPV6)
|
if(BUILD_IPV6)
|
||||||
find_file(IF_INET6 if_inet6 PATHS /proc/net)
|
find_file(IF_INET6 if_inet6 PATHS /proc/net)
|
||||||
if(NOT IF_INET6)
|
if(NOT IF_INET6)
|
||||||
message(FATAL_ERROR "/proc/net/if_inet6 unavailable")
|
message(WARNING "/proc/net/if_inet6 unavailable")
|
||||||
endif(NOT IF_INET6)
|
endif(NOT IF_INET6)
|
||||||
endif(BUILD_IPV6)
|
endif(BUILD_IPV6)
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user