1
0
mirror of https://github.com/Llewellynvdm/conky.git synced 2024-07-01 05:03:28 +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:
Natanael Copa 2015-07-23 15:58:07 +02:00
parent 476f84cf59
commit 18877f3992

View File

@ -105,7 +105,7 @@ endif(BUILD_IRC)
if(BUILD_IPV6)
find_file(IF_INET6 if_inet6 PATHS /proc/net)
if(NOT IF_INET6)
message(FATAL_ERROR "/proc/net/if_inet6 unavailable")
message(WARNING "/proc/net/if_inet6 unavailable")
endif(NOT IF_INET6)
endif(BUILD_IPV6)