Users: use __has_include

This commit is contained in:
李通洲
2023-08-14 10:05:43 +08:00
parent b39c84f81e
commit 65d25446fe
2 changed files with 1 additions and 6 deletions
-5
View File
@@ -630,11 +630,6 @@ if(WIN32)
target_compile_definitions(libfastfetch PUBLIC WIN32_LEAN_AND_MEAN=1)
endif()
CHECK_INCLUDE_FILE("utmpx.h" HAVE_UTMPX_H)
if(HAVE_UTMPX_H)
target_compile_definitions(libfastfetch PRIVATE FF_HAVE_UTMPX_H)
endif()
if(HAVE_WCWIDTH)
target_compile_definitions(libfastfetch PRIVATE FF_HAVE_WCWIDTH)
endif()
+1 -1
View File
@@ -1,7 +1,7 @@
#include "fastfetch.h"
#include "users.h"
#if FF_HAVE_UTMPX_H
#if __has_include(<utmpx.h>)
#include <utmpx.h>
#else
//for Android compatibility