diff --git a/Makefile b/Makefile index 1399d7b..f7b67b4 100644 --- a/Makefile +++ b/Makefile @@ -14,7 +14,7 @@ OBJ = $(patsubst %.cpp,%.o,$(patsubst %.c,%.o,$(SRC))) # include directories -INCLUDES = -I inc -I /usr/include/cryptopp -I sdk +INCLUDES = -I inc -I /usr/include/cryptopp -I /usr/include/cryptlib -I sdk # C compiler flags (-g -O2 -Wall) CCFLAGS = -O2 -g -fstack-protector-all -Wall #-non-call-exceptions diff --git a/README.md b/README.md index 6b5e857..76d3d8e 100644 --- a/README.md +++ b/README.md @@ -26,6 +26,10 @@ to compile on debian or ubuntu you need these additional packages: apt-get install libcrypto++-dev libcurl4-openssl-dev libdb5.3++-dev libfreeimage-dev libreadline-dev libfuse-dev +to compile on fedora you need these additional packages: + + dnf install cryptlib-devel readline-devel cryptopp-devel freeimage-devel db4-devel curl-devel libdb-cxx-devel + you can pass additional options to the fuse module via the command line option -f. example: ./MegaFuse -f -o allow_other -o uid=1000