mirror of
https://github.com/trapexit/mergerfs.git
synced 2024-11-27 02:34:17 +08:00
538467b86d
Also added unit tests. Should have done separately but found a number of bugs.
9 lines
215 B
Bash
Executable File
9 lines
215 B
Bash
Executable File
#!/bin/sh
|
|
|
|
CXX="${CXX:-c++}"
|
|
FUSE_CFLAGS="-Ilibfuse/include -D_FILE_OFFSET_BITS=64 -DFUSE_USE_VERSION=29"
|
|
|
|
echo "#include \"fuse.h\"" | ${CXX} -E ${FUSE_CFLAGS} - | grep "${1}" > /dev/null
|
|
|
|
[ "$?" != "0" ]; echo $?
|