Moved Haiku-dependent command line apps to just Haiku build targets
Added an include to dstcheck to build for R5. git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@18374 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
+23
-9
@@ -32,28 +32,29 @@ StdBinCommands
|
|||||||
listsem.c
|
listsem.c
|
||||||
logger.cpp
|
logger.cpp
|
||||||
lsindex.cpp
|
lsindex.cpp
|
||||||
mount.c
|
|
||||||
prio.c
|
prio.c
|
||||||
ps.c
|
ps.c
|
||||||
release.c
|
release.c
|
||||||
renice.c
|
renice.c
|
||||||
rescan.c
|
rescan.c
|
||||||
rmattr.cpp
|
|
||||||
rmindex.cpp
|
|
||||||
safemode.c
|
|
||||||
sysinfo.c
|
sysinfo.c
|
||||||
unchop.c
|
unchop.c
|
||||||
unmount.c
|
|
||||||
uptime.cpp
|
uptime.cpp
|
||||||
waitfor.c
|
waitfor.c
|
||||||
# whoami.c
|
# whoami.c
|
||||||
;
|
;
|
||||||
|
|
||||||
# Haiku-only commands which don't need another library
|
# Commands which don't need another library that depend on
|
||||||
if $(TARGET_PLATFORM) != haiku {
|
# Haiku-specific code
|
||||||
|
if $(TARGET_PLATFORM) = haiku {
|
||||||
StdBinCommands
|
StdBinCommands
|
||||||
boot_process_done.cpp
|
boot_process_done.cpp
|
||||||
fdinfo.cpp
|
fdinfo.cpp
|
||||||
|
mount.c
|
||||||
|
rmattr.cpp
|
||||||
|
rmindex.cpp
|
||||||
|
safemode.c
|
||||||
|
unmount.c
|
||||||
;
|
;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -90,19 +91,32 @@ StdBinCommands
|
|||||||
roster.cpp
|
roster.cpp
|
||||||
settype.cpp
|
settype.cpp
|
||||||
setversion.cpp
|
setversion.cpp
|
||||||
shutdown.cpp
|
|
||||||
version.cpp
|
version.cpp
|
||||||
# yes.cpp
|
# yes.cpp
|
||||||
: be ;
|
: be ;
|
||||||
|
|
||||||
|
# Haiku-specific apps which need libbe.so
|
||||||
|
if $(TARGET_PLATFORM) = haiku {
|
||||||
|
StdBinCommands
|
||||||
|
shutdown.cpp
|
||||||
|
: be ;
|
||||||
|
}
|
||||||
|
|
||||||
# standard commands that need libbe.so, libstdc++.so
|
# standard commands that need libbe.so, libstdc++.so
|
||||||
StdBinCommands
|
StdBinCommands
|
||||||
copyattr.cpp
|
copyattr.cpp
|
||||||
mountvolume.cpp
|
|
||||||
xres.cpp
|
xres.cpp
|
||||||
: be $(TARGET_LIBSTDC++)
|
: be $(TARGET_LIBSTDC++)
|
||||||
;
|
;
|
||||||
|
|
||||||
|
# Haiku-specific apps which need libbe., libstdc++.so
|
||||||
|
if $(TARGET_PLATFORM) = haiku {
|
||||||
|
StdBinCommands
|
||||||
|
mountvolume.cpp
|
||||||
|
: be $(TARGET_LIBSTDC++)
|
||||||
|
;
|
||||||
|
}
|
||||||
|
|
||||||
# standard commands that need libbe.so, libtranslation.so
|
# standard commands that need libbe.so, libtranslation.so
|
||||||
StdBinCommands
|
StdBinCommands
|
||||||
translate.cpp
|
translate.cpp
|
||||||
|
|||||||
@@ -12,6 +12,7 @@
|
|||||||
#include <TextView.h>
|
#include <TextView.h>
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
|
#include <unistd.h>
|
||||||
|
|
||||||
const uint32 TIMEDALERT_UPDATE = 'taup';
|
const uint32 TIMEDALERT_UPDATE = 'taup';
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user