Fixed the mkbfs build.

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@14273 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Axel Dörfler 2005-09-29 01:27:39 +00:00
parent b5feb1f13f
commit eb581c1455
2 changed files with 13 additions and 1 deletions

View File

@ -29,6 +29,7 @@ SimpleTest mkbfs :
sl.c
sysdep.c
rootfs.c
errors.cpp
Volume.cpp BPlusTree.cpp Inode.cpp Index.cpp Query.cpp Journal.cpp
BlockAllocator.cpp kernel_interface_r5.cpp Utility.cpp BufferPool.cpp
@ -49,7 +50,7 @@ SEARCH on [ FGristFiles
SEARCH on [ FGristFiles
fsh.c rootfs.c initfs.c kernel.c cache.c sl.c stub.c tracker.cpp
sysdep.c hexdump.c argv.c
sysdep.c hexdump.c argv.c errors.cpp
] = [ FDirName $(OBOS_TOP) src tests add-ons kernel file_systems fs_shell ] ;
SEARCH on [ FGristFiles

View File

@ -8,6 +8,17 @@
#include "boot_block.h"
#include "compat.h"
// the definitions in fsproto.h (included by kprotos.h) and fs_interface.h
// (included by Volume.h) are not compatible
#define get_vnode _get_vnode
#define put_vnode _put_vnode
#define new_vnode _new_vnode
#define remove_vnode _remove_vnode
#define unremove_vnode _unremove_vnode
#define notify_listener _notify_listener
#define send_notification _send_notification
#include "kprotos.h"
#include <string.h>