Skip to content

Commit

Permalink
Merge pull request #2 from d2xdt2/fedora-fix
Browse files Browse the repository at this point in the history
Fix to compile on Fedora 30
  • Loading branch information
amitie10g authored Nov 25, 2019
2 parents 3810814 + e223210 commit 89e1426
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 89e1426

Please sign in to comment.