From baf0343063450acce538a25e6a93643a45911dce Mon Sep 17 00:00:00 2001 From: "wrenczes@gmail.com" Date: Wed, 2 Mar 2011 09:26:31 +0000 Subject: [PATCH] Makefile changes in JGE to include the boost path. Added a missing include dependency on shared_ptr. --- JGE/Makefile | 4 ++-- JGE/include/Threading.h | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/JGE/Makefile b/JGE/Makefile index b1c362bac..419075957 100644 --- a/JGE/Makefile +++ b/JGE/Makefile @@ -82,7 +82,7 @@ PSPSDK = $(shell psp-config --pspsdk-path) PSPDIR = $(shell psp-config --psp-prefix) OBJS = $(GENERIC_OBJS) $(PSP_OBJS) TARGET_HGE = libhgetools.a -INCDIR = include/psp include/psp/freetype2 +INCDIR = include/psp include/psp/freetype2 ../Boost CXXFLAGS += -O2 -G0 LIBDIR = lib/psp endif @@ -90,7 +90,7 @@ ifeq ($(TARGET_ARCHITECTURE),linux) OBJS = $(GENERIC_OBJS) $(LINUX_OBJS) TARGET_LIB = libjge.a TARGET_HGE = libhgetools.a -INCDIR = $(shell freetype-config --cflags 2> /dev/null) -I/usr/X11/include +INCDIR = $(shell freetype-config --cflags 2> /dev/null) -I/usr/X11/include -I../Boost CXXFLAGS += -DLINUX $(FMOD) CXXFLAGS += $(INCDIR) LIBDIR = lib/linux diff --git a/JGE/include/Threading.h b/JGE/include/Threading.h index 1fe26e117..cb3078059 100644 --- a/JGE/include/Threading.h +++ b/JGE/include/Threading.h @@ -7,6 +7,7 @@ #include #else #include +#include #include "pspthreadman.h"