From 5cd9308ef4fbd1c399d5f51471b5b0478f099d12 Mon Sep 17 00:00:00 2001 From: Michael Lotz Date: Mon, 1 Feb 2010 05:27:18 +0000 Subject: [PATCH] Drop BeOS compatibility and remove related cruft, including using String.cpp directly. Fixes the build. git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@35374 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- src/apps/stylededit/Jamfile | 24 ++---------------------- 1 file changed, 2 insertions(+), 22 deletions(-) diff --git a/src/apps/stylededit/Jamfile b/src/apps/stylededit/Jamfile index e41c849b93..05d0c4da5d 100644 --- a/src/apps/stylededit/Jamfile +++ b/src/apps/stylededit/Jamfile @@ -1,13 +1,6 @@ SubDir HAIKU_TOP src apps stylededit ; -SetSubDirSupportedPlatformsBeOSCompatible ; - UsePrivateHeaders textencoding ; -if ! $(TARGET_PLATFORM_HAIKU_COMPATIBLE) { - UseHeaders [ FDirName $(HAIKU_TOP) headers os support ] : true ; - UseHeaders [ FDirName $(HAIKU_TOP) headers posix ] : true ; -} - local styled_edit_rsrc = [ FGristFiles StyledEdit.rsrc ] @@ -16,26 +9,13 @@ ResComp $(styled_edit_rsrc) : [ FGristFiles StyledEdit.rdef ] ; -local styled_edit_files = +Application StyledEdit : ColorMenuItem.cpp FindWindow.cpp ReplaceWindow.cpp StyledEditApp.cpp StyledEditView.cpp StyledEditWindow.cpp - ; - -Objects $(styled_edit_files) ; - -Application StyledEdit : - [ FGristFiles $(styled_edit_files:S=$(SUFOBJ)) ] - # Haiku String - String.cpp - strcasestr.c - : be translation tracker libtextencoding.so $(TARGET_LIBSUPC++) + : be translation tracker libtextencoding.so $(TARGET_LIBSUPC++) : $(styled_edit_rsrc) ; - -SEARCH on String.cpp += [ FDirName $(HAIKU_TOP) src kits support ] ; -SEARCH on strcasestr.c += [ FDirName $(HAIKU_TOP) src system libroot posix string ] ; -