From 8c123e6dad6b2ff703578a9f43795a3db049ef98 Mon Sep 17 00:00:00 2001 From: Michael Lotz Date: Thu, 7 Jul 2005 13:26:11 +0000 Subject: [PATCH] Fixed build of StyledEdit for target r5. What's the matter with the second StyledEdit in there? Also added BString back to libhaiku.a. git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@13530 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- src/apps/stylededit/Jamfile | 6 +++--- src/kits/support/Jamfile | 8 ++++++++ 2 files changed, 11 insertions(+), 3 deletions(-) diff --git a/src/apps/stylededit/Jamfile b/src/apps/stylededit/Jamfile index 32c1da45ce..29b36d1e74 100644 --- a/src/apps/stylededit/Jamfile +++ b/src/apps/stylededit/Jamfile @@ -22,14 +22,14 @@ Objects $(styled_edit_files) ; App StyledEdit : [ FGristFiles $(styled_edit_files:S=$(SUFOBJ)) ] - # OBOS String + # Haiku String String.cpp - string_helper.cpp + strcasestr.c : : $(styled_edit_rsrc) ; SEARCH on String.cpp += [ FDirName $(OBOS_TOP) src kits support ] ; -SEARCH on string_helper.cpp += [ FDirName $(OBOS_TOP) src kits support ] ; +SEARCH on strcasestr.c += [ FDirName $(OBOS_TOP) src system libroot posix string ] ; LinkSharedOSLibs StyledEdit : be translation tracker libtextencoding.so ; diff --git a/src/kits/support/Jamfile b/src/kits/support/Jamfile index f7c315cb93..7d0feb8a6b 100644 --- a/src/kits/support/Jamfile +++ b/src/kits/support/Jamfile @@ -1 +1,9 @@ SubDir OBOS_TOP src kits support ; + +StaticLibrary haiku : + String.cpp + strcasestr.c + : STATIC_LIBRARY_DIR + ; + +SEARCH on strcasestr.c = [ FDirName $(OBOS_TOP) src system libroot posix string ] ;