From ca51eb367d8a1876855f9c53a08653c41a164ea5 Mon Sep 17 00:00:00 2001 From: Matt Madia Date: Sat, 2 Mar 2013 19:20:17 -0500 Subject: [PATCH] Add FreeType headers dependencies, #8716. This allows MacDecorator to build once again. Due to other errors, BeDecorator and WinDecorator do not (yet) fail on the missing FreeType header -- hence it being only a comment for now. --- src/add-ons/decorators/BeDecorator/Jamfile | 4 ++++ src/add-ons/decorators/MacDecorator/Jamfile | 3 +++ src/add-ons/decorators/WinDecorator/Jamfile | 4 ++++ 3 files changed, 11 insertions(+) diff --git a/src/add-ons/decorators/BeDecorator/Jamfile b/src/add-ons/decorators/BeDecorator/Jamfile index 2e6b9062b2..b4acfb0991 100644 --- a/src/add-ons/decorators/BeDecorator/Jamfile +++ b/src/add-ons/decorators/BeDecorator/Jamfile @@ -10,6 +10,10 @@ UsePrivateHeaders kernel ; AddResources ClassicBe : resources.rdef ; +#TODO: See #8716, hrev44313 for ft2build.h: No such file or directory +#Includes [ FGristFiles BeDecorator.cpp ] +# : $(HAIKU_FREETYPE_HEADERS_DEPENDENCY) ; + Addon ClassicBe : BeDecorator.cpp : be app_server $(TARGET_LIBSTDC++) $(TARGET_LIBSUPC++) diff --git a/src/add-ons/decorators/MacDecorator/Jamfile b/src/add-ons/decorators/MacDecorator/Jamfile index 04e7b22941..88ffb91998 100644 --- a/src/add-ons/decorators/MacDecorator/Jamfile +++ b/src/add-ons/decorators/MacDecorator/Jamfile @@ -12,6 +12,9 @@ UsePrivateHeaders kernel ; AddResources MacDecorator : resources.rdef ; +Includes [ FGristFiles MacDecorator.cpp ] + : $(HAIKU_FREETYPE_HEADERS_DEPENDENCY) ; + Addon MacDecorator : MacDecorator.cpp : be app_server $(TARGET_LIBSTDC++) diff --git a/src/add-ons/decorators/WinDecorator/Jamfile b/src/add-ons/decorators/WinDecorator/Jamfile index a7dbde8c58..b472e5989b 100644 --- a/src/add-ons/decorators/WinDecorator/Jamfile +++ b/src/add-ons/decorators/WinDecorator/Jamfile @@ -10,6 +10,10 @@ UsePrivateHeaders kernel ; AddResources WinDecorator : resources.rdef ; +#TODO: See #8716, hrev44313 for ft2build.h: No such file or directory +#Includes [ FGristFiles WinDecorator.cpp ] +# : $(HAIKU_FREETYPE_HEADERS_DEPENDENCY) ; + Addon WinDecorator : WinDecorator.cpp : be app_server $(TARGET_LIBSTDC++)