* Include KMessage in libbe_haiku.so again.

* Export a fake _get_port_message_info_etc() for KMessage in libbe_haiku.so

This fixes the build of the app_server test environment.


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@25202 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Stephan Aßmus 2008-04-26 21:57:22 +00:00
parent 3196359ad2
commit df5030c7e3
2 changed files with 12 additions and 0 deletions

View File

@ -43,3 +43,10 @@ atomic_get(vint32 *value)
}
status_t
_get_port_message_info_etc(port_id id, port_message_info *info,
size_t infoSize, uint32 flags, bigtime_t timeout)
{
return B_ERROR;
}

View File

@ -17,6 +17,7 @@ if $(RUN_WITHOUT_APP_SERVER) != 0 {
SubDirC++Flags $(defines) ;
}
UsePrivateHeaders [ FDirName kernel ] # For KMessage.h
UsePrivateHeaders syslog_daemon ; # For syslog.cpp
# Build our libbe.so
@ -56,6 +57,7 @@ if $(TARGET_PLATFORM) = libbe_test {
}
SharedLibrary libbe_haiku.so :
KMessage.cpp
syslog.cpp
:
<libbe>app_kit.o
@ -71,6 +73,9 @@ SharedLibrary libbe_haiku.so :
$(TARGET_LIBSTDC++)
;
SEARCH on [ FGristFiles KMessage.cpp ]
= [ FDirName $(HAIKU_TOP) src system kernel messaging ] ;
SEARCH on [ FGristFiles syslog.cpp ]
= [ FDirName $(HAIKU_TOP) src system libroot posix ] ;