mirror of
https://github.com/trapexit/mergerfs.git
synced 2024-11-25 17:57:41 +08:00
9 lines
200 B
Bash
Executable File
9 lines
200 B
Bash
Executable File
#!/bin/sh
|
|
|
|
CXX="${CXX:-c++}"
|
|
FUSE_CFLAGS="$(pkg-config --cflags fuse) -DFUSE_USE_VERSION=29"
|
|
|
|
echo "#include <fuse.h>" | ${CXX} -E ${FUSE_CFLAGS} - | grep "${1}" > /dev/null
|
|
|
|
[ "$?" != "0" ]; echo $?
|