Comment out websocket stuff so tabfs builds.

This commit is contained in:
Omar Rizwan 2020-10-21 15:14:06 -07:00
parent 69c167a134
commit 09291ea6bc
2 changed files with 3 additions and 3 deletions

View file

@ -20,7 +20,7 @@ LIBS = -losxfuse
all: $(TARGETS)
tabfs: common.c ws.c tabfs.c
tabfs: common.c tabfs.c
$(CC) $(CFLAGS_OSXFUSE) $(CFLAGS_EXTRA) -o $@ $^ $(LIBS)
clean:

View file

@ -231,8 +231,8 @@ main(int argc, char **argv)
{
common_init();
pthread_t websocket_thread;
pthread_create(&websocket_thread, NULL, websocket_main, NULL);
/* pthread_t websocket_thread; */
/* pthread_create(&websocket_thread, NULL, websocket_main, NULL); */
return fuse_main(argc, argv, &tabfs_filesystem_operations, NULL);
}