From 0e1237631fcc32ee9dc27b16c714800cf5dec38f Mon Sep 17 00:00:00 2001 From: Philippe Houdoin Date: Thu, 28 Jul 2005 22:45:02 +0000 Subject: [PATCH] Cleanup: removing explicit strlcpy.c build. git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@13843 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- src/apps/pulse/Jamfile | 23 +++++++++-------------- 1 file changed, 9 insertions(+), 14 deletions(-) diff --git a/src/apps/pulse/Jamfile b/src/apps/pulse/Jamfile index 6dd7c28a27..a170c49ab1 100644 --- a/src/apps/pulse/Jamfile +++ b/src/apps/pulse/Jamfile @@ -2,13 +2,12 @@ SubDir OBOS_TOP src apps pulse ; UsePrivateHeaders shared ; -local r5_src = strlcpy.c ; +if $(TARGET_PLATFORM) = r5 { + SubDirC++Flags -DR5_COMPATIBLE ; +} -if $(HAIKU_COMPATIBLE) { - r5_src = ; -} - -App Pulse : BottomPrefsView.cpp +App Pulse : + BottomPrefsView.cpp ConfigView.cpp CPUButton.cpp DeskbarPulseView.cpp @@ -20,15 +19,11 @@ App Pulse : BottomPrefsView.cpp PulseApp.cpp PulseView.cpp PulseWindow.cpp - $(r5_src) - : libbe.so - : Pulse.rdef ; + + : libbe.so + : Pulse.rdef +; if $(HAIKU_COMPATIBLE) { LinkSharedOSLibs Pulse : libroot.so ; } - -SEARCH on [ FGristFiles - strlcpy.c - ] = [ FDirName $(OBOS_TOP) src system libroot posix string ] ; -