mirror of
https://github.com/aaru-dps/fstester.git
synced 2025-12-16 19:24:39 +00:00
70 lines
2.8 KiB
CMake
70 lines
2.8 KiB
CMake
# /****************************************************************************
|
|
# Aaru Data Preservation Suite
|
|
# -----------------------------------------------------------------------------
|
|
#
|
|
# Author(s) : Natalia Portillo
|
|
#
|
|
# --[ License ] ---------------------------------------------------------------
|
|
# This program is free software: you can redistribute it and/or modify
|
|
# it under the terms of the GNU General Public License as
|
|
# published by the Free Software Foundation, either version 3 of the
|
|
# License, or (at your option) any later version.
|
|
#
|
|
# This program is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
# GNU General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU General Public License
|
|
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
#
|
|
# -----------------------------------------------------------------------------
|
|
# Copyright (C) 2011-2021 Natalia Portillo
|
|
# *****************************************************************************/
|
|
|
|
if(NOT ${CMAKE_SYSTEM_NAME} MATCHES "Linux" AND NOT ${CMAKE_SYSTEM_NAME} MATCHES "Darwin")
|
|
return()
|
|
endif()
|
|
|
|
include(CheckSymbolExists)
|
|
include(CheckStructHasMember)
|
|
|
|
CHECK_SYMBOL_EXISTS(statfs "sys/statfs.h" HAVE_SYS_STATFS)
|
|
CHECK_SYMBOL_EXISTS(statfs "sys/mount.h" HAVE_SYS_MOUNT)
|
|
|
|
# Linux and FreeBSD
|
|
if(HAVE_SYS_STATFS)
|
|
message("-- Found statfs in sys/statfs.h")
|
|
add_definitions(-DHAVE_SYS_STATFS_H)
|
|
CHECK_STRUCT_HAS_MEMBER("struct statfs" "f_namelen" "sys/statfs.h" HAVE_STATFS_FNAMELEN)
|
|
CHECK_STRUCT_HAS_MEMBER("struct statfs" "f_fstypename" "sys/statfs.h" HAVE_STATFS_FTYPENAME)
|
|
CHECK_STRUCT_HAS_MEMBER("struct statfs" "f_namemax" "sys/statfs.h" HAVE_STATFS_NAMEMAX)
|
|
endif()
|
|
|
|
# Darwin and most other BSDs
|
|
if(HAVE_SYS_MOUNT)
|
|
message("-- Found statfs in sys/mount.h")
|
|
add_definitions(-DHAVE_SYS_MOUNT_H)
|
|
CHECK_STRUCT_HAS_MEMBER("struct statfs" "f_namelen" "sys/mount.h" HAVE_STATFS_FNAMELEN)
|
|
CHECK_STRUCT_HAS_MEMBER("struct statfs" "f_fstypename" "sys/mount.h" HAVE_STATFS_FTYPENAME)
|
|
CHECK_STRUCT_HAS_MEMBER("struct statfs" "f_namemax" "sys/mount.h" HAVE_STATFS_NAMEMAX)
|
|
endif()
|
|
|
|
if(HAVE_STATFS_FNAMELEN)
|
|
message("-- statfs has f_namelen member")
|
|
add_definitions(-DUSE_STATFS_FNAMELEN)
|
|
endif()
|
|
|
|
if(HAVE_STATFS_FTYPENAME)
|
|
message("-- statfs has f_fstypename member")
|
|
add_definitions(-DUSE_STATFS_FTYPENAME)
|
|
endif()
|
|
|
|
if(HAVE_STATFS_NAMEMAX)
|
|
message("-- statfs has f_namemax member")
|
|
add_definitions(-DUSE_STATFS_NAMEMAX)
|
|
endif()
|
|
|
|
set(UNIX_SOURCES attr.c deleted.c dirdepth.c filename.c files.c frag.c links.c os.c perms.c rsrcfork.c sparse.c time.c volume.c xattr.c)
|
|
|
|
add_library(unix ${UNIX_SOURCES}) |