Update makefile for OS X 10.7 w/ OSXFUSE instead of MacFUSE

git-svn-id: https://profuse.googlecode.com/svn/branches/v2@399 aa027e90-d47c-11dd-86d7-074df07e0730
This commit is contained in:
ksherlock 2011-08-26 22:48:51 +00:00
parent 1dd7becb2f
commit 7508097176
1 changed files with 2 additions and 1 deletions

View File

@ -4,7 +4,8 @@ LIBS += -lpthread
UNAME = $(shell uname -s)
ifeq ($(UNAME),Darwin)
FUSE_LIBS += -lfuse_ino64
FUSE_LIBS += -losxfuse
CPPFLAGS += -I/usr/local/include/osxfuse/fuse
else
FUSE_LIBS += -lfuse
endif